From 3c201ebea5d7420e8b6cfc46f25a449de0eda039 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 11 Sep 2023 18:03:41 +0300 Subject: [PATCH 001/144] Refactor utbot-intellij-python package names --- settings.gradle.kts | 6 ++--- utbot-intellij-python/build.gradle.kts | 24 +++++++------------ .../python/table/UtPyClassItem.java | 2 +- .../python/table/UtPyFunctionItem.java | 2 +- .../table/UtPyMemberSelectionTable.java | 2 +- .../python/table/UtPyTableItem.java | 2 +- .../{language => }/python/table/Utils.java | 2 +- .../python/IntellijRequirementsInstaller.kt | 2 +- .../python/PythonDialogProcessor.kt | 2 +- .../python/PythonDialogWindow.kt | 19 +++++++-------- .../python/PythonIntellijProcessor.kt | 3 ++- .../{language => }/python/PythonTestsModel.kt | 4 ++-- .../plugin/{language => }/python/Utils.kt | 8 +++---- .../language}/PythonLanguageAssistant.kt | 3 ++- .../settings/PythonTestFrameworkMapper.kt | 2 +- .../python/settings/Settings.kt | 4 ++-- utbot-ui-commons/build.gradle.kts | 1 - .../language/agnostic/LanguageAssistant.kt | 6 ++--- 18 files changed, 43 insertions(+), 51 deletions(-) rename utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/{language => }/python/table/UtPyClassItem.java (93%) rename utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/{language => }/python/table/UtPyFunctionItem.java (93%) rename utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/{language => }/python/table/UtPyMemberSelectionTable.java (99%) rename utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/{language => }/python/table/UtPyTableItem.java (82%) rename utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/{language => }/python/table/Utils.java (92%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/IntellijRequirementsInstaller.kt (98%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/PythonDialogProcessor.kt (99%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/PythonDialogWindow.kt (90%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/PythonIntellijProcessor.kt (96%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/PythonTestsModel.kt (93%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/Utils.kt (91%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language/python => python/language}/PythonLanguageAssistant.kt (98%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/settings/PythonTestFrameworkMapper.kt (95%) rename utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/{language => }/python/settings/Settings.kt (84%) diff --git a/settings.gradle.kts b/settings.gradle.kts index 3a54a76c59..61438d6336 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -60,6 +60,8 @@ include("utbot-spring-framework") include("utbot-spring-commons-api") include("utbot-spring-commons") include("utbot-spring-analyzer") +include("utbot-spring-sample") +include("utbot-spring-test") if (pythonIde.split(",").contains(ideType)) { include("utbot-python") @@ -70,9 +72,6 @@ if (pythonIde.split(",").contains(ideType)) { include("utbot-python-executor") } -include("utbot-spring-sample") -include("utbot-spring-test") - if (projectType == ultimateEdition) { if (jsBuild == buildType || jsIde.split(",").contains(ideType)) { include("utbot-js") @@ -88,3 +87,4 @@ if (projectType == ultimateEdition) { } include("utbot-light") +include("utbot-intellij-java") diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index bf7d404342..fd68099af8 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -43,13 +43,14 @@ dependencies { } intellij { - - val androidPlugins = listOf("org.jetbrains.android") - val jvmPlugins = listOf( "java" ) + val kotlinPlugins = mutableListOf( + "org.jetbrains.kotlin" + ) + val pythonCommunityPlugins = listOf( "PythonCore:${pythonCommunityPluginVersion}" ) @@ -58,24 +59,17 @@ intellij { "Pythonid:${pythonUltimatePluginVersion}" ) - val jsPlugins = listOf( - "JavaScript" - ) - - val goPlugins = listOf( - "org.jetbrains.plugins.go:${goPluginVersion}" - ) - plugins.set( when (ideType) { - "IC" -> jvmPlugins + pythonCommunityPlugins + androidPlugins - "IU" -> jvmPlugins + pythonUltimatePlugins + jsPlugins + goPlugins + androidPlugins - "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "IC" -> jvmPlugins + kotlinPlugins + pythonCommunityPlugins + "IU" -> jvmPlugins + kotlinPlugins + pythonUltimatePlugins + "PC" -> jvmPlugins + kotlinPlugins + pythonCommunityPlugins + "PY" -> jvmPlugins + kotlinPlugins + pythonUltimatePlugins // something else, JS? else -> jvmPlugins } ) version.set(ideVersion) type.set(ideType) + SettingsTemplateHelper.proceed(project) } \ No newline at end of file diff --git a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyClassItem.java b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyClassItem.java similarity index 93% rename from utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyClassItem.java rename to utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyClassItem.java index 5752c563f0..f49036a20a 100644 --- a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyClassItem.java +++ b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyClassItem.java @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python.table; +package org.utbot.intellij.plugin.python.table; import com.intellij.icons.AllIcons; import com.jetbrains.python.psi.PyClass; diff --git a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyFunctionItem.java b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyFunctionItem.java similarity index 93% rename from utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyFunctionItem.java rename to utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyFunctionItem.java index d3c9fdf512..b5564512e7 100644 --- a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyFunctionItem.java +++ b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyFunctionItem.java @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python.table; +package org.utbot.intellij.plugin.python.table; import com.intellij.icons.AllIcons; import com.jetbrains.python.psi.PyElement; diff --git a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyMemberSelectionTable.java b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyMemberSelectionTable.java similarity index 99% rename from utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyMemberSelectionTable.java rename to utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyMemberSelectionTable.java index f11d7a606a..26233b9dfe 100644 --- a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyMemberSelectionTable.java +++ b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyMemberSelectionTable.java @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python.table; +package org.utbot.intellij.plugin.python.table; import com.intellij.openapi.actionSystem.BackgroundableDataProvider; import com.intellij.openapi.actionSystem.CommonDataKeys; diff --git a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyTableItem.java b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyTableItem.java similarity index 82% rename from utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyTableItem.java rename to utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyTableItem.java index 9d3da4e6f1..c1e413016a 100644 --- a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/UtPyTableItem.java +++ b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/UtPyTableItem.java @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python.table; +package org.utbot.intellij.plugin.python.table; import com.jetbrains.python.psi.PyElement; diff --git a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/Utils.java b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/Utils.java similarity index 92% rename from utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/Utils.java rename to utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/Utils.java index 7667a77c50..0f23b1ba4c 100644 --- a/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/language/python/table/Utils.java +++ b/utbot-intellij-python/src/main/java/org/utbot/intellij/plugin/python/table/Utils.java @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python.table; +package org.utbot.intellij.plugin.python.table; import java.util.HashSet; import java.util.List; diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/IntellijRequirementsInstaller.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/IntellijRequirementsInstaller.kt similarity index 98% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/IntellijRequirementsInstaller.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/IntellijRequirementsInstaller.kt index 2bea00fc73..08aa8110db 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/IntellijRequirementsInstaller.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/IntellijRequirementsInstaller.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python import com.intellij.notification.NotificationType import com.intellij.openapi.application.invokeLater diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt similarity index 99% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonDialogProcessor.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index b94ac87779..c1474a9ef8 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python import com.intellij.openapi.application.ReadAction import com.intellij.openapi.application.invokeLater diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonDialogWindow.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogWindow.kt similarity index 90% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonDialogWindow.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogWindow.kt index e675499ac7..550ab70748 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonDialogWindow.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogWindow.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python import com.intellij.openapi.components.service import com.intellij.openapi.ui.ComboBox @@ -16,19 +16,16 @@ import com.jetbrains.python.psi.PyClass import com.jetbrains.python.psi.PyFunction import org.utbot.framework.codegen.domain.ProjectType import org.utbot.framework.codegen.domain.TestFramework -import org.utbot.intellij.plugin.language.python.settings.PythonTestFrameworkMapper -import org.utbot.intellij.plugin.language.python.settings.loadStateFromModel -import org.utbot.intellij.plugin.language.python.table.UtPyClassItem -import org.utbot.intellij.plugin.language.python.table.UtPyFunctionItem -import org.utbot.intellij.plugin.language.python.table.UtPyMemberSelectionTable -import org.utbot.intellij.plugin.language.python.table.UtPyTableItem +import org.utbot.intellij.plugin.python.settings.PythonTestFrameworkMapper +import org.utbot.intellij.plugin.python.settings.loadStateFromModel +import org.utbot.intellij.plugin.python.table.UtPyClassItem +import org.utbot.intellij.plugin.python.table.UtPyFunctionItem +import org.utbot.intellij.plugin.python.table.UtPyMemberSelectionTable +import org.utbot.intellij.plugin.python.table.UtPyTableItem import org.utbot.intellij.plugin.settings.Settings import org.utbot.intellij.plugin.ui.components.TestSourceDirectoryChooser import org.utbot.intellij.plugin.ui.utils.createTestFrameworksRenderer -import java.awt.event.ActionEvent import java.util.concurrent.TimeUnit -import javax.swing.AbstractAction -import javax.swing.Action import javax.swing.DefaultComboBoxModel import javax.swing.JComponent @@ -113,7 +110,7 @@ class PythonDialogWindow(val model: PythonTestsModel) : DialogWrapper(model.proj val functionItems = functions .groupBy { it.containingClass } .flatMap { (_, pyFuncs) -> - pyFuncs.map {UtPyFunctionItem(it)} + pyFuncs.map { UtPyFunctionItem(it) } } val classItems = classes.map { UtPyClassItem(it) diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonIntellijProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt similarity index 96% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonIntellijProcessor.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt index 89f2c498ec..29a8c20e65 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonIntellijProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python import com.intellij.codeInsight.CodeInsightUtil import com.intellij.openapi.application.invokeLater @@ -7,6 +7,7 @@ import com.intellij.openapi.project.Project import com.intellij.psi.PsiDirectory import com.intellij.psi.PsiFileFactory import com.jetbrains.python.psi.PyClass +import org.utbot.intellij.plugin.python.language.PythonLanguageAssistant import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.PythonTestGenerationProcessor diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonTestsModel.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt similarity index 93% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonTestsModel.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt index f0d4ff007f..1153ee7e08 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonTestsModel.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python import com.intellij.openapi.module.Module import com.intellij.openapi.project.Project @@ -8,7 +8,7 @@ import com.jetbrains.python.psi.PyFile import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework import org.utbot.framework.codegen.services.language.CgLanguageAssistant -import org.utbot.intellij.plugin.language.python.table.UtPyTableItem +import org.utbot.intellij.plugin.python.table.UtPyTableItem import org.utbot.intellij.plugin.models.BaseTestsModel class PythonTestsModel( diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/Utils.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt similarity index 91% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/Utils.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt index e8b285afc6..783126ffcc 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/Utils.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python import com.intellij.openapi.project.Project import com.intellij.openapi.roots.ProjectFileIndex @@ -9,9 +9,9 @@ import com.intellij.psi.PsiElement import com.jetbrains.python.psi.PyClass import com.jetbrains.python.psi.PyElement import com.jetbrains.python.psi.PyFunction -import org.utbot.intellij.plugin.language.python.table.UtPyClassItem -import org.utbot.intellij.plugin.language.python.table.UtPyFunctionItem -import org.utbot.intellij.plugin.language.python.table.UtPyTableItem +import org.utbot.intellij.plugin.python.table.UtPyClassItem +import org.utbot.intellij.plugin.python.table.UtPyFunctionItem +import org.utbot.intellij.plugin.python.table.UtPyTableItem import org.utbot.python.utils.RequirementsUtils import kotlin.random.Random diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonLanguageAssistant.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt similarity index 98% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonLanguageAssistant.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt index 84d304a8f4..4edaf85e23 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/PythonLanguageAssistant.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python +package org.utbot.intellij.plugin.python.language import com.intellij.lang.Language import com.intellij.openapi.actionSystem.AnActionEvent @@ -19,6 +19,7 @@ import org.jetbrains.kotlin.idea.core.util.toPsiDirectory import org.jetbrains.kotlin.idea.core.util.toPsiFile import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant +import org.utbot.intellij.plugin.python.* object PythonLanguageAssistant : LanguageAssistant() { diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/settings/PythonTestFrameworkMapper.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/settings/PythonTestFrameworkMapper.kt similarity index 95% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/settings/PythonTestFrameworkMapper.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/settings/PythonTestFrameworkMapper.kt index 57d8383441..0e2b60ac75 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/settings/PythonTestFrameworkMapper.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/settings/PythonTestFrameworkMapper.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.python.settings +package org.utbot.intellij.plugin.python.settings import org.utbot.framework.codegen.domain.TestFramework import org.utbot.intellij.plugin.settings.TestFrameworkMapper diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/settings/Settings.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/settings/Settings.kt similarity index 84% rename from utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/settings/Settings.kt rename to utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/settings/Settings.kt index 5c46f4d53b..a61dfcb5f7 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/language/python/settings/Settings.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/settings/Settings.kt @@ -1,7 +1,7 @@ -package org.utbot.intellij.plugin.language.python.settings +package org.utbot.intellij.plugin.python.settings import org.utbot.framework.codegen.domain.HangingTestsTimeout -import org.utbot.intellij.plugin.language.python.PythonTestsModel +import org.utbot.intellij.plugin.python.PythonTestsModel import org.utbot.intellij.plugin.settings.Settings fun loadStateFromModel(settings: Settings, model: PythonTestsModel) { diff --git a/utbot-ui-commons/build.gradle.kts b/utbot-ui-commons/build.gradle.kts index 76e484069e..608d02e918 100644 --- a/utbot-ui-commons/build.gradle.kts +++ b/utbot-ui-commons/build.gradle.kts @@ -37,7 +37,6 @@ tasks { runIde { jvmArgs("-Xmx2048m") jvmArgs("--add-exports", "java.desktop/sun.awt.windows=ALL-UNNAMED") - androidStudioPath?.let { ideDir.set(file(it)) } } patchPluginXml { diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt index 87d7314ee4..2e383a36c7 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt @@ -97,9 +97,9 @@ abstract class LanguageAssistant { private fun loadWithException(language: Language): Class<*>? { try { return when (language.id) { - "Python" -> Class.forName("org.utbot.intellij.plugin.language.python.PythonLanguageAssistant") - "ECMAScript 6" -> Class.forName("org.utbot.intellij.plugin.language.js.JsLanguageAssistant") - "go" -> Class.forName("org.utbot.intellij.plugin.language.go.GoLanguageAssistant") + "Python" -> Class.forName("org.utbot.intellij.plugin.python.language.PythonLanguageAssistant") + "ECMAScript 6" -> Class.forName("org.utbot.intellij.plugin.js.language.JsLanguageAssistant") + "go" -> Class.forName("org.utbot.intellij.plugin.go.language.GoLanguageAssistant") "JAVA", "kotlin" -> Class.forName("org.utbot.intellij.plugin.language.JvmLanguageAssistant") else -> error("Unknown language id: ${language.id}") } From 8119ae3aff793954d092aeab1c8ed6548d26c04d Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 13 Sep 2023 14:54:51 +0300 Subject: [PATCH 002/144] First version for pycharm --- gradle.properties | 5 +- settings.gradle.kts | 6 +- utbot-intellij-main/build.gradle.kts | 210 ++++++ .../plugin/ui/actions/GenerateTestsAction.kt | 0 .../src/main/resources/META-INF/plugin.xml | 99 +++ .../main/resources/META-INF/pluginIcon.svg | 4 + .../main/resources/META-INF/withAndroid.xml | 3 + .../src/main/resources/META-INF/withGo.xml | 3 + .../main/resources/META-INF/withIdeaMaven.xml | 3 + .../src/main/resources/META-INF/withJS.xml | 4 + .../src/main/resources/META-INF/withJava.xml | 3 + .../main/resources/META-INF/withKotlin.xml | 3 + .../src/main/resources/META-INF/withLang.xml | 3 + .../main/resources/META-INF/withPython.xml | 4 + .../src/main/resources/application.properties | 5 + .../resources/bundles/UtbotBundle.properties | 10 + .../UnitTestBotInspectionTool.html | 11 + .../src/main/resources/log4j2.xml | 34 + .../src/main/resources/settings.properties | 596 ++++++++++++++++++ utbot-intellij-python/build.gradle.kts | 4 +- .../plugin/python/PythonDialogProcessor.kt | 19 +- .../plugin/python/PythonIntellijProcessor.kt | 4 +- .../plugin/python/PythonTestsModel.kt | 5 - .../language/PythonLanguageAssistant.kt | 8 +- utbot-intellij/build.gradle.kts | 2 + .../generator/CodeGenerationController.kt | 4 - .../plugin/models/GenerateTestsModel.kt | 173 ++++- .../TestFolderComboWithBrowseButton.kt | 15 +- .../intellij/plugin/ui/utils/ModuleUtils.kt | 2 +- .../intellij/plugin/ui/utils/RootUtils.kt | 0 .../intellij/plugin/util/PsiClassHelper.kt | 0 .../kotlin/org/utbot/tests}/RootUtilsTest.kt | 6 +- utbot-python/samples/my_cov.json | 1 + utbot-ui-commons/build.gradle.kts | 4 +- .../language/agnostic/LanguageAssistant.kt | 21 +- .../intellij/plugin/models/BaseTestModel.kt | 180 ------ .../intellij/plugin/settings/Configurable.kt | 0 .../plugin/settings/MockAlwaysClassesTable.kt | 13 +- .../plugin/settings/SettingsWindow.kt | 0 39 files changed, 1227 insertions(+), 240 deletions(-) create mode 100644 utbot-intellij-main/build.gradle.kts rename {utbot-intellij => utbot-intellij-main}/src/main/kotlin/org/utbot/intellij/plugin/ui/actions/GenerateTestsAction.kt (100%) create mode 100644 utbot-intellij-main/src/main/resources/META-INF/plugin.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/pluginIcon.svg create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withAndroid.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withGo.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withIdeaMaven.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withJS.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withJava.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withKotlin.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withLang.xml create mode 100644 utbot-intellij-main/src/main/resources/META-INF/withPython.xml create mode 100644 utbot-intellij-main/src/main/resources/application.properties create mode 100644 utbot-intellij-main/src/main/resources/bundles/UtbotBundle.properties create mode 100644 utbot-intellij-main/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html create mode 100644 utbot-intellij-main/src/main/resources/log4j2.xml create mode 100644 utbot-intellij-main/src/main/resources/settings.properties rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt (94%) rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt (99%) rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtils.kt (100%) rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/util/PsiClassHelper.kt (100%) rename {utbot-ui-commons/src/test/kotlin/org/utbot/intellij/plugin/ui/utils => utbot-intellij/src/test/kotlin/org/utbot/tests}/RootUtilsTest.kt (93%) create mode 100644 utbot-python/samples/my_cov.json rename {utbot-intellij => utbot-ui-commons}/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt (100%) rename {utbot-intellij => utbot-ui-commons}/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt (91%) rename {utbot-intellij => utbot-ui-commons}/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt (100%) diff --git a/gradle.properties b/gradle.properties index 00719b83c7..8dbfdc04be 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,8 +10,9 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=IC -ideVersion=232.8660.185 +ideType=PC +#ideVersion=232.8660.185 +ideVersion=2023.2 # ALL, NOJS buildType=NOJS diff --git a/settings.gradle.kts b/settings.gradle.kts index 61438d6336..d53c4450ea 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -27,7 +27,9 @@ include("utbot-core") include("utbot-framework") include("utbot-framework-api") include("utbot-modificators-analyzer") -include("utbot-intellij") +if (ideType != "PC") { + include("utbot-intellij") +} include("utbot-sample") include("utbot-java-fuzzing") include("utbot-fuzzing") @@ -87,4 +89,4 @@ if (projectType == ultimateEdition) { } include("utbot-light") -include("utbot-intellij-java") +include("utbot-intellij-main") diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts new file mode 100644 index 0000000000..a6141ac019 --- /dev/null +++ b/utbot-intellij-main/build.gradle.kts @@ -0,0 +1,210 @@ +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject + +val intellijPluginVersion: String? by rootProject +val kotlinLoggingVersion: String? by rootProject +val apacheCommonsTextVersion: String? by rootProject +val jacksonVersion: String? by rootProject + +val ideType: String? by rootProject +val ideVersion: String? by rootProject +val pythonCommunityPluginVersion: String? by rootProject +val pythonUltimatePluginVersion: String? by rootProject +val goPluginVersion: String? by rootProject + +val pythonIde: String? by rootProject +val jsIde: String? by rootProject +val goIde: String? by rootProject + +val sootVersion: String? by rootProject +val kryoVersion: String? by rootProject +val rdVersion: String? by rootProject +val semVer: String? by rootProject +val androidStudioPath: String? by rootProject + +val junit5Version: String by rootProject +val junit4PlatformVersion: String by rootProject + +// https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file +val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" + +//project.tasks.asMap["runIde"]?.enabled = false + +plugins { + id("org.jetbrains.intellij") version "1.13.1" +} + +intellij { + + val androidPlugins = listOf("org.jetbrains.android") + + val jvmPlugins = mutableListOf( + "java" + ) + + val kotlinPlugins = mutableListOf( + "org.jetbrains.kotlin" + ) + + androidStudioPath?.let { jvmPlugins += androidPlugins } + + val pythonCommunityPlugins = listOf( + "PythonCore:${pythonCommunityPluginVersion}" + ) + + val pythonUltimatePlugins = listOf( + "Pythonid:${pythonUltimatePluginVersion}" + ) + + val jsPlugins = listOf( + "JavaScript" + ) + + val goPlugins = listOf( + "org.jetbrains.plugins.go:${goPluginVersion}" + ) + + val mavenUtilsPlugins = listOf( + "org.jetbrains.idea.maven" + ) + + val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins + + plugins.set( + when (projectType) { + communityEdition -> basePluginSet + pythonCommunityPlugins + ultimateEdition -> when (ideType) { + "IC" -> basePluginSet + pythonCommunityPlugins + "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins // something else, JS? + else -> basePluginSet + } + else -> basePluginSet + } + ) + + version.set(ideVersion) + type.set(ideTypeOrAndroidStudio) + SettingsTemplateHelper.proceed(project) +} + +val remoteRobotVersion = "0.11.16" + +tasks { + compileKotlin { + kotlinOptions { + jvmTarget = "17" + freeCompilerArgs = freeCompilerArgs + listOf("-Xallow-result-return-type", "-Xsam-conversions=class") + allWarningsAsErrors = false + } + } + + java { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + runIde { + jvmArgs("-Xmx2048m") + jvmArgs("--add-exports", "java.desktop/sun.awt.windows=ALL-UNNAMED") + androidStudioPath?.let { ideDir.set(file(it)) } + } + + patchPluginXml { + sinceBuild.set("223") + untilBuild.set("232.*") + version.set(semVer) + } + + runIdeForUiTests { + jvmArgs("-Xmx2048m", "-Didea.is.internal=true", "-Didea.ui.debug.mode=true") + + systemProperty("robot-server.port", "8082") // default port 8580 + systemProperty("ide.mac.message.dialogs.as.sheets", "false") + systemProperty("jb.privacy.policy.text", "") + systemProperty("jb.consents.confirmation.enabled", "false") + systemProperty("idea.trust.all.projects", "true") + systemProperty("ide.mac.file.chooser.native", "false") + systemProperty("jbScreenMenuBar.enabled", "false") + systemProperty("apple.laf.useScreenMenuBar", "false") + systemProperty("ide.show.tips.on.startup.default.value", "false") + } + + downloadRobotServerPlugin { + version.set(remoteRobotVersion) + } + + test { + description = "Runs UI integration tests." + useJUnitPlatform { + exclude("/org/utbot/**") //Comment this line to run the tests locally + } + } +} + +repositories { + maven("https://jitpack.io") + maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies") +} + +dependencies { + implementation(group ="com.jetbrains.rd", name = "rd-framework", version = rdVersion) + implementation(group ="com.jetbrains.rd", name = "rd-core", version = rdVersion) + implementation(group ="com.esotericsoftware.kryo", name = "kryo5", version = kryoVersion) + implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion) + implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion) + implementation("org.apache.httpcomponents.client5:httpclient5:5.1") + implementation(group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin", version = jacksonVersion) + + implementation(project(":utbot-framework")) { exclude(group = "org.slf4j", module = "slf4j-api") } + implementation(project(":utbot-spring-framework")) { exclude(group = "org.slf4j", module = "slf4j-api") } + implementation(project(":utbot-java-fuzzing")) + //api(project(":utbot-analytics")) + testImplementation("org.mock-server:mockserver-netty:5.4.1") + testApi(project(":utbot-framework")) + + implementation(project(":utbot-ui-commons")) + + //Family + + if (ideType != "PC") { + implementation(project(":utbot-intellij")) + } + + if (pythonIde?.split(',')?.contains(ideType) == true) { + api(project(":utbot-python")) + api(project(":utbot-intellij-python")) + } + + if (projectType == ultimateEdition) { + if (jsIde?.split(',')?.contains(ideType) == true) { + implementation(project(":utbot-js")) + implementation(project(":utbot-intellij-js")) + } + + if (goIde?.split(',')?.contains(ideType) == true) { + implementation(project(":utbot-go")) + implementation(project(":utbot-intellij-go")) + } + } + + implementation(project(":utbot-android-studio")) + + testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion") + testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion") + + testImplementation("org.assertj:assertj-core:3.11.1") + + // Logging Network Calls + testImplementation("com.squareup.okhttp3:logging-interceptor:4.10.0") + + // Video Recording + implementation("com.automation-remarks:video-recorder-junit5:2.0") + + testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version") + testRuntimeOnly("org.junit.vintage:junit-vintage-engine:$junit5Version") +} diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/actions/GenerateTestsAction.kt b/utbot-intellij-main/src/main/kotlin/org/utbot/intellij/plugin/ui/actions/GenerateTestsAction.kt similarity index 100% rename from utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/actions/GenerateTestsAction.kt rename to utbot-intellij-main/src/main/kotlin/org/utbot/intellij/plugin/ui/actions/GenerateTestsAction.kt diff --git a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml new file mode 100644 index 0000000000..1b3bbf6242 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml @@ -0,0 +1,99 @@ + + + + org.utbot.intellij.plugin.id + UnitTestBot + utbot.org + com.intellij.modules.platform + + com.intellij.modules.java + org.jetbrains.kotlin + com.intellij.modules.python + org.jetbrains.plugins.go + org.jetbrains.android + org.jetbrains.idea.maven + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Discover UnitTestBot key features in our latest release: +
    +
  • generating ready-to-use test cases — with valid inputs, method bodies, assertions, and comments
  • +
  • maximizing branch coverage in regression suite while keeping the number of tests minimized
  • +
  • finding deeply hidden code defects and expressing them as tests
  • +
  • fine-tuned mocking, including mocking static methods
  • +
  • representing all the test descriptions in a human-readable format
  • +
  • generating SARIF reports
  • +
  • innovative symbolic execution engine combined with a smart fuzzing platform
  • +
+ UnitTestBot supports the latest JDKs, JUnit 4, JUnit 5, TestNG, Mockito and is suitable for all popular operational systems. +
+ Try UnitTestBot online demo to see how it generates tests for your code in real time. +
+ Contribute to UnitTestBot via GitHub. +
+ Found a bug? File an issue. +
+ Have an idea? Start a discussion. + ]]> +
+ + +
  • Generating tests for Python and JavaScript
  • +
  • New fuzzing platform providing support for multiple languages
  • +
  • Improved test generation for Kotlin code
  • +
  • Multiprocess architecture based on the Reactive Distributed communication framework with advanced logging and debugging options
  • +
  • Symbolic execution engine with higher priority and fewer false UNSAT verdicts
  • +
  • UI/UX improvements for test sources root, setting.properties file, cancellation, timeout settings, notifications
  • +
  • Summaries with fine-grained settings
  • +
  • SARIF reports enabled by default, displaying sandbox-related and timeout test failures, properly addressing source files
  • +
  • Improved monitoring visualized with Grafana
  • +
  • Test generation bug fixes
  • +
  • Detailed documentation on UnitTestBot components including UnitTestBot architecture overview
  • + + ]]> +
    + + + + + + + + + + + +
    diff --git a/utbot-intellij-main/src/main/resources/META-INF/pluginIcon.svg b/utbot-intellij-main/src/main/resources/META-INF/pluginIcon.svg new file mode 100644 index 0000000000..d24574d6dd --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/pluginIcon.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withAndroid.xml b/utbot-intellij-main/src/main/resources/META-INF/withAndroid.xml new file mode 100644 index 0000000000..09ce48b452 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withAndroid.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withGo.xml b/utbot-intellij-main/src/main/resources/META-INF/withGo.xml new file mode 100644 index 0000000000..65c848f900 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withGo.xml @@ -0,0 +1,3 @@ + + + diff --git a/utbot-intellij-main/src/main/resources/META-INF/withIdeaMaven.xml b/utbot-intellij-main/src/main/resources/META-INF/withIdeaMaven.xml new file mode 100644 index 0000000000..5c2f872b51 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withIdeaMaven.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withJS.xml b/utbot-intellij-main/src/main/resources/META-INF/withJS.xml new file mode 100644 index 0000000000..d04570b311 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withJS.xml @@ -0,0 +1,4 @@ + + + JavaScript + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withJava.xml b/utbot-intellij-main/src/main/resources/META-INF/withJava.xml new file mode 100644 index 0000000000..2ce2e82cc9 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withJava.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withKotlin.xml b/utbot-intellij-main/src/main/resources/META-INF/withKotlin.xml new file mode 100644 index 0000000000..07e0e420c3 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withKotlin.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withLang.xml b/utbot-intellij-main/src/main/resources/META-INF/withLang.xml new file mode 100644 index 0000000000..ed33e791e3 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withLang.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/META-INF/withPython.xml b/utbot-intellij-main/src/main/resources/META-INF/withPython.xml new file mode 100644 index 0000000000..f272fd7601 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/META-INF/withPython.xml @@ -0,0 +1,4 @@ + + + com.intellij.modules.python + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/application.properties b/utbot-intellij-main/src/main/resources/application.properties new file mode 100644 index 0000000000..f5af5a168d --- /dev/null +++ b/utbot-intellij-main/src/main/resources/application.properties @@ -0,0 +1,5 @@ +# suppress inspection "HttpUrlsUsage" for whole file +backing.service.possibleEndpoints=http://utbot.org +backing.service.urlPath=/utbot/errors +backing.service.port=11000 +request.timeoutMillis=5000 \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/bundles/UtbotBundle.properties b/utbot-intellij-main/src/main/resources/bundles/UtbotBundle.properties new file mode 100644 index 0000000000..4c13064c79 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/bundles/UtbotBundle.properties @@ -0,0 +1,10 @@ +# {0} - Test report url prefix, {1] - suffix +test.report.force.mock.warning=Warning: Some test cases were ignored, because no mocking framework is installed in the project.
    \ +Better results could be achieved by installing mocking framework. +test.report.force.static.mock.warning=Warning: Some test cases were ignored, because mockito-inline is not installed in the project.
    \ +Better results could be achieved by configuring mockito-inline. +test.report.test.framework.warning=Warning: There are several test frameworks in the project.\ +To select run configuration, please refer to the documentation depending on the project build system:\ +Gradle, \ +Maven \ +or Idea. \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html b/utbot-intellij-main/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html new file mode 100644 index 0000000000..a01f16e673 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html @@ -0,0 +1,11 @@ + + +

    Reports unchecked exceptions detected by UnitTestBot.

    +

    Example:

    +
    +void foo(int a) {
    +    return 1 / a; // throws ArithmeticException when `a == 0`
    +}
    +
    + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/log4j2.xml b/utbot-intellij-main/src/main/resources/log4j2.xml new file mode 100644 index 0000000000..6a9ae540c8 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/log4j2.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/utbot-intellij-main/src/main/resources/settings.properties b/utbot-intellij-main/src/main/resources/settings.properties new file mode 100644 index 0000000000..29ce294664 --- /dev/null +++ b/utbot-intellij-main/src/main/resources/settings.properties @@ -0,0 +1,596 @@ +# Copyright (c) 2023 utbot.org +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# +# Setting to disable coroutines debug explicitly. +# Set it to false if debug info is required. +# +# Default value is [true] +#disableCoroutinesDebug=true + +# +# Make `true` for interactive mode (like Intellij plugin). If `false` UTBot can apply certain optimizations. +# +# Default value is [true] +#classfilesCanChange=true + +# +# Timeout for Z3 solver.check calls. +# Set it to 0 to disable timeout. +# +# Default value is [1000] +#checkSolverTimeoutMillis=1000 + +# +# Timeout for symbolic execution +# +# Default value is [60000] +#utBotGenerationTimeoutInMillis=60000 + +# +# Random seed in path selector. +# Set null to disable random. +# +# Default value is [42] +#seedInPathSelector=42 + +# +# Type of path selector. +# +# COVERED_NEW_SELECTOR: [CoveredNewSelector] +# INHERITORS_SELECTOR: [InheritorsSelector] +# BFS_SELECTOR: [BFSSelector] +# SUBPATH_GUIDED_SELECTOR: [SubpathGuidedSelector] +# CPI_SELECTOR: [CPInstSelector] +# FORK_DEPTH_SELECTOR: [ForkDepthSelector] +# ML_SELECTOR: [MLSelector] +# TORCH_SELECTOR: [TorchSelector] +# RANDOM_SELECTOR: [RandomSelector] +# RANDOM_PATH_SELECTOR: [RandomPathSelector] +# +# Default value is [INHERITORS_SELECTOR] +#pathSelectorType=INHERITORS_SELECTOR + +# +# Type of MLSelector recalculation. +# +# WITH_RECALCULATION: [MLSelectorWithRecalculation] +# WITHOUT_RECALCULATION: [MLSelectorWithoutRecalculation] +# +# Default value is [WITHOUT_RECALCULATION] +#mlSelectorRecalculationType=WITHOUT_RECALCULATION + +# +# Type of [MLPredictor]. +# +# MLP: [MultilayerPerceptronPredictor] +# LINREG: [LinearRegressionPredictor] +# +# Default value is [MLP] +#mlPredictorType=MLP + +# +# Steps limit for path selector. +# +# Default value is [3500] +#pathSelectorStepsLimit=3500 + +# +# Determines whether path selector should save remaining states for concrete execution after stopping by strategy. +# False for all framework tests by default. +#saveRemainingStatesForConcreteExecution=true + +# +# Use debug visualization. +# Set it to true if debug visualization is needed. +# +# Default value is [false] +#useDebugVisualization=false + +# +# Set the value to true to show library classes' graphs in visualization. +# +# Default value is [false] +#showLibraryClassesInVisualization=false + +# +# Use simplification of UtExpressions. +# Set it to false to disable expression simplification. +# +# Default value is [true] +#useExpressionSimplification=true + +# +# Enable the Summarization module to generate summaries for methods under test. +# Note: if it is [SummariesGenerationType.NONE], +# all the execution for a particular method will be stored at the same nameless region. +# +# FULL: All possible analysis actions are taken +# LIGHT: Analysis actions based on sources are NOT taken +# NONE: No summaries are generated +# +# Default value is [FULL] +#summaryGenerationType=FULL + +# +# If True test comments will be generated. +# +# Default value is [true] +#enableJavaDocGeneration=true + +# +# If True cluster comments will be generated. +# +# Default value is [true] +#enableClusterCommentsGeneration=true + +# +# If True names for tests will be generated. +# +# Default value is [true] +#enableTestNamesGeneration=true + +# +# If True display names for tests will be generated. +# +# Default value is [true] +#enableDisplayNameGeneration=true + +# +# If True display name in from -> to style will be generated. +# +# Default value is [true] +#useDisplayNameArrowStyle=true + +# +# Generate summaries using plugin's custom JavaDoc tags. +# +# Default value is [true] +#useCustomJavaDocTags=true + +# +# This option regulates which [NullPointerException] check should be performed for nested methods. +# Set an option in true if you want to perform NPE check in the corresponding situations, otherwise set false. +# +# Default value is [true] +#checkNpeInNestedMethods=true + +# +# This option regulates which [NullPointerException] check should be performed for nested not private methods. +# Set an option in true if you want to perform NPE check in the corresponding situations, otherwise set false. +# +# Default value is [false] +#checkNpeInNestedNotPrivateMethods=false + +# +# This option determines whether we should generate [NullPointerException] checks for final or non-public fields +# in non-application classes. Set by true, this option highly decreases test's readability in some cases +# because of using reflection API for setting final/non-public fields in non-application classes. +# NOTE: With false value loses some executions with NPE in system classes, but often most of these executions +# are not expected by user. +# +# Default value is [false] +#maximizeCoverageUsingReflection=false + +# +# Activate or deactivate substituting static fields values set in static initializer +# with symbolic variable to try to set them another value than in initializer. +# +# Default value is [true] +#substituteStaticsWithSymbolicVariable=true + +# +# Use concrete execution. +# +# Default value is [true] +#useConcreteExecution=true + +# +# Enable code generation tests with every possible configuration +# for every method in samples. +# Important: is enabled generation requires enormous amount of time. +# +# Default value is [false] +#checkAllCombinationsForEveryTestInSamples=false + +# +# Enable transformation UtCompositeModels into UtAssembleModels using AssembleModelGenerator. +# Note: false doesn't mean that there will be no assemble models, it means that the generator will be turned off. +# Assemble models will present for lists, sets, etc. +# +# Default value is [true] +#useAssembleModelGenerator=true + +# +# Test related files from the temp directory that are older than [daysLimitForTempFiles] +# will be removed at the beginning of the test run. +# +# Default value is [3] +#daysLimitForTempFiles=3 + +# +# Enables soft constraints in the engine. +# +# Default value is [true] +#preferredCexOption=true + +# +# Type of test minimization strategy. +# +# DO_NOT_MINIMIZE_STRATEGY: Always adds new test +# COVERAGE_STRATEGY: Adds new test only if it increases coverage +# +# Default value is [COVERAGE_STRATEGY] +#testMinimizationStrategyType=COVERAGE_STRATEGY + +# +# Set to true to start fuzzing if symbolic execution haven't return anything +# +# Default value is [true] +#useFuzzing=true + +# +# Set the total attempts to improve coverage by fuzzer. +# +# Default value is [2147483647] +#fuzzingMaxAttempts=2147483647 + +# +# Fuzzer tries to generate and run tests during this time. +# +# Default value is [3000] +#fuzzingTimeoutInMillis=3000 + +# +# Find implementations of interfaces and abstract classes to fuzz. +# +# Default value is [true] +#fuzzingImplementationOfAbstractClasses=true + +# +# Use methods to mutate fields of classes different from class under test or not. +# +# Default value is [false] +#tryMutateOtherClassesFieldsWithMethods=false + +# +# Generate tests that treat possible overflows in arithmetic operations as errors +# that throw Arithmetic Exception. +# +# Default value is [false] +#treatOverflowAsError=false + +# +# Generate tests that treat assertions as error suits. +# +# Default value is [true] +#treatAssertAsErrorSuite=true + +# +# Instrument all classes before start +# +# Default value is [false] +#warmupConcreteExecution=false + +# +# Ignore string literals during the code analysis to make possible to analyze antlr. +# It is a hack and must be removed after the competition. +# +# Default value is [false] +#ignoreStringLiterals=false + +# +# Timeout for specific concrete execution (in milliseconds). +# +# Default value is [1000] +#concreteExecutionDefaultTimeoutInInstrumentedProcessMillis=1000 + +# +# Enable taint analysis or not. +# +# Default value is [false] +#useTaintAnalysis=false + +# +# Path to custom log4j2 configuration file for EngineProcess. +# By default utbot-intellij/src/main/resources/log4j2.xml is used. +# Also default value is used if provided value is not a file. +#engineProcessLogConfigFile="" + +# +# The property is useful only for the IntelliJ IDEs. +# If the property is set in true the engine process opens a debug port. +# @see runInstrumentedProcessWithDebug +# @see org.utbot.intellij.plugin.process.EngineProcess +# +# Default value is [false] +#runEngineProcessWithDebug=false + +# +# The engine process JDWP agent's port of the engine process. +# A debugger attaches to the port in order to debug the process. +# +# Default value is [5005] +#engineProcessDebugPort=5005 + +# +# Value of the suspend mode for the JDWP agent of the engine process. +# If the value is true, the engine process will suspend until a debugger attaches to it. +# +# Default value is [true] +#suspendEngineProcessExecutionInDebugMode=true + +# +# The property is useful only for the IntelliJ IDEs. +# If the property is set in true the spring analyzer process opens a debug port. +# @see runInstrumentedProcessWithDebug +# @see org.utbot.spring.process.SpringAnalyzerProcess +# +# Default value is [false] +#runSpringAnalyzerProcessWithDebug=false + +# +# The spring analyzer process JDWP agent's port. +# A debugger attaches to the port in order to debug the process. +# +# Default value is [5007] +#springAnalyzerProcessDebugPort=5007 + +# +# Value of the suspend mode for the JDWP agent of the spring analyzer process. +# If the value is true, the spring analyzer process will suspend until a debugger attaches to it. +# +# Default value is [true] +#suspendSpringAnalyzerProcessExecutionInDebugMode=true + +# +# The instrumented process JDWP agent's port of the instrumented process. +# A debugger attaches to the port in order to debug the process. +# +# Default value is [5006] +#instrumentedProcessDebugPort=5006 + +# +# Value of the suspend mode for the JDWP agent of the instrumented process. +# If the value is true, the instrumented process will suspend until a debugger attaches to it. +# +# Default value is [true] +#suspendInstrumentedProcessExecutionInDebugMode=true + +# +# If true, runs the instrumented process with the ability to attach a debugger. +# To debug the instrumented process, set the breakpoint in the +# [org.utbot.instrumentation.rd.InstrumentedProcess.Companion.invoke] +# and in the instrumented process's main function and run the main process. +# Then run the remote JVM debug configuration in IDEA. +# If you see the message in console about successful connection, then +# the debugger is attached successfully. +# Now you can put the breakpoints in the instrumented process and debug +# both processes simultaneously. +# @see [org.utbot.instrumentation.rd.InstrumentedProcess.Companion.invoke] +# +# Default value is [false] +#runInstrumentedProcessWithDebug=false + +# +# Number of branch instructions using for clustering executions in the test minimization phase. +# +# Default value is [4] +#numberOfBranchInstructionsForClustering=4 + +# +# Determines should we choose only one crash execution with "minimal" model or keep all. +# +# Default value is [true] +#minimizeCrashExecutions=true + +# +# Enable it to calculate unsat cores for hard constraints as well. +# It may be usefull during debug. +# Note: it might highly impact performance, so do not enable it in release mode. +# +# Default value is [false] +#enableUnsatCoreCalculationForHardConstraints=false + +# +# Enable it to process states with unknown solver status +# from the queue to concrete execution. +# +# Default value is [true] +#processUnknownStatesDuringConcreteExecution=true + +# +# 2^{this} will be the length of observed subpath. +# See [SubpathGuidedSelector] +# +# Default value is [1] +#subpathGuidedSelectorIndex=1 + +# +# Flag that indicates whether feature processing for execution states enabled or not +# +# Default value is [false] +#enableFeatureProcess=false + +# +# Path to deserialized ML models +# +# Default value is [../models/0] +#modelPath=../models/0 + +# +# Full class name of the class containing the configuration for the ML models to solve path selection task. +# +# Default value is [org.utbot.AnalyticsConfiguration] +#analyticsConfigurationClassPath=org.utbot.AnalyticsConfiguration + +# +# Full class name of the class containing the configuration for the ML models exported from the PyTorch to solve path selection task. +# +# Default value is [org.utbot.AnalyticsTorchConfiguration] +#analyticsTorchConfigurationClassPath=org.utbot.AnalyticsTorchConfiguration + +# +# Number of model iterations that will be used during ContestEstimator +# +# Default value is [1] +#iterations=1 + +# +# Path for state features dir +# +# Default value is [eval/secondFeatures/antlr/INHERITORS_SELECTOR] +#featurePath=eval/secondFeatures/antlr/INHERITORS_SELECTOR + +# +# Counter for tests during testGeneration for one project in ContestEstimator +# +# Default value is [0] +#testCounter=0 + +# +# Flag that indicates whether tests for synthetic (see [Executable.isSynthetic]) and implicitly declared methods (like values, valueOf in enums) should be generated, or not +# +# Default value is [true] +#skipTestGenerationForSyntheticAndImplicitlyDeclaredMethods=true + +# +# Flag that indicates whether should we branch on and set static fields from trusted libraries or not. +# @see [org.utbot.common.WorkaroundReason.IGNORE_STATICS_FROM_TRUSTED_LIBRARIES] +# +# Default value is [true] +#ignoreStaticsFromTrustedLibraries=true + +# +# Use the sandbox in the instrumented process. +# If true, the sandbox will prevent potentially dangerous calls, e.g., file access, reading +# or modifying the environment, calls to `Unsafe` methods etc. +# If false, all these operations will be enabled and may lead to data loss during code analysis +# and test generation. +# +# Default value is [true] +#useSandbox=true + +# +# Transform bytecode in the instrumented process. +# If true, bytecode transformation will help fuzzing to find interesting input data, but the size of bytecode can increase. +# If false, bytecode won`t be changed. +# +# Default value is [false] +#useBytecodeTransformation=false + +# +# Limit for number of generated tests per method (in each region) +# +# Default value is [50] +#maxTestsPerMethodInRegion=50 + +# +# Max file length for generated test file +# +# Default value is [1000000] +#maxTestFileSize=1000000 + +# +# If this options set in true, all soot classes will be removed from a Soot Scene, +# therefore, you will be unable to test soot classes. +# +# Default value is [true] +#removeSootClassesFromHierarchy=true + +# +# If this options set in true, all UtBot classes will be removed from a Soot Scene, +# therefore, you will be unable to test UtBot classes. +# +# Default value is [true] +#removeUtBotClassesFromHierarchy=true + +# +# Use this option to enable calculation and logging of MD5 for dropped states by statistics. +# Example of such logging: +# Dropping state (lastStatus=UNDEFINED) by the distance statistics. MD5: 5d0bccc242e87d53578ca0ef64aa5864 +# +# Default value is [false] +#enableLoggingForDroppedStates=false + +# +# If this option set in true, depending on the number of possible types for +# a particular object will be used either type system based on conjunction +# or on bit vectors. +# @see useBitVecBasedTypeSystem +# +# Default value is [true] +#useBitVecBasedTypeSystem=true + +# +# The number of types on which the choice of the type system depends. +# +# Default value is [64] +#maxTypeNumberForEnumeration=64 + +# +# The threshold for numbers of types for which they will be encoded into solver. +# It is used to do not encode big type storages due to significand performance degradation. +# +# Default value is [512] +#maxNumberOfTypesToEncode=512 + +# +# The behaviour of further analysis if tests generation cancellation is requested. +# +# NONE: Do not react on cancellation +# CANCEL_EVERYTHING: Clear all generated test classes +# SAVE_PROCESSED_RESULTS: Show already processed test classes +# +# Default value is [SAVE_PROCESSED_RESULTS] +#cancellationStrategyType=SAVE_PROCESSED_RESULTS + +# +# Depending on this option, sections might be analyzed or not. +# Note that some clinit sections still will be initialized using runtime information. +# +# Default value is [true] +#enableClinitSectionsAnalysis=true + +# +# Process all clinit sections concretely. +# If [enableClinitSectionsAnalysis] is false, it disables effect of this option as well. +# Note that values processed concretely won't be replaced with unbounded symbolic variables. +# +# Default value is [false] +#processAllClinitSectionsConcretely=false + +# +# In cases where we don't have a body for a method, we can either throw an exception +# or treat this a method as a source of an unbounded symbolic variable returned as a result. +# If this option is set in true, instead of analysis we will return an unbounded symbolic +# variable with a corresponding type. Otherwise, an exception will be thrown. +# Default value is false since it is not a common situation when you cannot retrieve a body +# from a regular method. Setting this option in true might be suitable in situations when +# it is more important not to fall at all rather than work precisely. +#treatAbsentMethodsAsUnboundedValue=false + +# +# A maximum size for any array in the program. Note that input arrays might be less than this value +# due to the symbolic engine limitation, see `org.utbot.engine.Traverser.softMaxArraySize`. +# +# Default value is [1024] +#maxArraySize=1024 + +# +# A maximum size for any array in the program. Note that input arrays might be less than this value +# due to the symbolic engine limitation, see `org.utbot.engine.Traverser.softMaxArraySize`. +# +# Default value is [false] +#disableUnsatChecking=false diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index fd68099af8..0d370e78ac 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -63,8 +63,8 @@ intellij { when (ideType) { "IC" -> jvmPlugins + kotlinPlugins + pythonCommunityPlugins "IU" -> jvmPlugins + kotlinPlugins + pythonUltimatePlugins - "PC" -> jvmPlugins + kotlinPlugins + pythonCommunityPlugins - "PY" -> jvmPlugins + kotlinPlugins + pythonUltimatePlugins // something else, JS? + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins // something else, JS? else -> jvmPlugins } ) diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index c1474a9ef8..7d633ef1e1 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -8,6 +8,7 @@ import com.intellij.openapi.editor.Editor import com.intellij.openapi.fileEditor.FileDocumentManager import com.intellij.openapi.module.Module import com.intellij.openapi.module.ModuleUtilCore +import com.intellij.openapi.module.impl.ModuleImpl import com.intellij.openapi.progress.ProgressIndicator import com.intellij.openapi.progress.ProgressManager import com.intellij.openapi.progress.Task.Backgroundable @@ -24,14 +25,14 @@ import com.jetbrains.python.psi.PyElement import com.jetbrains.python.psi.PyFile import com.jetbrains.python.psi.PyFunction import com.jetbrains.python.psi.resolve.QualifiedNameFinder +import com.jetbrains.python.sdk.pythonSdk import mu.KotlinLogging -import org.jetbrains.kotlin.idea.base.util.module -import org.jetbrains.kotlin.idea.base.util.sdk +//import org.jetbrains.kotlin.idea.base.util.module +//import org.jetbrains.kotlin.idea.base.util.sdk import org.utbot.common.PathUtil.toPath import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.settings.Settings import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater -import org.utbot.intellij.plugin.ui.utils.testModules import org.utbot.python.PythonMethodHeader import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.utils.RequirementsInstaller @@ -119,7 +120,7 @@ object PythonDialogProcessor { } } } - val pythonPath = getPythonPath(elementsToShow) + val pythonPath = getPythonPath(project) if (pythonPath == null) { showErrorDialogLater( project, @@ -146,8 +147,6 @@ object PythonDialogProcessor { focusedElement: PyElement?, pythonPath: String, ): PythonDialogWindow { - val srcModules = findSrcModules(elementsToShow) - val testModules = srcModules.flatMap {it.testModules(project)} val focusedElements = focusedElement ?.let { setOf(focusedElement.toUtPyTableItem()).filterNotNull() } ?.toSet() @@ -155,8 +154,6 @@ object PythonDialogProcessor { return PythonDialogWindow( PythonTestsModel( project, - srcModules.first(), - testModules, elementsToShow, focusedElements, project.service().generationTimeoutInMillis, @@ -334,12 +331,12 @@ object PythonDialogProcessor { } } -fun getPythonPath(elementsToShow: Set): String? { - return findSrcModules(elementsToShow).first().sdk?.homePath +fun getPythonPath(project: Project): String? { + return project.pythonSdk?.homePath } fun findSrcModules(elements: Collection): List { - return elements.mapNotNull { it.module }.distinct() + return listOf(ModuleImpl("", elements.first().project)) } fun getSrcModule(element: PyElement): Module { diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt index 29a8c20e65..ebe3c174c9 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt @@ -1,6 +1,6 @@ package org.utbot.intellij.plugin.python -import com.intellij.codeInsight.CodeInsightUtil +//import com.intellij.codeInsight.CodeInsightUtil import com.intellij.openapi.application.invokeLater import com.intellij.openapi.application.runWriteAction import com.intellij.openapi.project.Project @@ -31,7 +31,7 @@ class PythonIntellijProcessor( testDir.findFile(testPsiFile.name)?.delete() testDir.add(testPsiFile) val file = testDir.findFile(testPsiFile.name)!! - CodeInsightUtil.positionCursor(model.project, file, file) +// CodeInsightUtil.positionCursor(model.project, file, file) } } } diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt index 1153ee7e08..a0ce0e4984 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonTestsModel.kt @@ -1,6 +1,5 @@ package org.utbot.intellij.plugin.python -import com.intellij.openapi.module.Module import com.intellij.openapi.project.Project import com.jetbrains.python.psi.PyClass import com.jetbrains.python.psi.PyElement @@ -13,8 +12,6 @@ import org.utbot.intellij.plugin.models.BaseTestsModel class PythonTestsModel( project: Project, - srcModule: Module, - potentialTestModules: List, val elementsToDisplay: Set, val focusedElements: Set?, var timeout: Long, @@ -24,8 +21,6 @@ class PythonTestsModel( val names: Map, PyElement>, ) : BaseTestsModel( project, - srcModule, - potentialTestModules ) { lateinit var testSourceRootPath: String lateinit var testFramework: TestFramework diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt index 4edaf85e23..364e2d6b26 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt @@ -15,8 +15,8 @@ import com.intellij.psi.util.PsiTreeUtil import com.jetbrains.python.psi.PyClass import com.jetbrains.python.psi.PyFile import com.jetbrains.python.psi.PyFunction -import org.jetbrains.kotlin.idea.core.util.toPsiDirectory -import org.jetbrains.kotlin.idea.core.util.toPsiFile +//import org.jetbrains.kotlin.idea.core.util.toPsiDirectory +//import org.jetbrains.kotlin.idea.core.util.toPsiFile import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import org.utbot.intellij.plugin.python.* @@ -140,8 +140,8 @@ object PythonLanguageAssistant : LanguageAssistant() { } private fun getAllElements(project: Project, virtualFiles: Collection): Pair, Set> { - val psiFiles = virtualFiles.mapNotNull { it.toPsiFile(project) } - val psiDirectories = virtualFiles.mapNotNull { it.toPsiDirectory(project) } + val psiFiles = virtualFiles.filterIsInstance() + val psiDirectories = virtualFiles.filterIsInstance() val classes = psiFiles.flatMap { getClassesFromFile(it) }.toMutableSet() val functions = psiFiles.flatMap { getFunctionsFromFile(it) }.toMutableSet() diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index afd5662b64..7dd7e6a556 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -29,6 +29,8 @@ val junit4PlatformVersion: String by rootProject // https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" +project.tasks.asMap["runIde"]?.enabled = false + plugins { id("org.jetbrains.intellij") version "1.13.1" } diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerationController.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerationController.kt index 8c0e78c69d..550c366084 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerationController.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/CodeGenerationController.kt @@ -72,9 +72,6 @@ import org.utbot.framework.codegen.tree.ututils.UtilClassKind import org.utbot.framework.codegen.tree.ututils.UtilClassKind.Companion.UT_UTILS_INSTANCE_NAME import org.utbot.framework.plugin.api.ClassId import org.utbot.framework.plugin.api.CodegenLanguage -import org.utbot.framework.plugin.api.util.utContext -import org.utbot.framework.plugin.api.util.withUtContext -import org.utbot.framework.plugin.api.utils.ClassNameUtils.generateTestClassShortName import org.utbot.intellij.plugin.inspection.UnitTestBotInspectionManager import org.utbot.intellij.plugin.models.GenerateTestsModel import org.utbot.intellij.plugin.models.packageName @@ -90,7 +87,6 @@ import org.utbot.intellij.plugin.ui.WarningTestsReportNotifier import org.utbot.intellij.plugin.ui.utils.getOrCreateSarifReportsPath import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater import org.utbot.intellij.plugin.ui.utils.suitableTestSourceRoots -import org.utbot.intellij.plugin.util.IntelliJApiHelper import org.utbot.intellij.plugin.util.IntelliJApiHelper.Target.EDT_LATER import org.utbot.intellij.plugin.util.IntelliJApiHelper.Target.THREAD_POOL import org.utbot.intellij.plugin.util.IntelliJApiHelper.Target.WRITE_ACTION diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt index bf071056e4..c382cf30e1 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt @@ -8,12 +8,17 @@ import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.StaticsMocking import org.utbot.framework.codegen.domain.TestFramework import com.intellij.openapi.module.Module +import com.intellij.openapi.module.ModuleUtil import com.intellij.openapi.project.Project +import com.intellij.openapi.vfs.VirtualFile +import com.intellij.openapi.vfs.newvfs.impl.FakeVirtualFile import com.intellij.psi.PsiClass import com.intellij.psi.PsiJavaFile +import com.intellij.psi.search.GlobalSearchScope import com.intellij.refactoring.util.classMembers.MemberInfo import org.jetbrains.concurrency.Promise import org.jetbrains.kotlin.psi.KtFile +import org.utbot.common.PathUtil.fileExtension import org.utbot.framework.SummariesGenerationType import org.utbot.framework.UtSettings import org.utbot.framework.plugin.api.ClassId @@ -24,12 +29,28 @@ import org.utbot.framework.plugin.api.SpringTestType import org.utbot.framework.plugin.api.SpringSettings import org.utbot.framework.util.ConflictTriggers import org.utbot.intellij.plugin.settings.Settings +import org.utbot.intellij.plugin.ui.utils.* +import java.nio.file.Files +import javax.xml.parsers.DocumentBuilder +import javax.xml.parsers.DocumentBuilderFactory +import kotlin.streams.asSequence + +const val HISTORY_LIMIT = 10 + +const val SPRINGBOOT_APPLICATION_FQN = "org.springframework.boot.autoconfigure.SpringBootApplication" +const val SPRINGBOOT_CONFIGURATION_FQN = "org.springframework.boot.SpringBootConfiguration" +const val SPRING_CONFIGURATION_ANNOTATION_FQN = "org.springframework.context.annotation.Configuration" +const val SPRING_TESTCONFIGURATION_ANNOTATION_FQN = "org.springframework.boot.test.context.TestConfiguration" + +const val SPRING_BEANS_SCHEMA_URL = "http://www.springframework.org/schema/beans" +const val SPRING_LOAD_DTD_GRAMMAR_PROPERTY = "http://apache.org/xml/features/nonvalidating/load-dtd-grammar" +const val SPRING_LOAD_EXTERNAL_DTD_PROPERTY = "http://apache.org/xml/features/nonvalidating/load-external-dtd" class GenerateTestsModel( project: Project, - srcModule: Module, - potentialTestModules: List, - srcClasses: Set, + val srcModule: Module, + val potentialTestModules: List, + var srcClasses: Set, val extractMembersFromSrcClasses: Boolean, var selectedMembers: Set, var timeout: Long, @@ -37,10 +58,11 @@ class GenerateTestsModel( var fuzzingValue: Double = 0.05 ): BaseTestsModel( project, - srcModule, - potentialTestModules, - srcClasses ) { + // GenerateTestsModel is supposed to be created with non-empty list of potentialTestModules. + // Otherwise, the error window is supposed to be shown earlier. + var testModule: Module = potentialTestModules.firstOrNull() ?: error("Empty list of test modules in model") + override var sourceRootHistory = project.service().sourceRootHistory override var codegenLanguage = project.service().codegenLanguage @@ -65,6 +87,145 @@ class GenerateTestsModel( var runGeneratedTestsWithCoverage : Boolean = false var summariesGenerationType : SummariesGenerationType = UtSettings.summaryGenerationType + + fun setSourceRootAndFindTestModule(newTestSourceRoot: VirtualFile?) { + requireNotNull(newTestSourceRoot) + testSourceRoot = newTestSourceRoot + var target = newTestSourceRoot + while (target != null && target is FakeVirtualFile) { + target = target.parent + } + if (target == null) { + error("Could not find module for $newTestSourceRoot") + } + + testModule = ModuleUtil.findModuleForFile(target, project) + ?: error("Could not find module for $newTestSourceRoot") + } + + val isMultiPackage: Boolean by lazy { + srcClasses.map { it.packageName }.distinct().size != 1 + } + + fun getAllTestSourceRoots() : MutableList { + with(if (project.isBuildWithGradle) project.allModules() else potentialTestModules) { + return this.flatMap { it.suitableTestSourceRoots().toList() }.toMutableList().distinct().toMutableList() + } + } + + fun getSortedTestRoots(): MutableList = getSortedTestRoots( + getAllTestSourceRoots(), + sourceRootHistory, + srcModule.rootManager.sourceRoots.map { file: VirtualFile -> file.toNioPath().toString() }, + codegenLanguage + ) + + /** + * Finds @SpringBootApplication classes in Spring application. + * + * @see [getSortedAnnotatedClasses] + */ + fun getSortedSpringBootApplicationClasses(): Set = + getSortedAnnotatedClasses(SPRINGBOOT_CONFIGURATION_FQN) + + getSortedAnnotatedClasses(SPRINGBOOT_APPLICATION_FQN) + + /** + * Finds @TestConfiguration and @Configuration classes in Spring application. + * + * @see [getSortedAnnotatedClasses] + */ + fun getSortedSpringConfigurationClasses(): Set = + getSortedAnnotatedClasses(SPRING_TESTCONFIGURATION_ANNOTATION_FQN) + + getSortedAnnotatedClasses(SPRING_CONFIGURATION_ANNOTATION_FQN) + + /** + * Finds classes annotated with given annotation in [srcModule] and [potentialTestModules]. + * + * Sorting order: + * - classes from test source roots (in the order provided by [getSortedTestRoots]) + * - classes from production source roots + */ + private fun getSortedAnnotatedClasses(annotationFqn: String): Set { + val searchScope = + potentialTestModules + .fold(GlobalSearchScope.moduleScope(srcModule)) { accScope, module -> + accScope.union(GlobalSearchScope.moduleScope(module)) + } + + val annotationClass = JavaPsiFacade + .getInstance(project) + .findClass(annotationFqn, GlobalSearchScope.allScope(project)) + ?: return emptySet() + + val testRootToIndex = + getSortedTestRoots() + .withIndex() + .associate { (i, root) -> root.dir to i } + + return AnnotatedElementsSearch + .searchPsiClasses(annotationClass, searchScope) + .findAll() + .sortedBy { testRootToIndex[it.containingFile.sourceRoot] ?: Int.MAX_VALUE } + .mapNotNullTo(mutableSetOf()) { it.binaryName } + } + + fun getSpringXMLConfigurationFiles(): Set { + val resourcesPaths = + buildList { + addAll(potentialTestModules) + add(srcModule) + }.distinct().flatMapTo(mutableSetOf()) { it.getResourcesPaths() } + val xmlFilePaths = resourcesPaths.flatMapTo(mutableListOf()) { path -> + Files.walk(path) + .asSequence() + .filter { it.fileExtension == ".xml" } + } + + val builder = customizeXmlBuilder() + return xmlFilePaths.mapNotNullTo(mutableSetOf()) { path -> + try { + val doc = builder.parse(path.toFile()) + + val hasBeanTagName = doc.documentElement.tagName == "beans" + val hasAttribute = doc.documentElement.getAttribute("xmlns") == SPRING_BEANS_SCHEMA_URL + when { + hasBeanTagName && hasAttribute -> path.toString() + else -> null + } + } catch (e: Exception) { + // `DocumentBuilder.parse` is an unpredictable operation, may have some side effects, we suppress them. + null + } + } + } + + /** + * Creates "safe" xml builder instance. + * + * Using standard `DocumentBuilderFactory.newInstance()` may lead to some problems like + * https://stackoverflow.com/questions/343383/unable-to-parse-xml-file-using-documentbuilder. + * + * We try to solve it in accordance with top-rated recommendation here + * https://stackoverflow.com/questions/155101/make-documentbuilder-parse-ignore-dtd-references. + */ + private fun customizeXmlBuilder(): DocumentBuilder { + val builderFactory = DocumentBuilderFactory.newInstance() + builderFactory.isNamespaceAware = true + + // See documentation https://xerces.apache.org/xerces2-j/features.html + builderFactory.setFeature(SPRING_LOAD_DTD_GRAMMAR_PROPERTY, false) + builderFactory.setFeature(SPRING_LOAD_EXTERNAL_DTD_PROPERTY, false) + + return builderFactory.newDocumentBuilder() + } + + fun updateSourceRootHistory(path: String) { + sourceRootHistory.apply { + remove(path)//Remove existing entry if any + add(path)//Add the most recent entry to the end to be brought first at sorting, see org.utbot.intellij.plugin.ui.utils.RootUtilsKt.getSortedTestRoots + while (size > HISTORY_LIMIT) removeFirst() + } + } } val PsiClass.packageName: String diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt similarity index 94% rename from utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt rename to utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt index 618df2cf6c..a57e63a9e4 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt @@ -14,14 +14,14 @@ import com.intellij.ui.ColoredListCellRenderer import com.intellij.ui.SimpleTextAttributes import com.intellij.util.ArrayUtil import com.intellij.util.ui.UIUtil -import java.io.File -import javax.swing.DefaultComboBoxModel -import javax.swing.JList import org.utbot.common.PathUtil import org.utbot.intellij.plugin.models.BaseTestsModel import org.utbot.intellij.plugin.ui.utils.ITestSourceRoot import org.utbot.intellij.plugin.ui.utils.addDedicatedTestRoot import org.utbot.intellij.plugin.ui.utils.isBuildWithGradle +import java.io.File +import javax.swing.DefaultComboBoxModel +import javax.swing.JList private const val SET_TEST_FOLDER = "set test folder" @@ -77,7 +77,7 @@ class TestFolderComboWithBrowseButton(private val model: BaseTestsModel) : } else { //Prepend and select newly added test root val testRootItems = linkedSetOf(it) - testRootItems += (0 until childComponent.itemCount).map { i -> childComponent.getItemAt(i) as VirtualFile} + testRootItems += (0 until childComponent.itemCount).map { i -> childComponent.getItemAt(i) as VirtualFile } newItemList(testRootItems) } } @@ -86,9 +86,12 @@ class TestFolderComboWithBrowseButton(private val model: BaseTestsModel) : private fun chooseTestRoot(model: BaseTestsModel): VirtualFile? = ReadAction.compute { - val desc = object:FileChooserDescriptor(false, true, false, false, false, false) { + val desc = object : FileChooserDescriptor(false, true, false, false, false, false) { override fun isFileSelectable(file: VirtualFile?): Boolean { - return file != null && ModuleUtil.findModuleForFile(file, model.project) != null && super.isFileSelectable(file) + return file != null && ModuleUtil.findModuleForFile( + file, + model.project + ) != null && super.isFileSelectable(file) } } val initialFile = model.project.guessProjectDir() diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt similarity index 99% rename from utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt rename to utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt index f9cf089061..5f18c2a0cb 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/ModuleUtils.kt @@ -148,7 +148,7 @@ fun Module.suitableTestSourceRoots(): List { .mapNotNull { it.testSourceRoot } } -private val SourceFolder.testSourceRoot:TestSourceRoot? +private val SourceFolder.testSourceRoot: TestSourceRoot? get() { val file = file val expectedLanguage = expectedLanguageForTests diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtils.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtils.kt similarity index 100% rename from utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtils.kt rename to utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtils.kt diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/util/PsiClassHelper.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/util/PsiClassHelper.kt similarity index 100% rename from utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/util/PsiClassHelper.kt rename to utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/util/PsiClassHelper.kt diff --git a/utbot-ui-commons/src/test/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtilsTest.kt b/utbot-intellij/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt similarity index 93% rename from utbot-ui-commons/src/test/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtilsTest.kt rename to utbot-intellij/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt index cbc295104f..ad36792ce7 100644 --- a/utbot-ui-commons/src/test/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtilsTest.kt +++ b/utbot-intellij/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt @@ -1,8 +1,12 @@ -package org.utbot.intellij.plugin.ui.utils +package org.utbot.tests import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test import org.utbot.framework.plugin.api.CodegenLanguage +import org.utbot.intellij.plugin.ui.utils.ITestSourceRoot +import org.utbot.intellij.plugin.ui.utils.SRC_MAIN +import org.utbot.intellij.plugin.ui.utils.getCommonPrefix +import org.utbot.intellij.plugin.ui.utils.getSortedTestRoots internal class RootUtilsTest { internal class MockTestSourceRoot(override val dirPath: String) : ITestSourceRoot { diff --git a/utbot-python/samples/my_cov.json b/utbot-python/samples/my_cov.json new file mode 100644 index 0000000000..b131ee2c2b --- /dev/null +++ b/utbot-python/samples/my_cov.json @@ -0,0 +1 @@ +{"covered":[{"start":4,"end":4},{"start":12,"end":15},{"start":17,"end":17}],"notCovered":[{"start":5,"end":10},{"start":16,"end":16}]} \ No newline at end of file diff --git a/utbot-ui-commons/build.gradle.kts b/utbot-ui-commons/build.gradle.kts index 608d02e918..0e32940387 100644 --- a/utbot-ui-commons/build.gradle.kts +++ b/utbot-ui-commons/build.gradle.kts @@ -15,8 +15,8 @@ intellij { type.set(ideType) plugins.set(listOf( - "java", - "org.jetbrains.android" +// "java", +// "org.jetbrains.android" )) } diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt index 2e383a36c7..fd3e5c6e32 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt @@ -11,8 +11,8 @@ import com.intellij.psi.PsiDirectory import com.intellij.psi.PsiElement import com.intellij.psi.PsiFile import com.intellij.psi.PsiFileSystemItem -import org.jetbrains.kotlin.idea.core.util.toPsiDirectory -import org.jetbrains.kotlin.idea.core.util.toPsiFile +//import org.jetbrains.kotlin.idea.core.util.toPsiDirectory +//import org.jetbrains.kotlin.idea.core.util.toPsiFile private val logger = KotlinLogging.logger {} @@ -84,9 +84,20 @@ abstract class LanguageAssistant { } private fun findLanguageRecursively(project: Project, virtualFiles: Array): Language? { - val psiFiles = virtualFiles.mapNotNull { it.toPsiFile(project) } - val psiDirectories = virtualFiles.mapNotNull { it.toPsiDirectory(project) } - + val psiFiles = virtualFiles.mapNotNull { + if (it is PsiFile) { + it + } + else null + } + val psiDirectories = virtualFiles.mapNotNull { + if (it is PsiDirectory) { + it + } + else null + } +// val psiFiles = virtualFiles.mapNotNull { it.getPsiFile(project) } +// val psiDirectories = virtualFiles.mapNotNull { it. .toPsiDirectory(project) } val fileLanguage = psiFiles.firstNotNullOfOrNull { getLanguageFromFile(it) } return fileLanguage ?: psiDirectories.firstNotNullOfOrNull { findLanguageRecursively(it) } diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/models/BaseTestModel.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/models/BaseTestModel.kt index 321a2af4e9..c6d22c4530 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/models/BaseTestModel.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/models/BaseTestModel.kt @@ -1,197 +1,17 @@ package org.utbot.intellij.plugin.models -import com.intellij.openapi.module.Module -import com.intellij.openapi.module.ModuleUtil import com.intellij.openapi.project.Project import com.intellij.openapi.vfs.VirtualFile -import com.intellij.openapi.vfs.newvfs.impl.FakeVirtualFile -import com.intellij.psi.JavaPsiFacade -import com.intellij.psi.PsiClass -import com.intellij.psi.search.GlobalSearchScope -import com.intellij.psi.search.searches.AnnotatedElementsSearch -import org.jetbrains.kotlin.idea.core.getPackage -import org.jetbrains.kotlin.idea.util.projectStructure.allModules -import org.jetbrains.kotlin.idea.util.rootManager -import org.jetbrains.kotlin.idea.util.sourceRoot -import org.utbot.common.PathUtil.fileExtension import org.utbot.framework.codegen.domain.ProjectType import org.utbot.framework.plugin.api.CodegenLanguage -import org.utbot.intellij.plugin.ui.utils.ITestSourceRoot -import org.utbot.intellij.plugin.ui.utils.getResourcesPaths -import org.utbot.intellij.plugin.ui.utils.getSortedTestRoots -import org.utbot.intellij.plugin.ui.utils.isBuildWithGradle -import org.utbot.intellij.plugin.ui.utils.suitableTestSourceRoots -import org.utbot.intellij.plugin.util.binaryName -import java.nio.file.Files -import javax.xml.parsers.DocumentBuilder -import javax.xml.parsers.DocumentBuilderFactory -import kotlin.streams.asSequence -val PsiClass.packageName: String get() = this.containingFile.containingDirectory.getPackage()?.qualifiedName ?: "" -const val HISTORY_LIMIT = 10 - -const val SPRINGBOOT_APPLICATION_FQN = "org.springframework.boot.autoconfigure.SpringBootApplication" -const val SPRINGBOOT_CONFIGURATION_FQN = "org.springframework.boot.SpringBootConfiguration" -const val SPRING_CONFIGURATION_ANNOTATION_FQN = "org.springframework.context.annotation.Configuration" -const val SPRING_TESTCONFIGURATION_ANNOTATION_FQN = "org.springframework.boot.test.context.TestConfiguration" - -const val SPRING_BEANS_SCHEMA_URL = "http://www.springframework.org/schema/beans" -const val SPRING_LOAD_DTD_GRAMMAR_PROPERTY = "http://apache.org/xml/features/nonvalidating/load-dtd-grammar" -const val SPRING_LOAD_EXTERNAL_DTD_PROPERTY = "http://apache.org/xml/features/nonvalidating/load-external-dtd" - open class BaseTestsModel( val project: Project, - val srcModule: Module, - val potentialTestModules: List, - var srcClasses: Set = emptySet(), ) { - // GenerateTestsModel is supposed to be created with non-empty list of potentialTestModules. - // Otherwise, the error window is supposed to be shown earlier. - var testModule: Module = potentialTestModules.firstOrNull() ?: error("Empty list of test modules in model") - var testSourceRoot: VirtualFile? = null var testPackageName: String? = null open var sourceRootHistory : MutableList = mutableListOf() open lateinit var codegenLanguage: CodegenLanguage open lateinit var projectType: ProjectType - - fun setSourceRootAndFindTestModule(newTestSourceRoot: VirtualFile?) { - requireNotNull(newTestSourceRoot) - testSourceRoot = newTestSourceRoot - var target = newTestSourceRoot - while (target != null && target is FakeVirtualFile) { - target = target.parent - } - if (target == null) { - error("Could not find module for $newTestSourceRoot") - } - - testModule = ModuleUtil.findModuleForFile(target, project) - ?: error("Could not find module for $newTestSourceRoot") - } - - val isMultiPackage: Boolean by lazy { - srcClasses.map { it.packageName }.distinct().size != 1 - } - - fun getAllTestSourceRoots() : MutableList { - with(if (project.isBuildWithGradle) project.allModules() else potentialTestModules) { - return this.flatMap { it.suitableTestSourceRoots().toList() }.toMutableList().distinct().toMutableList() - } - } - - fun getSortedTestRoots(): MutableList = getSortedTestRoots( - getAllTestSourceRoots(), - sourceRootHistory, - srcModule.rootManager.sourceRoots.map { file: VirtualFile -> file.toNioPath().toString() }, - codegenLanguage - ) - - /** - * Finds @SpringBootApplication classes in Spring application. - * - * @see [getSortedAnnotatedClasses] - */ - fun getSortedSpringBootApplicationClasses(): Set = - getSortedAnnotatedClasses(SPRINGBOOT_CONFIGURATION_FQN) + - getSortedAnnotatedClasses(SPRINGBOOT_APPLICATION_FQN) - - /** - * Finds @TestConfiguration and @Configuration classes in Spring application. - * - * @see [getSortedAnnotatedClasses] - */ - fun getSortedSpringConfigurationClasses(): Set = - getSortedAnnotatedClasses(SPRING_TESTCONFIGURATION_ANNOTATION_FQN) + - getSortedAnnotatedClasses(SPRING_CONFIGURATION_ANNOTATION_FQN) - - /** - * Finds classes annotated with given annotation in [srcModule] and [potentialTestModules]. - * - * Sorting order: - * - classes from test source roots (in the order provided by [getSortedTestRoots]) - * - classes from production source roots - */ - private fun getSortedAnnotatedClasses(annotationFqn: String): Set { - val searchScope = - potentialTestModules - .fold(GlobalSearchScope.moduleScope(srcModule)) { accScope, module -> - accScope.union(GlobalSearchScope.moduleScope(module)) - } - - val annotationClass = JavaPsiFacade - .getInstance(project) - .findClass(annotationFqn, GlobalSearchScope.allScope(project)) - ?: return emptySet() - - val testRootToIndex = - getSortedTestRoots() - .withIndex() - .associate { (i, root) -> root.dir to i } - - return AnnotatedElementsSearch - .searchPsiClasses(annotationClass, searchScope) - .findAll() - .sortedBy { testRootToIndex[it.containingFile.sourceRoot] ?: Int.MAX_VALUE } - .mapNotNullTo(mutableSetOf()) { it.binaryName } - } - - fun getSpringXMLConfigurationFiles(): Set { - val resourcesPaths = - buildList { - addAll(potentialTestModules) - add(srcModule) - }.distinct().flatMapTo(mutableSetOf()) { it.getResourcesPaths() } - val xmlFilePaths = resourcesPaths.flatMapTo(mutableListOf()) { path -> - Files.walk(path) - .asSequence() - .filter { it.fileExtension == ".xml" } - } - - val builder = customizeXmlBuilder() - return xmlFilePaths.mapNotNullTo(mutableSetOf()) { path -> - try { - val doc = builder.parse(path.toFile()) - - val hasBeanTagName = doc.documentElement.tagName == "beans" - val hasAttribute = doc.documentElement.getAttribute("xmlns") == SPRING_BEANS_SCHEMA_URL - when { - hasBeanTagName && hasAttribute -> path.toString() - else -> null - } - } catch (e: Exception) { - // `DocumentBuilder.parse` is an unpredictable operation, may have some side effects, we suppress them. - null - } - } - } - - /** - * Creates "safe" xml builder instance. - * - * Using standard `DocumentBuilderFactory.newInstance()` may lead to some problems like - * https://stackoverflow.com/questions/343383/unable-to-parse-xml-file-using-documentbuilder. - * - * We try to solve it in accordance with top-rated recommendation here - * https://stackoverflow.com/questions/155101/make-documentbuilder-parse-ignore-dtd-references. - */ - private fun customizeXmlBuilder(): DocumentBuilder { - val builderFactory = DocumentBuilderFactory.newInstance() - builderFactory.isNamespaceAware = true - - // See documentation https://xerces.apache.org/xerces2-j/features.html - builderFactory.setFeature(SPRING_LOAD_DTD_GRAMMAR_PROPERTY, false) - builderFactory.setFeature(SPRING_LOAD_EXTERNAL_DTD_PROPERTY, false) - - return builderFactory.newDocumentBuilder() - } - - fun updateSourceRootHistory(path: String) { - sourceRootHistory.apply { - remove(path)//Remove existing entry if any - add(path)//Add the most recent entry to the end to be brought first at sorting, see org.utbot.intellij.plugin.ui.utils.RootUtilsKt.getSortedTestRoots - while (size > HISTORY_LIMIT) removeFirst() - } - } } diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt similarity index 100% rename from utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt rename to utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt similarity index 91% rename from utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt rename to utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt index 133167ff2e..1e790f6341 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt @@ -11,9 +11,8 @@ import com.intellij.openapi.ui.cellvalidators.CellComponentProvider import com.intellij.openapi.ui.cellvalidators.CellTooltipManager import com.intellij.openapi.ui.cellvalidators.ValidatingTableCellRendererWrapper import com.intellij.openapi.util.Disposer -import com.intellij.psi.JavaPsiFacade -import com.intellij.psi.PsiClass -import com.intellij.psi.search.GlobalSearchScope +//import com.intellij.psi.JavaPsiFacade +//import com.intellij.psi.PsiClass import com.intellij.ui.components.fields.ExtendableTextField import com.intellij.ui.table.JBTable import com.intellij.util.ui.ColumnInfo @@ -33,7 +32,7 @@ internal class MockAlwaysClassesTable(project: Project) : ListTableWithButtons Date: Tue, 12 Sep 2023 10:30:42 +0300 Subject: [PATCH 003/144] Forks in python fuzzing and refactoring (#2588) (cherry picked from commit 45e1d371e6470d93dcc2cf480c77f5c9117b9d02) --- .../cli/language/python/PythonCliProcessor.kt | 16 ++- .../python/PythonGenerateTestsCommand.kt | 9 +- .../main/python/utbot_executor/pyproject.toml | 2 +- .../src/main/resources/utbot_executor_version | 2 +- .../generated_tests__arithmetic.py | 40 ------ .../generated_tests__deep_equals.py | 87 ----------- .../cli_utbot_tests/generated_tests__deque.py | 35 ----- .../cli_utbot_tests/generated_tests__dicts.py | 44 ------ .../generated_tests__dummy_with_eq.py | 39 ----- .../generated_tests__dummy_without_eq.py | 36 ----- .../cli_utbot_tests/generated_tests__graph.py | 36 ----- .../generated_tests__list_of_datetime.py | 32 ----- .../cli_utbot_tests/generated_tests__lists.py | 21 --- .../generated_tests__longest_subsequence.py | 25 ---- .../generated_tests__matrix.py | 41 ------ .../generated_tests__primitive_types.py | 40 ------ .../generated_tests__quick_sort.py | 30 ---- .../generated_tests__test_coverage.py | 35 ----- .../generated_tests__type_inference.py | 20 --- .../generated_tests__using_collections.py | 23 --- utbot-python/samples/generate_test_samples.sh | 24 ---- utbot-python/samples/run_test_samples.sh | 24 ---- .../samples/collection/using_collections.py | 2 + .../named_arguments/method_named_arguments.py | 3 +- .../testing_utils/collect_executions.py | 34 +++++ .../samples/testing_utils/collect_timeouts.py | 41 ++++++ utbot-python/samples/testing_utils/compare.py | 25 ++++ .../kotlin/org/utbot/python/PythonEngine.kt | 60 +++++--- .../utbot/python/PythonTestCaseGenerator.kt | 136 ++++++------------ .../kotlin/org/utbot/python/UTPythonAPI.kt | 1 + .../tree/PythonTestFrameworkManager.kt | 9 +- .../org/utbot/python/fuzzing/PythonApi.kt | 82 ++++++++++- .../fuzzing/provider/BoolValueProvider.kt | 3 +- .../fuzzing/provider/ComplexValueProvider.kt | 14 +- .../fuzzing/provider/ConstantValueProvider.kt | 3 +- .../fuzzing/provider/FloatValueProvider.kt | 5 +- .../fuzzing/provider/IntValueProvider.kt | 3 +- .../fuzzing/provider/NoneValueProvider.kt | 3 +- .../fuzzing/provider/ReduceValueProvider.kt | 3 +- .../inference/TypeInferenceAlgorithmAPI.kt | 2 - .../inference/TypeInferenceProcessor.kt | 3 +- .../inference/baseline/BaselineAlgorithm.kt | 105 ++++++++++++-- .../utils/TestGenerationLimitManager.kt | 10 +- 43 files changed, 420 insertions(+), 788 deletions(-) delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__arithmetic.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__deep_equals.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__deque.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__dicts.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__dummy_with_eq.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__dummy_without_eq.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__graph.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__list_of_datetime.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__lists.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__longest_subsequence.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__matrix.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__primitive_types.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__quick_sort.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__test_coverage.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__type_inference.py delete mode 100644 utbot-python/samples/cli_utbot_tests/generated_tests__using_collections.py delete mode 100644 utbot-python/samples/generate_test_samples.sh delete mode 100755 utbot-python/samples/run_test_samples.sh create mode 100644 utbot-python/samples/testing_utils/collect_executions.py create mode 100644 utbot-python/samples/testing_utils/collect_timeouts.py create mode 100644 utbot-python/samples/testing_utils/compare.py diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonCliProcessor.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonCliProcessor.kt index d49b2895a9..4ded0545ac 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonCliProcessor.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonCliProcessor.kt @@ -10,6 +10,7 @@ class PythonCliProcessor( private val output: String, private val logger: KLogger, private val coverageOutput: String?, + private val executionCounterOutput: String?, ) : PythonTestGenerationProcessor() { override fun saveTests(testsCode: String) { @@ -22,9 +23,18 @@ class PythonCliProcessor( ) } + private fun getExecutionsNumber(testSets: List): Int { + return testSets.sumOf { it.executionsNumber } + } + override fun processCoverageInfo(testSets: List) { - val coverageReport = getStringCoverageInfo(testSets) - val output = coverageOutput ?: return - writeToFileAndSave(output, coverageReport) + coverageOutput?.let { output -> + val coverageReport = getStringCoverageInfo(testSets) + writeToFileAndSave(output, coverageReport) + } + executionCounterOutput?.let { executionOutput -> + val executionReport = "{\"executions\": ${getExecutionsNumber(testSets)}}" + writeToFileAndSave(executionOutput, executionReport) + } } } \ No newline at end of file diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index 981d2f9b4b..89448aebb9 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -76,6 +76,11 @@ class PythonGenerateTestsCommand : CliktCommand( help = "File to write coverage report." ) + private val executionCounterOutput by option( + "--executions-counter", + help = "File to write number of executions." + ) + private val installRequirementsIfMissing by option( "--install-requirements", help = "Install Python requirements if missing." @@ -255,6 +260,7 @@ class PythonGenerateTestsCommand : CliktCommand( output.toAbsolutePath(), logger, coverageOutput?.toAbsolutePath(), + executionCounterOutput?.toAbsolutePath(), ) logger.info("Loading information about Python types...") @@ -270,7 +276,8 @@ class PythonGenerateTestsCommand : CliktCommand( testSet.executions.filterNot { it.result is UtExecutionSuccess }, testSet.errors, testSet.mypyReport, - testSet.classId + testSet.classId, + testSet.executionsNumber ) } } diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 74249105ff..13b3063e09 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.4.44" +version = "1.7.0" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index b0a831507c..9dbb0c0052 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.4.44 \ No newline at end of file +1.7.0 \ No newline at end of file diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__arithmetic.py b/utbot-python/samples/cli_utbot_tests/generated_tests__arithmetic.py deleted file mode 100644 index fe6ecb2585..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__arithmetic.py +++ /dev/null @@ -1,40 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import arithmetic -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable arithmetic.calculate_function_value - # region - def test_calculate_function_value(self): - actual = arithmetic.calculate_function_value(1, 101) - - self.assertEqual(11886.327847992769, actual) - - def test_calculate_function_value1(self): - actual = arithmetic.calculate_function_value(4294967296, 101) - - self.assertEqual(65535.99845886229, actual) - - def test_calculate_function_value2(self): - actual = arithmetic.calculate_function_value(float('nan'), 4294967296) - - self.assertTrue(isinstance(actual, builtins.float)) - - def test_calculate_function_value_throws_t(self): - arithmetic.calculate_function_value(0, 101) - - # raises builtins.ZeroDivisionError - - def test_calculate_function_value_throws_t1(self): - arithmetic.calculate_function_value(101, 101) - - # raises builtins.ValueError - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__deep_equals.py b/utbot-python/samples/cli_utbot_tests/generated_tests__deep_equals.py deleted file mode 100644 index 3f04ba5a47..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__deep_equals.py +++ /dev/null @@ -1,87 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import deep_equals -import copyreg -import types -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable deep_equals.comparable_list - # region - def test_comparable_list(self): - actual = deep_equals.comparable_list(4294967296) - - comparable_class = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class.x = 0 - comparable_class1 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class1.x = 1 - comparable_class2 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class2.x = 2 - comparable_class3 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class3.x = 3 - comparable_class4 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class4.x = 4 - comparable_class5 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class5.x = 5 - comparable_class6 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class6.x = 6 - comparable_class7 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class7.x = 7 - comparable_class8 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class8.x = 8 - comparable_class9 = copyreg._reconstructor(deep_equals.ComparableClass, builtins.object, None) - comparable_class9.x = 9 - - self.assertEqual([comparable_class, comparable_class1, comparable_class2, comparable_class3, comparable_class4, comparable_class5, comparable_class6, comparable_class7, comparable_class8, comparable_class9], actual) - - # endregion - - # endregion - - # region Test suites for executable deep_equals.incomparable_list - # region - def test_incomparable_list(self): - actual = deep_equals.incomparable_list(4294967296) - - incomparable_class = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class.x = 0 - incomparable_class1 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class1.x = 1 - incomparable_class2 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class2.x = 2 - incomparable_class3 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class3.x = 3 - incomparable_class4 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class4.x = 4 - incomparable_class5 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class5.x = 5 - incomparable_class6 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class6.x = 6 - incomparable_class7 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class7.x = 7 - incomparable_class8 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class8.x = 8 - incomparable_class9 = copyreg._reconstructor(deep_equals.IncomparableClass, builtins.object, None) - incomparable_class9.x = 9 - expected_list = [incomparable_class, incomparable_class1, incomparable_class2, incomparable_class3, incomparable_class4, incomparable_class5, incomparable_class6, incomparable_class7, incomparable_class8, incomparable_class9] - expected_length = len(expected_list) - actual_length = len(actual) - - self.assertEqual(expected_length, actual_length) - - index = None - for index in range(0, expected_length, 1): - expected_element = expected_list[index] - actual_element = actual[index] - actual_x = actual_element.x - expected_x = expected_element.x - - self.assertEqual(expected_x, actual_x) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__deque.py b/utbot-python/samples/cli_utbot_tests/generated_tests__deque.py deleted file mode 100644 index fa4f36dee3..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__deque.py +++ /dev/null @@ -1,35 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import deque -import collections -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable deque.generate_people_deque - # region - def test_generate_people_deque(self): - actual = deque.generate_people_deque(4294967297) - - deque1 = collections.deque() - deque1.append('Alex') - deque1.append('Bob') - deque1.append('Cate') - deque1.append('Daisy') - deque1.append('Ed') - - self.assertEqual(deque1, actual) - - def test_generate_people_deque1(self): - actual = deque.generate_people_deque(0) - - deque1 = collections.deque() - - self.assertEqual(deque1, actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__dicts.py b/utbot-python/samples/cli_utbot_tests/generated_tests__dicts.py deleted file mode 100644 index aba188aa11..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__dicts.py +++ /dev/null @@ -1,44 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import types -import dicts -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable dicts.keys - - # region - - def test_keys(self): - word = dicts.Word({str(-123456789): str(), str(1.5 + 3.5j): str(), str(b'\x80'): str(), str(): str(1e+300 * 1e+300), str('unicode remains unicode'): str(), }) - - actual = word.keys() - - self.assertEqual(['-123456789', '(1.5+3.5j)', "b'\\x80'", '', 'unicode remains unicode'], actual) - # endregion - - # endregion - - # region Test suites for executable dicts.translate - - # region - - def test_translate(self): - dictionary = dicts.Dictionary([str(b'\xf0\xa3\x91\x96', 'utf-8'), str(id), str(1e+300 * 1e+300)], []) - - actual = dictionary.translate(str(id), str(1.5 + 3.5j)) - - self.assertEqual(None, actual) - - def test_translate_throws_t(self): - dictionary = dicts.Dictionary([], [{str(): str(), str(1e+300 * 1e+300): str(1e+300 * 1e+300), str(b'\x80'): str(), str(1.5 + 3.5j): str(), }, {str(-123456789): str(), str(id): str(), str(): str(), str(-1234567890): str(), }, {str(1.5 + 3.5j): str(), str(1e+300 * 1e+300): str(), str(-1234567890): str(), str(): str(1e+300 * 1e+300), }]) - - dictionary.translate(str('unicode remains unicode'), str(1.5 + 3.5j)) - - # raises builtins.KeyError - # endregion - - # endregion - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__dummy_with_eq.py b/utbot-python/samples/cli_utbot_tests/generated_tests__dummy_with_eq.py deleted file mode 100644 index f6eed2d5ab..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__dummy_with_eq.py +++ /dev/null @@ -1,39 +0,0 @@ -import sys -sys.path.append('samples') -import dummy_with_eq -import builtins -import copyreg -import types -import unittest - - -class TestDummy(unittest.TestCase): - # region Test suites for executable dummy_with_eq.propagate - # region - def test_propagate(self): - dummy = dummy_with_eq.Dummy(1) - - actual = dummy.propagate() - - dummy1 = copyreg._reconstructor(dummy_with_eq.Dummy, builtins.object, None) - dummy1.field = 1 - expected_list = [dummy1, dummy1] - expected_length = len(expected_list) - actual_length = len(actual) - - self.assertEqual(expected_length, actual_length) - - index = None - for index in range(0, expected_length, 1): - expected_element = expected_list[index] - actual_element = actual[index] - actual_field = actual_element.field - expected_field = expected_element.field - - self.assertEqual(expected_field, actual_field) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__dummy_without_eq.py b/utbot-python/samples/cli_utbot_tests/generated_tests__dummy_without_eq.py deleted file mode 100644 index 3a38c1f6b7..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__dummy_without_eq.py +++ /dev/null @@ -1,36 +0,0 @@ -import sys -sys.path.append('samples') -import dummy_without_eq -import builtins -import copyreg -import types -import unittest - - -class TestDummy(unittest.TestCase): - # region Test suites for executable dummy_without_eq.propagate - # region - def test_propagate(self): - dummy = dummy_without_eq.Dummy() - - actual = dummy.propagate() - - dummy1 = copyreg._reconstructor(dummy_without_eq.Dummy, builtins.object, None) - expected_list = [dummy1, dummy1] - expected_length = len(expected_list) - actual_length = len(actual) - - self.assertEqual(expected_length, actual_length) - - index = None - for index in range(0, expected_length, 1): - expected_element = expected_list[index] - actual_element = actual[index] - - self.assertTrue(isinstance(actual_element, dummy_without_eq.Dummy)) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__graph.py b/utbot-python/samples/cli_utbot_tests/generated_tests__graph.py deleted file mode 100644 index c383980fb6..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__graph.py +++ /dev/null @@ -1,36 +0,0 @@ -import sys -sys.path.append('samples') -import unittest -import builtins -import graph -import copyreg -import types - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable graph.bfs - # region - def test_bfs(self): - actual = graph.bfs([graph.Node(str(1e+300 * 1e+300), []), graph.Node(str(id), []), graph.Node(str('unicode remains unicode'), [])]) - - node = copyreg._reconstructor(graph.Node, builtins.object, None) - node.name = 'unicode remains unicode' - node.children = [] - node1 = copyreg._reconstructor(graph.Node, builtins.object, None) - node1.name = '' - node1.children = [] - node2 = copyreg._reconstructor(graph.Node, builtins.object, None) - node2.name = 'inf' - node2.children = [] - self.assertEqual([node, node1, node2], actual) - - def test_bfs1(self): - actual = graph.bfs([]) - - self.assertEqual([], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__list_of_datetime.py b/utbot-python/samples/cli_utbot_tests/generated_tests__list_of_datetime.py deleted file mode 100644 index 4339e26c0e..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__list_of_datetime.py +++ /dev/null @@ -1,32 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import list_of_datetime -import types -import datetime -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable list_of_datetime.get_data_labels - # region - def test_get_data_labels(self): - actual = list_of_datetime.get_data_labels({}) - - self.assertEqual(None, actual) - - def test_get_data_labels1(self): - actual = list_of_datetime.get_data_labels([datetime.time(0), datetime.time(microsecond=40), datetime.time(18, 45, 3, 1234), datetime.time(12, 0)]) - - self.assertEqual(['00:00', '00:00', '18:45', '12:00'], actual) - - def test_get_data_labels2(self): - actual = list_of_datetime.get_data_labels([datetime.time(microsecond=40), datetime.time()]) - - self.assertEqual(['1900-01-01', '1900-01-01'], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__lists.py b/utbot-python/samples/cli_utbot_tests/generated_tests__lists.py deleted file mode 100644 index 38d5289f30..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__lists.py +++ /dev/null @@ -1,21 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import lists -import datetime -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable lists.find_articles_with_author - # region - def test_find_articles_with_author(self): - actual = lists.find_articles_with_author([lists.Article(str(-123456789), str(b'\xf0\xa3\x91\x96', 'utf-8'), str('unicode remains unicode'), datetime.datetime(2015, 4, 5, 1, 45)), lists.Article(str(-123456789), str(b'\xf0\xa3\x91\x96', 'utf-8'), str('unicode remains unicode'), datetime.datetime(2011, 1, 1)), lists.Article(str(-123456789), str(b'\xf0\xa3\x91\x96', 'utf-8'), str(), datetime.datetime(1, 2, 3, 4, 5, 6, 7)), lists.Article(str(-123456789), str(b'\xf0\xa3\x91\x96', 'utf-8'), str(id), datetime.datetime(1, 2, 3, 4, 5, 6, 7)), lists.Article(str(-123456789), str(b'\xf0\xa3\x91\x96', 'utf-8'), str(id), datetime.datetime(2014, 11, 2, 1, 30)), lists.Article(str(-123456789), str(b'\xf0\xa3\x91\x96', 'utf-8'), str(id), datetime.datetime(1, 2, 3, 4, 5, 6, 7))], str('unicode remains unicode')) - - self.assertEqual([], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__longest_subsequence.py b/utbot-python/samples/cli_utbot_tests/generated_tests__longest_subsequence.py deleted file mode 100644 index 510171cbbc..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__longest_subsequence.py +++ /dev/null @@ -1,25 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import longest_subsequence -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable longest_subsequence.longest_subsequence - # region - def test_longest_subsequence(self): - actual = longest_subsequence.longest_subsequence([1, 83]) - - self.assertEqual([1, 83], actual) - - def test_longest_subsequence1(self): - actual = longest_subsequence.longest_subsequence([2, -1, 4294967296]) - - self.assertEqual([-1, 4294967296], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__matrix.py b/utbot-python/samples/cli_utbot_tests/generated_tests__matrix.py deleted file mode 100644 index db4d57758e..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__matrix.py +++ /dev/null @@ -1,41 +0,0 @@ -import sys -sys.path.append('samples') -import matrix -import builtins -import types -import copyreg -import unittest - - -class TestMatrix(unittest.TestCase): - # region Test suites for executable matrix.__add__ - - # region - - def test__add__(self): - matrix1 = matrix.Matrix([[float('nan'), 0.0, float(1970), 7.3, float('nan')], [float(10 ** 23), float('1.4'), float(-1), float(-1), float('nan'), float('nan'), float(1970)], [float('nan'), 0.0, float(1970), 7.3, float('nan')], [float(314), float(-1), float('nan'), float(1970), 7.3, float(-1), float(-1)], [float('nan'), 0.0, float(1970), 7.3, float('nan')], [float('nan')]]) - self1 = matrix.Matrix([[float('nan'), 0.0, float(1970), 7.3, float('nan')], [float(10 ** 23), float('1.4'), float(-1), float(-1), float('nan'), float('nan'), float(1970)], [float('nan'), 0.0, float(1970), 7.3, float('nan')], [float(314), float(-1), float('nan'), float(1970), 7.3, float(-1), float(-1)], [float('nan'), 0.0, float(1970), 7.3, float('nan')], [float('nan')]]) - - actual = matrix1.__add__(self1) - - matrix2 = copyreg._reconstructor(matrix.Matrix, builtins.object, None) - matrix2.dim = (6, 7) - matrix2.elements = [[float('nan'), 0.0, 3940.0, 14.6, float('nan'), 0, 0], [2e+23, 2.8, -2.0, -2.0, float('nan'), float('nan'), 3940.0], [float('nan'), 0.0, 3940.0, 14.6, float('nan'), 0, 0], [628.0, -2.0, float('nan'), 3940.0, 14.6, -2.0, -2.0], [float('nan'), 0.0, 3940.0, 14.6, float('nan'), 0, 0], [float('nan'), 0, 0, 0, 0, 0, 0]] - actual_dim = actual.dim - expected_dim = matrix2.dim - - self.assertEqual(expected_dim, actual_dim) - actual_elements = actual.elements - expected_elements = matrix2.elements - expected_list = expected_elements - expected_length = len(expected_list) - actual_length = len(actual_elements) - - self.assertEqual(expected_length, actual_length) - - self.assertTrue(isinstance(actual_elements, builtins.list)) - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__primitive_types.py b/utbot-python/samples/cli_utbot_tests/generated_tests__primitive_types.py deleted file mode 100644 index 16f8f8423f..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__primitive_types.py +++ /dev/null @@ -1,40 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import primitive_types -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable primitive_types.pretty_print - # region - def test_pretty_print(self): - actual = primitive_types.pretty_print(object()) - - self.assertEqual('I do not have any variants', actual) - - def test_pretty_print1(self): - actual = primitive_types.pretty_print(str(b'\x80')) - - self.assertEqual("It is string.\nValue <>", actual) - - def test_pretty_print2(self): - actual = primitive_types.pretty_print((1 << 100)) - - self.assertEqual('It is integer.\nValue 1267650600228229401496703205376', actual) - - def test_pretty_print3(self): - actual = primitive_types.pretty_print(complex(float('inf'), float('inf'))) - - self.assertEqual('It is complex.\nValue (inf + infi)', actual) - - def test_pretty_print4(self): - actual = primitive_types.pretty_print([]) - - self.assertEqual('It is list.\nValue []', actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__quick_sort.py b/utbot-python/samples/cli_utbot_tests/generated_tests__quick_sort.py deleted file mode 100644 index ea0cf1a849..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__quick_sort.py +++ /dev/null @@ -1,30 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import quick_sort -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable quick_sort.quick_sort - # region - def test_quick_sort(self): - actual = quick_sort.quick_sort([4294967297, 83, (1 << 100), 4294967297, (1 << 100), 0, -3]) - - self.assertEqual([-3, 0, 83, 4294967297, 4294967297, 1267650600228229401496703205376, 1267650600228229401496703205376], actual) - - def test_quick_sort1(self): - actual = quick_sort.quick_sort([83, 123]) - - self.assertEqual([83, 123], actual) - - def test_quick_sort2(self): - actual = quick_sort.quick_sort([]) - - self.assertEqual([], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__test_coverage.py b/utbot-python/samples/cli_utbot_tests/generated_tests__test_coverage.py deleted file mode 100644 index 02bcda08b6..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__test_coverage.py +++ /dev/null @@ -1,35 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import test_coverage -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable test_coverage.hard_function - # region - def test_hard_function(self): - actual = test_coverage.hard_function(83) - - self.assertEqual(2, actual) - - def test_hard_function1(self): - actual = test_coverage.hard_function(0) - - self.assertEqual(1, actual) - - def test_hard_function2(self): - actual = test_coverage.hard_function(4294967296) - - self.assertEqual(3, actual) - - def test_hard_function3(self): - actual = test_coverage.hard_function(float('nan')) - - self.assertEqual(4, actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__type_inference.py b/utbot-python/samples/cli_utbot_tests/generated_tests__type_inference.py deleted file mode 100644 index 450f3f0488..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__type_inference.py +++ /dev/null @@ -1,20 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import type_inference -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable type_inference.type_inference - # region - def test_type_inference_by_fuzzer(self): - actual = type_inference.type_inference(0, str(), str(b'\x80'), [], {}) - - self.assertEqual([0, 0, 0, 0, 0, 0, 0, 0, 0, ''], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/cli_utbot_tests/generated_tests__using_collections.py b/utbot-python/samples/cli_utbot_tests/generated_tests__using_collections.py deleted file mode 100644 index f9fe1c7d4a..0000000000 --- a/utbot-python/samples/cli_utbot_tests/generated_tests__using_collections.py +++ /dev/null @@ -1,23 +0,0 @@ -import sys -sys.path.append('samples') -import builtins -import using_collections -import collections -import unittest - - -class TestTopLevelFunctions(unittest.TestCase): - # region Test suites for executable using_collections.generate_collections - # region - def test_generate_collections(self): - actual = using_collections.generate_collections({}) - - counter = collections.Counter({0: 100, }) - - self.assertEqual([{0: 100, }, counter, [(0, 100)]], actual) - - # endregion - - # endregion - - diff --git a/utbot-python/samples/generate_test_samples.sh b/utbot-python/samples/generate_test_samples.sh deleted file mode 100644 index 73c765a72b..0000000000 --- a/utbot-python/samples/generate_test_samples.sh +++ /dev/null @@ -1,24 +0,0 @@ -# Usage: -# ./generate_test_samples.sh - -python_path=$1 -java_path=$2 - -$java_path -jar utbot-cli.jar generate_python samples/arithmetic.py -p $python_path -o cli_utbot_tests/generated_tests__arithmetic.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/deep_equals.py -p $python_path -o cli_utbot_tests/generated_tests__deep_equals.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/dicts.py -p $python_path -o cli_utbot_tests/generated_tests__dicts.py -s samples/ --timeout-for-run 500 --visit-only-specified-source -c Dictionary -m translate --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/deque.py -p $python_path -o cli_utbot_tests/generated_tests__deque.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/dummy_with_eq.py -p $python_path -o cli_utbot_tests/generated_tests__dummy_with_eq.py -s samples/ --timeout-for-run 500 --visit-only-specified-source -c Dummy -m propogate --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/dummy_without_eq.py -p $python_path -o cli_utbot_tests/generated_tests__dummy_without_eq.py -s samples/ --timeout-for-run 500 --visit-only-specified-source -c Dummy -m propogate --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/lists.py -p $python_path -o cli_utbot_tests/generated_tests__lists.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/list_of_datetime.py -p $python_path -o cli_utbot_tests/generated_tests__list_of_datetime.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/longest_subsequence.py -p $python_path -o cli_utbot_tests/generated_tests__longest_subsequence.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/matrix.py -p $python_path -o cli_utbot_tests/generated_tests__matrix.py -s samples/ --timeout-for-run 500 --visit-only-specified-source -c Matrix -m __add__,__mul__,__matmul__ --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/primitive_types.py -p $python_path -o cli_utbot_tests/generated_tests__primitive_types.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/quick_sort.py -p $python_path -o cli_utbot_tests/generated_tests__quick_sort.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/test_coverage.py -p $python_path -o cli_utbot_tests/generated_tests__test_coverage.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/type_inference.py -p $python_path -o cli_utbot_tests/generated_tests__type_inference.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/using_collections.py -p $python_path -o cli_utbot_tests/generated_tests__using_collections.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/dummy_without_eq.py -p $python_path -o cli_utbot_tests/generated_tests__dummy_without_eq.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 -c Dummy -m propagate --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/dummy_with_eq.py -p $python_path -o cli_utbot_tests/generated_tests__dummy_with_eq.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 -c Dummy -m propagate --do-not-check-requirements -$java_path -jar utbot-cli.jar generate_python samples/list_of_datetime.py -p $python_path -o cli_utbot_tests/generated_tests__list_of_datetime.py -s samples/ --timeout-for-run 500 --visit-only-specified-source --timeout 10000 --do-not-check-requirements diff --git a/utbot-python/samples/run_test_samples.sh b/utbot-python/samples/run_test_samples.sh deleted file mode 100755 index bbbf1bb171..0000000000 --- a/utbot-python/samples/run_test_samples.sh +++ /dev/null @@ -1,24 +0,0 @@ -# Usage: -# ./run_test_samples.sh - -python_path=$1 -java_path=$2 - -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__arithmetic.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__deep_equals.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__dicts.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__deque.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__dummy_with_eq.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__dummy_without_eq.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__lists.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__list_of_datetime.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__longest_subsequence.py -p $python_path -$java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__matrix.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__primitive_types.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__quick_sort.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__test_coverage.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__type_inference.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__using_collections.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__dummy_with_eq.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__dummy_without_eq.py -p $python_path -# $java_path -jar utbot-cli.jar --verbosity DEBUG run_python cli_utbot_tests/generated_tests__list_of_datetime.py -p $python_path diff --git a/utbot-python/samples/samples/collection/using_collections.py b/utbot-python/samples/samples/collection/using_collections.py index debdc31bef..e8a5e9e1ae 100644 --- a/utbot-python/samples/samples/collection/using_collections.py +++ b/utbot-python/samples/samples/collection/using_collections.py @@ -3,6 +3,8 @@ def generate_collections(collection): collection[0] = 100 + if isinstance(collection, collections.UserDict): + return collection.data elements = list(collection.items()) return [ collection, diff --git a/utbot-python/samples/samples/named_arguments/method_named_arguments.py b/utbot-python/samples/samples/named_arguments/method_named_arguments.py index 10a61f8f63..f86c3d623a 100644 --- a/utbot-python/samples/samples/named_arguments/method_named_arguments.py +++ b/utbot-python/samples/samples/named_arguments/method_named_arguments.py @@ -1,4 +1,5 @@ -from samples.named_arguments.named_arguments import g +def g(x): + return x ** 2 class A: diff --git a/utbot-python/samples/testing_utils/collect_executions.py b/utbot-python/samples/testing_utils/collect_executions.py new file mode 100644 index 0000000000..81404aa023 --- /dev/null +++ b/utbot-python/samples/testing_utils/collect_executions.py @@ -0,0 +1,34 @@ +import json +import pathlib +import sys +import typing + + +def get_all_files(folder: pathlib.Path) -> typing.List[pathlib.Path]: + if folder.is_dir: + return folder.glob("*.executions") + return [] + + +def get_excecutions_number(file: pathlib.Path) -> int: + with open(file, 'r', encoding='utf-8') as fin: + return int(json.loads(fin.readline().strip())['executions']) + + +def save_data(data: typing.Dict[pathlib.Path, int]) -> None: + with open('data_executions.json', 'w', encoding='utf-8') as fout: + print(json.dumps(data, indent=1), file=fout) + + +def main(folder: pathlib.Path) -> None: + files = get_all_files(folder) + data = { + str(file): get_excecutions_number(file) + for file in files + } + save_data(data) + + +if __name__ == '__main__': + main(pathlib.Path(sys.argv[1])) + diff --git a/utbot-python/samples/testing_utils/collect_timeouts.py b/utbot-python/samples/testing_utils/collect_timeouts.py new file mode 100644 index 0000000000..bbcb8241a2 --- /dev/null +++ b/utbot-python/samples/testing_utils/collect_timeouts.py @@ -0,0 +1,41 @@ +import json +import pathlib +import sys +import typing + +def read_test_config(path: pathlib.Path, coverage_dir: pathlib.Path) -> typing.Dict[str, int]: + with open(path, 'r', encoding='utf-8') as fin: + data = json.loads(fin.read()) + + res = {} + for part in data['parts']: + for file in part['files']: + for group in file['groups']: + file_suffix = f"{part['path'].replace('/', '_')}_{file['name']}" + executions_output_file = pathlib.Path(coverage_dir, f"coverage_{file_suffix}.json.executions") + timeout = group['timeout'] + res[executions_output_file] = timeout + return res + + +def read_executions(path: pathlib.Path): + with open(path, 'r', encoding='utf-8') as fin: + data = json.loads(fin.read()) + return data + + +def main(config_path: pathlib.Path, executions_path: pathlib.Path, coverage_dir: pathlib.Path): + timeouts = read_test_config(config_path, coverage_dir) + executions = read_executions(executions_path) + + for f, timeout in timeouts.items(): + executions[str(f)] /= timeout + + with open('speeds.json', 'w') as fout: + print(json.dumps(executions, indent=1), file=fout) + + +if __name__ == '__main__': + main(*sys.argv[1:]) + + diff --git a/utbot-python/samples/testing_utils/compare.py b/utbot-python/samples/testing_utils/compare.py new file mode 100644 index 0000000000..cb45d0cc49 --- /dev/null +++ b/utbot-python/samples/testing_utils/compare.py @@ -0,0 +1,25 @@ +import json +import matplotlib.pyplot as plt +import pathlib + + +def read_stats(path: pathlib.Path): + with open(path, 'r') as fin: + return json.loads(fin.read()) + + +data1 = read_stats('speeds_basic.json') +data2 = read_stats('speeds_forks.json') +data3 = read_stats('speeds_forks2.json') +data = [list(d.values()) for d in [data1, data2, data3]] + +fig = plt.figure() +ax = fig.add_subplot(1, 1, 1) +ax.boxplot( + data, + labels=['basic', 'forks', 'forks2'], + vert=True, + patch_artist=True + ) +ax.grid(True) +plt.show() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt index 6899ad1265..cc0730bffe 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt @@ -20,8 +20,13 @@ import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.fuzzing.* import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.inference.InvalidTypeFeedback +import org.utbot.python.newtyping.inference.SuccessFeedback +import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm import org.utbot.python.newtyping.pythonModules import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utbot.python.utils.ExecutionWithTimoutMode +import org.utbot.python.utils.TestGenerationLimitManager import org.utbot.python.utils.camelToSnakeCase import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket @@ -120,6 +125,7 @@ class PythonEngine( ) return ValidExecution(utFuzzedExecution) } + private fun handleSuccessResult( arguments: List, types: List, @@ -203,8 +209,7 @@ class PythonEngine( .filterNot { it.startsWith(moduleToImport) } val localAdditionalModules = (additionalModules + argumentModules + moduleToImport).toSet() - val (thisObject, modelList) = - if (methodUnderTest.hasThisArgument) + val (thisObject, modelList) = if (methodUnderTest.hasThisArgument) Pair(argumentValues[0], argumentValues.drop(1)) else Pair(null, argumentValues) @@ -219,11 +224,13 @@ class PythonEngine( return when (val evaluationResult = manager.runWithCoverage(functionArguments, localAdditionalModules, coverageId)) { is PythonEvaluationError -> { + val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") val utError = UtError( - "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}", - Throwable(evaluationResult.stackTrace.joinToString("\n")) + "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", + Throwable(stackTraceMessage) ) - logger.debug(evaluationResult.stackTrace.joinToString("\n")) + description.limitManager.addInvalidExecution() + logger.debug(stackTraceMessage) PythonExecutionResult(InvalidExecution(utError), PythonFeedback(control = Control.PASS)) } @@ -237,33 +244,39 @@ class PythonEngine( Trie.emptyNode() else description.tracer.add(coveredInstructions) + description.limitManager.addInvalidExecution() PythonExecutionResult( utTimeoutException, - PythonFeedback(control = Control.PASS, result = trieNode) + PythonFeedback(control = Control.PASS, result = trieNode, SuccessFeedback) ) } is PythonEvaluationSuccess -> { val coveredInstructions = evaluationResult.coverage.coveredInstructions - when (val result = handleSuccessResult( - arguments, - parameters, - evaluationResult, - description, - )) { + val result = handleSuccessResult( + arguments, + parameters, + evaluationResult, + description, + ) + val typeInferenceFeedback = if (result is ValidExecution) SuccessFeedback else InvalidTypeFeedback + when (result) { is ValidExecution -> { val trieNode: Trie.Node = description.tracer.add(coveredInstructions) + description.limitManager.addSuccessExecution() PythonExecutionResult( result, - PythonFeedback(control = Control.CONTINUE, result = trieNode) + PythonFeedback(Control.CONTINUE, trieNode, typeInferenceFeedback) ) } is InvalidExecution -> { - PythonExecutionResult(result, PythonFeedback(control = Control.CONTINUE)) + description.limitManager.addInvalidExecution() + PythonExecutionResult(result, PythonFeedback(control = Control.CONTINUE, typeInferenceFeedback = typeInferenceFeedback)) } else -> { - PythonExecutionResult(result, PythonFeedback(control = Control.PASS)) + description.limitManager.addInvalidExecution() + PythonExecutionResult(result, PythonFeedback(control = Control.PASS, typeInferenceFeedback = typeInferenceFeedback)) } } } @@ -274,7 +287,12 @@ class PythonEngine( } } - fun fuzzing(parameters: List, isCancelled: () -> Boolean, until: Long): Flow = flow { + fun fuzzing( + parameters: List, + typeInferenceAlgorithm: BaselineAlgorithm, + isCancelled: () -> Boolean, + until: Long + ): Flow = flow { ServerSocket(0).use { serverSocket -> logger.debug { "Server port: ${serverSocket.localPort}" } val manager = try { @@ -295,6 +313,8 @@ class PythonEngine( pythonTypeStorage, Trie(Instruction::id), Random(0), + TestGenerationLimitManager(ExecutionWithTimoutMode, until, isRootManager = true), + methodUnderTest.definition.type, ) try { @@ -305,7 +325,7 @@ class PythonEngine( } } else { try { - PythonFuzzing(pmd.pythonTypeStorage) { description, arguments -> + PythonFuzzing(pythonTypeStorage, typeInferenceAlgorithm) { description, arguments -> if (isCancelled()) { logger.debug { "Fuzzing process was interrupted" } manager.disconnect() @@ -319,6 +339,7 @@ class PythonEngine( if (arguments.any { PythonTree.containsFakeNode(it.tree) }) { logger.debug { "FakeNode in Python model" } + description.limitManager.addFakeNodeExecutions() emit(FakeNodeFeedback) return@PythonFuzzing PythonFeedback(control = Control.CONTINUE) } @@ -326,9 +347,10 @@ class PythonEngine( val pair = Pair(description, arguments.map { PythonTreeWrapper(it.tree) }) val mem = cache.get(pair) if (mem != null) { - logger.debug("Repeat in fuzzing") + logger.debug("Repeat in fuzzing ${arguments.map {it.tree}}") + description.limitManager.addSuccessExecution() emit(CachedExecutionFeedback(mem.fuzzingExecutionFeedback)) - return@PythonFuzzing mem.fuzzingPlatformFeedback + return@PythonFuzzing mem.fuzzingPlatformFeedback.fromCache() } val result = fuzzingResultHandler(description, arguments, parameters, manager) if (result == null) { // timeout diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index 1500a6b801..f6ad5c1419 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -14,9 +14,6 @@ import org.utbot.python.newtyping.ast.visitor.Visitor import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.general.* -import org.utbot.python.newtyping.inference.InferredTypeFeedback -import org.utbot.python.newtyping.inference.InvalidTypeFeedback -import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm import org.utbot.python.newtyping.mypy.GlobalNamesStorage import org.utbot.python.newtyping.mypy.MypyInfoBuild @@ -24,7 +21,6 @@ import org.utbot.python.newtyping.mypy.MypyReportLine import org.utbot.python.newtyping.mypy.getErrorNumber import org.utbot.python.newtyping.utils.getOffsetLine import org.utbot.python.newtyping.utils.isRequired -import org.utbot.python.utils.ExecutionWithTimeoutMode import org.utbot.python.utils.TestGenerationLimitManager import org.utbot.python.utils.PriorityCartesianProduct import org.utbot.python.utils.TimeoutMode @@ -134,7 +130,7 @@ class PythonTestCaseGenerator( additionalVars: String = "", ): Set? { // returns missing lines val limitManager = TestGenerationLimitManager( - ExecutionWithTimeoutMode, + TimeoutMode, until, ) var missingLines = initMissingLines @@ -150,52 +146,66 @@ class PythonTestCaseGenerator( PythonFuzzedConcreteValue(type, value) } - inferAnnotations( + val engine = PythonEngine( method, - mypyStorage, - typeStorage, - hintCollector, - mypyReportLine, - limitManager, - additionalVars - ) { functionType -> - val args = (functionType as FunctionType).arguments - - logger.debug { "Inferred annotations: ${args.joinToString { it.pythonTypeRepresentation() }}" } - - val engine = PythonEngine( - method, - directoriesForSysPath, - curModule, - pythonPath, - constants, - timeoutForRun, - PythonTypeHintsStorage.get(mypyStorage) - ) + directoriesForSysPath, + curModule, + pythonPath, + constants, + timeoutForRun, + PythonTypeHintsStorage.get(mypyStorage) + ) + val namesInModule = mypyStorage.names + .getOrDefault(curModule, emptyList()) + .map { it.name } + .filter { + it.length < 4 || !it.startsWith("__") || !it.endsWith("__") + } - var feedback: InferredTypeFeedback = SuccessFeedback + val algo = BaselineAlgorithm( + typeStorage, + hintCollector.result, + pythonPath, + method, + directoriesForSysPath, + curModule, + namesInModule, + getErrorNumber( + mypyReportLine, + fileOfMethod, + getOffsetLine(sourceFileContent, method.ast.beginOffset), + getOffsetLine(sourceFileContent, method.ast.endOffset) + ), + mypyStorage.buildRoot.configFile, + additionalVars, + randomTypeFrequency = RANDOM_TYPE_FREQUENCY, + dMypyTimeout = timeoutForRun, + ) - val fuzzerCancellation = { isCancelled() || limitManager.isCancelled() } + val fuzzerCancellation = { isCancelled() || limitManager.isCancelled() } - engine.fuzzing(args, fuzzerCancellation, until).collect { + val initFunctionType = method.definition.type.arguments + runBlocking { + engine.fuzzing( + initFunctionType, + algo, + fuzzerCancellation, + until + ).collect { when (it) { is ValidExecution -> { executions += it.utFuzzedExecution missingLines = updateMissingLines(it.utFuzzedExecution, coveredLines, missingLines) - feedback = SuccessFeedback limitManager.addSuccessExecution() } is InvalidExecution -> { errors += it.utError - feedback = InvalidTypeFeedback limitManager.addInvalidExecution() } is ArgumentsTypeErrorFeedback -> { - feedback = InvalidTypeFeedback limitManager.addInvalidExecution() } is TypeErrorFeedback -> { - feedback = InvalidTypeFeedback limitManager.addInvalidExecution() } is CachedExecutionFeedback -> { @@ -209,14 +219,13 @@ class PythonTestCaseGenerator( } } is FakeNodeFeedback -> { - limitManager.addFakeNodeExecutions() + limitManager.addFakeNodeExecutions() } } limitManager.missedLines = missingLines?.size } - limitManager.restart() - feedback } + return missingLines } @@ -270,7 +279,8 @@ class PythonTestCaseGenerator( else coverageExecutions + emptyCoverageExecutions.take(MAX_EMPTY_COVERAGE_TESTS), errors, - storageForMypyMessages + storageForMypyMessages, + executionsNumber = executions.size, ) } @@ -291,58 +301,6 @@ class PythonTestCaseGenerator( return if (missingLines == null) curMissing else missingLines intersect curMissing } - private fun inferAnnotations( - method: PythonMethod, - mypyStorage: MypyInfoBuild, - typeStorage: PythonTypeHintsStorage, - hintCollector: HintCollector, - report: List, - limitManager: TestGenerationLimitManager, - additionalVars: String, - annotationHandler: suspend (UtType) -> InferredTypeFeedback, - ) { - val namesInModule = mypyStorage.names - .getOrDefault(curModule, emptyList()) - .map { it.name } - .filter { - it.length < 4 || !it.startsWith("__") || !it.endsWith("__") - } - val typeInferenceCancellation = { isCancelled() || limitManager.isCancelled() } - - val algo = BaselineAlgorithm( - typeStorage, - pythonPath, - method, - directoriesForSysPath, - curModule, - namesInModule, - getErrorNumber( - report, - fileOfMethod, - getOffsetLine(sourceFileContent, method.ast.beginOffset), - getOffsetLine(sourceFileContent, method.ast.endOffset) - ), - mypyStorage.buildRoot.configFile, - additionalVars, - randomTypeFrequency = RANDOM_TYPE_FREQUENCY, - dMypyTimeout = timeoutForRun - ) - - runBlocking breaking@{ - if (typeInferenceCancellation()) { - return@breaking - } - - val iterationNumber = algo.run(hintCollector.result, typeInferenceCancellation, annotationHandler) - - if (iterationNumber == 1) { // Initial annotation can't be substituted - limitManager.mode = TimeoutMode - val existsAnnotation = method.definition.type - annotationHandler(existsAnnotation) - } - } - } - companion object { fun createShortForm(method: PythonMethod): Pair? { val meta = method.definition.type.pythonDescription() as PythonCallableTypeDescription diff --git a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt index 4b02bfa386..57da4cc17d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -71,6 +71,7 @@ data class PythonTestSet( val errors: List, val mypyReport: List, val classId: PythonClassId? = null, + val executionsNumber: Int = 0, ) data class FunctionArguments( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt index 6cbfbb5096..8726c9af13 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt @@ -56,13 +56,13 @@ internal class PytestManager(context: CgContext) : TestFrameworkManager(context) override fun disableTestMethod(reason: String) { require(testFramework is Pytest) { "According to settings, Pytest was expected, but got: $testFramework" } - context.importIfNeeded(testFramework.skipDecoratorClassId) + context.importIfNeeded(Pytest.skipDecoratorClassId) val reasonArgument = CgNamedAnnotationArgument( name = "reason", value = CgPythonRepr(pythonStrClassId, "'${reason.replace("\"", "'")}'"), ) statementConstructor.addAnnotation( - classId = testFramework.skipDecoratorClassId, + classId = Pytest.skipDecoratorClassId, namedArguments = listOf(reasonArgument), target = Method ) @@ -145,11 +145,10 @@ internal class UnittestManager(context: CgContext) : TestFrameworkManager(contex value = CgPythonRepr(pythonStrClassId, "'${reason.replace("\"", "'")}'"), ) statementConstructor.addAnnotation( - classId = testFramework.skipDecoratorClassId, + classId = Unittest.skipDecoratorClassId, namedArguments = listOf(reasonArgument), target = Method, - - ) + ) } fun assertIsinstance(types: List, actual: CgVariable) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 6f6f5c98ad..00c3fb48e2 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -11,7 +11,15 @@ import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.fuzzing.provider.* import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.inference.InferredTypeFeedback +import org.utbot.python.newtyping.inference.InvalidTypeFeedback +import org.utbot.python.newtyping.inference.SuccessFeedback +import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm +import org.utbot.python.utils.ExecutionWithTimoutMode +import org.utbot.python.utils.TestGenerationLimitManager +import org.utbot.python.utils.TimeoutMode import kotlin.random.Random private val logger = KotlinLogging.logger {} @@ -29,6 +37,8 @@ class PythonMethodDescription( val pythonTypeStorage: PythonTypeHintsStorage, val tracer: Trie, val random: Random, + val limitManager: TestGenerationLimitManager, + val type: FunctionType, ) : Description(parameters) sealed interface FuzzingExecutionFeedback @@ -47,7 +57,18 @@ data class PythonExecutionResult( data class PythonFeedback( override val control: Control = Control.CONTINUE, val result: Trie.Node = Trie.emptyNode(), -) : Feedback + val typeInferenceFeedback: InferredTypeFeedback = InvalidTypeFeedback, + val fromCache: Boolean = false, +) : Feedback { + fun fromCache(): PythonFeedback { + return PythonFeedback( + control = control, + result = result, + typeInferenceFeedback = typeInferenceFeedback, + fromCache = true, + ) + } +} class PythonFuzzedValue( val tree: PythonTree.PythonTreeNode, @@ -76,8 +97,21 @@ fun pythonDefaultValueProviders(typeStorage: PythonTypeHintsStorage) = listOf( SubtypeValueProvider(typeStorage) ) +fun pythonAnyTypeValueProviders() = listOf( + NoneValueProvider, + BoolValueProvider, + IntValueProvider, + FloatValueProvider, + ComplexValueProvider, + StrValueProvider, + BytesValueProvider, + BytearrayValueProvider, + ConstantValueProvider, +) + class PythonFuzzing( private val pythonTypeStorage: PythonTypeHintsStorage, + private val typeInferenceAlgorithm: BaselineAlgorithm, val execute: suspend (description: PythonMethodDescription, values: List) -> PythonFeedback, ) : Fuzzing { @@ -103,6 +137,50 @@ class PythonFuzzing( } override suspend fun handle(description: PythonMethodDescription, values: List): PythonFeedback { - return execute(description, values) + val result = execute(description, values) + if (result.typeInferenceFeedback is SuccessFeedback && !result.fromCache) { + typeInferenceAlgorithm.laudType(description.type) + } + if (description.limitManager.isCancelled()) { + typeInferenceAlgorithm.feedbackState(description.type, result.typeInferenceFeedback) + } + return result + } + + private suspend fun forkType(description: PythonMethodDescription, stats: Statistic) { + val type: UtType? = typeInferenceAlgorithm.expandState() + if (type != null) { + val newTypes = (type as FunctionType).arguments + val d = PythonMethodDescription( + description.name, + newTypes, + description.concreteValues, + description.pythonTypeStorage, + description.tracer, + description.random, + TestGenerationLimitManager(ExecutionWithTimoutMode, description.limitManager.until), + type + ) + if (!d.limitManager.isCancelled()) { + logger.debug { "Fork new type" } + fork(d, stats) + } + logger.debug { "Fork ended" } + } else { + description.limitManager.mode = TimeoutMode + } + } + + override suspend fun isCancelled( + description: PythonMethodDescription, + stats: Statistic + ): Boolean { + if (description.limitManager.isCancelled() || description.parameters.any { it.isAny() }) { + forkType(description, stats) + if (description.limitManager.isRootManager) { + return TimeoutMode.isCancelled(description.limitManager) + } + } + return description.limitManager.isCancelled() } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt index 929ff35dae..17dbf7c2ef 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt @@ -9,13 +9,12 @@ import org.utbot.python.framework.api.python.util.pythonBoolClassId import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonTypeName object BoolValueProvider : ValueProvider{ override fun accept(type: UtType): Boolean { - return type.pythonTypeName() == pythonBoolClassId.canonicalName || type.isAny() + return type.pythonTypeName() == pythonBoolClassId.canonicalName } override fun generate(description: PythonMethodDescription, type: UtType) = sequence { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt index c8e910e61a..c756cd20eb 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt @@ -7,22 +7,28 @@ import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonComplexClassId import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.fuzzing.provider.utils.isAny +import org.utbot.python.newtyping.createPythonUnionType import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.pythonTypeRepresentation object ComplexValueProvider : ValueProvider { override fun accept(type: UtType): Boolean { - return type.pythonTypeName() == pythonComplexClassId.canonicalName || type.isAny() + return type.pythonTypeName() == pythonComplexClassId.canonicalName } override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + val numberType = createPythonUnionType( + listOf( + description.pythonTypeStorage.pythonFloat, + description.pythonTypeStorage.pythonInt + ) + ) yield(Seed.Recursive( construct = Routine.Create( listOf( - description.pythonTypeStorage.pythonFloat, - description.pythonTypeStorage.pythonFloat, + numberType, + numberType ) ) { v -> val real = v[0].tree as PythonTree.PrimitiveNode diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt index 2194d13106..794c9c02d5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt @@ -6,14 +6,13 @@ import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.fuzzing.value.TypesFromJSONStorage object ConstantValueProvider : ValueProvider { override fun accept(type: UtType): Boolean { - return TypesFromJSONStorage.getTypesFromJsonStorage().containsKey(type.pythonTypeName()) || type.isAny() + return TypesFromJSONStorage.getTypesFromJsonStorage().containsKey(type.pythonTypeName()) } override fun generate(description: PythonMethodDescription, type: UtType): Sequence> = diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt index 94ed272496..496ac4b67a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt @@ -10,7 +10,6 @@ import org.utbot.python.fuzzing.PythonFuzzedConcreteValue import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonTypeName import java.math.BigDecimal @@ -18,7 +17,7 @@ import java.math.BigInteger object FloatValueProvider : ValueProvider { override fun accept(type: UtType): Boolean { - return type.pythonTypeName() == pythonFloatClassId.canonicalName || type.isAny() + return type.pythonTypeName() == pythonFloatClassId.canonicalName } private fun getFloatConstants(concreteValues: Collection): List { @@ -44,7 +43,7 @@ object FloatValueProvider : ValueProvider> = sequence { val floatConstants = getFloatConstants(description.concreteValues) val intConstants = getIntConstants(description.concreteValues) - val constants = floatConstants + intConstants + val constants = floatConstants + intConstants + listOf(0, 1).map { IEEE754Value.fromValue(it.toDouble()) } constants.asSequence().forEach { value -> yield(Seed.Known(value) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt index 38cb19a008..cf4f6d36dc 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt @@ -13,7 +13,6 @@ import org.utbot.python.fuzzing.PythonFuzzedConcreteValue import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonTypeName import java.math.BigInteger @@ -24,7 +23,7 @@ object IntValueProvider : ValueProvider Unit): BitVectorValue { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt index 7cd515d3f8..9d16d2db3f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt @@ -5,13 +5,12 @@ import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.PythonNoneTypeDescription import org.utbot.python.newtyping.general.UtType object NoneValueProvider : ValueProvider { override fun accept(type: UtType): Boolean { - return type.isAny() || type.meta is PythonNoneTypeDescription + return type.meta is PythonNoneTypeDescription } override fun generate(description: PythonMethodDescription, type: UtType): Sequence> = sequence { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 0af926c17c..5bcf23358a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -8,6 +8,7 @@ import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.* import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.fuzzing.provider.utils.isCallable import org.utbot.python.fuzzing.provider.utils.isConcreteType import org.utbot.python.fuzzing.provider.utils.isMagic @@ -37,7 +38,7 @@ object ReduceValueProvider : ValueProvider Boolean, annotationHandler: suspend (UtType) -> InferredTypeFeedback, ): Int diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt index 0947489929..be372bde78 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt @@ -90,6 +90,7 @@ class TypeInferenceProcessor( val algo = BaselineAlgorithm( typeStorage, + collector.result, pythonPath, pythonMethod, directoriesForSysPath, @@ -109,7 +110,7 @@ class TypeInferenceProcessor( startingTypeInferenceAction() val annotations = emptyList().toMutableList() runBlocking { - algo.run(collector.result, cancel) { + algo.run(cancel) { annotations.add(it) processSignature(it) SuccessFeedback diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index 278c1f0af8..5272f0ed40 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -25,6 +25,7 @@ private val logger = KotlinLogging.logger {} class BaselineAlgorithm( private val storage: PythonTypeHintsStorage, + private val hintCollectorResult: HintCollectorResult, private val pythonPath: String, private val pythonMethodCopy: PythonMethod, private val directoriesForSysPath: Set, @@ -38,20 +39,98 @@ class BaselineAlgorithm( ) : TypeInferenceAlgorithm() { private val random = Random(0) + private val generalRating = createGeneralTypeRating(hintCollectorResult, storage) + private val initialState = getInitialState(hintCollectorResult, generalRating) + private val states: MutableList = mutableListOf(initialState) + private val fileForMypyRuns = TemporaryFileManager.assignTemporaryFile(tag = "mypy.py") + private var iterationCounter = 0 + private var randomTypeCounter = 0 + + private val simpleTypes = simplestTypes(storage) + private val mixtureType = createPythonUnionType(simpleTypes) + + private val openedStates: MutableMap> = mutableMapOf() + private val statistic: MutableMap = mutableMapOf() + + private fun getRandomType(): UtType? { + val weights = states.map { 1.0 / (it.anyNodes.size * it.anyNodes.size + 1) } + val state = weightedRandom(states, weights, random) + val newState = expandState(state, storage, state.anyNodes.map { mixtureType }) + if (newState != null) { + logger.info("Random type: ${newState.signature.pythonTypeRepresentation()}") + openedStates[newState.signature] = newState to state + return newState.signature + } + return null + } + + private fun getLaudedType(): UtType? { + if (statistic.isEmpty()) return null + val sum = statistic.values.sum() + val weights = statistic.values.map { it.toDouble() / sum } + val newType = weightedRandom(statistic.keys.toList(), weights, random) + logger.info("Lauded type: ${newType.pythonTypeRepresentation()}") + return newType + } + + fun expandState(): UtType? { + if (states.isEmpty()) return null + + logger.debug("State number: ${states.size}") + iterationCounter++ + + if (randomTypeFrequency > 0 && iterationCounter % randomTypeFrequency == 0) { + randomTypeCounter++ + if (randomTypeCounter % 2 == 0) { + val laudedType = getLaudedType() + if (laudedType != null) return laudedType + } + val randomType = getRandomType() + if (randomType != null) return randomType + } + + val state = chooseState(states) + val newState = expandState(state, storage) + if (newState != null) { + logger.info("Checking ${newState.signature.pythonTypeRepresentation()}") + if (checkSignature(newState.signature as FunctionType, fileForMypyRuns, configFile)) { + logger.debug("Found new state!") + openedStates[newState.signature] = newState to state + return newState.signature + } + } else if (state.anyNodes.isEmpty()) { + logger.info("Checking ${state.signature.pythonTypeRepresentation()}") + if (checkSignature(state.signature as FunctionType, fileForMypyRuns, configFile)) { + return state.signature + } else { + states.remove(state) + } + } else { + states.remove(state) + } + return expandState() + } + + fun feedbackState(signature: UtType, feedback: InferredTypeFeedback) { + val stateInfo = openedStates[signature] + if (stateInfo != null) { + val (newState, parent) = stateInfo + when (feedback) { + SuccessFeedback -> { + states.add(newState) + parent.children += 1 + } + InvalidTypeFeedback -> {} + } + openedStates.remove(signature) + } + } + + override suspend fun run( - hintCollectorResult: HintCollectorResult, isCancelled: () -> Boolean, annotationHandler: suspend (UtType) -> InferredTypeFeedback, ): Int { - val generalRating = createGeneralTypeRating(hintCollectorResult, storage) - val initialState = getInitialState(hintCollectorResult, generalRating) - val states: MutableList = mutableListOf(initialState) - val fileForMypyRuns = TemporaryFileManager.assignTemporaryFile(tag = "mypy.py") - var iterationCounter = 0 - - val simpleTypes = simplestTypes(storage) - val mixtureType = createPythonUnionType(simpleTypes) - run breaking@ { while (states.isNotEmpty()) { if (isCancelled()) @@ -78,8 +157,6 @@ class BaselineAlgorithm( logger.info("Checking ${newState.signature.pythonTypeRepresentation()}") if (checkSignature(newState.signature as FunctionType, fileForMypyRuns, configFile)) { logger.debug("Found new state!") -// annotationHandler(newState.signature) -// states.add(newState) when (annotationHandler(newState.signature)) { SuccessFeedback -> { states.add(newState) @@ -143,4 +220,8 @@ class BaselineAlgorithm( } return BaselineAlgorithmState(allNodes, generalRating, storage) } + + fun laudType(type: FunctionType) { + statistic[type] = statistic[type]?.plus(1) ?: 1 + } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt index b731bf3ffd..77b3354b58 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt @@ -8,17 +8,21 @@ class TestGenerationLimitManager( // local settings: one type inference iteration var executions: Int = 150, var invalidExecutions: Int = 10, - var fakeNodeExecutions: Int = 20, + var cacheNodeExecutions: Int = 20, + var fakeNodeExecutions: Int = 1, var missedLines: Int? = null, + val isRootManager: Boolean = false, ) { private val initExecution = executions private val initInvalidExecutions = invalidExecutions + private val initCacheNodeExecutions = cacheNodeExecutions private val initFakeNodeExecutions = fakeNodeExecutions private val initMissedLines = missedLines fun restart() { executions = initExecution invalidExecutions = initInvalidExecutions + cacheNodeExecutions = initCacheNodeExecutions fakeNodeExecutions = initFakeNodeExecutions missedLines = initMissedLines } @@ -58,7 +62,7 @@ object TimeoutMode : LimitManagerMode { object ExecutionMode : LimitManagerMode { override fun isCancelled(manager: TestGenerationLimitManager): Boolean { - return manager.invalidExecutions <= 0 || manager.executions <= 0 || manager.fakeNodeExecutions <= 0 + return manager.invalidExecutions <= 0 || manager.executions <= 0 || manager.fakeNodeExecutions <= 0 || manager.cacheNodeExecutions <= 0 } } @@ -68,7 +72,7 @@ object MaxCoverageWithTimeoutMode : LimitManagerMode { } } -object ExecutionWithTimeoutMode : LimitManagerMode { +object ExecutionWithTimoutMode : LimitManagerMode { override fun isCancelled(manager: TestGenerationLimitManager): Boolean { return ExecutionMode.isCancelled(manager) || TimeoutMode.isCancelled(manager) } From df9705372b2f902344b2e1b53abf821310bf2b06 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 14 Sep 2023 13:34:35 +0300 Subject: [PATCH 004/144] Fix utbot-intellij --- gradle.properties | 4 +- settings.gradle.kts | 2 +- utbot-intellij-main/build.gradle.kts | 2 +- .../src/main/resources/META-INF/plugin.xml | 12 +-- .../plugin/python/PythonDialogProcessor.kt | 10 +- .../plugin/python/PythonIntellijProcessor.kt | 14 +++ .../generator/UtTestsDialogProcessor.kt | 2 +- .../plugin/models/GenerateTestsModel.kt | 6 ++ .../TestFolderComboWithBrowseButton.kt | 3 +- .../src/main/resources/META-INF/plugin.xml | 99 ------------------- .../main/resources/META-INF/pluginIcon.svg | 4 - .../main/resources/META-INF/withAndroid.xml | 3 - .../src/main/resources/META-INF/withGo.xml | 3 - .../main/resources/META-INF/withIdeaMaven.xml | 3 - .../src/main/resources/META-INF/withJS.xml | 4 - .../src/main/resources/META-INF/withJava.xml | 3 - .../main/resources/META-INF/withKotlin.xml | 3 - .../src/main/resources/META-INF/withLang.xml | 3 - .../main/resources/META-INF/withPython.xml | 4 - .../src/main/resources/application.properties | 5 - .../resources/bundles/UtbotBundle.properties | 10 -- .../UnitTestBotInspectionTool.html | 11 --- utbot-intellij/src/main/resources/log4j2.xml | 34 ------- 23 files changed, 34 insertions(+), 210 deletions(-) delete mode 100644 utbot-intellij/src/main/resources/META-INF/plugin.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/pluginIcon.svg delete mode 100644 utbot-intellij/src/main/resources/META-INF/withAndroid.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withGo.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withIdeaMaven.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withJS.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withJava.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withKotlin.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withLang.xml delete mode 100644 utbot-intellij/src/main/resources/META-INF/withPython.xml delete mode 100644 utbot-intellij/src/main/resources/application.properties delete mode 100644 utbot-intellij/src/main/resources/bundles/UtbotBundle.properties delete mode 100644 utbot-intellij/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html delete mode 100644 utbot-intellij/src/main/resources/log4j2.xml diff --git a/gradle.properties b/gradle.properties index 8dbfdc04be..3682db48d7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,14 +10,14 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=PC +ideType=PY #ideVersion=232.8660.185 ideVersion=2023.2 # ALL, NOJS buildType=NOJS pythonIde=IC,IU,PC,PY -jsIde=IU,PY,WS +jsIde=IU jsBuild=ALL goIde=IU diff --git a/settings.gradle.kts b/settings.gradle.kts index d53c4450ea..581f66a4c4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -27,7 +27,7 @@ include("utbot-core") include("utbot-framework") include("utbot-framework-api") include("utbot-modificators-analyzer") -if (ideType != "PC") { +if (ideType != "PC" && ideType != "PY") { include("utbot-intellij") } include("utbot-sample") diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index a6141ac019..e872a4f11e 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -169,7 +169,7 @@ dependencies { //Family - if (ideType != "PC") { + if (ideType != "PC" && ideType != "PY") { implementation(project(":utbot-intellij")) } diff --git a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml index 1b3bbf6242..5b2acbb54d 100644 --- a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml +++ b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml @@ -19,7 +19,7 @@ text="Generate Tests with UnitTestBot..." description="Cover code with auto-generated tests"> - + @@ -32,13 +32,13 @@ - + - - + + - - + + diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index 7d633ef1e1..b42c0fc1b1 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -1,5 +1,6 @@ package org.utbot.intellij.plugin.python +import com.intellij.lang.Language import com.intellij.openapi.application.ReadAction import com.intellij.openapi.application.invokeLater import com.intellij.openapi.application.runWriteAction @@ -24,7 +25,6 @@ import com.jetbrains.python.psi.PyClass import com.jetbrains.python.psi.PyElement import com.jetbrains.python.psi.PyFile import com.jetbrains.python.psi.PyFunction -import com.jetbrains.python.psi.resolve.QualifiedNameFinder import com.jetbrains.python.sdk.pythonSdk import mu.KotlinLogging //import org.jetbrains.kotlin.idea.base.util.module @@ -335,18 +335,10 @@ fun getPythonPath(project: Project): String? { return project.pythonSdk?.homePath } -fun findSrcModules(elements: Collection): List { - return listOf(ModuleImpl("", elements.first().project)) -} - fun getSrcModule(element: PyElement): Module { return ModuleUtilCore.findModuleForPsiElement(element) ?: error("Module for source class or function not found") } -fun getFullName(element: PyElement): String { - return QualifiedNameFinder.getQualifiedName(element) ?: error("Name for source class or function not found") -} - fun getContentFromPyFile(file: PyFile) = ReadAction.nonBlocking { file.viewProvider.contents.toString() diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt index ebe3c174c9..b7be740aec 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt @@ -1,11 +1,20 @@ package org.utbot.intellij.plugin.python //import com.intellij.codeInsight.CodeInsightUtil +import com.intellij.codeInsight.CodeInsightUtilBase +import com.intellij.codeInsight.CodeInsightUtilCore +import com.intellij.codeInsight.CodeInsightWorkspaceSettings +import com.intellij.codeInsight.actions.CodeInsightAction +import com.intellij.codeInsight.hints.codeVision.CodeVision +import com.intellij.icons.ExpUiIcons.CodeInsight import com.intellij.openapi.application.invokeLater import com.intellij.openapi.application.runWriteAction import com.intellij.openapi.project.Project +import com.intellij.psi.PsiAnchor import com.intellij.psi.PsiDirectory +import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiFileFactory +import com.intellij.testFramework.fixtures.CodeInsightTestUtil import com.jetbrains.python.psi.PyClass import org.utbot.intellij.plugin.python.language.PythonLanguageAssistant import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater @@ -31,6 +40,11 @@ class PythonIntellijProcessor( testDir.findFile(testPsiFile.name)?.delete() testDir.add(testPsiFile) val file = testDir.findFile(testPsiFile.name)!! + CodeInsightUtilCore.getInstance().prepareFileForWrite(file) + val document = PsiDocumentManager.getInstance(model.project).getDocument(file) + val editor = CodeInsightUtilCore.getInstance() + editor.prepareFileForWrite(file) +// CodeInsightUtilCore. // CodeInsightUtil.positionCursor(model.project, file, file) } } diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt index 4b8ff4c0e8..2b7f4cf924 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/generator/UtTestsDialogProcessor.kt @@ -576,7 +576,7 @@ object UtTestsDialogProcessor { val classpathList = pathsList.pathList Pair(classpath, classpathList) } - val pluginJarsPath = Paths.get(PathManager.getPluginsPath(), "utbot-intellij", "lib").toFile().listFiles() + val pluginJarsPath = Paths.get(PathManager.getPluginsPath(), "utbot-intellij-main", "lib").toFile().listFiles() ?: error("Can't find plugin folder.") return BuildPaths(buildDirs, classpath, classpathList, pluginJarsPath.map { it.path }) } diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt index c382cf30e1..3c23f56b51 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/models/GenerateTestsModel.kt @@ -10,13 +10,18 @@ import org.utbot.framework.codegen.domain.TestFramework import com.intellij.openapi.module.Module import com.intellij.openapi.module.ModuleUtil import com.intellij.openapi.project.Project +import com.intellij.openapi.project.rootManager import com.intellij.openapi.vfs.VirtualFile import com.intellij.openapi.vfs.newvfs.impl.FakeVirtualFile +import com.intellij.psi.JavaPsiFacade import com.intellij.psi.PsiClass import com.intellij.psi.PsiJavaFile import com.intellij.psi.search.GlobalSearchScope +import com.intellij.psi.search.searches.AnnotatedElementsSearch import com.intellij.refactoring.util.classMembers.MemberInfo import org.jetbrains.concurrency.Promise +import org.jetbrains.kotlin.idea.util.projectStructure.allModules +import org.jetbrains.kotlin.idea.util.sourceRoot import org.jetbrains.kotlin.psi.KtFile import org.utbot.common.PathUtil.fileExtension import org.utbot.framework.SummariesGenerationType @@ -30,6 +35,7 @@ import org.utbot.framework.plugin.api.SpringSettings import org.utbot.framework.util.ConflictTriggers import org.utbot.intellij.plugin.settings.Settings import org.utbot.intellij.plugin.ui.utils.* +import org.utbot.intellij.plugin.util.binaryName import java.nio.file.Files import javax.xml.parsers.DocumentBuilder import javax.xml.parsers.DocumentBuilderFactory diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt index a57e63a9e4..14ce8db2e0 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/ui/components/TestFolderComboWithBrowseButton.kt @@ -16,6 +16,7 @@ import com.intellij.util.ArrayUtil import com.intellij.util.ui.UIUtil import org.utbot.common.PathUtil import org.utbot.intellij.plugin.models.BaseTestsModel +import org.utbot.intellij.plugin.models.GenerateTestsModel import org.utbot.intellij.plugin.ui.utils.ITestSourceRoot import org.utbot.intellij.plugin.ui.utils.addDedicatedTestRoot import org.utbot.intellij.plugin.ui.utils.isBuildWithGradle @@ -25,7 +26,7 @@ import javax.swing.JList private const val SET_TEST_FOLDER = "set test folder" -class TestFolderComboWithBrowseButton(private val model: BaseTestsModel) : +class TestFolderComboWithBrowseButton(private val model: GenerateTestsModel) : ComponentWithBrowseButton>(ComboBox(), null) { diff --git a/utbot-intellij/src/main/resources/META-INF/plugin.xml b/utbot-intellij/src/main/resources/META-INF/plugin.xml deleted file mode 100644 index c21e12800d..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/plugin.xml +++ /dev/null @@ -1,99 +0,0 @@ - - - - org.utbot.intellij.plugin.id - UnitTestBot - utbot.org - com.intellij.modules.platform - - com.intellij.modules.java - org.jetbrains.kotlin - com.intellij.modules.python - org.jetbrains.plugins.go - org.jetbrains.android - org.jetbrains.idea.maven - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Discover UnitTestBot key features in our latest release: -
      -
    • generating ready-to-use test cases — with valid inputs, method bodies, assertions, and comments
    • -
    • maximizing branch coverage in regression suite while keeping the number of tests minimized
    • -
    • finding deeply hidden code defects and expressing them as tests
    • -
    • fine-tuned mocking, including mocking static methods
    • -
    • representing all the test descriptions in a human-readable format
    • -
    • generating SARIF reports
    • -
    • innovative symbolic execution engine combined with a smart fuzzing platform
    • -
    - UnitTestBot supports the latest JDKs, JUnit 4, JUnit 5, TestNG, Mockito and is suitable for all popular operational systems. -
    - Try UnitTestBot online demo to see how it generates tests for your code in real time. -
    - Contribute to UnitTestBot via GitHub. -
    - Found a bug? File an issue. -
    - Have an idea? Start a discussion. - ]]> -
    - - -
  • Generating tests for Python and JavaScript
  • -
  • New fuzzing platform providing support for multiple languages
  • -
  • Improved test generation for Kotlin code
  • -
  • Multiprocess architecture based on the Reactive Distributed communication framework with advanced logging and debugging options
  • -
  • Symbolic execution engine with higher priority and fewer false UNSAT verdicts
  • -
  • UI/UX improvements for test sources root, setting.properties file, cancellation, timeout settings, notifications
  • -
  • Summaries with fine-grained settings
  • -
  • SARIF reports enabled by default, displaying sandbox-related and timeout test failures, properly addressing source files
  • -
  • Improved monitoring visualized with Grafana
  • -
  • Test generation bug fixes
  • -
  • Detailed documentation on UnitTestBot components including UnitTestBot architecture overview
  • - - ]]> -
    - - - - -
    diff --git a/utbot-intellij/src/main/resources/META-INF/pluginIcon.svg b/utbot-intellij/src/main/resources/META-INF/pluginIcon.svg deleted file mode 100644 index d24574d6dd..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/pluginIcon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withAndroid.xml b/utbot-intellij/src/main/resources/META-INF/withAndroid.xml deleted file mode 100644 index 09ce48b452..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withAndroid.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withGo.xml b/utbot-intellij/src/main/resources/META-INF/withGo.xml deleted file mode 100644 index 65c848f900..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withGo.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/utbot-intellij/src/main/resources/META-INF/withIdeaMaven.xml b/utbot-intellij/src/main/resources/META-INF/withIdeaMaven.xml deleted file mode 100644 index 5c2f872b51..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withIdeaMaven.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withJS.xml b/utbot-intellij/src/main/resources/META-INF/withJS.xml deleted file mode 100644 index d04570b311..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withJS.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - JavaScript - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withJava.xml b/utbot-intellij/src/main/resources/META-INF/withJava.xml deleted file mode 100644 index 2ce2e82cc9..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withJava.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withKotlin.xml b/utbot-intellij/src/main/resources/META-INF/withKotlin.xml deleted file mode 100644 index 07e0e420c3..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withKotlin.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withLang.xml b/utbot-intellij/src/main/resources/META-INF/withLang.xml deleted file mode 100644 index ed33e791e3..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withLang.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/META-INF/withPython.xml b/utbot-intellij/src/main/resources/META-INF/withPython.xml deleted file mode 100644 index f272fd7601..0000000000 --- a/utbot-intellij/src/main/resources/META-INF/withPython.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - com.intellij.modules.python - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/application.properties b/utbot-intellij/src/main/resources/application.properties deleted file mode 100644 index f5af5a168d..0000000000 --- a/utbot-intellij/src/main/resources/application.properties +++ /dev/null @@ -1,5 +0,0 @@ -# suppress inspection "HttpUrlsUsage" for whole file -backing.service.possibleEndpoints=http://utbot.org -backing.service.urlPath=/utbot/errors -backing.service.port=11000 -request.timeoutMillis=5000 \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/bundles/UtbotBundle.properties b/utbot-intellij/src/main/resources/bundles/UtbotBundle.properties deleted file mode 100644 index 4c13064c79..0000000000 --- a/utbot-intellij/src/main/resources/bundles/UtbotBundle.properties +++ /dev/null @@ -1,10 +0,0 @@ -# {0} - Test report url prefix, {1] - suffix -test.report.force.mock.warning=Warning: Some test cases were ignored, because no mocking framework is installed in the project.
    \ -Better results could be achieved by installing mocking framework. -test.report.force.static.mock.warning=Warning: Some test cases were ignored, because mockito-inline is not installed in the project.
    \ -Better results could be achieved by configuring mockito-inline. -test.report.test.framework.warning=Warning: There are several test frameworks in the project.\ -To select run configuration, please refer to the documentation depending on the project build system:\ -Gradle, \ -Maven \ -or Idea. \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html b/utbot-intellij/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html deleted file mode 100644 index a01f16e673..0000000000 --- a/utbot-intellij/src/main/resources/inspectionDescriptions/UnitTestBotInspectionTool.html +++ /dev/null @@ -1,11 +0,0 @@ - - -

    Reports unchecked exceptions detected by UnitTestBot.

    -

    Example:

    -
    -void foo(int a) {
    -    return 1 / a; // throws ArithmeticException when `a == 0`
    -}
    -
    - - \ No newline at end of file diff --git a/utbot-intellij/src/main/resources/log4j2.xml b/utbot-intellij/src/main/resources/log4j2.xml deleted file mode 100644 index 6a9ae540c8..0000000000 --- a/utbot-intellij/src/main/resources/log4j2.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file From 9a152a6c35141360539ecb9f94f4243cc88a8123 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 18 Sep 2023 13:57:09 +0300 Subject: [PATCH 005/144] Fix python testing elements filter --- .../language/PythonLanguageAssistant.kt | 15 +++++++-------- .../language/agnostic/LanguageAssistant.kt | 19 +++---------------- 2 files changed, 10 insertions(+), 24 deletions(-) diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt index 364e2d6b26..84eff6a604 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt @@ -7,16 +7,11 @@ import com.intellij.openapi.actionSystem.PlatformDataKeys import com.intellij.openapi.editor.Editor import com.intellij.openapi.project.Project import com.intellij.openapi.vfs.VirtualFile -import com.intellij.psi.PsiDirectory -import com.intellij.psi.PsiElement -import com.intellij.psi.PsiFile -import com.intellij.psi.PsiFileSystemItem +import com.intellij.psi.* import com.intellij.psi.util.PsiTreeUtil import com.jetbrains.python.psi.PyClass import com.jetbrains.python.psi.PyFile import com.jetbrains.python.psi.PyFunction -//import org.jetbrains.kotlin.idea.core.util.toPsiDirectory -//import org.jetbrains.kotlin.idea.core.util.toPsiFile import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import org.utbot.intellij.plugin.python.* @@ -140,8 +135,12 @@ object PythonLanguageAssistant : LanguageAssistant() { } private fun getAllElements(project: Project, virtualFiles: Collection): Pair, Set> { - val psiFiles = virtualFiles.filterIsInstance() - val psiDirectories = virtualFiles.filterIsInstance() + val psiFiles = virtualFiles.mapNotNull { + PsiManager.getInstance(project).findFile(it) + } + val psiDirectories = virtualFiles.mapNotNull { + PsiManager.getInstance(project).findDirectory(it) + } val classes = psiFiles.flatMap { getClassesFromFile(it) }.toMutableSet() val functions = psiFiles.flatMap { getFunctionsFromFile(it) }.toMutableSet() diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt index fd3e5c6e32..4fc4a118d8 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt @@ -7,12 +7,7 @@ import com.intellij.openapi.actionSystem.CommonDataKeys import com.intellij.openapi.actionSystem.PlatformDataKeys import com.intellij.openapi.project.Project import com.intellij.openapi.vfs.VirtualFile -import com.intellij.psi.PsiDirectory -import com.intellij.psi.PsiElement -import com.intellij.psi.PsiFile -import com.intellij.psi.PsiFileSystemItem -//import org.jetbrains.kotlin.idea.core.util.toPsiDirectory -//import org.jetbrains.kotlin.idea.core.util.toPsiFile +import com.intellij.psi.* private val logger = KotlinLogging.logger {} @@ -85,19 +80,11 @@ abstract class LanguageAssistant { private fun findLanguageRecursively(project: Project, virtualFiles: Array): Language? { val psiFiles = virtualFiles.mapNotNull { - if (it is PsiFile) { - it - } - else null + PsiManager.getInstance(project).findFile(it) } val psiDirectories = virtualFiles.mapNotNull { - if (it is PsiDirectory) { - it - } - else null + PsiManager.getInstance(project).findDirectory(it) } -// val psiFiles = virtualFiles.mapNotNull { it.getPsiFile(project) } -// val psiDirectories = virtualFiles.mapNotNull { it. .toPsiDirectory(project) } val fileLanguage = psiFiles.firstNotNullOfOrNull { getLanguageFromFile(it) } return fileLanguage ?: psiDirectories.firstNotNullOfOrNull { findLanguageRecursively(it) } From 1f7fafe9630ed59535d9376e065ea3ca61620f61 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 18 Sep 2023 14:36:29 +0300 Subject: [PATCH 006/144] Replace codeInsightUtils by fileDescriptor --- .../plugin/python/PythonIntellijProcessor.kt | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt index b7be740aec..bb1408958f 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonIntellijProcessor.kt @@ -1,20 +1,11 @@ package org.utbot.intellij.plugin.python -//import com.intellij.codeInsight.CodeInsightUtil -import com.intellij.codeInsight.CodeInsightUtilBase -import com.intellij.codeInsight.CodeInsightUtilCore -import com.intellij.codeInsight.CodeInsightWorkspaceSettings -import com.intellij.codeInsight.actions.CodeInsightAction -import com.intellij.codeInsight.hints.codeVision.CodeVision -import com.intellij.icons.ExpUiIcons.CodeInsight import com.intellij.openapi.application.invokeLater import com.intellij.openapi.application.runWriteAction +import com.intellij.openapi.fileEditor.OpenFileDescriptor import com.intellij.openapi.project.Project -import com.intellij.psi.PsiAnchor import com.intellij.psi.PsiDirectory -import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiFileFactory -import com.intellij.testFramework.fixtures.CodeInsightTestUtil import com.jetbrains.python.psi.PyClass import org.utbot.intellij.plugin.python.language.PythonLanguageAssistant import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater @@ -40,12 +31,7 @@ class PythonIntellijProcessor( testDir.findFile(testPsiFile.name)?.delete() testDir.add(testPsiFile) val file = testDir.findFile(testPsiFile.name)!! - CodeInsightUtilCore.getInstance().prepareFileForWrite(file) - val document = PsiDocumentManager.getInstance(model.project).getDocument(file) - val editor = CodeInsightUtilCore.getInstance() - editor.prepareFileForWrite(file) -// CodeInsightUtilCore. -// CodeInsightUtil.positionCursor(model.project, file, file) + OpenFileDescriptor(project, file.virtualFile).navigate(true) } } } From c4552ed2e094b8c2bdf4e550f431354a5a6726f2 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 18 Sep 2023 17:57:52 +0300 Subject: [PATCH 007/144] Update gradle --- utbot-intellij-main/build.gradle.kts | 36 +-------- .../readme.md | 0 utbot-intellij-python/build.gradle.kts | 6 +- .../plugin/python/PythonDialogProcessor.kt | 3 - utbot-intellij/build.gradle.kts | 77 +------------------ 5 files changed, 6 insertions(+), 116 deletions(-) rename {utbot-intellij => utbot-intellij-main}/readme.md (100%) diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index e872a4f11e..309b0a2f5b 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -2,35 +2,23 @@ val projectType: String by rootProject val communityEdition: String by rootProject val ultimateEdition: String by rootProject -val intellijPluginVersion: String? by rootProject -val kotlinLoggingVersion: String? by rootProject -val apacheCommonsTextVersion: String? by rootProject -val jacksonVersion: String? by rootProject - val ideType: String? by rootProject val ideVersion: String? by rootProject val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val goPluginVersion: String? by rootProject +val javaIde: String? by rootProject val pythonIde: String? by rootProject val jsIde: String? by rootProject val goIde: String? by rootProject -val sootVersion: String? by rootProject -val kryoVersion: String? by rootProject -val rdVersion: String? by rootProject val semVer: String? by rootProject val androidStudioPath: String? by rootProject -val junit5Version: String by rootProject -val junit4PlatformVersion: String by rootProject - // https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" -//project.tasks.asMap["runIde"]?.enabled = false - plugins { id("org.jetbrains.intellij") version "1.13.1" } @@ -150,26 +138,11 @@ repositories { } dependencies { - implementation(group ="com.jetbrains.rd", name = "rd-framework", version = rdVersion) - implementation(group ="com.jetbrains.rd", name = "rd-core", version = rdVersion) - implementation(group ="com.esotericsoftware.kryo", name = "kryo5", version = kryoVersion) - implementation(group = "io.github.microutils", name = "kotlin-logging", version = kotlinLoggingVersion) - implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion) - implementation("org.apache.httpcomponents.client5:httpclient5:5.1") - implementation(group = "com.fasterxml.jackson.module", name = "jackson-module-kotlin", version = jacksonVersion) - - implementation(project(":utbot-framework")) { exclude(group = "org.slf4j", module = "slf4j-api") } - implementation(project(":utbot-spring-framework")) { exclude(group = "org.slf4j", module = "slf4j-api") } - implementation(project(":utbot-java-fuzzing")) - //api(project(":utbot-analytics")) - testImplementation("org.mock-server:mockserver-netty:5.4.1") - testApi(project(":utbot-framework")) - implementation(project(":utbot-ui-commons")) //Family - if (ideType != "PC" && ideType != "PY") { + if (javaIde?.split(',')?.contains(ideType) == true) { implementation(project(":utbot-intellij")) } @@ -202,9 +175,4 @@ dependencies { // Video Recording implementation("com.automation-remarks:video-recorder-junit5:2.0") - - testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version") - testRuntimeOnly("org.junit.vintage:junit-vintage-engine:$junit5Version") } diff --git a/utbot-intellij/readme.md b/utbot-intellij-main/readme.md similarity index 100% rename from utbot-intellij/readme.md rename to utbot-intellij-main/readme.md diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 0d370e78ac..7899f0e5cd 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -61,11 +61,11 @@ intellij { plugins.set( when (ideType) { - "IC" -> jvmPlugins + kotlinPlugins + pythonCommunityPlugins - "IU" -> jvmPlugins + kotlinPlugins + pythonUltimatePlugins + "IC" -> pythonCommunityPlugins + "IU" -> pythonUltimatePlugins "PC" -> pythonCommunityPlugins "PY" -> pythonUltimatePlugins // something else, JS? - else -> jvmPlugins + else -> emptyList() } ) diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index b42c0fc1b1..d8a8cae701 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -9,7 +9,6 @@ import com.intellij.openapi.editor.Editor import com.intellij.openapi.fileEditor.FileDocumentManager import com.intellij.openapi.module.Module import com.intellij.openapi.module.ModuleUtilCore -import com.intellij.openapi.module.impl.ModuleImpl import com.intellij.openapi.progress.ProgressIndicator import com.intellij.openapi.progress.ProgressManager import com.intellij.openapi.progress.Task.Backgroundable @@ -27,8 +26,6 @@ import com.jetbrains.python.psi.PyFile import com.jetbrains.python.psi.PyFunction import com.jetbrains.python.sdk.pythonSdk import mu.KotlinLogging -//import org.jetbrains.kotlin.idea.base.util.module -//import org.jetbrains.kotlin.idea.base.util.sdk import org.utbot.common.PathUtil.toPath import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.settings.Settings diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index 7dd7e6a556..f648a6b1d0 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -71,27 +71,13 @@ intellij { val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins - plugins.set( - when (projectType) { - communityEdition -> basePluginSet + pythonCommunityPlugins - ultimateEdition -> when (ideType) { - "IC" -> basePluginSet + pythonCommunityPlugins - "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins - "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? - else -> basePluginSet - } - else -> basePluginSet - } - ) + plugins.set(basePluginSet) version.set(ideVersion) type.set(ideTypeOrAndroidStudio) SettingsTemplateHelper.proceed(project) } -val remoteRobotVersion = "0.11.16" - tasks { compileKotlin { kotlinOptions { @@ -117,36 +103,6 @@ tasks { untilBuild.set("232.*") version.set(semVer) } - - runIdeForUiTests { - jvmArgs("-Xmx2048m", "-Didea.is.internal=true", "-Didea.ui.debug.mode=true") - - systemProperty("robot-server.port", "8082") // default port 8580 - systemProperty("ide.mac.message.dialogs.as.sheets", "false") - systemProperty("jb.privacy.policy.text", "") - systemProperty("jb.consents.confirmation.enabled", "false") - systemProperty("idea.trust.all.projects", "true") - systemProperty("ide.mac.file.chooser.native", "false") - systemProperty("jbScreenMenuBar.enabled", "false") - systemProperty("apple.laf.useScreenMenuBar", "false") - systemProperty("ide.show.tips.on.startup.default.value", "false") - } - - downloadRobotServerPlugin { - version.set(remoteRobotVersion) - } - - test { - description = "Runs UI integration tests." - useJUnitPlatform { - exclude("/org/utbot/**") //Comment this line to run the tests locally - } - } -} - -repositories { - maven("https://jitpack.io") - maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies") } dependencies { @@ -166,39 +122,8 @@ dependencies { testApi(project(":utbot-framework")) implementation(project(":utbot-ui-commons")) - - //Family - - if (pythonIde?.split(',')?.contains(ideType) == true) { - implementation(project(":utbot-python")) - implementation(project(":utbot-intellij-python")) - } - - if (projectType == ultimateEdition) { - if (jsIde?.split(',')?.contains(ideType) == true) { - implementation(project(":utbot-js")) - implementation(project(":utbot-intellij-js")) - } - - if (goIde?.split(',')?.contains(ideType) == true) { - implementation(project(":utbot-go")) - implementation(project(":utbot-intellij-go")) - } - } - implementation(project(":utbot-android-studio")) - testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion") - testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion") - - testImplementation("org.assertj:assertj-core:3.11.1") - - // Logging Network Calls - testImplementation("com.squareup.okhttp3:logging-interceptor:4.10.0") - - // Video Recording - implementation("com.automation-remarks:video-recorder-junit5:2.0") - testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version") testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version") From a144d516fe91f790a66ae659407373eb82a786e4 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 18 Sep 2023 19:08:20 +0300 Subject: [PATCH 008/144] Update go and js --- .../org/utbot/cli/js/JsCoverageCommand.kt | 10 ++-- .../org/utbot/cli/js/JsRunTestsCommand.kt | 2 +- .../go/generator/GoUtTestsCodeFileWriter.kt | 6 +-- .../go/generator/GoUtTestsDialogProcessor.kt | 8 +-- .../IntellijGoUtTestsGenerationController.kt | 4 +- .../go => go/language}/GoLanguageAssistant.kt | 4 +- .../go/models/GenerateGoTestsModel.kt | 2 +- .../go/ui/GenerateGoTestsDialogWindow.kt | 4 +- .../go/ui/GoFunctionsSelectionTable.kt | 2 +- .../{language => }/go/ui/utils/GoSdkUtils.kt | 2 +- .../{language => }/js/CoverageModeButtons.kt | 2 +- .../{language => }/js/JsDialogProcessor.kt | 18 ++++--- .../{language => }/js/JsDialogWindow.kt | 4 +- .../utbot/intellij/plugin/js/JsTestsModel.kt | 49 +++++++++++++++++++ .../{language => }/js/NycSourceFileChooser.kt | 2 +- .../js => js/language}/JsLanguageAssistant.kt | 3 +- .../plugin/language/js/JsTestsModel.kt | 31 ------------ .../src/main/kotlin/service/TernService.kt | 2 +- .../service/coverage/BasicCoverageService.kt | 2 +- .../service/coverage/CoverageService.kt | 4 +- .../service/coverage/FastCoverageService.kt | 2 +- .../kotlin/settings/JsPackagesSettings.kt | 6 +-- 22 files changed, 97 insertions(+), 72 deletions(-) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/generator/GoUtTestsCodeFileWriter.kt (92%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/generator/GoUtTestsDialogProcessor.kt (95%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/generator/IntellijGoUtTestsGenerationController.kt (98%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language/go => go/language}/GoLanguageAssistant.kt (96%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/models/GenerateGoTestsModel.kt (96%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/ui/GenerateGoTestsDialogWindow.kt (97%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/ui/GoFunctionsSelectionTable.kt (95%) rename utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/{language => }/go/ui/utils/GoSdkUtils.kt (81%) rename utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/{language => }/js/CoverageModeButtons.kt (94%) rename utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/{language => }/js/JsDialogProcessor.kt (96%) rename utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/{language => }/js/JsDialogWindow.kt (98%) create mode 100644 utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsTestsModel.kt rename utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/{language => }/js/NycSourceFileChooser.kt (95%) rename utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/{language/js => js/language}/JsLanguageAssistant.kt (98%) delete mode 100644 utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsTestsModel.kt diff --git a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt index 788b63c559..5e88973b6d 100644 --- a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt +++ b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt @@ -52,12 +52,12 @@ class JsCoverageCommand : CliktCommand(name = "coverage_js", help = "Get tests c shouldWait = true, timeout = 20, cmd = arrayOf( - "\"$pathToNYC\"", - "--report-dir=\"$coverageDataPath\"", - "--reporter=\"clover\"", - "--temp-dir=\"${workingDir}/cache\"", + pathToNYC, + "--report-dir=$coverageDataPath", + "--reporter=clover", + "--temp-dir=${workingDir}/cache", "mocha", - "\"$testFileAbsolutePath\"" + testFileAbsolutePath ) ) val coveredList = mutableListOf() diff --git a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt index 60d96fc374..1c094aa058 100644 --- a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt +++ b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt @@ -42,7 +42,7 @@ class JsRunTestsCommand : CliktCommand(name = "run_js", help = "Runs tests for t val (inputText, errorText) = JsCmdExec.runCommand( dir = dir, shouldWait = true, - cmd = arrayOf("mocha", "\"$fileWithTestsAbsolutePath\"") + cmd = arrayOf("mocha", fileWithTestsAbsolutePath) ) if (errorText.isNotEmpty()) { logger.error { "An error has occurred while running tests for $fileWithTests: $errorText" } diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/GoUtTestsCodeFileWriter.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt similarity index 92% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/GoUtTestsCodeFileWriter.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt index 14dca93611..4ad546935b 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/GoUtTestsCodeFileWriter.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.generator +package org.utbot.intellij.plugin.go.generator import com.intellij.codeInsight.CodeInsightUtil import com.intellij.openapi.application.runWriteAction @@ -9,8 +9,8 @@ import com.intellij.psi.PsiFileFactory import com.intellij.psi.PsiManager import com.intellij.util.IncorrectOperationException import org.utbot.go.api.GoUtFile -import org.utbot.intellij.plugin.language.go.GoLanguageAssistant -import org.utbot.intellij.plugin.language.go.models.GenerateGoTestsModel +import org.utbot.intellij.plugin.go.language.GoLanguageAssistant +import org.utbot.intellij.plugin.go.models.GenerateGoTestsModel import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater import java.nio.file.Paths diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/GoUtTestsDialogProcessor.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsDialogProcessor.kt similarity index 95% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/GoUtTestsDialogProcessor.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsDialogProcessor.kt index be9b8cf6a7..b5c1fcdd9d 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/GoUtTestsDialogProcessor.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsDialogProcessor.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.generator +package org.utbot.intellij.plugin.go.generator import com.goide.project.DefaultGoRootsProvider import com.goide.psi.GoFunctionOrMethodDeclaration @@ -16,9 +16,9 @@ import com.intellij.openapi.ui.Messages import org.utbot.go.gocodeanalyzer.GoParsingSourceCodeAnalysisResultException import org.utbot.go.logic.GoUtTestsGenerationConfig import org.utbot.go.worker.GoWorkerFailedException -import org.utbot.intellij.plugin.language.go.models.GenerateGoTestsModel -import org.utbot.intellij.plugin.language.go.ui.GenerateGoTestsDialogWindow -import org.utbot.intellij.plugin.language.go.ui.utils.resolveGoExecutablePath +import org.utbot.intellij.plugin.go.models.GenerateGoTestsModel +import org.utbot.intellij.plugin.go.ui.GenerateGoTestsDialogWindow +import org.utbot.intellij.plugin.go.ui.utils.resolveGoExecutablePath import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater import java.nio.file.Paths diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/IntellijGoUtTestsGenerationController.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/IntellijGoUtTestsGenerationController.kt similarity index 98% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/IntellijGoUtTestsGenerationController.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/IntellijGoUtTestsGenerationController.kt index 43858f3ece..b5a89b4c17 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/generator/IntellijGoUtTestsGenerationController.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/IntellijGoUtTestsGenerationController.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.generator +package org.utbot.intellij.plugin.go.generator import com.intellij.openapi.application.invokeLater import com.intellij.openapi.progress.ProgressIndicator @@ -7,7 +7,7 @@ import org.utbot.go.api.GoUtFunction import org.utbot.go.api.GoUtFuzzedFunctionTestCase import org.utbot.go.gocodeanalyzer.GoSourceCodeAnalyzer import org.utbot.go.logic.AbstractGoUtTestsGenerationController -import org.utbot.intellij.plugin.language.go.models.GenerateGoTestsModel +import org.utbot.intellij.plugin.go.models.GenerateGoTestsModel import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater import org.utbot.intellij.plugin.ui.utils.showWarningDialogLater import java.nio.file.Path diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/GoLanguageAssistant.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt similarity index 96% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/GoLanguageAssistant.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt index b2265756c3..3dd98052de 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/GoLanguageAssistant.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go +package org.utbot.intellij.plugin.go.language import com.goide.psi.* import com.intellij.lang.Language @@ -10,7 +10,7 @@ import com.intellij.psi.PsiFile import com.intellij.psi.util.PsiTreeUtil import org.jetbrains.kotlin.idea.base.util.module import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant -import org.utbot.intellij.plugin.language.go.generator.GoUtTestsDialogProcessor +import org.utbot.intellij.plugin.go.generator.GoUtTestsDialogProcessor @Suppress("unused") // is used in org.utbot.intellij.plugin.language.agnostic.LanguageAssistant via reflection object GoLanguageAssistant : LanguageAssistant() { diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/models/GenerateGoTestsModel.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/models/GenerateGoTestsModel.kt similarity index 96% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/models/GenerateGoTestsModel.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/models/GenerateGoTestsModel.kt index 2e1cc8f2ef..0b62e84649 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/models/GenerateGoTestsModel.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/models/GenerateGoTestsModel.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.models +package org.utbot.intellij.plugin.go.models import com.goide.psi.GoFunctionDeclaration import com.goide.psi.GoFunctionOrMethodDeclaration diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/GenerateGoTestsDialogWindow.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/GenerateGoTestsDialogWindow.kt similarity index 97% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/GenerateGoTestsDialogWindow.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/GenerateGoTestsDialogWindow.kt index 6232e8a7e9..b24febe97e 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/GenerateGoTestsDialogWindow.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/GenerateGoTestsDialogWindow.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.ui +package org.utbot.intellij.plugin.go.ui import com.goide.psi.GoFunctionDeclaration import com.goide.psi.GoFunctionOrMethodDeclaration @@ -16,7 +16,7 @@ import com.intellij.util.ui.JBUI import com.intellij.util.ui.UIUtil import org.utbot.go.logic.GoUtTestsGenerationConfig import org.utbot.go.logic.TestsGenerationMode -import org.utbot.intellij.plugin.language.go.models.GenerateGoTestsModel +import org.utbot.intellij.plugin.go.models.GenerateGoTestsModel import org.utbot.intellij.plugin.settings.Settings import java.text.ParseException import java.util.concurrent.TimeUnit diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/GoFunctionsSelectionTable.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/GoFunctionsSelectionTable.kt similarity index 95% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/GoFunctionsSelectionTable.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/GoFunctionsSelectionTable.kt index cd7e93eb7d..ee6203c875 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/GoFunctionsSelectionTable.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/GoFunctionsSelectionTable.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.ui +package org.utbot.intellij.plugin.go.ui import com.goide.psi.GoNamedElement import com.goide.refactor.ui.GoDeclarationInfo diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/utils/GoSdkUtils.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/utils/GoSdkUtils.kt similarity index 81% rename from utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/utils/GoSdkUtils.kt rename to utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/utils/GoSdkUtils.kt index 049098ed64..fd385cc82c 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/language/go/ui/utils/GoSdkUtils.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/ui/utils/GoSdkUtils.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.go.ui.utils +package org.utbot.intellij.plugin.go.ui.utils import com.goide.sdk.GoSdk import java.nio.file.Paths diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/CoverageModeButtons.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/CoverageModeButtons.kt similarity index 94% rename from utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/CoverageModeButtons.kt rename to utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/CoverageModeButtons.kt index 874a3f1fe9..c2f8c2f1e6 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/CoverageModeButtons.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/CoverageModeButtons.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.js +package org.utbot.intellij.plugin.js import javax.swing.ButtonGroup import javax.swing.JRadioButton diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsDialogProcessor.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt similarity index 96% rename from utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsDialogProcessor.kt rename to utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt index ba0cff9b85..1612b3d00c 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsDialogProcessor.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.js +package org.utbot.intellij.plugin.js import api.JsTestGenerator import com.intellij.codeInsight.CodeInsightUtil @@ -10,9 +10,11 @@ import com.intellij.openapi.editor.Document import com.intellij.openapi.editor.Editor import com.intellij.openapi.fileEditor.FileDocumentManager import com.intellij.openapi.module.Module +import com.intellij.openapi.module.ModuleManager import com.intellij.openapi.progress.ProgressIndicator import com.intellij.openapi.progress.Task import com.intellij.openapi.project.Project +import com.intellij.openapi.roots.TestModuleProperties import com.intellij.openapi.ui.Messages import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiFileFactory @@ -24,8 +26,8 @@ import org.jetbrains.kotlin.idea.util.application.runReadAction import org.jetbrains.kotlin.idea.util.application.runWriteAction import org.jetbrains.kotlin.konan.file.File import org.utbot.framework.plugin.api.TimeoutException +import org.utbot.intellij.plugin.js.language.JsLanguageAssistant import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater -import org.utbot.intellij.plugin.ui.utils.testModules import settings.JsDynamicSettings import settings.JsExportsSettings.endComment import settings.JsExportsSettings.startComment @@ -87,7 +89,10 @@ object JsDialogProcessor { val pathToNode = NodeJsLocalInterpreterManager.getInstance().interpreters.first().interpreterSystemIndependentPath val (_, errorText) = JsCmdExec.runCommand( - shouldWait = true, cmd = arrayOf("\"${pathToNode}\"", "-v") + shouldWait = true, cmd = arrayOf( + pathToNode, + "-v" + ) ) if (errorText.isNotEmpty()) throw NoSuchElementException() val pathToNPM = @@ -117,7 +122,7 @@ object JsDialogProcessor { filePath: String, file: JSFile ): JsTestsModel? { - val testModules = srcModule.testModules(project) + val testModules = srcModule.testModules() if (testModules.isEmpty()) { val errorMessage = """ @@ -130,11 +135,10 @@ object JsDialogProcessor { val (pathToNode, pathToNPM) = findNodeAndNPM() ?: return null return JsTestsModel( project = project, - srcModule = srcModule, potentialTestModules = testModules, + file = file, fileMethods = fileMethods, selectedMethods = if (focusedMethod != null) setOf(focusedMethod) else emptySet(), - file = file, ).apply { containingFilePath = filePath this.pathToNode = pathToNode @@ -268,6 +272,8 @@ object JsDialogProcessor { } } +private fun Module.testModules() = listOf(this) + private fun PackageDataService.checkAndInstallRequirements(project: Project): Boolean { val missingPackages = jsPackagesList.filterNot { this.findPackage(it) } if (missingPackages.isEmpty()) return true diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsDialogWindow.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogWindow.kt similarity index 98% rename from utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsDialogWindow.kt rename to utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogWindow.kt index 24d934ada1..14b71160c7 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsDialogWindow.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogWindow.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.js +package org.utbot.intellij.plugin.js import com.intellij.lang.javascript.refactoring.ui.JSMemberSelectionTable import com.intellij.lang.javascript.refactoring.util.JSMemberInfo @@ -111,7 +111,7 @@ class JsDialogWindow(val model: JsTestsModel) : DialogWrapper(model.project) { model.testFramework = testFrameworks.item model.timeout = timeoutSpinner.number.toLong() model.pathToNYC = nycSourceFileChooserField.text - model.coverageMode = coverageMode.mode + model.coverageMode = CoverageModeButtons.mode File(testSourceFolderField.text).mkdir() model.testSourceRoot = VirtualFileManager.getInstance().refreshAndFindFileByNioPath(Paths.get(testSourceFolderField.text)) diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsTestsModel.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsTestsModel.kt new file mode 100644 index 0000000000..de18043117 --- /dev/null +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsTestsModel.kt @@ -0,0 +1,49 @@ +package org.utbot.intellij.plugin.js + +import com.intellij.lang.javascript.psi.JSFile +import com.intellij.lang.javascript.refactoring.util.JSMemberInfo +import com.intellij.openapi.module.Module +import com.intellij.openapi.module.ModuleUtil +import com.intellij.openapi.project.Project +import com.intellij.openapi.vfs.VirtualFile +import com.intellij.openapi.vfs.newvfs.impl.FakeVirtualFile +import org.utbot.framework.codegen.domain.TestFramework +import org.utbot.intellij.plugin.models.BaseTestsModel +import service.coverage.CoverageMode +import settings.JsTestGenerationSettings.defaultTimeout + +class JsTestsModel( + project: Project, + val potentialTestModules: List, + val file: JSFile, + val fileMethods: Set, + var selectedMethods: Set, +) : BaseTestsModel( + project +) { + var testModule: Module = potentialTestModules.firstOrNull() ?: error("Empty list of test modules in model") + + var timeout = defaultTimeout + + lateinit var testFramework: TestFramework + lateinit var containingFilePath: String + var pathToNode: String = "node" + var pathToNYC: String = "nyc" + var pathToNPM: String = "npm" + var coverageMode: CoverageMode = CoverageMode.FAST + + fun setSourceRootAndFindTestModule(newTestSourceRoot: VirtualFile?) { + requireNotNull(newTestSourceRoot) + testSourceRoot = newTestSourceRoot + var target = newTestSourceRoot + while (target != null && target is FakeVirtualFile) { + target = target.parent + } + if (target == null) { + error("Could not find module for $newTestSourceRoot") + } + + testModule = ModuleUtil.findModuleForFile(target, project) + ?: error("Could not find module for $newTestSourceRoot") + } +} diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/NycSourceFileChooser.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/NycSourceFileChooser.kt similarity index 95% rename from utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/NycSourceFileChooser.kt rename to utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/NycSourceFileChooser.kt index ebe84a48b3..e3683d5a6d 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/NycSourceFileChooser.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/NycSourceFileChooser.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.js +package org.utbot.intellij.plugin.js import com.intellij.openapi.fileChooser.FileChooserDescriptor import com.intellij.openapi.ui.TextBrowseFolderListener diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsLanguageAssistant.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt similarity index 98% rename from utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsLanguageAssistant.kt rename to utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt index 3d3eefe17a..cbc9c3f0d5 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsLanguageAssistant.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt @@ -1,4 +1,4 @@ -package org.utbot.intellij.plugin.language.js +package org.utbot.intellij.plugin.js.language import com.intellij.lang.Language import com.intellij.lang.ecmascript6.psi.ES6Class @@ -16,6 +16,7 @@ import com.intellij.psi.PsiFile import com.intellij.psi.PsiFileFactory import com.intellij.psi.util.PsiTreeUtil import org.jetbrains.kotlin.idea.util.projectStructure.module +import org.utbot.intellij.plugin.js.JsDialogProcessor import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import settings.JsTestGenerationSettings.dummyClassName diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsTestsModel.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsTestsModel.kt deleted file mode 100644 index 8c8508953d..0000000000 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/language/js/JsTestsModel.kt +++ /dev/null @@ -1,31 +0,0 @@ -package org.utbot.intellij.plugin.language.js - -import com.intellij.lang.javascript.psi.JSFile -import com.intellij.lang.javascript.refactoring.util.JSMemberInfo -import com.intellij.openapi.module.Module -import com.intellij.openapi.project.Project -import org.utbot.framework.codegen.domain.TestFramework -import org.utbot.intellij.plugin.models.BaseTestsModel -import service.coverage.CoverageMode -import settings.JsTestGenerationSettings.defaultTimeout - -class JsTestsModel( - project: Project, - srcModule: Module, - potentialTestModules: List, - val file: JSFile, - val fileMethods: Set, - var selectedMethods: Set, -) : BaseTestsModel( - project, srcModule, potentialTestModules, emptySet() -) { - - var timeout = defaultTimeout - - lateinit var testFramework: TestFramework - lateinit var containingFilePath: String - var pathToNode: String = "node" - var pathToNYC: String = "nyc" - var pathToNPM: String = "npm" - var coverageMode: CoverageMode = CoverageMode.FAST -} diff --git a/utbot-js/src/main/kotlin/service/TernService.kt b/utbot-js/src/main/kotlin/service/TernService.kt index fd215752a4..b17dcd19e8 100644 --- a/utbot-js/src/main/kotlin/service/TernService.kt +++ b/utbot-js/src/main/kotlin/service/TernService.kt @@ -80,7 +80,7 @@ test(["${filePathToInference.joinToString(separator = "\", \"")}"]) dir = "$projectPath/$utbotDir/", shouldWait = true, timeout = 20, - cmd = arrayOf("\"${settings.pathToNode}\"", "\"${projectPath}/$utbotDir/ternScript.js\""), + cmd = arrayOf(settings.pathToNode, "${projectPath}/$utbotDir/ternScript.js"), ) json = try { JSONObject(inputText.replaceAfterLast("}", "")) diff --git a/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt b/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt index 9b774d8154..6351457851 100644 --- a/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt +++ b/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt @@ -21,7 +21,7 @@ class BasicCoverageService( scriptTexts.indices.forEach { index -> try { val (_, errorText) = JsCmdExec.runCommand( - cmd = arrayOf("\"${settings.pathToNode}\"", "\"$utbotDirPath/$tempFileName$index.js\""), + cmd = arrayOf(settings.pathToNode, "$utbotDirPath/$tempFileName$index.js"), dir = projectPath, shouldWait = true, timeout = settings.timeout, diff --git a/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt b/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt index b51106e8cf..0fdcd20a90 100644 --- a/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt +++ b/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt @@ -41,8 +41,8 @@ abstract class CoverageService( ) JsCmdExec.runCommand( cmd = arrayOf( - "\"${settings.pathToNode}\"", - "\"$utbotDirPath/${JsTestGenerationSettings.tempFileName}Base.js\"" + settings.pathToNode, + "$utbotDirPath/${JsTestGenerationSettings.tempFileName}Base.js" ), dir = projectPath, shouldWait = true, diff --git a/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt b/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt index a2c3c0f05a..032ee65946 100644 --- a/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt +++ b/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt @@ -20,7 +20,7 @@ class FastCoverageService( override fun generateCoverageReport() { val (_, errorText) = JsCmdExec.runCommand( - cmd = arrayOf("\"${settings.pathToNode}\"", "\"$utbotDirPath/$tempFileName" + "0.js\""), + cmd = arrayOf(settings.pathToNode, "$utbotDirPath/$tempFileName" + "0.js"), dir = projectPath, shouldWait = true, timeout = settings.timeout, diff --git a/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt b/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt index ebea20a6ab..95a1f7946f 100644 --- a/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt +++ b/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt @@ -66,7 +66,7 @@ class PackageDataService( dir = projectPath, shouldWait = true, timeout = 10, - cmd = arrayOf("\"$pathToNpm\"", "list", npmListFlag.toString()) + cmd = arrayOf(pathToNpm, "list", npmListFlag.toString()) ) var result = inputText.contains(packageName) if (!result || this == nycData) { @@ -103,7 +103,7 @@ class PackageDataService( dir = projectPath, shouldWait = true, timeout = 10, - cmd = arrayOf("\"$pathToNpm\"", "install", NpmListFlag.L.toString(), *localPackageNames) + cmd = arrayOf(pathToNpm, "install", NpmListFlag.L.toString(), *localPackageNames) ) inputTextAllPackages += inputText errorTextAllPackages += errorText @@ -114,7 +114,7 @@ class PackageDataService( dir = projectPath, shouldWait = true, timeout = 10, - cmd = arrayOf("\"$pathToNpm\"", "install", NpmListFlag.G.toString(), *globalPackageNames) + cmd = arrayOf(pathToNpm, "install", NpmListFlag.G.toString(), *globalPackageNames) ) inputTextAllPackages += inputText errorTextAllPackages += errorText From 9e293d67900bfd841f72e94f74d8ae0b6e945836 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 19 Sep 2023 09:51:14 +0300 Subject: [PATCH 009/144] Update build.gradle --- settings.gradle.kts | 8 ++++--- utbot-intellij-go/build.gradle.kts | 26 ++--------------------- utbot-intellij-js/build.gradle.kts | 29 ++------------------------ utbot-intellij-main/build.gradle.kts | 2 +- utbot-intellij-python/build.gradle.kts | 8 ------- utbot-intellij/build.gradle.kts | 20 ------------------ 6 files changed, 10 insertions(+), 83 deletions(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index 581f66a4c4..38c5173f3b 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -5,6 +5,7 @@ val ultimateEdition: String by settings val ideType: String by settings val buildType: String by settings +val javaIde: String by settings val pythonIde: String by settings val jsIde: String by settings val jsBuild: String by settings @@ -27,9 +28,6 @@ include("utbot-core") include("utbot-framework") include("utbot-framework-api") include("utbot-modificators-analyzer") -if (ideType != "PC" && ideType != "PY") { - include("utbot-intellij") -} include("utbot-sample") include("utbot-java-fuzzing") include("utbot-fuzzing") @@ -65,6 +63,10 @@ include("utbot-spring-analyzer") include("utbot-spring-sample") include("utbot-spring-test") +if (javaIde.split(",").contains(ideType)) { + include("utbot-intellij") +} + if (pythonIde.split(",").contains(ideType)) { include("utbot-python") include("utbot-cli-python") diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index 377bad3660..a949d5589e 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -43,36 +43,14 @@ dependencies { } intellij { - - val androidPlugins = listOf("org.jetbrains.android") - - val jvmPlugins = listOf( - "java" - ) - - val pythonCommunityPlugins = listOf( - "PythonCore:${pythonCommunityPluginVersion}" - ) - - val pythonUltimatePlugins = listOf( - "Pythonid:${pythonUltimatePluginVersion}" - ) - - val jsPlugins = listOf( - "JavaScript" - ) - val goPlugins = listOf( "org.jetbrains.plugins.go:${goPluginVersion}" ) plugins.set( when (ideType) { - "IC" -> jvmPlugins + pythonCommunityPlugins + androidPlugins - "IU" -> jvmPlugins + pythonUltimatePlugins + jsPlugins + goPlugins + androidPlugins - "PC" -> pythonCommunityPlugins - "PU" -> pythonUltimatePlugins // something else, JS? - else -> jvmPlugins + "IU" -> goPlugins + else -> emptyList() } ) diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index 815e860514..62d739ff9a 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -4,9 +4,6 @@ val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject val ideType: String? by rootProject val ideVersion: String? by rootProject -val pythonCommunityPluginVersion: String? by rootProject -val pythonUltimatePluginVersion: String? by rootProject -val goPluginVersion: String? by rootProject plugins { id("org.jetbrains.intellij") version "1.13.1" @@ -43,36 +40,14 @@ dependencies { } intellij { - - val androidPlugins = listOf("org.jetbrains.android") - - val jvmPlugins = listOf( - "java" - ) - - val pythonCommunityPlugins = listOf( - "PythonCore:${pythonCommunityPluginVersion}" - ) - - val pythonUltimatePlugins = listOf( - "Pythonid:${pythonUltimatePluginVersion}" - ) - val jsPlugins = listOf( "JavaScript" ) - val goPlugins = listOf( - "org.jetbrains.plugins.go:${goPluginVersion}" - ) - plugins.set( when (ideType) { - "IC" -> jvmPlugins + pythonCommunityPlugins + androidPlugins - "IU" -> jvmPlugins + pythonUltimatePlugins + jsPlugins + goPlugins + androidPlugins - "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? - else -> jvmPlugins + "IU" -> jsPlugins + else -> emptyList() } ) diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 309b0a2f5b..f759ce4ebb 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -66,7 +66,7 @@ intellij { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "PY" -> pythonUltimatePlugins + jsPlugins // something else, JS? else -> basePluginSet } else -> basePluginSet diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 7899f0e5cd..e96244e04f 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -6,7 +6,6 @@ val ideType: String? by rootProject val ideVersion: String by rootProject val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject -val goPluginVersion: String? by rootProject plugins { id("org.jetbrains.intellij") version "1.13.1" @@ -43,13 +42,6 @@ dependencies { } intellij { - val jvmPlugins = listOf( - "java" - ) - - val kotlinPlugins = mutableListOf( - "org.jetbrains.kotlin" - ) val pythonCommunityPlugins = listOf( "PythonCore:${pythonCommunityPluginVersion}" diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index f648a6b1d0..e9d031e8c1 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -13,10 +13,6 @@ val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val goPluginVersion: String? by rootProject -val pythonIde: String? by rootProject -val jsIde: String? by rootProject -val goIde: String? by rootProject - val sootVersion: String? by rootProject val kryoVersion: String? by rootProject val rdVersion: String? by rootProject @@ -49,22 +45,6 @@ intellij { androidStudioPath?.let { jvmPlugins += androidPlugins } - val pythonCommunityPlugins = listOf( - "PythonCore:${pythonCommunityPluginVersion}" - ) - - val pythonUltimatePlugins = listOf( - "Pythonid:${pythonUltimatePluginVersion}" - ) - - val jsPlugins = listOf( - "JavaScript" - ) - - val goPlugins = listOf( - "org.jetbrains.plugins.go:${goPluginVersion}" - ) - val mavenUtilsPlugins = listOf( "org.jetbrains.idea.maven" ) From 32b4d74a5a36b80d1b669e266f5717cdeec1ccb4 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 19 Sep 2023 09:58:07 +0300 Subject: [PATCH 010/144] Update gradle.properties --- gradle.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle.properties b/gradle.properties index 3682db48d7..27c494f24f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,6 +16,7 @@ ideVersion=2023.2 # ALL, NOJS buildType=NOJS +javaIde=IC,IU pythonIde=IC,IU,PC,PY jsIde=IU jsBuild=ALL From 198708985df2f0247e98d64a8a806cb4a81961bf Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 19 Sep 2023 13:57:00 +0300 Subject: [PATCH 011/144] Update build.gradle.kts --- gradle.properties | 6 ++-- settings.gradle.kts | 3 +- utbot-intellij-go/build.gradle.kts | 48 ++++++++++++++++++++++++-- utbot-intellij-js/build.gradle.kts | 51 ++++++++++++++++++++++++++-- utbot-intellij-main/build.gradle.kts | 2 +- 5 files changed, 98 insertions(+), 12 deletions(-) diff --git a/gradle.properties b/gradle.properties index 27c494f24f..e157ec654a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,9 +10,9 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=PY -#ideVersion=232.8660.185 -ideVersion=2023.2 +ideType=IC +ideVersion=232.8660.185 +#ideVersion=2023.2 # ALL, NOJS buildType=NOJS diff --git a/settings.gradle.kts b/settings.gradle.kts index 38c5173f3b..8e00d13b75 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -35,8 +35,6 @@ include("utbot-junit-contest") include("utbot-analytics") include("utbot-analytics-torch") -include("utbot-cli") - include("utbot-api") include("utbot-instrumentation") include("utbot-instrumentation-tests") @@ -65,6 +63,7 @@ include("utbot-spring-test") if (javaIde.split(",").contains(ideType)) { include("utbot-intellij") + include("utbot-cli") } if (pythonIde.split(",").contains(ideType)) { diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index a949d5589e..86d7c76e06 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -1,3 +1,6 @@ +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject @@ -8,6 +11,7 @@ val kotlinPluginVersion: String by rootProject val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val goPluginVersion: String? by rootProject +val androidStudioPath: String? by rootProject plugins { id("org.jetbrains.intellij") version "1.13.1" @@ -43,14 +47,52 @@ dependencies { } intellij { + + val androidPlugins = listOf("org.jetbrains.android") + + val jvmPlugins = mutableListOf( + "java" + ) + + val kotlinPlugins = mutableListOf( + "org.jetbrains.kotlin" + ) + + androidStudioPath?.let { jvmPlugins += androidPlugins } + + val pythonCommunityPlugins = listOf( + "PythonCore:${pythonCommunityPluginVersion}" + ) + + val pythonUltimatePlugins = listOf( + "Pythonid:${pythonUltimatePluginVersion}" + ) + + val jsPlugins = listOf( + "JavaScript" + ) + val goPlugins = listOf( "org.jetbrains.plugins.go:${goPluginVersion}" ) + val mavenUtilsPlugins = listOf( + "org.jetbrains.idea.maven" + ) + + val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins + plugins.set( - when (ideType) { - "IU" -> goPlugins - else -> emptyList() + when (projectType) { + communityEdition -> basePluginSet + pythonCommunityPlugins + ultimateEdition -> when (ideType) { + "IC" -> basePluginSet + pythonCommunityPlugins + "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins // something else, JS? + else -> basePluginSet + } + else -> basePluginSet } ) diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index 62d739ff9a..9f2b09464e 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -1,9 +1,16 @@ +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject val ideType: String? by rootProject val ideVersion: String? by rootProject +val pythonCommunityPluginVersion: String? by rootProject +val pythonUltimatePluginVersion: String? by rootProject +val goPluginVersion: String? by rootProject +val androidStudioPath: String? by rootProject plugins { id("org.jetbrains.intellij") version "1.13.1" @@ -40,14 +47,52 @@ dependencies { } intellij { + + val androidPlugins = listOf("org.jetbrains.android") + + val jvmPlugins = mutableListOf( + "java" + ) + + val kotlinPlugins = mutableListOf( + "org.jetbrains.kotlin" + ) + + androidStudioPath?.let { jvmPlugins += androidPlugins } + + val pythonCommunityPlugins = listOf( + "PythonCore:${pythonCommunityPluginVersion}" + ) + + val pythonUltimatePlugins = listOf( + "Pythonid:${pythonUltimatePluginVersion}" + ) + val jsPlugins = listOf( "JavaScript" ) + val goPlugins = listOf( + "org.jetbrains.plugins.go:${goPluginVersion}" + ) + + val mavenUtilsPlugins = listOf( + "org.jetbrains.idea.maven" + ) + + val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins + plugins.set( - when (ideType) { - "IU" -> jsPlugins - else -> emptyList() + when (projectType) { + communityEdition -> basePluginSet + pythonCommunityPlugins + ultimateEdition -> when (ideType) { + "IC" -> basePluginSet + pythonCommunityPlugins + "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins // something else, JS? + else -> basePluginSet + } + else -> basePluginSet } ) diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index f759ce4ebb..309b0a2f5b 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -66,7 +66,7 @@ intellij { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins + jsPlugins // something else, JS? + "PY" -> pythonUltimatePlugins // something else, JS? else -> basePluginSet } else -> basePluginSet From 7b59128674a39e8d4e28aef5a365556653263f3b Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 19 Sep 2023 15:10:30 +0300 Subject: [PATCH 012/144] move tests --- .github/workflows/combined-projects-matrix.json | 2 +- .github/workflows/run-chosen-tests-from-branch.yml | 2 +- {utbot-intellij => utbot-intellij-main}/src/test/java/Bar.java | 0 {utbot-intellij => utbot-intellij-main}/src/test/java/Foo.java | 0 .../src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt | 0 .../src/test/kotlin/org/utbot/data/JDKVersion.kt | 0 .../src/test/kotlin/org/utbot/data/RunInfo.kt | 0 .../src/test/kotlin/org/utbot/dialogs/DialogFixture.kt | 0 .../test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt | 0 .../test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt | 0 .../test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt | 0 .../src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt | 0 .../src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt | 0 .../src/test/kotlin/org/utbot/elements/NotificationFixture.kt | 0 .../src/test/kotlin/org/utbot/pages/IdeaFrame.kt | 0 .../src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt | 0 .../src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt | 0 .../src/test/kotlin/org/utbot/pages/WelcomeFrame.kt | 0 .../src/test/kotlin/org/utbot/samples/CodeSamples.kt | 0 .../src/test/kotlin/org/utbot/steps/IDESteps.kt | 0 .../src/test/kotlin/org/utbot/tests/BaseTest.kt | 0 .../src/test/kotlin/org/utbot/tests/CreateProjects.kt | 0 .../src/test/kotlin/org/utbot/tests/RootUtilsTest.kt | 0 .../src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt | 0 .../src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt | 0 .../src/test/kotlin/org/utbot/utils/StepsLogger.kt | 0 .../src/test/resources/application.properties | 0 .../src/test/resources/junit-platform.properties | 0 .../src/test/resources/log4j.properties | 0 .../src/test/resources/log4j2.xml | 0 30 files changed, 2 insertions(+), 2 deletions(-) rename {utbot-intellij => utbot-intellij-main}/src/test/java/Bar.java (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/java/Foo.java (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/data/JDKVersion.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/data/RunInfo.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/elements/NotificationFixture.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/pages/IdeaFrame.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/samples/CodeSamples.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/steps/IDESteps.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/tests/BaseTest.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/tests/CreateProjects.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/kotlin/org/utbot/utils/StepsLogger.kt (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/resources/application.properties (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/resources/junit-platform.properties (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/resources/log4j.properties (100%) rename {utbot-intellij => utbot-intellij-main}/src/test/resources/log4j2.xml (100%) diff --git a/.github/workflows/combined-projects-matrix.json b/.github/workflows/combined-projects-matrix.json index 83130dd191..adbcb967c6 100644 --- a/.github/workflows/combined-projects-matrix.json +++ b/.github/workflows/combined-projects-matrix.json @@ -1,7 +1,7 @@ { "projects": [ { - "FIRST": "utbot-intellij", + "FIRST": "utbot-intellij-main", "SECOND": "utbot-cli" }, { diff --git a/.github/workflows/run-chosen-tests-from-branch.yml b/.github/workflows/run-chosen-tests-from-branch.yml index ea5dec9ac5..d59a68b03c 100644 --- a/.github/workflows/run-chosen-tests-from-branch.yml +++ b/.github/workflows/run-chosen-tests-from-branch.yml @@ -18,7 +18,7 @@ on: - utbot-gradle - utbot-instrumentation-tests - utbot-instrumentation - - utbot-intellij + - utbot-intellij-main - utbot-sample - utbot-summary - utbot-summary-tests diff --git a/utbot-intellij/src/test/java/Bar.java b/utbot-intellij-main/src/test/java/Bar.java similarity index 100% rename from utbot-intellij/src/test/java/Bar.java rename to utbot-intellij-main/src/test/java/Bar.java diff --git a/utbot-intellij/src/test/java/Foo.java b/utbot-intellij-main/src/test/java/Foo.java similarity index 100% rename from utbot-intellij/src/test/java/Foo.java rename to utbot-intellij-main/src/test/java/Foo.java diff --git a/utbot-intellij/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/data/JDKVersion.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/data/JDKVersion.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/data/JDKVersion.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/data/JDKVersion.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/data/RunInfo.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/data/RunInfo.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/data/RunInfo.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/data/RunInfo.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/elements/NotificationFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/elements/NotificationFixture.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/elements/NotificationFixture.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/elements/NotificationFixture.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaFrame.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaFrame.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaFrame.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/samples/CodeSamples.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/samples/CodeSamples.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/samples/CodeSamples.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/samples/CodeSamples.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/steps/IDESteps.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/steps/IDESteps.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/steps/IDESteps.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/steps/IDESteps.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/BaseTest.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/BaseTest.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/tests/BaseTest.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/tests/BaseTest.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/CreateProjects.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/CreateProjects.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/tests/CreateProjects.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/tests/CreateProjects.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt diff --git a/utbot-intellij/src/test/kotlin/org/utbot/utils/StepsLogger.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/utils/StepsLogger.kt similarity index 100% rename from utbot-intellij/src/test/kotlin/org/utbot/utils/StepsLogger.kt rename to utbot-intellij-main/src/test/kotlin/org/utbot/utils/StepsLogger.kt diff --git a/utbot-intellij/src/test/resources/application.properties b/utbot-intellij-main/src/test/resources/application.properties similarity index 100% rename from utbot-intellij/src/test/resources/application.properties rename to utbot-intellij-main/src/test/resources/application.properties diff --git a/utbot-intellij/src/test/resources/junit-platform.properties b/utbot-intellij-main/src/test/resources/junit-platform.properties similarity index 100% rename from utbot-intellij/src/test/resources/junit-platform.properties rename to utbot-intellij-main/src/test/resources/junit-platform.properties diff --git a/utbot-intellij/src/test/resources/log4j.properties b/utbot-intellij-main/src/test/resources/log4j.properties similarity index 100% rename from utbot-intellij/src/test/resources/log4j.properties rename to utbot-intellij-main/src/test/resources/log4j.properties diff --git a/utbot-intellij/src/test/resources/log4j2.xml b/utbot-intellij-main/src/test/resources/log4j2.xml similarity index 100% rename from utbot-intellij/src/test/resources/log4j2.xml rename to utbot-intellij-main/src/test/resources/log4j2.xml From ce5dc47a8fbd1014760ebbc3977e9bf852c15588 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 20 Sep 2023 12:10:40 +0300 Subject: [PATCH 013/144] Update gradle --- utbot-intellij-main/build.gradle.kts | 6 +++--- utbot-intellij-python/build.gradle.kts | 2 +- utbot-intellij/build.gradle.kts | 2 +- utbot-ui-commons/build.gradle.kts | 5 ----- 4 files changed, 5 insertions(+), 10 deletions(-) diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 309b0a2f5b..bf003b0dd3 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -75,7 +75,7 @@ intellij { version.set(ideVersion) type.set(ideTypeOrAndroidStudio) - SettingsTemplateHelper.proceed(project) +// SettingsTemplateHelper.proceed(project) } val remoteRobotVersion = "0.11.16" @@ -147,8 +147,8 @@ dependencies { } if (pythonIde?.split(',')?.contains(ideType) == true) { - api(project(":utbot-python")) - api(project(":utbot-intellij-python")) + implementation(project(":utbot-python")) + implementation(project(":utbot-intellij-python")) } if (projectType == ultimateEdition) { diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index e96244e04f..3b4cd83dfc 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -63,5 +63,5 @@ intellij { version.set(ideVersion) type.set(ideType) - SettingsTemplateHelper.proceed(project) +// SettingsTemplateHelper.proceed(project) } \ No newline at end of file diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index e9d031e8c1..1324747257 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -55,7 +55,7 @@ intellij { version.set(ideVersion) type.set(ideTypeOrAndroidStudio) - SettingsTemplateHelper.proceed(project) +// SettingsTemplateHelper.proceed(project) } tasks { diff --git a/utbot-ui-commons/build.gradle.kts b/utbot-ui-commons/build.gradle.kts index 0e32940387..c0d622a353 100644 --- a/utbot-ui-commons/build.gradle.kts +++ b/utbot-ui-commons/build.gradle.kts @@ -13,11 +13,6 @@ project.tasks.asMap["runIde"]?.enabled = false intellij { version.set(ideVersion) type.set(ideType) - - plugins.set(listOf( -// "java", -// "org.jetbrains.android" - )) } tasks { From 1906da3af5ba02ad44c95a226414795b0ad5fe2e Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 20 Sep 2023 13:01:28 +0300 Subject: [PATCH 014/144] Update utbot go --- gradle.properties | 2 +- settings.gradle.kts | 3 ++- utbot-intellij-go/build.gradle.kts | 3 +-- .../intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt | 4 ++-- .../utbot/intellij/plugin/go/language/GoLanguageAssistant.kt | 4 ++-- utbot-intellij-main/build.gradle.kts | 1 + utbot-intellij/build.gradle.kts | 1 - 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/gradle.properties b/gradle.properties index e157ec654a..ce3fc26cc7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -20,7 +20,7 @@ javaIde=IC,IU pythonIde=IC,IU,PC,PY jsIde=IU jsBuild=ALL -goIde=IU +goIde=IU,GO # In order to run Android Studio instead of IntelliJ Community, specify the path to your Android Studio installation #androidStudioPath=your_path_to_android_studio diff --git a/settings.gradle.kts b/settings.gradle.kts index 8e00d13b75..38c5173f3b 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -35,6 +35,8 @@ include("utbot-junit-contest") include("utbot-analytics") include("utbot-analytics-torch") +include("utbot-cli") + include("utbot-api") include("utbot-instrumentation") include("utbot-instrumentation-tests") @@ -63,7 +65,6 @@ include("utbot-spring-test") if (javaIde.split(",").contains(ideType)) { include("utbot-intellij") - include("utbot-cli") } if (pythonIde.split(",").contains(ideType)) { diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index 86d7c76e06..61c0efd08a 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -88,8 +88,7 @@ intellij { ultimateEdition -> when (ideType) { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins - "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "GO" -> goPlugins else -> basePluginSet } else -> basePluginSet diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt index 4ad546935b..19b81b6421 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/generator/GoUtTestsCodeFileWriter.kt @@ -1,7 +1,7 @@ package org.utbot.intellij.plugin.go.generator -import com.intellij.codeInsight.CodeInsightUtil import com.intellij.openapi.application.runWriteAction +import com.intellij.openapi.fileEditor.OpenFileDescriptor import com.intellij.openapi.project.Project import com.intellij.openapi.vfs.VirtualFileManager import com.intellij.psi.PsiFile @@ -37,7 +37,7 @@ object GoUtTestsCodeFileWriter { sourceFileDir.add(testPsiFile) val testFile = sourceFileDir.findFile(testsFileNameWithExtension)!! - CodeInsightUtil.positionCursor(model.project, testFile, testFile) + OpenFileDescriptor(model.project, testFile.virtualFile).navigate(true) } } catch (e: IncorrectOperationException) { showCreatingFileError(model.project, testsFileName) diff --git a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt index 3dd98052de..f88c243ab8 100644 --- a/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt +++ b/utbot-intellij-go/src/main/kotlin/org/utbot/intellij/plugin/go/language/GoLanguageAssistant.kt @@ -5,10 +5,10 @@ import com.intellij.lang.Language import com.intellij.openapi.actionSystem.AnActionEvent import com.intellij.openapi.actionSystem.CommonDataKeys import com.intellij.openapi.editor.Editor +import com.intellij.openapi.module.ModuleUtilCore import com.intellij.psi.PsiElement import com.intellij.psi.PsiFile import com.intellij.psi.util.PsiTreeUtil -import org.jetbrains.kotlin.idea.base.util.module import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import org.utbot.intellij.plugin.go.generator.GoUtTestsDialogProcessor @@ -26,7 +26,7 @@ object GoLanguageAssistant : LanguageAssistant() { override fun actionPerformed(e: AnActionEvent) { val project = e.project ?: return val file = e.getData(CommonDataKeys.PSI_FILE) as? GoFile ?: return - val module = file.module ?: return + val module = ModuleUtilCore.findModuleForFile(file) ?: return val (targetFunctions, focusedTargetFunctions) = getPsiTargets(e) ?: return GoUtTestsDialogProcessor.createDialogAndGenerateTests( project, diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index bf003b0dd3..b641068991 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -67,6 +67,7 @@ intellij { "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins "PY" -> pythonUltimatePlugins // something else, JS? + "GO" -> goPlugins else -> basePluginSet } else -> basePluginSet diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index 1324747257..3c88009627 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -55,7 +55,6 @@ intellij { version.set(ideVersion) type.set(ideTypeOrAndroidStudio) -// SettingsTemplateHelper.proceed(project) } tasks { From 4695a5c75747806e2b5561d89a65d5b63eaf5a6e Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 20 Sep 2023 13:33:45 +0300 Subject: [PATCH 015/144] Update build.gradle.kts --- utbot-intellij-go/build.gradle.kts | 2 ++ utbot-intellij-js/build.gradle.kts | 1 + utbot-intellij-main/build.gradle.kts | 10 +++++- utbot-intellij-python/build.gradle.kts | 48 ++++++++++++++++++++++---- 4 files changed, 54 insertions(+), 7 deletions(-) diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index 61c0efd08a..7acd6f4451 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -88,6 +88,8 @@ intellij { ultimateEdition -> when (ideType) { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins // something else, JS? "GO" -> goPlugins else -> basePluginSet } diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index 9f2b09464e..cc716b9c05 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -90,6 +90,7 @@ intellij { "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins "PY" -> pythonUltimatePlugins // something else, JS? + "GO" -> goPlugins else -> basePluginSet } else -> basePluginSet diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index b641068991..689d681119 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -16,6 +16,9 @@ val goIde: String? by rootProject val semVer: String? by rootProject val androidStudioPath: String? by rootProject +val junit5Version: String by rootProject +val junit4PlatformVersion: String by rootProject + // https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" @@ -76,7 +79,7 @@ intellij { version.set(ideVersion) type.set(ideTypeOrAndroidStudio) -// SettingsTemplateHelper.proceed(project) + SettingsTemplateHelper.proceed(project) } val remoteRobotVersion = "0.11.16" @@ -176,4 +179,9 @@ dependencies { // Video Recording implementation("com.automation-remarks:video-recorder-junit5:2.0") + + testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version") + testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version") + testRuntimeOnly("org.junit.vintage:junit-vintage-engine:$junit5Version") } diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 3b4cd83dfc..731c4c6557 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -1,3 +1,6 @@ +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject @@ -6,6 +9,8 @@ val ideType: String? by rootProject val ideVersion: String by rootProject val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject +val goPluginVersion: String? by rootProject +val androidStudioPath: String? by rootProject plugins { id("org.jetbrains.intellij") version "1.13.1" @@ -43,6 +48,18 @@ dependencies { intellij { + val androidPlugins = listOf("org.jetbrains.android") + + val jvmPlugins = mutableListOf( + "java" + ) + + val kotlinPlugins = mutableListOf( + "org.jetbrains.kotlin" + ) + + androidStudioPath?.let { jvmPlugins += androidPlugins } + val pythonCommunityPlugins = listOf( "PythonCore:${pythonCommunityPluginVersion}" ) @@ -51,13 +68,32 @@ intellij { "Pythonid:${pythonUltimatePluginVersion}" ) + val jsPlugins = listOf( + "JavaScript" + ) + + val goPlugins = listOf( + "org.jetbrains.plugins.go:${goPluginVersion}" + ) + + val mavenUtilsPlugins = listOf( + "org.jetbrains.idea.maven" + ) + + val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins + plugins.set( - when (ideType) { - "IC" -> pythonCommunityPlugins - "IU" -> pythonUltimatePlugins - "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? - else -> emptyList() + when (projectType) { + communityEdition -> basePluginSet + pythonCommunityPlugins + ultimateEdition -> when (ideType) { + "IC" -> basePluginSet + pythonCommunityPlugins + "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins // something else, JS? + "GO" -> goPlugins + else -> basePluginSet + } + else -> basePluginSet } ) From bcc4f1c424097ca98d2064a7f54484bd86553dbc Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 20 Sep 2023 14:22:37 +0300 Subject: [PATCH 016/144] Update build.gradle.kts --- utbot-intellij-python/build.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 731c4c6557..4c895975ac 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -99,5 +99,4 @@ intellij { version.set(ideVersion) type.set(ideType) -// SettingsTemplateHelper.proceed(project) } \ No newline at end of file From 16834d2fc4b07bb0ddb9c8c530b90abdd6d87f55 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 20 Sep 2023 16:02:27 +0300 Subject: [PATCH 017/144] Update build.gradle.kts and js --- gradle.properties | 6 +++--- utbot-intellij-go/build.gradle.kts | 2 +- utbot-intellij-js/build.gradle.kts | 2 +- .../intellij/plugin/js/JsDialogProcessor.kt | 21 +++++++++---------- .../plugin/js/language/JsLanguageAssistant.kt | 5 +++-- utbot-intellij-main/build.gradle.kts | 2 +- utbot-intellij-python/build.gradle.kts | 2 +- .../language/PythonLanguageAssistant.kt | 1 + .../intellij/plugin/language/JavaLanguage.kt | 3 ++- 9 files changed, 23 insertions(+), 21 deletions(-) diff --git a/gradle.properties b/gradle.properties index ce3fc26cc7..ede58e920d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,14 +11,14 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio ideType=IC -ideVersion=232.8660.185 -#ideVersion=2023.2 +#ideVersion=232.8660.185 +ideVersion=2023.2 # ALL, NOJS buildType=NOJS javaIde=IC,IU pythonIde=IC,IU,PC,PY -jsIde=IU +jsIde=IU,PY jsBuild=ALL goIde=IU,GO diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index 7acd6f4451..bbd32e588f 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -89,7 +89,7 @@ intellij { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "PY" -> pythonUltimatePlugins + jsPlugins "GO" -> goPlugins else -> basePluginSet } diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index cc716b9c05..25fc942c32 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -89,7 +89,7 @@ intellij { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "PY" -> pythonUltimatePlugins + jsPlugins "GO" -> goPlugins else -> basePluginSet } diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt index 1612b3d00c..5923c312cd 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt @@ -1,30 +1,27 @@ package org.utbot.intellij.plugin.js import api.JsTestGenerator -import com.intellij.codeInsight.CodeInsightUtil import com.intellij.javascript.nodejs.interpreter.local.NodeJsLocalInterpreterManager import com.intellij.lang.ecmascript6.psi.ES6Class import com.intellij.lang.javascript.psi.JSFile import com.intellij.lang.javascript.refactoring.util.JSMemberInfo +import com.intellij.openapi.application.invokeLater +import com.intellij.openapi.application.runReadAction +import com.intellij.openapi.application.runWriteAction import com.intellij.openapi.editor.Document import com.intellij.openapi.editor.Editor import com.intellij.openapi.fileEditor.FileDocumentManager +import com.intellij.openapi.fileEditor.OpenFileDescriptor import com.intellij.openapi.module.Module -import com.intellij.openapi.module.ModuleManager import com.intellij.openapi.progress.ProgressIndicator import com.intellij.openapi.progress.Task import com.intellij.openapi.project.Project -import com.intellij.openapi.roots.TestModuleProperties import com.intellij.openapi.ui.Messages import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiFileFactory import com.intellij.psi.impl.file.PsiDirectoryFactory import com.intellij.util.concurrency.AppExecutorUtil import mu.KotlinLogging -import org.jetbrains.kotlin.idea.util.application.invokeLater -import org.jetbrains.kotlin.idea.util.application.runReadAction -import org.jetbrains.kotlin.idea.util.application.runWriteAction -import org.jetbrains.kotlin.konan.file.File import org.utbot.framework.plugin.api.TimeoutException import org.utbot.intellij.plugin.js.language.JsLanguageAssistant import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater @@ -36,6 +33,7 @@ import settings.PackageDataService import settings.jsPackagesList import utils.JsCmdExec import utils.OsProvider +import java.io.File import java.io.IOException private val logger = KotlinLogging.logger {} @@ -205,10 +203,11 @@ object JsDialogProcessor { testDir.add(temp) testDir.findFile(testFileName)!! } - val testFileEditor = CodeInsightUtil.positionCursor(project, testPsiFile, testPsiFile) as Editor - unblockDocument(project, testFileEditor.document) - testFileEditor.document.setText(generatedCode) - unblockDocument(project, testFileEditor.document) +// val testFileEditor = CodeInsightUtil.positionCursor(project, testPsiFile, testPsiFile) as Editor + OpenFileDescriptor(project, testPsiFile.virtualFile).navigate(true) +// unblockDocument(project, testFileEditor.document) +// testFileEditor.document.setText(generatedCode) +// unblockDocument(project, testFileEditor.document) } } } diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt index cbc9c3f0d5..ec84561b6f 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/language/JsLanguageAssistant.kt @@ -10,16 +10,17 @@ import com.intellij.openapi.actionSystem.AnActionEvent import com.intellij.openapi.actionSystem.CommonDataKeys import com.intellij.openapi.editor.Editor import com.intellij.openapi.module.Module +import com.intellij.openapi.module.ModuleUtilCore import com.intellij.openapi.project.Project import com.intellij.psi.PsiElement import com.intellij.psi.PsiFile import com.intellij.psi.PsiFileFactory import com.intellij.psi.util.PsiTreeUtil -import org.jetbrains.kotlin.idea.util.projectStructure.module import org.utbot.intellij.plugin.js.JsDialogProcessor import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import settings.JsTestGenerationSettings.dummyClassName +@Suppress("unused") // is used in org.utbot.intellij.plugin.language.agnostic.LanguageAssistant via reflection object JsLanguageAssistant : LanguageAssistant() { private const val jsId = "ECMAScript 6" @@ -61,7 +62,7 @@ object JsLanguageAssistant : LanguageAssistant() { } else { e.getData(CommonDataKeys.PSI_ELEMENT) ?: return null } - val module = element.module ?: return null + val module = ModuleUtilCore.findModuleForPsiElement(element) ?: return null val virtualFile = (e.getData(CommonDataKeys.VIRTUAL_FILE) ?: return null).path val focusedMethod = getContainingMethod(element) containingClass(element)?.let { diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 689d681119..4e0bc593b8 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -69,7 +69,7 @@ intellij { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "PY" -> pythonUltimatePlugins + jsPlugins "GO" -> goPlugins else -> basePluginSet } diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 4c895975ac..f955bb6f7d 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -89,7 +89,7 @@ intellij { "IC" -> basePluginSet + pythonCommunityPlugins "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins "PC" -> pythonCommunityPlugins - "PY" -> pythonUltimatePlugins // something else, JS? + "PY" -> pythonUltimatePlugins + jsPlugins "GO" -> goPlugins else -> basePluginSet } diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt index 84eff6a604..8c8a9a3a82 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/language/PythonLanguageAssistant.kt @@ -16,6 +16,7 @@ import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import org.utbot.intellij.plugin.python.* +@Suppress("unused") // is used in org.utbot.intellij.plugin.language.agnostic.LanguageAssistant via reflection object PythonLanguageAssistant : LanguageAssistant() { private const val pythonID = "Python" diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/language/JavaLanguage.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/language/JavaLanguage.kt index c1afd584aa..b755acd5f9 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/language/JavaLanguage.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/language/JavaLanguage.kt @@ -32,6 +32,7 @@ import org.utbot.intellij.plugin.ui.InvalidClassNotifier import org.utbot.intellij.plugin.language.agnostic.LanguageAssistant import org.utbot.intellij.plugin.util.findSdkVersionOrNull +@Suppress("unused") // is used in org.utbot.intellij.plugin.language.agnostic.LanguageAssistant via reflection object JvmLanguageAssistant : LanguageAssistant() { override fun actionPerformed(e: AnActionEvent) { val project = e.project ?: return @@ -100,7 +101,7 @@ object JvmLanguageAssistant : LanguageAssistant() { val memberInfoList = runReadAction> { it.extractFirstLevelMembers(false) } - if (memberInfoList.isNullOrEmpty()) + if (memberInfoList.isEmpty()) return null } From 9bff617c250f1d2cbcabf9202d77e352881474b3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 20 Sep 2023 16:08:45 +0300 Subject: [PATCH 018/144] Update version --- gradle.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index ede58e920d..da975e38d1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,8 +11,8 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio ideType=IC -#ideVersion=232.8660.185 -ideVersion=2023.2 +ideVersion=232.8660.185 +#ideVersion=2023.2 # ALL, NOJS buildType=NOJS From e69d4737c1f3e647e395420eb994843ce5a408f2 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 29 Sep 2023 17:04:37 +0300 Subject: [PATCH 019/144] First version of instruction coverage --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/executor.py | 50 ++++++------ .../utbot_executor/utbot_executor/listener.py | 6 +- .../utbot_executor/utbot_executor/parser.py | 6 +- .../utbot_executor/ut_tracer.py | 77 +++++++++++++++++-- .../utbot_executor/utbot_executor/utils.py | 13 ++++ .../src/main/resources/utbot_executor_version | 2 +- .../samples/controlflow/multi_conditions.py | 14 ++++ .../kotlin/org/utbot/python/PythonEngine.kt | 12 +-- .../evaluation/PythonCodeSocketExecutor.kt | 16 ++-- .../evaluation/PythonCoverageReceiver.kt | 12 ++- .../ExecutionResultDeserializer.kt | 5 +- .../utbot/python/evaluation/utils/Utils.kt | 33 ++++++++ 13 files changed, 192 insertions(+), 56 deletions(-) create mode 100644 utbot-python/samples/samples/controlflow/multi_conditions.py diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 13b3063e09..90717a8f6d 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.7.0" +version = "1.7.0.dev7" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index a1e10ec57e..13b64a1060 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -1,7 +1,7 @@ """Python code executor for UnitTestBot""" import copy +import dis import importlib -import inspect import logging import pathlib import socket @@ -17,8 +17,8 @@ from utbot_executor.deep_serialization.utils import PythonId, getattr_by_path from utbot_executor.memory_compressor import compress_memory from utbot_executor.parser import ExecutionRequest, ExecutionResponse, ExecutionFailResponse, ExecutionSuccessResponse -from utbot_executor.ut_tracer import UtTracer -from utbot_executor.utils import suppress_stdout as __suppress_stdout +from utbot_executor.ut_tracer import UtTracer, UtCoverageSender +from utbot_executor.utils import suppress_stdout as __suppress_stdout, get_instructions __all__ = ['PythonExecutor'] @@ -111,14 +111,15 @@ def run_function(self, request: ExecutionRequest) -> ExecutionResponse: state_init = _update_states(loader.reload_id(), state_init_memory) serialized_state_init = serialize_memory_dump(state_init) - def _coverage_sender(info: typing.Tuple[str, int]): - if pathlib.Path(info[0]) == pathlib.Path(request.filepath): - sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) - logging.debug("Coverage message: %s:%d", request.coverage_id, info[1]) - logging.debug("Port: %d", self.coverage_port) - message = bytes(f'{request.coverage_id}:{info[1]}', encoding='utf-8') - sock.sendto(message, (self.coverage_hostname, self.coverage_port)) - logging.debug("ID: %s, Coverage: %s", request.coverage_id, info) + # def _coverage_sender(info: typing.Tuple[str, int]): + # if pathlib.Path(info[0]) == pathlib.Path(request.filepath): + # sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + # logging.debug("Coverage message: %s:%d", request.coverage_id, info[1]) + # logging.debug("Port: %d", self.coverage_port) + # message = bytes(f'{request.coverage_id}:{info[1]}', encoding='utf-8') + # sock.sendto(message, (self.coverage_hostname, self.coverage_port)) + # logging.debug("ID: %s, Coverage: %s", request.coverage_id, info) + _coverage_sender = UtCoverageSender(request.coverage_id, self.coverage_hostname, self.coverage_port) value = _run_calculate_function_value( function, @@ -126,7 +127,7 @@ def _coverage_sender(info: typing.Tuple[str, int]): kwargs, request.filepath, serialized_state_init, - tracer=UtTracer(_coverage_sender) + tracer=UtTracer(pathlib.Path(request.filepath), [sys.prefix, sys.exec_prefix], _coverage_sender) ) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) @@ -172,10 +173,10 @@ def _run_calculate_function_value( __is_exception = False - (__sources, __start, ) = inspect.getsourcelines(function) - __not_empty_lines = [i for i, line in enumerate(__sources, __start) if len(line.strip()) != 0] - logging.debug("Not empty lines %s", __not_empty_lines) - __end = __start + len(__sources) + # bytecode = dis.get_instructions(function) + # __all_code_lines = [instr.starts_line for instr in bytecode if instr.starts_line is not None] + __all_code_lines = list(get_instructions(function)) + __start = min([op[0] for op in __all_code_lines]) __tracer = tracer @@ -189,14 +190,15 @@ def _run_calculate_function_value( logging.debug("Coverage: %s", __tracer.counts) logging.debug("Fullpath: %s", fullpath) - module_path = pathlib.Path(fullpath) - __stmts = [x[1] for x in __tracer.counts if pathlib.Path(x[0]) == module_path] - __stmts_filtered = [x for x in __not_empty_lines if x in __stmts] - __stmts_filtered_with_def = [__start] + __stmts_filtered - __missed_filtered = [x for x in __not_empty_lines if x not in __stmts_filtered_with_def] - logging.debug("Covered lines: %s", __stmts_filtered_with_def) + __stmts = [x for x in __tracer.counts] + __stmts_with_def = [(1, 0)] + __stmts + __missed_filtered = [x for x in __all_code_lines if x not in __stmts_with_def] + logging.debug("Covered lines: %s", __stmts_with_def) logging.debug("Missed lines: %s", __missed_filtered) + __str_statements = [":".join(map(str, x)) for x in __stmts_with_def] + __str_missed_statements = [":".join(map(str, x)) for x in __missed_filtered] + args_ids, kwargs_ids, result_id, state_after, serialized_state_after = _serialize_state(args, kwargs, __result) ids = args_ids + list(kwargs_ids.values()) # state_before, state_after = compress_memory(ids, state_before, state_after) @@ -205,8 +207,8 @@ def _run_calculate_function_value( return ExecutionSuccessResponse( status="success", is_exception=__is_exception, - statements=__stmts_filtered_with_def, - missed_statements=__missed_filtered, + statements=__str_statements, + missed_statements=__str_missed_statements, state_init=state_init, state_before=serialized_state_before, state_after=serialized_state_after, diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py index 78df1a507c..5d9d55a2b3 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py @@ -80,9 +80,9 @@ def handler(self) -> None: response_size = str(len(bytes_data)) self.clientsocket.send((response_size + os.linesep).encode()) - sended_size = 0 - while len(bytes_data) > sended_size: - sended_size += self.clientsocket.send(bytes_data[sended_size:]) + sent_size = 0 + while len(bytes_data) > sent_size: + sent_size += self.clientsocket.send(bytes_data[sent_size:]) logging.debug('Sent all data') logging.info('All done...') diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py index 838711d305..d247c28290 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py @@ -1,6 +1,6 @@ import dataclasses import json -from typing import Dict, List, Union +from typing import Dict, List, Union, Tuple @dataclasses.dataclass @@ -24,8 +24,8 @@ class ExecutionResponse: class ExecutionSuccessResponse(ExecutionResponse): status: str is_exception: bool - statements: List[int] - missed_statements: List[int] + statements: List[str] + missed_statements: List[str] state_init: str state_before: str state_after: str diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index d761c02d74..7d88e3cbb9 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -1,5 +1,12 @@ +import dis +import inspect +import logging import os +import pathlib +import queue +import socket import sys +import threading import typing @@ -9,12 +16,48 @@ def _modname(path): return filename +class UtCoverageSender: + def __init__(self, coverage_id: str, host: str, port: int, use_thread: bool = False): + self.coverage_id = coverage_id + self.host = host + self.port = port + self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + self.message_queue = queue.Queue() + + self.use_thread = use_thread + if use_thread: + self.thread = threading.Thread(target=self.send_loop, daemon=True) + self.thread.start() + + def send_loop(self): + try: + while True: + self.send_message_thread() + except Exception as _: + self.send_loop() + + def send_message(self, message: bytes): + self.sock.sendto(*message) + + def send_message_thread(self): + message = self.message_queue.get() + self.send_message(message) + + def put_message(self, key: str): + message = bytes(f"{self.coverage_id}:{key}", encoding="utf-8") + if self.use_thread: + self.message_queue.put((message, (self.host, self.port))) + else: + self.send_message(message) + + class UtTracer: - def __init__(self, sender: typing.Callable[[typing.Tuple[str, int]], None]): - self.globaltrace = self.globaltrace_lt + def __init__(self, tested_file: pathlib.Path, ignore_dirs: typing.List[str], sender: UtCoverageSender): + self.tested_file = tested_file self.counts = {} self.localtrace = self.localtrace_count self.globaltrace = self.globaltrace_lt + self.ignore_dirs = ignore_dirs self.sender = sender def runfunc(self, func, /, *args, **kw): @@ -31,13 +74,16 @@ def coverage(self, filename: str) -> typing.List[int]: return [line for file, line in self.counts.keys() if file == filename] def localtrace_count(self, frame, why, arg): - if why == "line": - filename = frame.f_code.co_filename + filename = frame.f_code.co_filename + if pathlib.Path(filename) == self.tested_file: lineno = frame.f_lineno - key = filename, lineno + offset = 0 + if why == "opcode": + offset = frame.f_lasti + key = (lineno, offset) if key not in self.counts: try: - self.sender(key) + self.sender.put_message(":".join(map(str, key))) except Exception: pass self.counts[key] = self.counts.get(key, 0) + 1 @@ -45,8 +91,10 @@ def localtrace_count(self, frame, why, arg): def globaltrace_lt(self, frame, why, arg): if why == 'call': + frame.f_trace_opcodes = True + frame.f_trace_lines = False filename = frame.f_globals.get('__file__', None) - if filename: + if filename and all(not filename.startswith(d + os.sep) for d in self.ignore_dirs): modulename = _modname(filename) if modulename is not None: return self.localtrace @@ -60,3 +108,18 @@ def __init__(self): def runfunc(self, func, /, *args, **kw): return func(*args, **kw) + + +def f(x): + if 0 < x < 10 and x % 2 == 0: + return 1 + else: + return [100, + x**2, + x + 1 + ] + + +if __name__ in "__main__": + tracer = UtTracer(pathlib.Path(__file__), [], UtCoverageSender("1", "localhost", 0)) + tracer.runfunc(f, 70) \ No newline at end of file diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index 35c10d0f83..577b76399f 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -1,5 +1,7 @@ +import dis import os import sys +import typing from contextlib import contextmanager @@ -12,3 +14,14 @@ def suppress_stdout(): yield finally: sys.stdout = old_stdout + + +def get_instructions(obj: object) -> typing.Iterator[tuple[int, int]]: + def inner_get_instructions(x, current_line): + for i, el in enumerate(dis.get_instructions(x)): + if el.starts_line is not None: + current_line = el.starts_line + yield current_line, el.offset + if "" in str(type(el.argval)): + inner_get_instructions(el.argval, current_line) + return inner_get_instructions(obj, None) diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 9dbb0c0052..b04d552932 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.7.0 \ No newline at end of file +1.7.0.dev7 \ No newline at end of file diff --git a/utbot-python/samples/samples/controlflow/multi_conditions.py b/utbot-python/samples/samples/controlflow/multi_conditions.py new file mode 100644 index 0000000000..b7ba4bce58 --- /dev/null +++ b/utbot-python/samples/samples/controlflow/multi_conditions.py @@ -0,0 +1,14 @@ +def check_interval(x: float, left: float, right: float) -> str: + if left < x < right or right < x < left: + return "between" + elif x < left and x < right: + return "less" + elif x > left and x > right: + return "more" + elif left == right: + return "all equals" + elif x == left: + return "left" + elif x == right: + return "right" + return "what?" diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt index cc0730bffe..2dc0c7f547 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt @@ -12,7 +12,9 @@ import org.utbot.python.evaluation.* import org.utbot.python.evaluation.serialization.MemoryDump import org.utbot.python.evaluation.serialization.toPythonTree import org.utbot.python.evaluation.utils.CoverageIdGenerator +import org.utbot.python.evaluation.utils.PyInstruction import org.utbot.python.evaluation.utils.coveredLinesToInstructions +import org.utbot.python.evaluation.utils.makeInstructions import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.PythonTreeWrapper @@ -92,7 +94,7 @@ class PythonEngine( private fun handleTimeoutResult( arguments: List, methodUnderTestDescription: PythonMethodDescription, - coveredLines: Collection, + coveredInstructions: List, ): FuzzingExecutionFeedback { val summary = arguments .zip(methodUnderTest.arguments) @@ -109,7 +111,6 @@ class PythonEngine( val beforeThisObject = beforeThisObjectTree?.let { PythonTreeModel(it.tree) } val beforeModelList = beforeModelListTree.map { PythonTreeModel(it.tree) } - val coveredInstructions = coveredLinesToInstructions(coveredLines, methodUnderTest) val coverage = Coverage(coveredInstructions) val utFuzzedExecution = PythonUtExecution( stateInit = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), @@ -134,7 +135,8 @@ class PythonEngine( ): FuzzingExecutionFeedback { val prohibitedExceptions = listOf( "builtins.AttributeError", - "builtins.TypeError" + "builtins.TypeError", + "builtins.NotImplementedError", ) val summary = arguments @@ -237,8 +239,8 @@ class PythonEngine( is PythonEvaluationTimeout -> { val coveredLines = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableSetOf()) - val utTimeoutException = handleTimeoutResult(arguments, description, coveredLines) - val coveredInstructions = coveredLinesToInstructions(coveredLines, methodUnderTest) + val coveredInstructions = makeInstructions(coveredLines, methodUnderTest) + val utTimeoutException = handleTimeoutResult(arguments, description, coveredInstructions) val trieNode: Trie.Node = if (coveredInstructions.isEmpty()) Trie.emptyNode() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index e4c53f02d6..7a77a4c080 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -13,6 +13,8 @@ import org.utbot.python.evaluation.serialization.PythonExecutionResult import org.utbot.python.evaluation.serialization.SuccessExecution import org.utbot.python.evaluation.serialization.serializeObjects import org.utbot.python.evaluation.utils.CoverageIdGenerator +import org.utbot.python.evaluation.utils.PyInstruction +import org.utbot.python.evaluation.utils.toPyInstruction import org.utbot.python.framework.api.python.util.pythonAnyClassId import org.utbot.python.newtyping.PythonCallableTypeDescription import org.utbot.python.newtyping.pythonDescription @@ -132,9 +134,11 @@ class PythonCodeSocketExecutor( val stateBefore = ExecutionResultDeserializer.parseMemoryDump(executionResult.stateBefore) ?: return parsingException val stateAfter = ExecutionResultDeserializer.parseMemoryDump(executionResult.stateAfter) ?: return parsingException val diffIds = executionResult.diffIds.map {it.toLong()} + val statements = executionResult.statements.mapNotNull { it.toPyInstruction() } + val missedStatements = executionResult.missedStatements.mapNotNull { it.toPyInstruction() } PythonEvaluationSuccess( executionResult.isException, - calculateCoverage(executionResult.statements, executionResult.missedStatements), + calculateCoverage(statements, missedStatements), stateInit, stateBefore, stateAfter, @@ -151,15 +155,15 @@ class PythonCodeSocketExecutor( } } - private fun calculateCoverage(statements: List, missedStatements: List): Coverage { + private fun calculateCoverage(statements: List, missedStatements: List): Coverage { val covered = statements.filter { it !in missedStatements } return Coverage( coveredInstructions=covered.map { Instruction( method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, method.methodSignature(), - it, - it.toLong() + it.lineNumber, + it.offset ) }, instructionsCount = statements.size.toLong(), @@ -167,8 +171,8 @@ class PythonCodeSocketExecutor( Instruction( method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, method.methodSignature(), - it, - it.toLong() + it.lineNumber, + it.offset ) } ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt index 413ff85aa4..4972cba89e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt @@ -1,6 +1,8 @@ package org.utbot.python.evaluation import mu.KotlinLogging +import org.utbot.python.evaluation.utils.PyInstruction +import org.utbot.python.evaluation.utils.toPyInstruction import java.io.IOException import java.net.DatagramPacket import java.net.DatagramSocket @@ -11,7 +13,7 @@ import kotlin.math.max class PythonCoverageReceiver( val until: Long, ) : Thread() { - val coverageStorage = mutableMapOf>() + val coverageStorage = mutableMapOf>() private val socket = DatagramSocket() private val logger = KotlinLogging.logger {} @@ -39,11 +41,13 @@ class PythonCoverageReceiver( val buf = ByteArray(256) val request = DatagramPacket(buf, buf.size) socket.receive(request) - val requestData = request.data.decodeToString().take(request.length).split(":") + val requestData = request.data.decodeToString().take(request.length).split(":", limit=2) if (requestData.size == 2) { val (id, line) = requestData - val lineNumber = line.toInt() - coverageStorage.getOrPut(id) { mutableSetOf() }.add(lineNumber) + val instruction = line.toPyInstruction() + if (instruction != null) { + coverageStorage.getOrPut(id) { mutableSetOf() }.add(instruction) + } } } } catch (ex: SocketException) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt index 2909143096..74c577b3ed 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt @@ -4,6 +4,7 @@ import com.squareup.moshi.JsonEncodingException import com.squareup.moshi.Moshi import com.squareup.moshi.adapters.PolymorphicJsonAdapterFactory import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory +import org.utbot.python.evaluation.utils.PyInstruction object ExecutionResultDeserializer { private val moshi = Moshi.Builder() @@ -43,8 +44,8 @@ sealed class PythonExecutionResult data class SuccessExecution( val isException: Boolean, - val statements: List, - val missedStatements: List, + val statements: List, + val missedStatements: List, val stateInit: String, val stateBefore: String, val stateAfter: String, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt index 51d8a11e31..91eef93736 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt @@ -15,3 +15,36 @@ fun coveredLinesToInstructions(coveredLines: Collection, method: PythonMeth ) } } + +data class PyInstruction( + val lineNumber: Int, + val offset: Long +) { + constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong()) +} + +fun String.toPyInstruction(): PyInstruction? { + val data = this.split(":") + if (data.size == 2) { + val line = data[0].toInt() + val offset = data[1].toLong() + return PyInstruction(line, offset) + } else if (data.size == 1) { + val line = data[0].toInt() + return PyInstruction(line) + } + return null +} + +fun makeInstructions(coveredInstructions: Collection, method: PythonMethod): List { + return coveredInstructions.map { + val line = it.lineNumber + val offset = it.offset + Instruction( + method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, + method.methodSignature(), + line, + offset + ) + } +} From f28deff8c82b03edb2a5063f9bf945f6c5fba8e3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 4 Oct 2023 15:31:22 +0300 Subject: [PATCH 020/144] instruction coverage --- gradle.properties | 2 +- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/executor.py | 5 ----- .../utbot_executor/utbot_executor/ut_tracer.py | 18 ++++++++++++------ .../src/main/resources/utbot_executor_version | 2 +- .../samples/controlflow/multi_conditions.py | 17 +++++++++++++++++ .../kotlin/org/utbot/python/PythonEngine.kt | 2 +- .../evaluation/PythonCoverageReceiver.kt | 4 ++-- 8 files changed, 35 insertions(+), 17 deletions(-) diff --git a/gradle.properties b/gradle.properties index 00719b83c7..1e41b8971b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=IC +ideType=IU ideVersion=232.8660.185 # ALL, NOJS buildType=NOJS diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 90717a8f6d..a7581f1ef3 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.7.0.dev7" +version = "1.7.0.dev13" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 13b64a1060..4d16e5d618 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -1,13 +1,10 @@ """Python code executor for UnitTestBot""" import copy -import dis import importlib import logging import pathlib -import socket import sys import traceback -import typing from typing import Any, Callable, Dict, Iterable, List, Tuple from utbot_executor.deep_serialization.deep_serialization import serialize_memory_dump, \ @@ -173,8 +170,6 @@ def _run_calculate_function_value( __is_exception = False - # bytecode = dis.get_instructions(function) - # __all_code_lines = [instr.starts_line for instr in bytecode if instr.starts_line is not None] __all_code_lines = list(get_instructions(function)) __start = min([op[0] for op in __all_code_lines]) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 7d88e3cbb9..8fbe0392c5 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -8,6 +8,7 @@ import sys import threading import typing +from concurrent.futures import ThreadPoolExecutor def _modname(path): @@ -26,8 +27,7 @@ def __init__(self, coverage_id: str, host: str, port: int, use_thread: bool = Fa self.use_thread = use_thread if use_thread: - self.thread = threading.Thread(target=self.send_loop, daemon=True) - self.thread.start() + self.thread = ThreadPoolExecutor(max_workers=4) def send_loop(self): try: @@ -37,7 +37,8 @@ def send_loop(self): self.send_loop() def send_message(self, message: bytes): - self.sock.sendto(*message) + logging.debug(f"SEND {message}") + self.sock.sendto(message, (self.host, self.port)) def send_message_thread(self): message = self.message_queue.get() @@ -45,8 +46,10 @@ def send_message_thread(self): def put_message(self, key: str): message = bytes(f"{self.coverage_id}:{key}", encoding="utf-8") + logging.debug(f"PUT {message}") if self.use_thread: self.message_queue.put((message, (self.host, self.port))) + self.thread.submit(self.send_message_thread) else: self.send_message(message) @@ -81,9 +84,12 @@ def localtrace_count(self, frame, why, arg): if why == "opcode": offset = frame.f_lasti key = (lineno, offset) + logging.debug(filename, key) if key not in self.counts: + message = ":".join(map(str, key)) try: - self.sender.put_message(":".join(map(str, key))) + # self.sender.send_message(message) + self.sender.put_message(message) except Exception: pass self.counts[key] = self.counts.get(key, 0) + 1 @@ -121,5 +127,5 @@ def f(x): if __name__ in "__main__": - tracer = UtTracer(pathlib.Path(__file__), [], UtCoverageSender("1", "localhost", 0)) - tracer.runfunc(f, 70) \ No newline at end of file + tracer = UtTracer(pathlib.Path(__file__), [], UtCoverageSender("1", "localhost", 0, use_thread=False)) + tracer.runfunc(f, 6) \ No newline at end of file diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index b04d552932..0c0a3dedc4 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.7.0.dev7 \ No newline at end of file +1.7.0.dev13 \ No newline at end of file diff --git a/utbot-python/samples/samples/controlflow/multi_conditions.py b/utbot-python/samples/samples/controlflow/multi_conditions.py index b7ba4bce58..7ee91a9fc8 100644 --- a/utbot-python/samples/samples/controlflow/multi_conditions.py +++ b/utbot-python/samples/samples/controlflow/multi_conditions.py @@ -1,14 +1,31 @@ +import time + + def check_interval(x: float, left: float, right: float) -> str: if left < x < right or right < x < left: + print(1) + time.sleep(4) return "between" elif x < left and x < right: + print(1) + time.sleep(4) return "less" elif x > left and x > right: + print(1) + time.sleep(4) return "more" elif left == right: + print(1) + time.sleep(4) return "all equals" elif x == left: + print(1) + time.sleep(4) return "left" elif x == right: + print(1) + time.sleep(4) return "right" + print(1) + time.sleep(4) return "what?" diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt index 2dc0c7f547..7a7472b9ba 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt @@ -238,7 +238,7 @@ class PythonEngine( is PythonEvaluationTimeout -> { val coveredLines = - manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableSetOf()) + manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) val coveredInstructions = makeInstructions(coveredLines, methodUnderTest) val utTimeoutException = handleTimeoutResult(arguments, description, coveredInstructions) val trieNode: Trie.Node = diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt index 4972cba89e..7e21ab744b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt @@ -13,7 +13,7 @@ import kotlin.math.max class PythonCoverageReceiver( val until: Long, ) : Thread() { - val coverageStorage = mutableMapOf>() + val coverageStorage = mutableMapOf>() private val socket = DatagramSocket() private val logger = KotlinLogging.logger {} @@ -46,7 +46,7 @@ class PythonCoverageReceiver( val (id, line) = requestData val instruction = line.toPyInstruction() if (instruction != null) { - coverageStorage.getOrPut(id) { mutableSetOf() }.add(instruction) + coverageStorage.getOrPut(id) { mutableListOf() }.add(instruction) } } } From dc62e03b6ceb6bbd9bb2adc1232752869acda943 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 5 Oct 2023 17:04:41 +0300 Subject: [PATCH 021/144] instruction coverage update --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/__main__.py | 54 +++++++++++-------- .../utbot_executor/utbot_executor/executor.py | 40 +++++++------- .../utbot_executor/utbot_executor/listener.py | 7 +-- .../utbot_executor/ut_tracer.py | 25 +++++---- .../utbot_executor/utbot_executor/utils.py | 17 ++++++ .../src/main/resources/utbot_executor_version | 2 +- .../samples/controlflow/multi_conditions.py | 17 ------ utbot-python/samples/test_configuration.json | 11 ++++ .../evaluation/PythonCodeSocketExecutor.kt | 2 +- .../python/evaluation/PythonWorkerManager.kt | 1 + 11 files changed, 104 insertions(+), 74 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index a7581f1ef3..a1b7b52fd2 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.7.0.dev13" +version = "1.8.0" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py index ab1ce3fb60..89439a6c84 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py @@ -2,35 +2,45 @@ import logging from utbot_executor.listener import PythonExecuteServer +from utbot_executor.utils import TraceMode -def main(hostname: str, port: int, coverage_hostname: str, coverage_port: str): - server = PythonExecuteServer(hostname, port, coverage_hostname, coverage_port) +def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode): + server = PythonExecuteServer(hostname, port, coverage_hostname, coverage_port, trace_mode) server.run() -if __name__ == '__main__': +if __name__ == "__main__": parser = argparse.ArgumentParser( - prog='UtBot Python Executor', - description='Listen socket stream and execute function value', - ) - parser.add_argument('hostname') - parser.add_argument('port', type=int) - parser.add_argument('--logfile', default=None) + prog="UtBot Python Executor", + description="Listen socket stream and execute function value", + ) + parser.add_argument("hostname") + parser.add_argument("port", type=int) + parser.add_argument("--logfile", default=None) parser.add_argument( - '--loglevel', - choices=["DEBUG", "INFO", "ERROR"], - default="ERROR", - ) - parser.add_argument('coverage_hostname') - parser.add_argument('coverage_port', type=int) + "--loglevel", + choices=["DEBUG", "INFO", "WARNING", "ERROR"], + default="ERROR", + ) + parser.add_argument("coverage_hostname") + parser.add_argument("coverage_port", type=int) + parser.add_argument( + "--coverage_type", choices=["lines", "instructions"], default="instructions" + ) args = parser.parse_args() - loglevel = {"DEBUG": logging.DEBUG, "INFO": logging.INFO, "ERROR": logging.ERROR}[args.loglevel] + loglevel = { + "DEBUG": logging.DEBUG, + "INFO": logging.INFO, + "WARNING": logging.WARNING, + "ERROR": logging.ERROR, + }[args.loglevel] logging.basicConfig( - filename=args.logfile, - format='%(asctime)s | %(levelname)s | %(funcName)s - %(message)s', - datefmt='%m/%d/%Y %H:%M:%S', - level=loglevel, - ) - main(args.hostname, args.port, args.coverage_hostname, args.coverage_port) + filename=args.logfile, + format="%(asctime)s | %(levelname)s | %(funcName)s - %(message)s", + datefmt="%m/%d/%Y %H:%M:%S", + level=loglevel, + ) + trace_mode = TraceMode.Lines if args.coverage_type == "lines" else TraceMode.Instructions + main(args.hostname, args.port, args.coverage_hostname, args.coverage_port, trace_mode) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 4d16e5d618..c6865eb4ea 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -15,7 +15,12 @@ from utbot_executor.memory_compressor import compress_memory from utbot_executor.parser import ExecutionRequest, ExecutionResponse, ExecutionFailResponse, ExecutionSuccessResponse from utbot_executor.ut_tracer import UtTracer, UtCoverageSender -from utbot_executor.utils import suppress_stdout as __suppress_stdout, get_instructions +from utbot_executor.utils import ( + suppress_stdout as __suppress_stdout, + get_instructions, + filter_instructions, + TraceMode, +) __all__ = ['PythonExecutor'] @@ -38,9 +43,10 @@ def _load_objects(objs: List[Any]) -> MemoryDump: class PythonExecutor: - def __init__(self, coverage_hostname: str, coverage_port: int): + def __init__(self, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode): self.coverage_hostname = coverage_hostname self.coverage_port = coverage_port + self.trace_mode = trace_mode @staticmethod def add_syspaths(syspaths: Iterable[str]): @@ -108,24 +114,21 @@ def run_function(self, request: ExecutionRequest) -> ExecutionResponse: state_init = _update_states(loader.reload_id(), state_init_memory) serialized_state_init = serialize_memory_dump(state_init) - # def _coverage_sender(info: typing.Tuple[str, int]): - # if pathlib.Path(info[0]) == pathlib.Path(request.filepath): - # sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) - # logging.debug("Coverage message: %s:%d", request.coverage_id, info[1]) - # logging.debug("Port: %d", self.coverage_port) - # message = bytes(f'{request.coverage_id}:{info[1]}', encoding='utf-8') - # sock.sendto(message, (self.coverage_hostname, self.coverage_port)) - # logging.debug("ID: %s, Coverage: %s", request.coverage_id, info) _coverage_sender = UtCoverageSender(request.coverage_id, self.coverage_hostname, self.coverage_port) value = _run_calculate_function_value( - function, - args, - kwargs, - request.filepath, - serialized_state_init, - tracer=UtTracer(pathlib.Path(request.filepath), [sys.prefix, sys.exec_prefix], _coverage_sender) - ) + function, + args, + kwargs, + request.filepath, + serialized_state_init, + tracer=UtTracer( + pathlib.Path(request.filepath), + [sys.prefix, sys.exec_prefix], + _coverage_sender, + self.trace_mode, + ), + ) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) return ExecutionFailResponse("fail", traceback.format_exc()) @@ -170,7 +173,7 @@ def _run_calculate_function_value( __is_exception = False - __all_code_lines = list(get_instructions(function)) + __all_code_lines = filter_instructions(get_instructions(function), tracer.mode) __start = min([op[0] for op in __all_code_lines]) __tracer = tracer @@ -196,7 +199,6 @@ def _run_calculate_function_value( args_ids, kwargs_ids, result_id, state_after, serialized_state_after = _serialize_state(args, kwargs, __result) ids = args_ids + list(kwargs_ids.values()) - # state_before, state_after = compress_memory(ids, state_before, state_after) diff_ids = compress_memory(ids, state_before, state_after) return ExecutionSuccessResponse( diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py index 5d9d55a2b3..7985026930 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py @@ -6,7 +6,7 @@ from utbot_executor.deep_serialization.memory_objects import PythonSerializer from utbot_executor.parser import parse_request, serialize_response, ExecutionFailResponse from utbot_executor.executor import PythonExecutor - +from utbot_executor.utils import TraceMode RECV_SIZE = 2**15 @@ -17,12 +17,13 @@ def __init__( hostname: str, port: int, coverage_hostname: str, - coverage_port: str, + coverage_port: int, + trace_mode: TraceMode, ): logging.info('PythonExecutor is creating...') self.clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.clientsocket.connect((hostname, port)) - self.executor = PythonExecutor(coverage_hostname, coverage_port) + self.executor = PythonExecutor(coverage_hostname, coverage_port, trace_mode) def run(self) -> None: logging.info('PythonExecutor is ready...') diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 8fbe0392c5..01ad78d33b 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -1,15 +1,14 @@ -import dis -import inspect import logging import os import pathlib import queue import socket import sys -import threading import typing from concurrent.futures import ThreadPoolExecutor +from utbot_executor.utils import TraceMode + def _modname(path): base = os.path.basename(path) @@ -55,13 +54,20 @@ def put_message(self, key: str): class UtTracer: - def __init__(self, tested_file: pathlib.Path, ignore_dirs: typing.List[str], sender: UtCoverageSender): + def __init__( + self, + tested_file: pathlib.Path, + ignore_dirs: typing.List[str], + sender: UtCoverageSender, + mode: TraceMode = TraceMode.Instructions, + ): self.tested_file = tested_file self.counts = {} self.localtrace = self.localtrace_count self.globaltrace = self.globaltrace_lt self.ignore_dirs = ignore_dirs self.sender = sender + self.mode = mode def runfunc(self, func, /, *args, **kw): result = None @@ -80,15 +86,13 @@ def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename if pathlib.Path(filename) == self.tested_file: lineno = frame.f_lineno - offset = 0 + offset = lineno * 2 if why == "opcode": offset = frame.f_lasti key = (lineno, offset) - logging.debug(filename, key) if key not in self.counts: message = ":".join(map(str, key)) try: - # self.sender.send_message(message) self.sender.put_message(message) except Exception: pass @@ -97,8 +101,9 @@ def localtrace_count(self, frame, why, arg): def globaltrace_lt(self, frame, why, arg): if why == 'call': - frame.f_trace_opcodes = True - frame.f_trace_lines = False + if self.mode == TraceMode.Instructions: + frame.f_trace_opcodes = True + frame.f_trace_lines = False filename = frame.f_globals.get('__file__', None) if filename and all(not filename.startswith(d + os.sep) for d in self.ignore_dirs): modulename = _modname(filename) @@ -127,5 +132,5 @@ def f(x): if __name__ in "__main__": - tracer = UtTracer(pathlib.Path(__file__), [], UtCoverageSender("1", "localhost", 0, use_thread=False)) + tracer = UtTracer(pathlib.Path(__file__), [], UtCoverageSender("1", "localhost", 0, use_thread=False), mode=TraceMode.Lines) tracer.runfunc(f, 6) \ No newline at end of file diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index 577b76399f..23b6fbe69b 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -1,10 +1,17 @@ import dis +import enum +import inspect import os import sys import typing from contextlib import contextmanager +class TraceMode(enum.Enum): + Lines = 1 + Instructions = 2 + + @contextmanager def suppress_stdout(): with open(os.devnull, "w") as devnull: @@ -25,3 +32,13 @@ def inner_get_instructions(x, current_line): if "" in str(type(el.argval)): inner_get_instructions(el.argval, current_line) return inner_get_instructions(obj, None) + + +def filter_instructions( + instructions: typing.Iterable[tuple[int, int]], + mode: TraceMode = TraceMode.Instructions, +) -> list[tuple[int, int]]: + if mode == TraceMode.Lines: + return [(it, it) for it in {line for line, op in instructions}] + return list(instructions) + diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 0c0a3dedc4..afa2b3515e 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.7.0.dev13 \ No newline at end of file +1.8.0 \ No newline at end of file diff --git a/utbot-python/samples/samples/controlflow/multi_conditions.py b/utbot-python/samples/samples/controlflow/multi_conditions.py index 7ee91a9fc8..b7ba4bce58 100644 --- a/utbot-python/samples/samples/controlflow/multi_conditions.py +++ b/utbot-python/samples/samples/controlflow/multi_conditions.py @@ -1,31 +1,14 @@ -import time - - def check_interval(x: float, left: float, right: float) -> str: if left < x < right or right < x < left: - print(1) - time.sleep(4) return "between" elif x < left and x < right: - print(1) - time.sleep(4) return "less" elif x > left and x > right: - print(1) - time.sleep(4) return "more" elif left == right: - print(1) - time.sleep(4) return "all equals" elif x == left: - print(1) - time.sleep(4) return "left" elif x == right: - print(1) - time.sleep(4) return "right" - print(1) - time.sleep(4) return "what?" diff --git a/utbot-python/samples/test_configuration.json b/utbot-python/samples/test_configuration.json index 37f4d5645c..1f5bb02851 100644 --- a/utbot-python/samples/test_configuration.json +++ b/utbot-python/samples/test_configuration.json @@ -248,6 +248,17 @@ "coverage": 75 } ] + }, + { + "name": "multi_conditions", + "groups": [ + { + "classes": null, + "methods": null, + "timeout": 15, + "coverage": 100 + } + ] } ] }, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index 7a77a4c080..d404bd10c4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -166,7 +166,7 @@ class PythonCodeSocketExecutor( it.offset ) }, - instructionsCount = statements.size.toLong(), + instructionsCount = (covered.size + missedStatements.size).toLong(), missedInstructions = missedStatements.map { Instruction( method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 2ef2e2eeaf..eb58a1edba 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -47,6 +47,7 @@ class PythonWorkerManager( coverageReceiver.address().second, "--logfile", logfile.absolutePath, "--loglevel", logLevel, // "DEBUG", "INFO", "WARNING", "ERROR" + "--coverage_type", "instructions", )) timeout = max(until - processStartTime, 0) if (this::workerSocket.isInitialized && !workerSocket.isClosed) { From e62a18078f1481af4a4c5d9e839c19a35d8cd41d Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 9 Oct 2023 18:19:54 +0300 Subject: [PATCH 022/144] instruction coverage update and fix bugs --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/executor.py | 7 +- .../utbot_executor/ut_tracer.py | 19 +---- .../utbot_executor/utbot_executor/utils.py | 8 +- utbot-python/samples/run_tests.py | 78 ++++++++++++++----- utbot-python/samples/test_configuration.json | 10 +-- .../inference/baseline/BaselineAlgorithm.kt | 8 +- 7 files changed, 79 insertions(+), 53 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index a1b7b52fd2..7cb3da0082 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.8.0" +version = "1.8.0.dev4" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index c6865eb4ea..fd403919b1 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -1,6 +1,7 @@ """Python code executor for UnitTestBot""" import copy import importlib +import inspect import logging import pathlib import sys @@ -173,8 +174,8 @@ def _run_calculate_function_value( __is_exception = False - __all_code_lines = filter_instructions(get_instructions(function), tracer.mode) - __start = min([op[0] for op in __all_code_lines]) + _, __start = inspect.getsourcelines(function) + __all_code_lines = filter_instructions(get_instructions(function, __start), tracer.mode) __tracer = tracer @@ -189,7 +190,7 @@ def _run_calculate_function_value( logging.debug("Coverage: %s", __tracer.counts) logging.debug("Fullpath: %s", fullpath) __stmts = [x for x in __tracer.counts] - __stmts_with_def = [(1, 0)] + __stmts + __stmts_with_def = [(__start, 0)] + __stmts __missed_filtered = [x for x in __all_code_lines if x not in __stmts_with_def] logging.debug("Covered lines: %s", __stmts_with_def) logging.debug("Missed lines: %s", __missed_filtered) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 01ad78d33b..62e60e3f5a 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -84,8 +84,8 @@ def coverage(self, filename: str) -> typing.List[int]: def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename - if pathlib.Path(filename) == self.tested_file: - lineno = frame.f_lineno + lineno = frame.f_lineno + if pathlib.Path(filename) == self.tested_file and lineno is not None: offset = lineno * 2 if why == "opcode": offset = frame.f_lasti @@ -119,18 +119,3 @@ def __init__(self): def runfunc(self, func, /, *args, **kw): return func(*args, **kw) - - -def f(x): - if 0 < x < 10 and x % 2 == 0: - return 1 - else: - return [100, - x**2, - x + 1 - ] - - -if __name__ in "__main__": - tracer = UtTracer(pathlib.Path(__file__), [], UtCoverageSender("1", "localhost", 0, use_thread=False), mode=TraceMode.Lines) - tracer.runfunc(f, 6) \ No newline at end of file diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index 23b6fbe69b..22543c98b1 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -1,6 +1,5 @@ import dis import enum -import inspect import os import sys import typing @@ -23,15 +22,15 @@ def suppress_stdout(): sys.stdout = old_stdout -def get_instructions(obj: object) -> typing.Iterator[tuple[int, int]]: +def get_instructions(obj: object, start_line: int) -> typing.Iterator[tuple[int, int]]: def inner_get_instructions(x, current_line): for i, el in enumerate(dis.get_instructions(x)): if el.starts_line is not None: current_line = el.starts_line yield current_line, el.offset - if "" in str(type(el.argval)): + if any(t in str(type(el.argval)) for t in [""]): inner_get_instructions(el.argval, current_line) - return inner_get_instructions(obj, None) + return inner_get_instructions(obj, start_line) def filter_instructions( @@ -41,4 +40,3 @@ def filter_instructions( if mode == TraceMode.Lines: return [(it, it) for it in {line for line, op in instructions}] return list(instructions) - diff --git a/utbot-python/samples/run_tests.py b/utbot-python/samples/run_tests.py index fd4064d1f7..9a353584c7 100644 --- a/utbot-python/samples/run_tests.py +++ b/utbot-python/samples/run_tests.py @@ -7,10 +7,14 @@ -c """ import argparse +import contextlib import json import os import shutil +import sys import typing +import tqdm +from tqdm.contrib import DummyTqdmFile import pathlib @@ -38,11 +42,41 @@ def parse_arguments(): return parser.parse_args() +def inner_zip(collection: dict[str, typing.Iterable], keys: list[str]) -> typing.Iterator[list[typing.Any]]: + key, inner_keys = keys[0], keys[1:] + if len(inner_keys) == 0: + yield [collection[key]] + return + for inner_collection in collection[key]: + for group in inner_zip(inner_collection, inner_keys): + yield [collection[key]] + group + + +def test_inner_zip(): + data = {"1": [{"2": [1, 2, 3]}, {"2": [4, 5, 6]}]} + actual = inner_zip(data, ["1", "2"]) + assert list(actual) == [[data["1"], data["1"][0]["2"]], [data["1"], data["1"][1]["2"]]] + + def parse_config(config_path: str): with open(config_path, "r") as fin: return json.loads(fin.read()) +@contextlib.contextmanager +def std_out_err_redirect_tqdm(): + orig_out_err = sys.stdout, sys.stderr + try: + sys.stdout, sys.stderr = map(DummyTqdmFile, orig_out_err) + yield orig_out_err[0] + # Relay exceptions + except Exception as exc: + raise exc + # Always restore sys.stdout/err if necessary + finally: + sys.stdout, sys.stderr = orig_out_err + + def generate_tests( java: str, jar_path: str, @@ -60,7 +94,7 @@ def generate_tests( command += f" -c {','.join(class_names)}" if method_names is not None: command += f" -m {','.join(method_names)}" - print(command) + tqdm.tqdm.write(command) code = os.system(command) return code @@ -71,7 +105,7 @@ def run_tests( samples_dir: str, ): command = f'{python_path} -m coverage run --source={samples_dir} -m unittest discover -p "utbot_*" {tests_dir}' - print(command) + tqdm.tqdm.write(command) code = os.system(command) return code @@ -119,25 +153,27 @@ def main_test_generation(args): config = parse_config(args.config_file) if pathlib.Path(args.coverage_output_dir).exists(): shutil.rmtree(args.coverage_output_dir) - for part in config['parts']: - for file in part['files']: - for group in file['groups']: - full_name = pathlib.PurePath(args.path_to_test_dir, part['path'], file['name']) - output_file = pathlib.PurePath(args.output_dir, f"utbot_tests_{part['path'].replace('/', '_')}_{file['name']}.py") - coverage_output_file = pathlib.PurePath(args.coverage_output_dir, f"coverage_{part['path'].replace('/', '_')}_{file['name']}.json") - generate_tests( - args.java, - args.jar, - [args.path_to_test_dir], - args.python_path, - str(full_name), - group['timeout'], - str(output_file), - str(coverage_output_file), - group['classes'], - group['methods'] - ) - + with std_out_err_redirect_tqdm() as orig_stdout: + # for (part, file, group) in tqdm.tqdm(inner_zip(config, ["parts", "files", "groups"]), file=orig_stdout, dynamic_ncols=True): + for part in tqdm.tqdm(config["parts"], file=orig_stdout, dynamic_ncols=True): + for file in tqdm.tqdm(part["files"], file=orig_stdout, dynamic_ncols=True): + for group in tqdm.tqdm(file["groups"], file=orig_stdout, dynamic_ncols=True): + full_name = pathlib.PurePath(args.path_to_test_dir, part['path'], file['name']) + output_file = pathlib.PurePath(args.output_dir, f"utbot_tests_{part['path'].replace('/', '_')}_{file['name']}.py") + coverage_output_file = pathlib.PurePath(args.coverage_output_dir, f"coverage_{part['path'].replace('/', '_')}_{file['name']}.json") + generate_tests( + args.java, + args.jar, + [args.path_to_test_dir], + args.python_path, + str(full_name), + group['timeout'], + str(output_file), + str(coverage_output_file), + group['classes'], + group['methods'] + ) + if __name__ == '__main__': arguments = parse_arguments() diff --git a/utbot-python/samples/test_configuration.json b/utbot-python/samples/test_configuration.json index 1f5bb02851..41a64e6f28 100644 --- a/utbot-python/samples/test_configuration.json +++ b/utbot-python/samples/test_configuration.json @@ -10,7 +10,7 @@ "classes": null, "methods": null, "timeout": 10, - "coverage": 100 + "coverage": 93 } ] }, @@ -233,8 +233,8 @@ { "classes": null, "methods": null, - "timeout": 30, - "coverage": 72 + "timeout": 180, + "coverage": 94 } ] }, @@ -256,7 +256,7 @@ "classes": null, "methods": null, "timeout": 15, - "coverage": 100 + "coverage": 93 } ] } @@ -531,7 +531,7 @@ { "classes": ["Matrix"], "methods": null, - "timeout": 240, + "timeout": 180, "coverage": 100 } ] diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index 5272f0ed40..fd1173ce17 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -52,6 +52,8 @@ class BaselineAlgorithm( private val openedStates: MutableMap> = mutableMapOf() private val statistic: MutableMap = mutableMapOf() + private val checkedSignatures: MutableSet = mutableSetOf() + private fun getRandomType(): UtType? { val weights = states.map { 1.0 / (it.anyNodes.size * it.anyNodes.size + 1) } val state = weightedRandom(states, weights, random) @@ -92,15 +94,19 @@ class BaselineAlgorithm( val state = chooseState(states) val newState = expandState(state, storage) if (newState != null) { - logger.info("Checking ${newState.signature.pythonTypeRepresentation()}") + logger.info("Checking new state ${newState.signature.pythonTypeRepresentation()}") if (checkSignature(newState.signature as FunctionType, fileForMypyRuns, configFile)) { logger.debug("Found new state!") openedStates[newState.signature] = newState to state return newState.signature } } else if (state.anyNodes.isEmpty()) { + if (state.signature in checkedSignatures) { + return state.signature + } logger.info("Checking ${state.signature.pythonTypeRepresentation()}") if (checkSignature(state.signature as FunctionType, fileForMypyRuns, configFile)) { + checkedSignatures.add(state.signature) return state.signature } else { states.remove(state) From 85b9971dd875f83d63e048dae3274136d70c2df5 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 9 Oct 2023 18:30:00 +0300 Subject: [PATCH 023/144] version update --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 7cb3da0082..a1b7b52fd2 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.8.0.dev4" +version = "1.8.0" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" From e0f3332782b40203b0d9e270c32fcd8a4c085750 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 10 Oct 2023 15:41:18 +0300 Subject: [PATCH 024/144] update coverage --- gradle.properties | 2 +- .../python/utbot_executor/utbot_executor/__main__.py | 10 +++++++--- .../python/utbot_executor/utbot_executor/executor.py | 10 ++++++++-- .../python/utbot_executor/utbot_executor/listener.py | 3 ++- .../python/utbot_executor/utbot_executor/ut_tracer.py | 8 +++++--- .../main/python/utbot_executor/utbot_executor/utils.py | 2 +- .../org/utbot/python/evaluation/PythonWorkerManager.kt | 3 ++- 7 files changed, 26 insertions(+), 12 deletions(-) diff --git a/gradle.properties b/gradle.properties index 1e41b8971b..00719b83c7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=IU +ideType=IC ideVersion=232.8660.185 # ALL, NOJS buildType=NOJS diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py index 89439a6c84..c9356cdcdb 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py @@ -5,8 +5,8 @@ from utbot_executor.utils import TraceMode -def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode): - server = PythonExecuteServer(hostname, port, coverage_hostname, coverage_port, trace_mode) +def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode, send_coverage: bool): + server = PythonExecuteServer(hostname, port, coverage_hostname, coverage_port, trace_mode, send_coverage) server.run() @@ -28,6 +28,9 @@ def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, t parser.add_argument( "--coverage_type", choices=["lines", "instructions"], default="instructions" ) + parser.add_argument( + "--send_coverage", action=argparse.BooleanOptionalAction + ) args = parser.parse_args() loglevel = { @@ -43,4 +46,5 @@ def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, t level=loglevel, ) trace_mode = TraceMode.Lines if args.coverage_type == "lines" else TraceMode.Instructions - main(args.hostname, args.port, args.coverage_hostname, args.coverage_port, trace_mode) + send_coverage = args.send_coverage + main(args.hostname, args.port, args.coverage_hostname, args.coverage_port, trace_mode, send_coverage) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index fd403919b1..5586d67be2 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -44,10 +44,11 @@ def _load_objects(objs: List[Any]) -> MemoryDump: class PythonExecutor: - def __init__(self, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode): + def __init__(self, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode, send_coverage: bool): self.coverage_hostname = coverage_hostname self.coverage_port = coverage_port self.trace_mode = trace_mode + self.send_coverage = send_coverage @staticmethod def add_syspaths(syspaths: Iterable[str]): @@ -115,7 +116,12 @@ def run_function(self, request: ExecutionRequest) -> ExecutionResponse: state_init = _update_states(loader.reload_id(), state_init_memory) serialized_state_init = serialize_memory_dump(state_init) - _coverage_sender = UtCoverageSender(request.coverage_id, self.coverage_hostname, self.coverage_port) + _coverage_sender = UtCoverageSender( + request.coverage_id, + self.coverage_hostname, + self.coverage_port, + send_coverage=self.send_coverage, + ) value = _run_calculate_function_value( function, diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py index 7985026930..a1c91e8c00 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py @@ -19,11 +19,12 @@ def __init__( coverage_hostname: str, coverage_port: int, trace_mode: TraceMode, + send_coverage: bool ): logging.info('PythonExecutor is creating...') self.clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.clientsocket.connect((hostname, port)) - self.executor = PythonExecutor(coverage_hostname, coverage_port, trace_mode) + self.executor = PythonExecutor(coverage_hostname, coverage_port, trace_mode, send_coverage) def run(self) -> None: logging.info('PythonExecutor is ready...') diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 62e60e3f5a..454826a682 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -17,12 +17,13 @@ def _modname(path): class UtCoverageSender: - def __init__(self, coverage_id: str, host: str, port: int, use_thread: bool = False): + def __init__(self, coverage_id: str, host: str, port: int, use_thread: bool = False, send_coverage: bool = True): self.coverage_id = coverage_id self.host = host self.port = port self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) self.message_queue = queue.Queue() + self.send_coverage = send_coverage self.use_thread = use_thread if use_thread: @@ -36,8 +37,9 @@ def send_loop(self): self.send_loop() def send_message(self, message: bytes): - logging.debug(f"SEND {message}") - self.sock.sendto(message, (self.host, self.port)) + if self.send_coverage: + logging.debug(f"SEND {message}") + self.sock.sendto(message, (self.host, self.port)) def send_message_thread(self): message = self.message_queue.get() diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index 22543c98b1..29ad7d0f85 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -38,5 +38,5 @@ def filter_instructions( mode: TraceMode = TraceMode.Instructions, ) -> list[tuple[int, int]]: if mode == TraceMode.Lines: - return [(it, it) for it in {line for line, op in instructions}] + return [(it, 2 * it) for it in {line for line, op in instructions}] return list(instructions) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index eb58a1edba..143718842f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -47,7 +47,8 @@ class PythonWorkerManager( coverageReceiver.address().second, "--logfile", logfile.absolutePath, "--loglevel", logLevel, // "DEBUG", "INFO", "WARNING", "ERROR" - "--coverage_type", "instructions", + "--coverage_type", "instructions", // "lines", "instructions" + "--send_coverage", // "--send_coverage", "--no-send_coverage" )) timeout = max(until - processStartTime, 0) if (this::workerSocket.isInitialized && !workerSocket.isClosed) { From 6dd5f5ed8855a93e2b5fe2ceead6b8c434e4b83e Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 10 Oct 2023 16:37:46 +0300 Subject: [PATCH 025/144] Add cli arguments --- .../python/PythonGenerateTestsCommand.kt | 13 +++++++++- .../kotlin/org/utbot/python/PythonEngine.kt | 7 ++++-- .../utbot/python/PythonTestCaseGenerator.kt | 9 +++++-- .../python/PythonTestGenerationConfig.kt | 3 +++ .../python/PythonTestGenerationProcessor.kt | 4 ++- .../python/evaluation/PythonWorkerManager.kt | 15 +++++++++-- .../utbot/python/evaluation/utils/Utils.kt | 25 ++++++++++++------- 7 files changed, 59 insertions(+), 17 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index 89448aebb9..cdb5565ab7 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -16,6 +16,8 @@ import org.utbot.python.PythonTestSet import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.TestFileInformation import org.utbot.python.code.PythonCode +import org.utbot.python.evaluation.utils.PythonCoverageMode +import org.utbot.python.evaluation.utils.toPythonCoverageMode import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.codegen.model.Pytest import org.utbot.python.framework.codegen.model.Unittest @@ -117,6 +119,13 @@ class PythonGenerateTestsCommand : CliktCommand( private val doNotGenerateRegressionSuite by option("--do-not-generate-regression-suite", help = "Do not generate regression test suite") .flag(default = false) + private val coverageMeasureMode by option("--coverage-measure-mode", help = "Use LINES or INSTRUCTIONS for coverage measurement") + .choice("INSTRUCTIONS", "LINES") + .default("INSTRUCTIONS") + + private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "") + .flag(default = false) + private val testFramework: TestFramework get() = when (testFrameworkAsString) { @@ -252,7 +261,9 @@ class PythonGenerateTestsCommand : CliktCommand( testSourceRootPath = Paths.get(output.toAbsolutePath()).parent.toAbsolutePath(), withMinimization = !doNotMinimize, isCanceled = { false }, - runtimeExceptionTestsBehaviour = RuntimeExceptionTestsBehaviour.valueOf(runtimeExceptionTestsBehaviour) + runtimeExceptionTestsBehaviour = RuntimeExceptionTestsBehaviour.valueOf(runtimeExceptionTestsBehaviour), + coverageMeasureMode = coverageMeasureMode.toPythonCoverageMode() ?: PythonCoverageMode.Instructions, + sendCoverageContinuously = !doNotSendCoverageContinuously ) val processor = PythonCliProcessor( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt index 7a7472b9ba..28bd6d501c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt @@ -12,8 +12,7 @@ import org.utbot.python.evaluation.* import org.utbot.python.evaluation.serialization.MemoryDump import org.utbot.python.evaluation.serialization.toPythonTree import org.utbot.python.evaluation.utils.CoverageIdGenerator -import org.utbot.python.evaluation.utils.PyInstruction -import org.utbot.python.evaluation.utils.coveredLinesToInstructions +import org.utbot.python.evaluation.utils.PythonCoverageMode import org.utbot.python.evaluation.utils.makeInstructions import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.PythonTreeModel @@ -44,6 +43,8 @@ class PythonEngine( private val fuzzedConcreteValues: List, private val timeoutForRun: Long, private val pythonTypeStorage: PythonTypeHintsStorage, + private val coverageMode: PythonCoverageMode = PythonCoverageMode.Instructions, + private val sendCoverageContinuously: Boolean = true, ) { private val cache = EvaluationCache() @@ -302,6 +303,8 @@ class PythonEngine( serverSocket, pythonPath, until, + coverageMode, + sendCoverageContinuously, ) { constructEvaluationInput(it) } } catch (_: TimeoutException) { return@flow diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index f6ad5c1419..1d69149adf 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -6,6 +6,7 @@ import org.utbot.framework.minimization.minimizeExecutions import org.utbot.framework.plugin.api.UtError import org.utbot.framework.plugin.api.UtExecution import org.utbot.framework.plugin.api.UtExecutionSuccess +import org.utbot.python.evaluation.utils.PythonCoverageMode import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.framework.api.python.util.pythonStrClassId import org.utbot.python.fuzzing.* @@ -40,7 +41,9 @@ class PythonTestCaseGenerator( private val timeoutForRun: Long = 0, private val sourceFileContent: String, private val mypyStorage: MypyInfoBuild, - private val mypyReportLine: List + private val mypyReportLine: List, + private val coverageMode: PythonCoverageMode = PythonCoverageMode.Instructions, + private val sendCoverageContinuously: Boolean = true, ) { private val storageForMypyMessages: MutableList = mutableListOf() @@ -153,7 +156,9 @@ class PythonTestCaseGenerator( pythonPath, constants, timeoutForRun, - PythonTypeHintsStorage.get(mypyStorage) + PythonTypeHintsStorage.get(mypyStorage), + coverageMode, + sendCoverageContinuously, ) val namesInModule = mypyStorage.names .getOrDefault(curModule, emptyList()) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 405a1abf0d..cd62ee8c89 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -2,6 +2,7 @@ package org.utbot.python import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework +import org.utbot.python.evaluation.utils.PythonCoverageMode import java.nio.file.Path data class TestFileInformation( @@ -22,4 +23,6 @@ class PythonTestGenerationConfig( val withMinimization: Boolean, val isCanceled: () -> Boolean, val runtimeExceptionTestsBehaviour: RuntimeExceptionTestsBehaviour, + val coverageMeasureMode: PythonCoverageMode = PythonCoverageMode.Instructions, + val sendCoverageContinuously: Boolean = true, ) \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 59821778f5..bec976059d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -67,7 +67,9 @@ abstract class PythonTestGenerationProcessor { timeoutForRun = configuration.timeoutForRun, sourceFileContent = configuration.testFileInformation.testedFileContent, mypyStorage = mypyStorage, - mypyReportLine = emptyList() + mypyReportLine = emptyList(), + coverageMode = configuration.coverageMeasureMode, + sendCoverageContinuously = configuration.sendCoverageContinuously, ) val until = startTime + configuration.timeout diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 143718842f..26ada603a3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -11,6 +11,7 @@ import java.net.ServerSocket import java.net.Socket import java.net.SocketTimeoutException import org.apache.logging.log4j.LogManager +import org.utbot.python.evaluation.utils.PythonCoverageMode private val logger = KotlinLogging.logger {} @@ -18,6 +19,8 @@ class PythonWorkerManager( private val serverSocket: ServerSocket, val pythonPath: String, val until: Long, + private val coverageMeasureMode: PythonCoverageMode = PythonCoverageMode.Instructions, + private val sendCoverageContinuously: Boolean = true, val pythonCodeExecutorConstructor: (PythonWorker) -> PythonCodeExecutor, ) { var timeout: Long = 0 @@ -47,8 +50,8 @@ class PythonWorkerManager( coverageReceiver.address().second, "--logfile", logfile.absolutePath, "--loglevel", logLevel, // "DEBUG", "INFO", "WARNING", "ERROR" - "--coverage_type", "instructions", // "lines", "instructions" - "--send_coverage", // "--send_coverage", "--no-send_coverage" + "--coverage_type", coverageMeasureMode.toString(), // "lines", "instructions" + sendCoverageContinuously.toSendCoverageContinuouslyString(), // "--send_coverage", "--no-send_coverage" )) timeout = max(until - processStartTime, 0) if (this::workerSocket.isInitialized && !workerSocket.isClosed) { @@ -122,5 +125,13 @@ class PythonWorkerManager( companion object { val logfile = TemporaryFileManager.createTemporaryFile("", "utbot_executor.log", "log", true) + + fun Boolean.toSendCoverageContinuouslyString(): String { + return if (this) { + "--send_coverage" + } else { + "--no-send_coverage" + } + } } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt index 91eef93736..c26e17cae4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt @@ -5,14 +5,21 @@ import org.utbot.python.PythonMethod import org.utbot.python.framework.api.python.util.pythonAnyClassId import org.utbot.python.newtyping.pythonTypeRepresentation -fun coveredLinesToInstructions(coveredLines: Collection, method: PythonMethod): List { - return coveredLines.map { - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - it, - it.toLong() - ) +enum class PythonCoverageMode { + Lines { + override fun toString() = "lines" + }, + + Instructions { + override fun toString() = "instructions" + } +} + +fun String.toPythonCoverageMode(): PythonCoverageMode? { + return when (this.lowercase()) { + "lines" -> PythonCoverageMode.Lines + "instructions" -> PythonCoverageMode.Instructions + else -> null } } @@ -47,4 +54,4 @@ fun makeInstructions(coveredInstructions: Collection, method: Pyt offset ) } -} +} \ No newline at end of file From c933a792891d9258a07a46c9e26e2e1b47c02b57 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 10 Oct 2023 17:10:02 +0300 Subject: [PATCH 026/144] Update run_tests.py --- utbot-python/samples/run_tests.py | 166 ++++++++++++++++-------------- 1 file changed, 90 insertions(+), 76 deletions(-) diff --git a/utbot-python/samples/run_tests.py b/utbot-python/samples/run_tests.py index 9a353584c7..f0a7900957 100644 --- a/utbot-python/samples/run_tests.py +++ b/utbot-python/samples/run_tests.py @@ -11,7 +11,9 @@ import json import os import shutil +from subprocess import Popen, PIPE import sys +import threading import typing import tqdm from tqdm.contrib import DummyTqdmFile @@ -20,44 +22,27 @@ def parse_arguments(): parser = argparse.ArgumentParser( - prog='UtBot Python test', - description='Generate tests for example files' + prog="UtBot Python test", description="Generate tests for example files" ) subparsers = parser.add_subparsers(dest="command") - parser_generate = subparsers.add_parser('generate', help='Generate tests') - parser_generate.add_argument('java') - parser_generate.add_argument('jar') - parser_generate.add_argument('path_to_test_dir') - parser_generate.add_argument('-c', '--config_file', required=True) - parser_generate.add_argument('-p', '--python_path', required=True) - parser_generate.add_argument('-o', '--output_dir', required=True) - parser_generate.add_argument('-i', '--coverage_output_dir', required=True) - parser_run = subparsers.add_parser('run', help='Run tests') - parser_run.add_argument('-p', '--python_path', required=True) - parser_run.add_argument('-t', '--test_directory', required=True) - parser_run.add_argument('-c', '--code_directory', required=True) - parser_coverage = subparsers.add_parser('check_coverage', help='Check coverage') - parser_coverage.add_argument('-i', '--coverage_output_dir', required=True) - parser_coverage.add_argument('-c', '--config_file', required=True) + parser_generate = subparsers.add_parser("generate", help="Generate tests") + parser_generate.add_argument("java") + parser_generate.add_argument("jar") + parser_generate.add_argument("path_to_test_dir") + parser_generate.add_argument("-c", "--config_file", required=True) + parser_generate.add_argument("-p", "--python_path", required=True) + parser_generate.add_argument("-o", "--output_dir", required=True) + parser_generate.add_argument("-i", "--coverage_output_dir", required=True) + parser_run = subparsers.add_parser("run", help="Run tests") + parser_run.add_argument("-p", "--python_path", required=True) + parser_run.add_argument("-t", "--test_directory", required=True) + parser_run.add_argument("-c", "--code_directory", required=True) + parser_coverage = subparsers.add_parser("check_coverage", help="Check coverage") + parser_coverage.add_argument("-i", "--coverage_output_dir", required=True) + parser_coverage.add_argument("-c", "--config_file", required=True) return parser.parse_args() -def inner_zip(collection: dict[str, typing.Iterable], keys: list[str]) -> typing.Iterator[list[typing.Any]]: - key, inner_keys = keys[0], keys[1:] - if len(inner_keys) == 0: - yield [collection[key]] - return - for inner_collection in collection[key]: - for group in inner_zip(inner_collection, inner_keys): - yield [collection[key]] + group - - -def test_inner_zip(): - data = {"1": [{"2": [1, 2, 3]}, {"2": [4, 5, 6]}]} - actual = inner_zip(data, ["1", "2"]) - assert list(actual) == [[data["1"], data["1"][0]["2"]], [data["1"], data["1"][1]["2"]]] - - def parse_config(config_path: str): with open(config_path, "r") as fin: return json.loads(fin.read()) @@ -78,31 +63,37 @@ def std_out_err_redirect_tqdm(): def generate_tests( - java: str, - jar_path: str, - sys_paths: list[str], - python_path: str, - file_under_test: str, - timeout: int, - output: str, - coverage_output: str, - class_names: typing.Optional[list[str]] = None, - method_names: typing.Optional[list[str]] = None - ): + java: str, + jar_path: str, + sys_paths: list[str], + python_path: str, + file_under_test: str, + timeout: int, + output: str, + coverage_output: str, + class_names: typing.Optional[list[str]] = None, + method_names: typing.Optional[list[str]] = None, +): command = f"{java} -jar {jar_path} generate_python {file_under_test}.py -p {python_path} -o {output} -s {' '.join(sys_paths)} --timeout {timeout * 1000} --install-requirements --runtime-exception-behaviour PASS --coverage={coverage_output}" if class_names is not None: command += f" -c {','.join(class_names)}" if method_names is not None: command += f" -m {','.join(method_names)}" - tqdm.tqdm.write(command) - code = os.system(command) - return code + tqdm.tqdm.write("\n" + command) + + def stdout_printer(p): + for line in p.stdout: + tqdm.tqdm.write(line.rstrip().decode()) + + p = Popen(command.split(), stdout=PIPE) + t = threading.Thread(target=stdout_printer, args=(p,)) + t.run() def run_tests( - python_path: str, - tests_dir: str, - samples_dir: str, + python_path: str, + tests_dir: str, + samples_dir: str, ): command = f'{python_path} -m coverage run --source={samples_dir} -m unittest discover -p "utbot_*" {tests_dir}' tqdm.tqdm.write(command) @@ -111,28 +102,38 @@ def run_tests( def check_coverage( - config_file: str, - coverage_output_dir: str, + config_file: str, + coverage_output_dir: str, ): config = parse_config(config_file) report: typing.Dict[str, bool] = {} coverage: typing.Dict[str, typing.Tuple[float, float]] = {} - for part in config['parts']: - for file in part['files']: - for group in file['groups']: - expected_coverage = group.get('coverage', 0) + for part in config["parts"]: + for file in part["files"]: + for group in file["groups"]: + expected_coverage = group.get("coverage", 0) file_suffix = f"{part['path'].replace('/', '_')}_{file['name']}" - coverage_output_file = pathlib.Path(coverage_output_dir, f"coverage_{file_suffix}.json") + coverage_output_file = pathlib.Path( + coverage_output_dir, f"coverage_{file_suffix}.json" + ) if coverage_output_file.exists(): with open(coverage_output_file, "rt") as fin: actual_coverage_json = json.loads(fin.readline()) - actual_covered = sum(lines['end'] - lines['start'] + 1 for lines in actual_coverage_json['covered']) - actual_not_covered = sum(lines['end'] - lines['start'] + 1 for lines in actual_coverage_json['notCovered']) + actual_covered = sum( + lines["end"] - lines["start"] + 1 + for lines in actual_coverage_json["covered"] + ) + actual_not_covered = sum( + lines["end"] - lines["start"] + 1 + for lines in actual_coverage_json["notCovered"] + ) if actual_covered + actual_not_covered == 0: actual_coverage = 0 else: - actual_coverage = round(actual_covered / (actual_not_covered + actual_covered) * 100) + actual_coverage = round( + actual_covered / (actual_not_covered + actual_covered) * 100 + ) else: actual_coverage = 0 @@ -154,32 +155,45 @@ def main_test_generation(args): if pathlib.Path(args.coverage_output_dir).exists(): shutil.rmtree(args.coverage_output_dir) with std_out_err_redirect_tqdm() as orig_stdout: - # for (part, file, group) in tqdm.tqdm(inner_zip(config, ["parts", "files", "groups"]), file=orig_stdout, dynamic_ncols=True): - for part in tqdm.tqdm(config["parts"], file=orig_stdout, dynamic_ncols=True): - for file in tqdm.tqdm(part["files"], file=orig_stdout, dynamic_ncols=True): - for group in tqdm.tqdm(file["groups"], file=orig_stdout, dynamic_ncols=True): - full_name = pathlib.PurePath(args.path_to_test_dir, part['path'], file['name']) - output_file = pathlib.PurePath(args.output_dir, f"utbot_tests_{part['path'].replace('/', '_')}_{file['name']}.py") - coverage_output_file = pathlib.PurePath(args.coverage_output_dir, f"coverage_{part['path'].replace('/', '_')}_{file['name']}.json") + for part in tqdm.tqdm( + config["parts"], file=orig_stdout, dynamic_ncols=True, desc="Progress" + ): + for file in tqdm.tqdm( + part["files"], file=orig_stdout, dynamic_ncols=True, desc=part["path"] + ): + for group in file["groups"]: + full_name = pathlib.PurePath( + args.path_to_test_dir, part["path"], file["name"] + ) + output_file = pathlib.PurePath( + args.output_dir, + f"utbot_tests_{part['path'].replace('/', '_')}_{file['name']}.py", + ) + coverage_output_file = pathlib.PurePath( + args.coverage_output_dir, + f"coverage_{part['path'].replace('/', '_')}_{file['name']}.json", + ) generate_tests( args.java, args.jar, [args.path_to_test_dir], args.python_path, str(full_name), - group['timeout'], + group["timeout"], str(output_file), str(coverage_output_file), - group['classes'], - group['methods'] + group["classes"], + group["methods"], ) - -if __name__ == '__main__': + +if __name__ == "__main__": arguments = parse_arguments() - if arguments.command == 'generate': + if arguments.command == "generate": main_test_generation(arguments) - elif arguments.command == 'run': - run_tests(arguments.python_path, arguments.test_directory, arguments.code_directory) - elif arguments.command == 'check_coverage': + elif arguments.command == "run": + run_tests( + arguments.python_path, arguments.test_directory, arguments.code_directory + ) + elif arguments.command == "check_coverage": check_coverage(arguments.config_file, arguments.coverage_output_dir) From e51377978664bf1a9f50ae4bc0c371b47f5a7d58 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 09:10:37 +0300 Subject: [PATCH 027/144] Remove mutable lists with no reason --- utbot-intellij-go/build.gradle.kts | 2 +- utbot-intellij-js/build.gradle.kts | 2 +- utbot-intellij-main/build.gradle.kts | 2 +- utbot-intellij-python/build.gradle.kts | 2 +- utbot-intellij/build.gradle.kts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index bbd32e588f..0124225da5 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -54,7 +54,7 @@ intellij { "java" ) - val kotlinPlugins = mutableListOf( + val kotlinPlugins = listOf( "org.jetbrains.kotlin" ) diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index 25fc942c32..e3d6474ca1 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -54,7 +54,7 @@ intellij { "java" ) - val kotlinPlugins = mutableListOf( + val kotlinPlugins = listOf( "org.jetbrains.kotlin" ) diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 4e0bc593b8..69c02ff51e 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -34,7 +34,7 @@ intellij { "java" ) - val kotlinPlugins = mutableListOf( + val kotlinPlugins = listOf( "org.jetbrains.kotlin" ) diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index f955bb6f7d..2c91a5662c 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -54,7 +54,7 @@ intellij { "java" ) - val kotlinPlugins = mutableListOf( + val kotlinPlugins = listOf( "org.jetbrains.kotlin" ) diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index 3c88009627..b4a9870f27 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -39,7 +39,7 @@ intellij { "java" ) - val kotlinPlugins = mutableListOf( + val kotlinPlugins = listOf( "org.jetbrains.kotlin" ) From f643b5cd55af70789c78de22e81f3433b01000e8 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 09:57:44 +0300 Subject: [PATCH 028/144] Add ide version --- .github/workflows/publish-plugin-from-branch.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-plugin-from-branch.yml b/.github/workflows/publish-plugin-from-branch.yml index 2e4f5ec84b..37fc1c2aea 100644 --- a/.github/workflows/publish-plugin-from-branch.yml +++ b/.github/workflows/publish-plugin-from-branch.yml @@ -48,6 +48,12 @@ jobs: extra_options: "-PideType=IC -PprojectType=Community" - plugin_type: IU extra_options: "-PideType=IU -PprojectType=Ultimate" + - plugin_type: PC + extra_options: "-PideType=PC -PprojectType=Community -PideVersion=2023.2" + - plugin_type: PU + extra_options: "-PideType=PU -PprojectType=Ultimate -PideVersion=2023.2" + - plugin_type: GO + extra_options: "-PideType=PU -PprojectType=Community -PideVersion=2023.2" runs-on: ubuntu-20.04 container: unittestbot/java-env:java17-zulu-jdk-gradle7.6.1-kotlinc1.8.0 steps: @@ -79,13 +85,13 @@ jobs: - name: Build UTBot IntelliJ IDEA plugin run: | gradle clean buildPlugin --no-daemon --build-cache --no-parallel ${{ matrix.configuration.extra_options }} -Dorg.gradle.jvmargs=-Xmx2g -Dkotlin.daemon.jvm.options=-Xmx4g -PsemVer=${{ env.VERSION }} - cd utbot-intellij/build/distributions - unzip utbot-intellij-${{ env.VERSION }}.zip - rm utbot-intellij-${{ env.VERSION }}.zip + cd utbot-intellij-main/build/distributions + unzip utbot-intellij-main-${{ env.VERSION }}.zip + rm utbot-intellij-main-${{ env.VERSION }}.zip - name: Archive UTBot IntelliJ IDEA plugin if: ${{ inputs.upload-artifact == 'true' }} uses: actions/upload-artifact@v3 with: name: utbot-intellij-${{ matrix.configuration.plugin_type }}-${{ env.VERSION_ARCHIVE }} - path: utbot-intellij/build/distributions/* + path: utbot-intellij-main/build/distributions/* From 410c248929fbdbcf9fe18e3b11c1fce604254fcd Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 09:58:20 +0300 Subject: [PATCH 029/144] Remove createNewFile --- .../src/main/kotlin/org/utbot/cli/language/python/Utils.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Utils.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Utils.kt index 8ff7f71457..708cfa6131 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Utils.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Utils.kt @@ -25,5 +25,4 @@ fun writeToFileAndSave(filename: String, fileContent: String) { val file = File(filename) file.parentFile?.mkdirs() file.writeText(fileContent) - file.createNewFile() } From d260bf1c30a9892e533ab99d86046feb81ca1bb9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 11:16:03 +0300 Subject: [PATCH 030/144] Reverse changes --- gradle.properties | 2 +- .../org/utbot/cli/js/JsCoverageCommand.kt | 10 +++--- .../org/utbot/cli/js/JsRunTestsCommand.kt | 2 +- .../intellij/plugin/js/JsDialogProcessor.kt | 9 +----- .../src/main/resources/META-INF/plugin.xml | 32 +++++++++---------- .../src/main/kotlin/service/TernService.kt | 2 +- .../service/coverage/BasicCoverageService.kt | 2 +- .../service/coverage/CoverageService.kt | 4 +-- .../service/coverage/FastCoverageService.kt | 2 +- .../kotlin/settings/JsPackagesSettings.kt | 2 +- 10 files changed, 30 insertions(+), 37 deletions(-) diff --git a/gradle.properties b/gradle.properties index da975e38d1..e02ec3ed5b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=IC +ideType=IU ideVersion=232.8660.185 #ideVersion=2023.2 # ALL, NOJS diff --git a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt index 5e88973b6d..788b63c559 100644 --- a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt +++ b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsCoverageCommand.kt @@ -52,12 +52,12 @@ class JsCoverageCommand : CliktCommand(name = "coverage_js", help = "Get tests c shouldWait = true, timeout = 20, cmd = arrayOf( - pathToNYC, - "--report-dir=$coverageDataPath", - "--reporter=clover", - "--temp-dir=${workingDir}/cache", + "\"$pathToNYC\"", + "--report-dir=\"$coverageDataPath\"", + "--reporter=\"clover\"", + "--temp-dir=\"${workingDir}/cache\"", "mocha", - testFileAbsolutePath + "\"$testFileAbsolutePath\"" ) ) val coveredList = mutableListOf() diff --git a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt index 1c094aa058..60d96fc374 100644 --- a/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt +++ b/utbot-cli-js/src/main/kotlin/org/utbot/cli/js/JsRunTestsCommand.kt @@ -42,7 +42,7 @@ class JsRunTestsCommand : CliktCommand(name = "run_js", help = "Runs tests for t val (inputText, errorText) = JsCmdExec.runCommand( dir = dir, shouldWait = true, - cmd = arrayOf("mocha", fileWithTestsAbsolutePath) + cmd = arrayOf("mocha", "\"$fileWithTestsAbsolutePath\"") ) if (errorText.isNotEmpty()) { logger.error { "An error has occurred while running tests for $fileWithTests: $errorText" } diff --git a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt index 5923c312cd..164c2b0929 100644 --- a/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt +++ b/utbot-intellij-js/src/main/kotlin/org/utbot/intellij/plugin/js/JsDialogProcessor.kt @@ -87,10 +87,7 @@ object JsDialogProcessor { val pathToNode = NodeJsLocalInterpreterManager.getInstance().interpreters.first().interpreterSystemIndependentPath val (_, errorText) = JsCmdExec.runCommand( - shouldWait = true, cmd = arrayOf( - pathToNode, - "-v" - ) + shouldWait = true, cmd = arrayOf("\"${pathToNode}\"", "-v") ) if (errorText.isNotEmpty()) throw NoSuchElementException() val pathToNPM = @@ -203,11 +200,7 @@ object JsDialogProcessor { testDir.add(temp) testDir.findFile(testFileName)!! } -// val testFileEditor = CodeInsightUtil.positionCursor(project, testPsiFile, testPsiFile) as Editor OpenFileDescriptor(project, testPsiFile.virtualFile).navigate(true) -// unblockDocument(project, testFileEditor.document) -// testFileEditor.document.setText(generatedCode) -// unblockDocument(project, testFileEditor.document) } } } diff --git a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml index 5b2acbb54d..c21e12800d 100644 --- a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml +++ b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml @@ -6,12 +6,12 @@ utbot.org com.intellij.modules.platform - com.intellij.modules.java - org.jetbrains.kotlin - com.intellij.modules.python - org.jetbrains.plugins.go - org.jetbrains.android - org.jetbrains.idea.maven + com.intellij.modules.java + org.jetbrains.kotlin + com.intellij.modules.python + org.jetbrains.plugins.go + org.jetbrains.android + org.jetbrains.idea.maven ]]> - - - - - - - - - - + + + diff --git a/utbot-js/src/main/kotlin/service/TernService.kt b/utbot-js/src/main/kotlin/service/TernService.kt index b17dcd19e8..fd215752a4 100644 --- a/utbot-js/src/main/kotlin/service/TernService.kt +++ b/utbot-js/src/main/kotlin/service/TernService.kt @@ -80,7 +80,7 @@ test(["${filePathToInference.joinToString(separator = "\", \"")}"]) dir = "$projectPath/$utbotDir/", shouldWait = true, timeout = 20, - cmd = arrayOf(settings.pathToNode, "${projectPath}/$utbotDir/ternScript.js"), + cmd = arrayOf("\"${settings.pathToNode}\"", "\"${projectPath}/$utbotDir/ternScript.js\""), ) json = try { JSONObject(inputText.replaceAfterLast("}", "")) diff --git a/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt b/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt index 6351457851..9b774d8154 100644 --- a/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt +++ b/utbot-js/src/main/kotlin/service/coverage/BasicCoverageService.kt @@ -21,7 +21,7 @@ class BasicCoverageService( scriptTexts.indices.forEach { index -> try { val (_, errorText) = JsCmdExec.runCommand( - cmd = arrayOf(settings.pathToNode, "$utbotDirPath/$tempFileName$index.js"), + cmd = arrayOf("\"${settings.pathToNode}\"", "\"$utbotDirPath/$tempFileName$index.js\""), dir = projectPath, shouldWait = true, timeout = settings.timeout, diff --git a/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt b/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt index 0fdcd20a90..b51106e8cf 100644 --- a/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt +++ b/utbot-js/src/main/kotlin/service/coverage/CoverageService.kt @@ -41,8 +41,8 @@ abstract class CoverageService( ) JsCmdExec.runCommand( cmd = arrayOf( - settings.pathToNode, - "$utbotDirPath/${JsTestGenerationSettings.tempFileName}Base.js" + "\"${settings.pathToNode}\"", + "\"$utbotDirPath/${JsTestGenerationSettings.tempFileName}Base.js\"" ), dir = projectPath, shouldWait = true, diff --git a/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt b/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt index 032ee65946..a2c3c0f05a 100644 --- a/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt +++ b/utbot-js/src/main/kotlin/service/coverage/FastCoverageService.kt @@ -20,7 +20,7 @@ class FastCoverageService( override fun generateCoverageReport() { val (_, errorText) = JsCmdExec.runCommand( - cmd = arrayOf(settings.pathToNode, "$utbotDirPath/$tempFileName" + "0.js"), + cmd = arrayOf("\"${settings.pathToNode}\"", "\"$utbotDirPath/$tempFileName" + "0.js\""), dir = projectPath, shouldWait = true, timeout = settings.timeout, diff --git a/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt b/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt index 95a1f7946f..0ae48029ec 100644 --- a/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt +++ b/utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt @@ -66,7 +66,7 @@ class PackageDataService( dir = projectPath, shouldWait = true, timeout = 10, - cmd = arrayOf(pathToNpm, "list", npmListFlag.toString()) + cmd = arrayOf("\"$pathToNpm\"", "list", npmListFlag.toString()) ) var result = inputText.contains(packageName) if (!result || this == nycData) { From bce8404492340ffbd22b9417d26701053061fda9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 12:41:33 +0300 Subject: [PATCH 031/144] Move Configuration to utbot-intellij --- .../utbot/intellij/plugin/settings/Configurable.kt | 0 .../plugin/settings/MockAlwaysClassesTable.kt | 11 ++++++----- .../utbot/intellij/plugin/settings/SettingsWindow.kt | 0 3 files changed, 6 insertions(+), 5 deletions(-) rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt (100%) rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt (91%) rename {utbot-ui-commons => utbot-intellij}/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt (100%) diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt similarity index 100% rename from utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt rename to utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt similarity index 91% rename from utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt rename to utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt index 1e790f6341..4803fcac44 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt @@ -11,8 +11,9 @@ import com.intellij.openapi.ui.cellvalidators.CellComponentProvider import com.intellij.openapi.ui.cellvalidators.CellTooltipManager import com.intellij.openapi.ui.cellvalidators.ValidatingTableCellRendererWrapper import com.intellij.openapi.util.Disposer -//import com.intellij.psi.JavaPsiFacade -//import com.intellij.psi.PsiClass +import com.intellij.psi.JavaPsiFacade +import com.intellij.psi.PsiClass +import com.intellij.psi.search.GlobalSearchScope import com.intellij.ui.components.fields.ExtendableTextField import com.intellij.ui.table.JBTable import com.intellij.util.ui.ColumnInfo @@ -86,7 +87,7 @@ internal class MockAlwaysClassesTable(project: Project) : ListTableWithButtons Date: Wed, 11 Oct 2023 12:41:44 +0300 Subject: [PATCH 032/144] change ideVersion --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index e02ec3ed5b..da975e38d1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=IU +ideType=IC ideVersion=232.8660.185 #ideVersion=2023.2 # ALL, NOJS From 52a949ca055535a8aacfaceaefb600ea1eb3c59b Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 12:52:47 +0300 Subject: [PATCH 033/144] reverse changes --- .../utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt | 2 +- utbot-js/src/main/kotlin/settings/JsPackagesSettings.kt | 4 ++-- utbot-python/samples/my_cov.json | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 utbot-python/samples/my_cov.json diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt index 4803fcac44..133167ff2e 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/MockAlwaysClassesTable.kt @@ -33,7 +33,7 @@ internal class MockAlwaysClassesTable(project: Project) : ListTableWithButtons Date: Wed, 11 Oct 2023 13:04:36 +0300 Subject: [PATCH 034/144] Move RootUtilsTest.kt --- .../org/utbot/intellij/plugin/ui/utils}/RootUtilsTest.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) rename {utbot-intellij-main/src/test/kotlin/org/utbot/tests => utbot-intellij/src/test/kotlin/org/utbot/intellij/plugin/ui/utils}/RootUtilsTest.kt (93%) diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt b/utbot-intellij/src/test/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtilsTest.kt similarity index 93% rename from utbot-intellij-main/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt rename to utbot-intellij/src/test/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtilsTest.kt index ad36792ce7..cbc295104f 100644 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/RootUtilsTest.kt +++ b/utbot-intellij/src/test/kotlin/org/utbot/intellij/plugin/ui/utils/RootUtilsTest.kt @@ -1,12 +1,8 @@ -package org.utbot.tests +package org.utbot.intellij.plugin.ui.utils import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test import org.utbot.framework.plugin.api.CodegenLanguage -import org.utbot.intellij.plugin.ui.utils.ITestSourceRoot -import org.utbot.intellij.plugin.ui.utils.SRC_MAIN -import org.utbot.intellij.plugin.ui.utils.getCommonPrefix -import org.utbot.intellij.plugin.ui.utils.getSortedTestRoots internal class RootUtilsTest { internal class MockTestSourceRoot(override val dirPath: String) : ITestSourceRoot { From 834d3974e30f884658f659e03625b88798b75df5 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 11 Oct 2023 13:10:52 +0300 Subject: [PATCH 035/144] Update imports in LanguageAssistant.kt --- .../intellij/plugin/language/agnostic/LanguageAssistant.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt index 4fc4a118d8..732feff717 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/language/agnostic/LanguageAssistant.kt @@ -7,7 +7,11 @@ import com.intellij.openapi.actionSystem.CommonDataKeys import com.intellij.openapi.actionSystem.PlatformDataKeys import com.intellij.openapi.project.Project import com.intellij.openapi.vfs.VirtualFile -import com.intellij.psi.* +import com.intellij.psi.PsiDirectory +import com.intellij.psi.PsiElement +import com.intellij.psi.PsiFile +import com.intellij.psi.PsiFileSystemItem +import com.intellij.psi.PsiManager private val logger = KotlinLogging.logger {} From f3d3158cb5a2883760c6ea17aa6ec07179614fe7 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 12 Oct 2023 14:56:17 +0300 Subject: [PATCH 036/144] Split intellij settings --- .../src/main/java/SettingsTemplateHelper.java | 2 +- gradle.properties | 6 +- .../src/main/resources/META-INF/withJava.xml | 9 +- .../plugin/settings/JavaConfigurable.kt | 23 +++++ .../plugin/settings/SettingsWindow.kt | 43 +--------- .../plugin/settings/BaseSettingsWindow.kt | 83 +++++++++++++++++++ .../intellij/plugin/settings/Configurable.kt | 2 +- 7 files changed, 119 insertions(+), 49 deletions(-) create mode 100644 utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/JavaConfigurable.kt create mode 100644 utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt rename {utbot-intellij => utbot-ui-commons}/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt (92%) diff --git a/buildSrc/src/main/java/SettingsTemplateHelper.java b/buildSrc/src/main/java/SettingsTemplateHelper.java index 45502e2f33..d55390eaac 100644 --- a/buildSrc/src/main/java/SettingsTemplateHelper.java +++ b/buildSrc/src/main/java/SettingsTemplateHelper.java @@ -30,7 +30,7 @@ public class SettingsTemplateHelper { public static void proceed(Project project) { File settingsSourceDir = new File(project.getBuildDir().getParentFile().getParentFile(), "utbot-framework-api/src/main/kotlin/org/utbot/framework/"); String sourceFileName = "UtSettings.kt"; - File settingsResourceDir = new File(project.getBuildDir().getParentFile().getParentFile(), "utbot-intellij/src/main/resources/"); + File settingsResourceDir = new File(project.getBuildDir().getParentFile().getParentFile(), "utbot-intellij-main/src/main/resources/"); String settingsFileName = "settings.properties"; Map dictionary = new HashMap<>(); diff --git a/gradle.properties b/gradle.properties index da975e38d1..febe5c7a2c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,9 +10,9 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=IC -ideVersion=232.8660.185 -#ideVersion=2023.2 +ideType=PY +#ideVersion=232.8660.185 +ideVersion=2023.2 # ALL, NOJS buildType=NOJS diff --git a/utbot-intellij-main/src/main/resources/META-INF/withJava.xml b/utbot-intellij-main/src/main/resources/META-INF/withJava.xml index 2ce2e82cc9..fafe2e683d 100644 --- a/utbot-intellij-main/src/main/resources/META-INF/withJava.xml +++ b/utbot-intellij-main/src/main/resources/META-INF/withJava.xml @@ -1,3 +1,8 @@ - - \ No newline at end of file + + + + + \ No newline at end of file diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/JavaConfigurable.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/JavaConfigurable.kt new file mode 100644 index 0000000000..b22f57ce78 --- /dev/null +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/JavaConfigurable.kt @@ -0,0 +1,23 @@ +package org.utbot.intellij.plugin.settings + +import com.intellij.openapi.options.SearchableConfigurable +import com.intellij.openapi.project.Project +import javax.swing.JComponent + +class JavaConfigurable(val project: Project) : SearchableConfigurable { + private val displayName: String = "UtBot Java Configuration" + private val id: String = "org.utbot.intellij.plugin.settings.UtBotSettingsConfigurableJava" + private val settingsWindow = SettingsWindow(project) + + override fun createComponent(): JComponent = settingsWindow.panel + + override fun isModified(): Boolean = settingsWindow.isModified() + + override fun apply() = settingsWindow.apply() + + override fun reset() = settingsWindow.reset() + + override fun getDisplayName(): String = displayName + + override fun getId(): String = id +} \ No newline at end of file diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt index 06d17cbd99..503507faab 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt @@ -16,8 +16,6 @@ import kotlin.reflect.KClass import org.utbot.framework.SummariesGenerationType import org.utbot.framework.UtSettings import org.utbot.framework.codegen.domain.ForceStaticMocking -import org.utbot.framework.codegen.domain.HangingTestsTimeout -import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.plugin.api.CodeGenerationSettingItem import org.utbot.framework.plugin.api.CodegenLanguage import org.utbot.framework.plugin.api.JavaDocCommentStyle @@ -36,7 +34,6 @@ class SettingsWindow(val project: Project) { private lateinit var runInspectionAfterTestGenerationCheckBox: JCheckBox private lateinit var forceMockCheckBox: JCheckBox private lateinit var enableSummarizationGenerationCheckBox: JCheckBox - private lateinit var enableExperimentalLanguagesCheckBox: JCheckBox private fun Row.createCombo(loader: KClass<*>, values: Array<*>) { comboBox(DefaultComboBoxModel(values)) @@ -66,27 +63,12 @@ class SettingsWindow(val project: Project) { enableSummarizationGenerationCheckBox.isSelected = false } } - - enableExperimentalLanguagesCheckBox = checkBox("Experimental languages support") - .onApply { - settings.state.enableExperimentalLanguagesSupport = - enableExperimentalLanguagesCheckBox.isSelected - } - .onReset { - enableExperimentalLanguagesCheckBox.isSelected = - settings.experimentalLanguagesSupport == true - } - .onIsModified { enableExperimentalLanguagesCheckBox.isSelected xor settings.experimentalLanguagesSupport } - .component - contextHelp("Enable JavaScript and Python if IDE supports them") }.bottomGap(BottomGap.MEDIUM) - row("Tests with exceptions:") { - createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values()) - } row("Overflow detection:") { createCombo(TreatOverflowAsError::class, TreatOverflowAsError.values()) } + row { useTaintAnalysisCheckBox = checkBox("Enable taint analysis") @@ -168,29 +150,6 @@ class SettingsWindow(val project: Project) { forceMockCheckBox.addActionListener { updater.run() } }.bottomGap(BottomGap.MEDIUM) - row("Hanging test timeout:") { - spinner( - range = IntRange( - HangingTestsTimeout.MIN_TIMEOUT_MS.toInt(), - HangingTestsTimeout.MAX_TIMEOUT_MS.toInt() - ), - step = 50 - ).bindIntValue( - getter = { - settings.hangingTestsTimeout.timeoutMs - .coerceIn(HangingTestsTimeout.MIN_TIMEOUT_MS, HangingTestsTimeout.MAX_TIMEOUT_MS).toInt() - }, - setter = { - settings.hangingTestsTimeout = HangingTestsTimeout(it.toLong()) - } - ) - - label("milliseconds per method") - contextHelp( - "Set this timeout to define which test is \"hanging\". Increase it to test the " + - "time-consuming method or decrease if the execution speed is critical for you." - ) - } val fuzzLabel = JBLabel("Fuzzing") val symLabel = JBLabel("Symbolic execution") row { diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt new file mode 100644 index 0000000000..334dcf025a --- /dev/null +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt @@ -0,0 +1,83 @@ +package org.utbot.intellij.plugin.settings + +import com.intellij.openapi.components.service +import com.intellij.openapi.project.Project +import com.intellij.openapi.ui.DialogPanel +import com.intellij.ui.dsl.builder.* +import javax.swing.* +import kotlin.reflect.KClass +import org.utbot.framework.codegen.domain.HangingTestsTimeout +import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour +import org.utbot.framework.plugin.api.CodeGenerationSettingItem +import org.utbot.intellij.plugin.ui.components.CodeGenerationSettingItemRenderer + +class BaseSettingsWindow(val project: Project) { + private val settings = project.service() + + private lateinit var enableExperimentalLanguagesCheckBox: JCheckBox + + private fun Row.createCombo(loader: KClass<*>, values: Array<*>) { + comboBox(DefaultComboBoxModel(values)) + .bindItem( + getter = { settings.providerNameByServiceLoader(loader) }, + setter = { settings.setProviderByLoader(loader, it as CodeGenerationSettingItem) }, + ).component.renderer = CodeGenerationSettingItemRenderer() + } + + val panel: JPanel = panel { + row { + enableExperimentalLanguagesCheckBox = checkBox("Experimental languages support") + .onApply { + settings.state.enableExperimentalLanguagesSupport = + enableExperimentalLanguagesCheckBox.isSelected + } + .onReset { + enableExperimentalLanguagesCheckBox.isSelected = + settings.experimentalLanguagesSupport == true + } + .onIsModified { enableExperimentalLanguagesCheckBox.isSelected xor settings.experimentalLanguagesSupport } + .component + contextHelp("Enable JavaScript and Python if IDE supports them") + }.bottomGap(BottomGap.MEDIUM) + + row("Tests with exceptions:") { + createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values()) + } + + row("Hanging test timeout:") { + spinner( + range = IntRange( + HangingTestsTimeout.MIN_TIMEOUT_MS.toInt(), + HangingTestsTimeout.MAX_TIMEOUT_MS.toInt() + ), + step = 50 + ).bindIntValue( + getter = { + settings.hangingTestsTimeout.timeoutMs + .coerceIn(HangingTestsTimeout.MIN_TIMEOUT_MS, HangingTestsTimeout.MAX_TIMEOUT_MS).toInt() + }, + setter = { + settings.hangingTestsTimeout = HangingTestsTimeout(it.toLong()) + } + ) + + label("milliseconds per method") + contextHelp( + "Set this timeout to define which test is \"hanging\". Increase it to test the " + + "time-consuming method or decrease if the execution speed is critical for you." + ) + } + } + + fun isModified(): Boolean { + return (panel as DialogPanel).isModified() + } + + fun apply() { + (panel as DialogPanel).apply() + } + + fun reset() { + (panel as DialogPanel).reset() + } +} diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt similarity index 92% rename from utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt rename to utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt index 7a41ff805a..3c09b84ea2 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/Configurable.kt @@ -7,7 +7,7 @@ import javax.swing.JComponent class Configurable(val project: Project) : SearchableConfigurable { private val displayName: String = "UtBot Configuration" private val id: String = "org.utbot.intellij.plugin.settings.UtBotSettingsConfigurable" - private val settingsWindow = SettingsWindow(project) + private val settingsWindow = BaseSettingsWindow(project) override fun createComponent(): JComponent = settingsWindow.panel From 25907e8d4520b5ab972840b231bb0214384edc1a Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 12 Oct 2023 16:36:40 +0300 Subject: [PATCH 037/144] Split intellij settings --- gradle.properties | 6 ++-- .../src/main/resources/settings.properties | 11 +++++++ .../plugin/settings/BaseSettingsWindow.kt | 31 ++++++++++--------- 3 files changed, 30 insertions(+), 18 deletions(-) diff --git a/gradle.properties b/gradle.properties index febe5c7a2c..da975e38d1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,9 +10,9 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio -ideType=PY -#ideVersion=232.8660.185 -ideVersion=2023.2 +ideType=IC +ideVersion=232.8660.185 +#ideVersion=2023.2 # ALL, NOJS buildType=NOJS diff --git a/utbot-intellij-main/src/main/resources/settings.properties b/utbot-intellij-main/src/main/resources/settings.properties index 29ce294664..657e42f4f4 100644 --- a/utbot-intellij-main/src/main/resources/settings.properties +++ b/utbot-intellij-main/src/main/resources/settings.properties @@ -594,3 +594,14 @@ # # Default value is [false] #disableUnsatChecking=false + +# +# When generating integration tests we only partially reset context in between executions to save time. +# For example, entity id generators do not get reset. It may lead to non-reproduceable results if +# IDs leak to the output of the method under test. +# To cope with that, we rerun executions that are left after minimization, fully resetting Spring context +# between executions. However, full context reset is slow, so we use this setting to limit number of +# tests per method that are rerun with full context reset in case minimization outputs too many tests. +# +# Default value is [25] +#maxSpringContextResetsPerMethod=25 diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt index 334dcf025a..db1433d7a9 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt @@ -25,21 +25,6 @@ class BaseSettingsWindow(val project: Project) { } val panel: JPanel = panel { - row { - enableExperimentalLanguagesCheckBox = checkBox("Experimental languages support") - .onApply { - settings.state.enableExperimentalLanguagesSupport = - enableExperimentalLanguagesCheckBox.isSelected - } - .onReset { - enableExperimentalLanguagesCheckBox.isSelected = - settings.experimentalLanguagesSupport == true - } - .onIsModified { enableExperimentalLanguagesCheckBox.isSelected xor settings.experimentalLanguagesSupport } - .component - contextHelp("Enable JavaScript and Python if IDE supports them") - }.bottomGap(BottomGap.MEDIUM) - row("Tests with exceptions:") { createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values()) } @@ -67,6 +52,22 @@ class BaseSettingsWindow(val project: Project) { "time-consuming method or decrease if the execution speed is critical for you." ) } + + row { + enableExperimentalLanguagesCheckBox = checkBox("Experimental languages support") + .onApply { + settings.state.enableExperimentalLanguagesSupport = + enableExperimentalLanguagesCheckBox.isSelected + } + .onReset { + enableExperimentalLanguagesCheckBox.isSelected = + settings.experimentalLanguagesSupport == true + } + .onIsModified { enableExperimentalLanguagesCheckBox.isSelected xor settings.experimentalLanguagesSupport } + .component + contextHelp("Enable JavaScript and Python if IDE supports them") + }.bottomGap(BottomGap.MEDIUM) + } fun isModified(): Boolean { From eebe84fae4c068870f820912a5a9569f2d066167 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 12 Oct 2023 16:52:05 +0300 Subject: [PATCH 038/144] update script --- .github/workflows/publish-plugin-from-branch.yml | 8 ++++---- gradle.properties | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-plugin-from-branch.yml b/.github/workflows/publish-plugin-from-branch.yml index 37fc1c2aea..5a7296b4f5 100644 --- a/.github/workflows/publish-plugin-from-branch.yml +++ b/.github/workflows/publish-plugin-from-branch.yml @@ -49,11 +49,11 @@ jobs: - plugin_type: IU extra_options: "-PideType=IU -PprojectType=Ultimate" - plugin_type: PC - extra_options: "-PideType=PC -PprojectType=Community -PideVersion=2023.2" - - plugin_type: PU - extra_options: "-PideType=PU -PprojectType=Ultimate -PideVersion=2023.2" + extra_options: "-PideType=PC -PprojectType=Community -PideVersion=PpycharmIdeVersion" + - plugin_type: PY + extra_options: "-PideType=PY -PprojectType=Ultimate -PideVersion=2023.2" - plugin_type: GO - extra_options: "-PideType=PU -PprojectType=Community -PideVersion=2023.2" + extra_options: "-PideType=GO -PprojectType=Community -PideVersion=2023.2" runs-on: ubuntu-20.04 container: unittestbot/java-env:java17-zulu-jdk-gradle7.6.1-kotlinc1.8.0 steps: diff --git a/gradle.properties b/gradle.properties index da975e38d1..4d5506cf69 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,6 +13,7 @@ ultimateEdition=Ultimate ideType=IC ideVersion=232.8660.185 #ideVersion=2023.2 +pycharmIdeVersion=2023.2 # ALL, NOJS buildType=NOJS From 5980bbc74baabe04663b7f84f52418f43a55bdc3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 13 Oct 2023 08:52:30 +0300 Subject: [PATCH 039/144] update github script --- .github/workflows/publish-plugin-from-branch.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/publish-plugin-from-branch.yml b/.github/workflows/publish-plugin-from-branch.yml index 5a7296b4f5..0bfc04d289 100644 --- a/.github/workflows/publish-plugin-from-branch.yml +++ b/.github/workflows/publish-plugin-from-branch.yml @@ -48,12 +48,8 @@ jobs: extra_options: "-PideType=IC -PprojectType=Community" - plugin_type: IU extra_options: "-PideType=IU -PprojectType=Ultimate" - - plugin_type: PC - extra_options: "-PideType=PC -PprojectType=Community -PideVersion=PpycharmIdeVersion" - plugin_type: PY extra_options: "-PideType=PY -PprojectType=Ultimate -PideVersion=2023.2" - - plugin_type: GO - extra_options: "-PideType=GO -PprojectType=Community -PideVersion=2023.2" runs-on: ubuntu-20.04 container: unittestbot/java-env:java17-zulu-jdk-gradle7.6.1-kotlinc1.8.0 steps: From d048983a886decc0458020c3229ea4c36e4beea3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 13 Oct 2023 10:36:22 +0300 Subject: [PATCH 040/144] Move tests --- utbot-intellij-main/build.gradle.kts | 38 ---- .../kotlin/org/utbot/data/IdeaBuildSystem.kt | 9 - .../test/kotlin/org/utbot/data/JDKVersion.kt | 10 - .../src/test/kotlin/org/utbot/data/RunInfo.kt | 11 -- .../kotlin/org/utbot/dialogs/DialogFixture.kt | 36 ---- .../utbot/dialogs/NewProjectDialogFixture.kt | 104 ----------- .../utbot/dialogs/OpenProjectDialogFixture.kt | 21 --- .../utbot/dialogs/UnitTestBotDialogFixture.kt | 32 ---- .../org/utbot/dialogs/WarningDialogFixture.kt | 24 --- .../org/utbot/elements/ActionMenuFixture.kt | 30 --- .../org/utbot/elements/NotificationFixture.kt | 28 --- .../test/kotlin/org/utbot/pages/IdeaFrame.kt | 173 ------------------ .../kotlin/org/utbot/pages/IdeaGradleFrame.kt | 50 ----- .../kotlin/org/utbot/pages/IdeaMavenFrame.kt | 22 --- .../kotlin/org/utbot/pages/WelcomeFrame.kt | 60 ------ .../kotlin/org/utbot/samples/CodeSamples.kt | 40 ---- .../test/kotlin/org/utbot/steps/IDESteps.kt | 52 ------ .../test/kotlin/org/utbot/tests/BaseTest.kt | 93 ---------- .../kotlin/org/utbot/tests/CreateProjects.kt | 41 ----- .../org/utbot/tests/UnitTestBotActionTest.kt | 76 -------- .../org/utbot/utils/RemoteRobotExtension.kt | 135 -------------- .../kotlin/org/utbot/utils/StepsLogger.kt | 15 -- utbot-intellij/build.gradle.kts | 69 ++++++- 23 files changed, 68 insertions(+), 1101 deletions(-) delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/data/JDKVersion.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/data/RunInfo.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/elements/NotificationFixture.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaFrame.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/samples/CodeSamples.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/steps/IDESteps.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/tests/BaseTest.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/tests/CreateProjects.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt delete mode 100644 utbot-intellij-main/src/test/kotlin/org/utbot/utils/StepsLogger.kt diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 69c02ff51e..1461820031 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -82,8 +82,6 @@ intellij { SettingsTemplateHelper.proceed(project) } -val remoteRobotVersion = "0.11.16" - tasks { compileKotlin { kotlinOptions { @@ -109,31 +107,6 @@ tasks { untilBuild.set("232.*") version.set(semVer) } - - runIdeForUiTests { - jvmArgs("-Xmx2048m", "-Didea.is.internal=true", "-Didea.ui.debug.mode=true") - - systemProperty("robot-server.port", "8082") // default port 8580 - systemProperty("ide.mac.message.dialogs.as.sheets", "false") - systemProperty("jb.privacy.policy.text", "") - systemProperty("jb.consents.confirmation.enabled", "false") - systemProperty("idea.trust.all.projects", "true") - systemProperty("ide.mac.file.chooser.native", "false") - systemProperty("jbScreenMenuBar.enabled", "false") - systemProperty("apple.laf.useScreenMenuBar", "false") - systemProperty("ide.show.tips.on.startup.default.value", "false") - } - - downloadRobotServerPlugin { - version.set(remoteRobotVersion) - } - - test { - description = "Runs UI integration tests." - useJUnitPlatform { - exclude("/org/utbot/**") //Comment this line to run the tests locally - } - } } repositories { @@ -169,17 +142,6 @@ dependencies { implementation(project(":utbot-android-studio")) - testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion") - testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion") - - testImplementation("org.assertj:assertj-core:3.11.1") - - // Logging Network Calls - testImplementation("com.squareup.okhttp3:logging-interceptor:4.10.0") - - // Video Recording - implementation("com.automation-remarks:video-recorder-junit5:2.0") - testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version") testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version") diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt deleted file mode 100644 index 0e602fbff7..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt +++ /dev/null @@ -1,9 +0,0 @@ -package org.utbot.data - -enum class IdeaBuildSystem (val system: String) { - - INTELLIJ("IntelliJ"), - GRADLE("Gradle"), - MAVEN("Maven") - -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/data/JDKVersion.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/data/JDKVersion.kt deleted file mode 100644 index ea4b872573..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/data/JDKVersion.kt +++ /dev/null @@ -1,10 +0,0 @@ -package org.utbot.data - -enum class JDKVersion (val namePart: String, val number: Int, val supported: Boolean) { - - JDK_1_8(namePart = "1.8", 8, true), - JDK_11(namePart = "11", 11, true), - JDK_17(namePart = "17", 17, true), - JDK_19(namePart = "19", 19, false); - override fun toString() = namePart -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/data/RunInfo.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/data/RunInfo.kt deleted file mode 100644 index f91630c119..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/data/RunInfo.kt +++ /dev/null @@ -1,11 +0,0 @@ -package org.utbot.data - -import java.time.LocalDateTime -import java.time.format.DateTimeFormatter -import java.util.Random - -val TEST_RUN_NUMBER = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMdd_HHmmss")) -val DEFAULT_TEST_GENERATION_TIMEOUT = 60L -val NEW_PROJECT_NAME_START = "Aut_${TEST_RUN_NUMBER}_" -val DEFAULT_PROJECT_DIRECTORY = "~\\IdeaProjects" -var random: Random = Random() diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt deleted file mode 100644 index ca643c84cc..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt +++ /dev/null @@ -1,36 +0,0 @@ -package org.utbot.dialogs - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.CommonContainerFixture -import com.intellij.remoterobot.fixtures.ContainerFixture -import com.intellij.remoterobot.fixtures.FixtureName -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.stepsProcessing.step -import java.time.Duration - -fun ContainerFixture.dialog( - title: String, - timeout: Duration = Duration.ofSeconds(20), - function: DialogFixture.() -> Unit = {}): DialogFixture = step("Search for dialog with title $title") { - find(DialogFixture.byTitle(title), timeout).apply(function) -} - -@FixtureName("Dialog") -open class DialogFixture( - remoteRobot: RemoteRobot, - remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { - - companion object { - @JvmStatic - fun byTitle(title: String) = byXpath("title $title", "//div[@title='$title' and @class='MyDialog']") - } - - val title: String - get() = callJs("component.getTitle();") - - val closeButton - get() = button( - byXpath("//div[@class='DialogRootPane']//div[@class='JButton']")) - -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt deleted file mode 100644 index 1ddc6660cc..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt +++ /dev/null @@ -1,104 +0,0 @@ -package org.utbot.dialogs - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.* -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.stepsProcessing.step -import com.intellij.remoterobot.utils.Keyboard -import com.intellij.remoterobot.utils.keyboard -import com.intellij.remoterobot.utils.waitForIgnoringError -import org.utbot.data.DEFAULT_PROJECT_DIRECTORY -import org.utbot.data.IdeaBuildSystem -import org.utbot.data.JDKVersion -import java.awt.event.KeyEvent -import java.time.Duration -import java.time.Duration.ofSeconds - -@FixtureName("NewProjectDialog") -@DefaultXpath("type", "//*[contains(@title.key, 'title.new.project')]") -class NewProjectDialogFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) - : DialogFixture(remoteRobot, remoteComponent) { - val keyboard: Keyboard = Keyboard(remoteRobot) - - val wizardsList - get() = jList( - byXpath("//div[@class='JBList']")) - - val nameInput - get() = textField( - byXpath("//div[@class='JBTextField']")) - - val locationInput - get() = textField( - byXpath("//div[@class='ExtendableTextField']")) - - val addSampleCodeCheckbox - get() = checkBox( - byXpath("//div[@text.key='label.project.wizard.new.project.add.sample.code']")) - - val jdkComboBox - get() = comboBox( - byXpath("//div[@class='JdkComboBox']"), - Duration.ofSeconds(10)) - - val jdkList - get() = heavyWeightWindow().itemsList - - val createButton - get() = button( - byXpath("//div[@text.key='button.create']")) - - val cancelButton - get() = button( - byXpath("//div[@text.key='button.cancel']")) - - fun selectWizard(wizardName: String) { - if (title != wizardName) { - wizardsList.findText(wizardName).click() - } - } - - fun selectJDK(jdkVersion: String) { - step("Select JDK: $jdkVersion") { - jdkComboBox.click() - var jdkMatching = jdkVersion - waitForIgnoringError(ofSeconds(20)) { - findAll(byXpath("//*[@text.key='progress.title.detecting.sdks']")).isEmpty() - jdkMatching = jdkList.collectItems().first { it.contains(jdkVersion) } - jdkMatching.isEmpty().not() - } - jdkList.clickItem(jdkMatching) - } - } - - fun fillDialog(projectName: String, - location: String = "", - language: String = "Java", - buildSystem: IdeaBuildSystem = IdeaBuildSystem.INTELLIJ, - jdkVersion: JDKVersion, - addSampleCode: Boolean = true) { - step("Fill New Project dialog") { - nameInput.doubleClick() - keyboard.hotKey(KeyEvent.VK_CONTROL, KeyEvent.VK_A) - keyboard.enterText(projectName) - var input = DEFAULT_PROJECT_DIRECTORY - if (location != "") { - input = location - } - if (locationInput.hasText(input).not()) { - locationInput.click() - keyboard{ - hotKey(KeyEvent.VK_CONTROL, KeyEvent.VK_A) - enterText(input.replace("\\", "\\\\")) - } - } - this.findText(language).click() - this.findText(buildSystem.system).click() - addSampleCodeCheckbox.setValue(addSampleCode) - if (!jdkComboBox.selectedText().contains(jdkVersion.namePart)) { - selectJDK(jdkVersion.namePart) - } - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt deleted file mode 100644 index ec2cf4939e..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt +++ /dev/null @@ -1,21 +0,0 @@ -package org.utbot.dialogs - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.* -import com.intellij.remoterobot.search.locators.byXpath - -@FixtureName("OpenProjectDialog") -@DefaultXpath("Dialog type", "//*[@title.key='title.open.file.or.project']") -class OpenProjectDialogFixture( - remoteRobot: RemoteRobot, - remoteComponent: RemoteComponent) : DialogFixture(remoteRobot, remoteComponent) { - - val pathInput - get() = textField( - byXpath("//div[@class='BorderlessTextField']")) - - val okButton - get() = button( - byXpath("//div[@text.key='button.ok']")) -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt deleted file mode 100644 index 0a411ea440..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt +++ /dev/null @@ -1,32 +0,0 @@ -package org.utbot.dialogs - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.* -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.utils.Keyboard - -@FixtureName("UnitTestBotDialog") -@DefaultXpath("Dialog type", "//*[contains(@title, 'UnitTestBot')]") -class UnitTestBotDialogFixture( - remoteRobot: RemoteRobot, - remoteComponent: RemoteComponent) : DialogFixture(remoteRobot, remoteComponent) { - val keyboard: Keyboard = Keyboard(remoteRobot) - - val sdkNotificationLabel - get() = jLabel( - byXpath("//div[@class='SdkNotificationPanel']//div[@defaulticon='fatalError.svg']")) - - val setupSdkLink - get() = actionLink( - byXpath("//div[@class='SdkNotificationPanel']//div[@class='HyperlinkLabel']")) - - val testSourcesRootComboBox - get() = comboBox( - byXpath("//div[@class='TestFolderComboWithBrowseButton']/div[1]")) - - val generateTestsButton - get() = button( - byXpath("//div[@class='MainButton']")) - -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt deleted file mode 100644 index f5e4a1e651..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt +++ /dev/null @@ -1,24 +0,0 @@ -package org.utbot.dialogs - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.* -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.utils.Keyboard - -@FixtureName("MyDialog") -@DefaultXpath("type", "//div[@class='DialogRootPane']") -class WarningDialogFixture( - remoteRobot: RemoteRobot, - remoteComponent: RemoteComponent) : DialogFixture(remoteRobot, remoteComponent) { - val keyboard: Keyboard = Keyboard(remoteRobot) - - val terminateButton - get() = button( - byXpath("//div[@text.key='button.terminate']")) - - val cancelButton - get() = button( - byXpath("//div[@text.key='button.cancel']")) - -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt deleted file mode 100644 index 6ec17bc84c..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt +++ /dev/null @@ -1,30 +0,0 @@ -package org.utbot.pages - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.ComponentFixture -import com.intellij.remoterobot.fixtures.FixtureName -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.utils.waitFor - -fun RemoteRobot.actionMenu(text: String): ActionMenuFixture { - val xpath = byXpath("text '$text'", "//div[@class='ActionMenu' and @text='$text']") - waitFor { - findAll(xpath).isNotEmpty() - } - return findAll(xpath).first() -} - -fun RemoteRobot.actionMenuItem(text: String): ActionMenuItemFixture { - val xpath = byXpath("text '$text'", "//div[@class='ActionMenuItem' and @text='$text']") - waitFor { - findAll(xpath).isNotEmpty() - } - return findAll(xpath).first() -} - -@FixtureName("ActionMenu") -class ActionMenuFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : ComponentFixture(remoteRobot, remoteComponent) - -@FixtureName("ActionMenuItem") -class ActionMenuItemFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : ComponentFixture(remoteRobot, remoteComponent) diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/elements/NotificationFixture.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/elements/NotificationFixture.kt deleted file mode 100644 index 5683f12db5..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/elements/NotificationFixture.kt +++ /dev/null @@ -1,28 +0,0 @@ -package org.utbot.elements - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.CommonContainerFixture -import com.intellij.remoterobot.fixtures.ComponentFixture -import com.intellij.remoterobot.fixtures.DefaultXpath -import com.intellij.remoterobot.fixtures.FixtureName -import com.intellij.remoterobot.search.locators.byXpath -import java.time.Duration.ofSeconds - -@FixtureName("Notification Center Panel") -@DefaultXpath("NotificationCenterPanel type", "//div[@class='NotificationCenterPanel']") -class NotificationFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { - - val title - get() = jLabel(byXpath("//div[@class='JLabel']"), - ofSeconds(5)) - - val body - get() = remoteRobot.find(byXpath("//div[@class='JEditorPane']"), - ofSeconds(5)) - - val link - get() = remoteRobot.find(byXpath("//div[@class='LinkLabel']"), - ofSeconds(5)) -} - diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaFrame.kt deleted file mode 100644 index 317cd626a6..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaFrame.kt +++ /dev/null @@ -1,173 +0,0 @@ -package org.utbot.pages - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.* -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.stepsProcessing.step -import com.intellij.remoterobot.utils.keyboard -import com.intellij.remoterobot.utils.waitFor -import com.intellij.remoterobot.utils.waitForIgnoringError -import org.assertj.swing.core.MouseButton -import org.utbot.data.IdeaBuildSystem -import org.utbot.dialogs.UnitTestBotDialogFixture -import org.utbot.dialogs.WarningDialogFixture -import org.utbot.elements.NotificationFixture -import java.awt.event.KeyEvent -import java.time.Duration -import java.time.Duration.ofSeconds - -fun RemoteRobot.idea(function: IdeaFrame.() -> Unit) { - find(timeout = ofSeconds(5)).apply(function) -} - -@DefaultXpath("IdeFrameImpl type", "//div[@class='IdeFrameImpl']") -open class IdeaFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { - - open val buildSystemToUse: IdeaBuildSystem = IdeaBuildSystem.INTELLIJ - - val projectViewTree - get() = find(byXpath("ProjectViewTree", "//div[@class='ProjectViewTree']"), - ofSeconds(10)) - - val projectName - get() = step("Get project name") { return@step callJs("component.getProject().getName()") } - - val menuBar: JMenuBarFixture - get() = step("Menu...") { - return@step remoteRobot.find(JMenuBarFixture::class.java, JMenuBarFixture.byType()) - } - - val inlineProgressTextPanel - get() = remoteRobot.find(byXpath("//div[@class='InlineProgressPanel']//div[@class='TextPanel']"), - ofSeconds(10)) - - val statusTextPanel - get() = remoteRobot.find(byXpath("//div[@class='StatusPanel']//div[@class='TextPanel']"), - ofSeconds(10)) - - val buildResultInEditor - get() = remoteRobot.find(byXpath("//div[@class='TrafficLightButton']"), - ofSeconds(20)) - - val buildResult - get() = textField(byXpath("//div[contains(@accessiblename.key, 'editor.accessible.name')]"), - ofSeconds(20)) - - val ideError - get() = remoteRobot.find(byXpath( "//div[@class='NotificationCenterPanel'][.//div[@accessiblename.key='error.new.notification.title']]"), - ofSeconds(10)) - - val utbotNotification - get() = remoteRobot.find(byXpath( "//div[@class='NotificationCenterPanel'][div[contains(.,'UnitTestBot')]]"), - ofSeconds(10)) - - val unitTestBotDialog - get() = remoteRobot.find(UnitTestBotDialogFixture::class.java, - ofSeconds(10)) - - @JvmOverloads - fun dumbAware(timeout: Duration = Duration.ofMinutes(5), function: () -> Unit) { - step("Wait for smart mode") { - waitFor(duration = timeout, interval = ofSeconds(5)) { - runCatching { isDumbMode().not() }.getOrDefault(false) - } - function() - step("..wait for smart mode again") { - waitFor(duration = timeout, interval = ofSeconds(5)) { - isDumbMode().not() - } - } - } - } - - fun isDumbMode(): Boolean { - return callJs(""" - const frameHelper = com.intellij.openapi.wm.impl.ProjectFrameHelper.getFrameHelper(component) - if (frameHelper) { - const project = frameHelper.getProject() - project ? com.intellij.openapi.project.DumbService.isDumb(project) : true - } else { - true - } - """, true) - } - - fun closeProject() { - if (remoteRobot.isMac()) { - keyboard { - hotKey(KeyEvent.VK_SHIFT, KeyEvent.VK_META, KeyEvent.VK_A) - enterText("Close Project") - enter() - } - } else { - menuBar.select("File", "Close Project") - } - try { - remoteRobot.find(WarningDialogFixture::class.java, ofSeconds(1)) - .terminateButton.click() - } catch (ignore: Throwable) {} - } - - fun openUTBotDialogFromProjectViewForClass(classname: String) { - step("Call UnitTestBot action") { - waitFor(ofSeconds(200)) { !isDumbMode() } - with(projectViewTree) { - findText(classname).click(MouseButton.RIGHT_BUTTON) - } - remoteRobot.actionMenuItem("Generate Tests with UnitTestBot...").click() - } - } - - open fun waitProjectIsOpened() { - waitForIgnoringError(ofSeconds(30)) { - projectViewTree.hasText(projectName) - } - } - - open fun waitProjectIsCreated() { - waitProjectIsOpened() - } - - open fun expandProjectTree(projectName: String) { - with(projectViewTree) { - if (hasText("src").not()) { - findText(projectName).doubleClick() - waitForIgnoringError{ - hasText("src").and(hasText(".idea")) - } - } - } - } - - open fun createNewPackage(packageName: String) { - with(projectViewTree) { - if (hasText("src").not()) { - findText(projectName).doubleClick() - waitFor { hasText("src") } - } - findText("src").click(MouseButton.RIGHT_BUTTON) - } - remoteRobot.actionMenu("New").click() - remoteRobot.actionMenuItem("Package").click() - keyboard { - enterText(packageName) - enter() - } - } - - fun createNewJavaClass(newClassname: String = "Example", - textToClickOn: String = "Main") { - waitProjectIsOpened() - expandProjectTree(projectName) - with(projectViewTree) { - findText(textToClickOn).click(MouseButton.RIGHT_BUTTON) - } - remoteRobot.actionMenu("New").click() - remoteRobot.actionMenuItem("Java Class").click() - remoteRobot.keyboard { - enterText(newClassname) - enter() - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt deleted file mode 100644 index 52d0fad081..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt +++ /dev/null @@ -1,50 +0,0 @@ -package org.utbot.pages - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.DefaultXpath -import com.intellij.remoterobot.utils.waitForIgnoringError -import org.utbot.data.IdeaBuildSystem -import java.time.Duration.ofSeconds - -@DefaultXpath("IdeFrameImpl type", "//div[@class='IdeFrameImpl']") -class IdeaGradleFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : IdeaFrame(remoteRobot, remoteComponent) { - - override val buildSystemToUse = IdeaBuildSystem.GRADLE - - override fun waitProjectIsCreated() { - super.waitProjectIsOpened() - repeat (120) { - inlineProgressTextPanel.isShowing.not() - } - } - - override fun expandProjectTree(projectName: String) { - with(projectViewTree) { - waitForIgnoringError(ofSeconds(10)) { - hasText("src") - } - if (hasText("src").not()) { - findText(projectName).doubleClick() - waitForIgnoringError{ - hasText("src") - } - } - if (hasText("main").not()) { - findText("src").doubleClick() - waitForIgnoringError{ - hasText("src").and(hasText("main")) - } - } - if (hasText("java").not()) { - findText("main").doubleClick() - waitForIgnoringError{ - hasText("src").and(hasText("main")).and(hasText("java")) - } - } - if (hasText("Main").not()) { - findText("java").doubleClick() - } - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt deleted file mode 100644 index f3fbe39805..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt +++ /dev/null @@ -1,22 +0,0 @@ -package org.utbot.pages - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.DefaultXpath -import com.intellij.remoterobot.utils.waitForIgnoringError -import org.utbot.data.IdeaBuildSystem -import java.time.Duration.ofSeconds - -@DefaultXpath("IdeFrameImpl type", "//div[@class='IdeFrameImpl']") -class IdeaMavenFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : IdeaFrame(remoteRobot, remoteComponent) { - - override val buildSystemToUse = IdeaBuildSystem.MAVEN - - override fun waitProjectIsOpened() { - super.waitProjectIsOpened() - waitForIgnoringError (ofSeconds(60)) { - projectViewTree.hasText("Main.java").not() - projectViewTree.hasText("Main") - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt deleted file mode 100644 index 16eab0011f..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt +++ /dev/null @@ -1,60 +0,0 @@ -package org.utbot.pages - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.data.RemoteComponent -import com.intellij.remoterobot.fixtures.* -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.utils.Keyboard -import org.utbot.data.IdeaBuildSystem -import org.utbot.data.JDKVersion -import org.utbot.dialogs.NewProjectDialogFixture -import org.utbot.dialogs.OpenProjectDialogFixture -import java.time.Duration - -fun RemoteRobot.welcomeFrame(function: WelcomeFrame.()-> Unit) { - find(WelcomeFrame::class.java, Duration.ofSeconds(10)).apply(function) -} - -@FixtureName("Welcome Frame") -@DefaultXpath("Welcome Frame type", "//div[@class='FlatWelcomeFrame']") -class WelcomeFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { - val keyboard: Keyboard = Keyboard(remoteRobot) - val ideaVersion //ToDO good locator - get() = jLabel(byXpath("//div[@class='TabbedWelcomeScreen']//div[@class='JLabel' and contains(@text,'20')]")) - - val newProjectLink - get() = actionLink(byXpath("New Project","//div[(@class='MainButton' and @text='New Project') or (@accessiblename='New Project' and @class='JButton')]")) - val openProjectLink - get() = actionLink(byXpath("Open","//div[(@class='MainButton' and @text='Open') or (@accessiblename.key='action.WelcomeScreen.OpenProject.text')]")) - val moreActions - get() = button(byXpath("More Action", "//div[@accessiblename='More Actions']")) - - val recentProjectLinks - get() = jTree(byXpath("//div[@class='CardLayoutPanel']//div[@class='Tree']")) - - val openProjectDialog - get() = remoteRobot.find(OpenProjectDialogFixture::class.java) - - val newProjectDialog - get() = remoteRobot.find(NewProjectDialogFixture::class.java) - - fun openProjectByPath(projectName: String, - location: String = "") { - val localPath = location + projectName - openProjectLink.click() - keyboard.enterText(localPath) - openProjectDialog.okButton.click() - } - - fun createNewProject(projectName: String, location: String = "", - language: String = "Java", buildSystem: IdeaBuildSystem = IdeaBuildSystem.INTELLIJ, - jdkVersion: JDKVersion, addSampleCode: Boolean = true) { - newProjectLink.click() - newProjectDialog.selectWizard("New Project") - newProjectDialog.fillDialog( - projectName, location, language, - buildSystem, jdkVersion, addSampleCode - ) - newProjectDialog.createButton.click() - } -} diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/samples/CodeSamples.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/samples/CodeSamples.kt deleted file mode 100644 index 0464782fe3..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/samples/CodeSamples.kt +++ /dev/null @@ -1,40 +0,0 @@ -package org.utbot.samples - -import com.intellij.remoterobot.fixtures.TextEditorFixture -import com.intellij.remoterobot.utils.keyboard -import org.utbot.data.TEST_RUN_NUMBER -import java.awt.event.KeyEvent - -fun TextEditorFixture.typeAdditionFunction(className: String): String { - editor.selectText(className) - keyboard { - key(KeyEvent.VK_END) - enter() - enterText("public int addition(") - enterText("int a, int b") - key(KeyEvent.VK_END) - enterText("{") - enter() - enterText("// Test run ${TEST_RUN_NUMBER}") - enter() - enterText("return a + b;") - } - return "@utbot.returnsFrom {@code return a + b;}" -} - -fun TextEditorFixture.typeDivisionFunction(className: String) : String { - editor.selectText(className) - keyboard { - key(KeyEvent.VK_END) - enter() - enterText("public int division(") - enterText("int a, int b") - key(KeyEvent.VK_END) - enterText("{") - enter() - enterText("// Test run ${TEST_RUN_NUMBER}") - enter() - enterText("return a / b;") - } - return "@utbot.returnsFrom {@code return a / b;}" -} diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/steps/IDESteps.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/steps/IDESteps.kt deleted file mode 100644 index c6dc22c7b3..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/steps/IDESteps.kt +++ /dev/null @@ -1,52 +0,0 @@ -package org.utbot.steps - -import com.intellij.remoterobot.fixtures.TextEditorFixture -import com.intellij.remoterobot.fixtures.dataExtractor.contains -import com.intellij.remoterobot.search.locators.byXpath -import com.intellij.remoterobot.stepsProcessing.step -import com.intellij.remoterobot.utils.keyboard -import com.intellij.remoterobot.utils.waitFor -import org.utbot.dialogs.DialogFixture -import org.utbot.dialogs.DialogFixture.Companion.byTitle -import org.utbot.pages.IdeaFrame -import java.awt.event.KeyEvent -import java.time.Duration.ofSeconds - -fun IdeaFrame.autocomplete(text: String) { - step("Autocomplete '" + text + "'") { - keyboard { - enterText(text) - } - heavyWeightWindow(ofSeconds(5)) - .findText(contains(text)) - .click() - keyboard { - enter() - } - } -} - -fun TextEditorFixture.goToLineAndColumn(row: Int, column: Int) { - keyboard { - if (remoteRobot.isMac()) { - hotKey(KeyEvent.VK_META, KeyEvent.VK_L) - } else { - hotKey(KeyEvent.VK_CONTROL, KeyEvent.VK_G) - } - enterText("$row:$column") - enter() - } -} - -fun IdeaFrame.closeTipOfTheDay() { - step("Close Tip of the Day if it appears") { - waitFor(ofSeconds(20)) { - remoteRobot.findAll(byXpath("//div[@class='MyDialog'][.//div[@text='Running startup activities...']]")) - .isEmpty() - } - try { - find(byTitle ("Tip of the Day")) - .button("Close").click() - } catch (ignore: Throwable) {} - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/BaseTest.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/BaseTest.kt deleted file mode 100644 index 2978faa03d..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/BaseTest.kt +++ /dev/null @@ -1,93 +0,0 @@ -package org.utbot.tests - -import com.intellij.remoterobot.RemoteRobot -import org.junit.jupiter.api.AfterEach -import org.junit.jupiter.api.BeforeAll -import org.junit.jupiter.api.BeforeEach -import org.junit.jupiter.api.extension.ExtendWith -import org.junit.jupiter.params.provider.Arguments -import org.utbot.data.IdeaBuildSystem -import org.utbot.data.JDKVersion -import org.utbot.pages.IdeaFrame -import org.utbot.pages.IdeaGradleFrame -import org.utbot.pages.IdeaMavenFrame -import org.utbot.pages.idea -import org.utbot.utils.RemoteRobotExtension -import org.utbot.utils.StepsLogger -import java.time.Duration.ofSeconds - -@ExtendWith(RemoteRobotExtension::class) -open class BaseTest { - fun getIdeaFrameForBuildSystem(remoteRobot: RemoteRobot, ideaBuildSystem: IdeaBuildSystem): IdeaFrame { - when (ideaBuildSystem) { - IdeaBuildSystem.INTELLIJ -> return remoteRobot.find(IdeaFrame::class.java, ofSeconds(10)) - IdeaBuildSystem.GRADLE -> return remoteRobot.find(IdeaGradleFrame::class.java, ofSeconds(10)) - IdeaBuildSystem.MAVEN -> return remoteRobot.find(IdeaMavenFrame::class.java, ofSeconds(10)) - } - } - - @BeforeEach - fun `Close each project before test`(remoteRobot: RemoteRobot): Unit = with(remoteRobot) { - try { - idea { - closeProject() - } - } catch (ignore: Throwable) {} - } - - @AfterEach - fun `Close each project after test`(remoteRobot: RemoteRobot): Unit = with(remoteRobot) { - idea { - closeProject() - } - } - - companion object { - @BeforeAll - @JvmStatic - fun init(remoteRobot: RemoteRobot): Unit = with(remoteRobot) { - StepsLogger.init() - } - - private val supportedProjectsList: List = - addPairsToList(true) - private val unsupportedProjectsList: List = - addPairsToList(false) - - @JvmStatic - fun supportedProjectsProvider(): List { - return supportedProjectsList - } - - @JvmStatic - fun unsupportedProjectsProvider(): List { - return unsupportedProjectsList - } - - @JvmStatic - fun allProjectsProvider(): List { - return supportedProjectsList + unsupportedProjectsList - } - - @JvmStatic - private fun addPairsToList(supported: Boolean): List { - val ideaBuildSystems = IdeaBuildSystem.values() - ideaBuildSystems.shuffle() - var j = 0 - - val listOfArguments: MutableList = mutableListOf() - JDKVersion.values().toMutableList().filter { - it.supported == supported - }.forEach { - listOfArguments.add( - Arguments.of(ideaBuildSystems[j], it) //each (un)supported JDK with a random build system - ) - j++ - if (j >= ideaBuildSystems.size) { - j = 0 - } - } - return listOfArguments - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/CreateProjects.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/CreateProjects.kt deleted file mode 100644 index eee5299898..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/CreateProjects.kt +++ /dev/null @@ -1,41 +0,0 @@ -package org.utbot.tests - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.utils.waitFor -import org.junit.jupiter.api.Order -import org.junit.jupiter.api.Tag -import org.junit.jupiter.api.Tags -import org.junit.jupiter.params.ParameterizedTest -import org.junit.jupiter.params.provider.MethodSource -import org.utbot.data.IdeaBuildSystem -import org.utbot.data.JDKVersion -import org.utbot.data.NEW_PROJECT_NAME_START -import org.utbot.pages.welcomeFrame -import java.time.Duration - -@Order(1) -class CreateProjects : BaseTest() { - @ParameterizedTest(name = "Create {0} project with JDK {1}") - @Tags(Tag("smoke"), Tag("NewProject"), Tag("Java"), Tag("UTBot"), Tag("")) - @MethodSource("allProjectsProvider") - fun createProjectWithSupportedJDK( - ideaBuildSystem: IdeaBuildSystem, jdkVersion: JDKVersion, - remoteRobot: RemoteRobot - ): Unit = with(remoteRobot) { - val newProjectName = NEW_PROJECT_NAME_START + ideaBuildSystem.system + jdkVersion.number - remoteRobot.welcomeFrame { - createNewProject( - projectName = newProjectName, - buildSystem = ideaBuildSystem, - jdkVersion = jdkVersion - ) - } - val ideaFrame = getIdeaFrameForBuildSystem(remoteRobot, ideaBuildSystem) - with(ideaFrame) { - waitProjectIsCreated() - waitFor(Duration.ofSeconds(30)) { - !isDumbMode() - } - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt deleted file mode 100644 index e06b403bc8..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt +++ /dev/null @@ -1,76 +0,0 @@ -package org.utbot.tests - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.utils.waitForIgnoringError -import org.assertj.core.api.Assertions.assertThat -import org.junit.jupiter.api.* -import org.junit.jupiter.params.ParameterizedTest -import org.junit.jupiter.params.provider.MethodSource -import org.utbot.data.IdeaBuildSystem -import org.utbot.data.JDKVersion -import org.utbot.data.NEW_PROJECT_NAME_START -import org.utbot.pages.* -import org.utbot.samples.typeAdditionFunction -import org.utbot.samples.typeDivisionFunction -import java.time.Duration.ofSeconds - -class UnitTestBotActionTest : BaseTest() { - - @ParameterizedTest(name = "Generate tests in {0} project with JDK {1}") - @MethodSource("supportedProjectsProvider") - @Tags(Tag("Java"), Tag("UnitTestBot"), Tag("Positive")) - fun checkBasicTestGeneration(ideaBuildSystem: IdeaBuildSystem, jdkVersion: JDKVersion, - remoteRobot: RemoteRobot) { - val createdProjectName = NEW_PROJECT_NAME_START + ideaBuildSystem.system + jdkVersion.number - remoteRobot.welcomeFrame { - findText(createdProjectName).click() - } - val ideaFrame = getIdeaFrameForBuildSystem(remoteRobot, ideaBuildSystem) - with (ideaFrame) { - val newClassName = "Arithmetic" - createNewJavaClass(newClassName, "Main") - val returnsFromTagBody = textEditor().typeDivisionFunction(newClassName) - openUTBotDialogFromProjectViewForClass(newClassName) - unitTestBotDialog.generateTestsButton.click() - waitForIgnoringError (ofSeconds(5)){ - inlineProgressTextPanel.isShowing - } - waitForIgnoringError (ofSeconds(90)){ - inlineProgressTextPanel.hasText("Generate test cases for class $newClassName") - } - waitForIgnoringError(ofSeconds(30)) { - utbotNotification.title.hasText("UnitTestBot: unit tests generated successfully") - } - assertThat(textEditor().editor.text).contains("class ${newClassName}Test") - assertThat(textEditor().editor.text).contains("@Test\n") - assertThat(textEditor().editor.text).contains("assertEquals(") - assertThat(textEditor().editor.text).contains("@utbot.classUnderTest {@link ${newClassName}}") - assertThat(textEditor().editor.text).contains("@utbot.methodUnderTest {@link ${newClassName}#") - assertThat(textEditor().editor.text).contains(returnsFromTagBody) - //ToDo verify how many tests are generated - //ToDo verify Problems view and Arithmetic exception on it - } - } - - @ParameterizedTest(name = "Check Generate tests button is disabled in {0} project with unsupported JDK {1}") - @MethodSource("unsupportedProjectsProvider") - @Tags(Tag("Java"), Tag("UnitTestBot"), Tag("Negative")) - fun checkProjectWithUnsupportedJDK(ideaBuildSystem: IdeaBuildSystem, jdkVersion: JDKVersion, - remoteRobot: RemoteRobot) { - val createdProjectName = NEW_PROJECT_NAME_START + ideaBuildSystem.system + jdkVersion.number - remoteRobot.welcomeFrame { - findText(createdProjectName).click() - } - val ideaFrame = getIdeaFrameForBuildSystem(remoteRobot, ideaBuildSystem) - return with (ideaFrame) { - val newClassName = "Arithmetic" - createNewJavaClass(newClassName, "Main") - textEditor().typeAdditionFunction(newClassName) - openUTBotDialogFromProjectViewForClass(newClassName) - assertThat(unitTestBotDialog.generateTestsButton.isEnabled().not()) - assertThat(unitTestBotDialog.sdkNotificationLabel.hasText("SDK version 19 is not supported, use 1.8, 11 or 17 instead.")) - assertThat(unitTestBotDialog.setupSdkLink.isShowing) - unitTestBotDialog.closeButton.click() - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt deleted file mode 100644 index 650542c1f2..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt +++ /dev/null @@ -1,135 +0,0 @@ -package org.utbot.utils - -import com.intellij.remoterobot.RemoteRobot -import com.intellij.remoterobot.fixtures.ContainerFixture -import com.intellij.remoterobot.search.locators.byXpath -import okhttp3.OkHttpClient -import okhttp3.Request -import okhttp3.logging.HttpLoggingInterceptor -import org.junit.jupiter.api.extension.AfterTestExecutionCallback -import org.junit.jupiter.api.extension.ExtensionContext -import org.junit.jupiter.api.extension.ParameterContext -import org.junit.jupiter.api.extension.ParameterResolver -import java.awt.image.BufferedImage -import java.io.ByteArrayOutputStream -import java.io.File -import java.lang.IllegalStateException -import java.lang.reflect.Method -import javax.imageio.ImageIO - -class RemoteRobotExtension : AfterTestExecutionCallback, ParameterResolver { - private val url: String = System.getProperty("remote-robot-url") ?: "http://127.0.0.1:8082" - private val remoteRobot: RemoteRobot = if (System.getProperty("debug-retrofit")?.equals("enable") == true) { - val interceptor: HttpLoggingInterceptor = HttpLoggingInterceptor().apply { - this.level = HttpLoggingInterceptor.Level.BODY - } - val client = OkHttpClient.Builder().apply { - this.addInterceptor(interceptor) - }.build() - RemoteRobot(url, client) - } else { - RemoteRobot(url) - } - private val client = OkHttpClient() - - override fun supportsParameter(parameterContext: ParameterContext?, extensionContext: ExtensionContext?): Boolean { - return parameterContext?.parameter?.type?.equals(RemoteRobot::class.java) ?: false - } - - override fun resolveParameter(parameterContext: ParameterContext?, extensionContext: ExtensionContext?): Any { - return remoteRobot - } - - override fun afterTestExecution(context: ExtensionContext?) { - val testMethod: Method = context?.requiredTestMethod ?: throw IllegalStateException("test method is null") - val testMethodName = testMethod.name - val testFailed: Boolean = context.executionException?.isPresent ?: false - if (testFailed) { - saveScreenshot(testMethodName) - saveIdeaFrames(testMethodName) - saveHierarchy(testMethodName) - } - } - - private fun saveScreenshot(testName: String) { - fetchScreenShot().save(testName) - } - - private fun saveHierarchy(testName: String) { - val hierarchySnapshot = - saveFile(url, "build/reports", "hierarchy-$testName.html") - if (File("build/reports/styles.css").exists().not()) { - saveFile("$url/styles.css", "build/reports", "styles.css") - } - println("Hierarchy snapshot: ${hierarchySnapshot.absolutePath}") - } - - private fun saveFile(url: String, folder: String, name: String): File { - val response = client.newCall(Request.Builder().url(url).build()).execute() - return File(folder).apply { - mkdirs() - }.resolve(name).apply { - writeText(response.body?.string() ?: "") - } - } - - private fun BufferedImage.save(name: String) { - val bytes = ByteArrayOutputStream().use { b -> - ImageIO.write(this, "png", b) - b.toByteArray() - } - File("build/reports").apply { mkdirs() }.resolve("$name.png").writeBytes(bytes) - } - - private fun saveIdeaFrames(testName: String) { - remoteRobot.findAll(byXpath("//div[@class='IdeFrameImpl']")).forEachIndexed { n, frame -> - val pic = try { - frame.callJs( - """ - importPackage(java.io) - importPackage(javax.imageio) - importPackage(java.awt.image) - const screenShot = new BufferedImage(component.getWidth(), component.getHeight(), BufferedImage.TYPE_INT_ARGB); - component.paint(screenShot.getGraphics()) - let pictureBytes; - const baos = new ByteArrayOutputStream(); - try { - ImageIO.write(screenShot, "png", baos); - pictureBytes = baos.toByteArray(); - } finally { - baos.close(); - } - pictureBytes; - """, true - ) - } catch (e: Throwable) { - e.printStackTrace() - throw e - } - pic.inputStream().use { - ImageIO.read(it) - }.save(testName + "_" + n) - } - } - - private fun fetchScreenShot(): BufferedImage { - return remoteRobot.callJs( - """ - importPackage(java.io) - importPackage(javax.imageio) - const screenShot = new java.awt.Robot().createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize())); - let pictureBytes; - const baos = new ByteArrayOutputStream(); - try { - ImageIO.write(screenShot, "png", baos); - pictureBytes = baos.toByteArray(); - } finally { - baos.close(); - } - pictureBytes; - """ - ).inputStream().use { - ImageIO.read(it) - } - } -} \ No newline at end of file diff --git a/utbot-intellij-main/src/test/kotlin/org/utbot/utils/StepsLogger.kt b/utbot-intellij-main/src/test/kotlin/org/utbot/utils/StepsLogger.kt deleted file mode 100644 index a97ddfb70b..0000000000 --- a/utbot-intellij-main/src/test/kotlin/org/utbot/utils/StepsLogger.kt +++ /dev/null @@ -1,15 +0,0 @@ -package org.utbot.utils - -import com.intellij.remoterobot.stepsProcessing.StepLogger -import com.intellij.remoterobot.stepsProcessing.StepWorker - -object StepsLogger { - private var initialized = false - @JvmStatic - fun init() { - if (initialized.not()) { - StepWorker.registerProcessor(StepLogger()) - initialized = true - } - } -} \ No newline at end of file diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index b4a9870f27..6763a526a0 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -45,18 +45,49 @@ intellij { androidStudioPath?.let { jvmPlugins += androidPlugins } + val pythonCommunityPlugins = listOf( + "PythonCore:${pythonCommunityPluginVersion}" + ) + + val pythonUltimatePlugins = listOf( + "Pythonid:${pythonUltimatePluginVersion}" + ) + + val jsPlugins = listOf( + "JavaScript" + ) + + val goPlugins = listOf( + "org.jetbrains.plugins.go:${goPluginVersion}" + ) + val mavenUtilsPlugins = listOf( "org.jetbrains.idea.maven" ) val basePluginSet = jvmPlugins + kotlinPlugins + mavenUtilsPlugins + androidPlugins - plugins.set(basePluginSet) + plugins.set( + when (projectType) { + communityEdition -> basePluginSet + pythonCommunityPlugins + ultimateEdition -> when (ideType) { + "IC" -> basePluginSet + pythonCommunityPlugins + "IU" -> basePluginSet + pythonUltimatePlugins + jsPlugins + goPlugins + "PC" -> pythonCommunityPlugins + "PY" -> pythonUltimatePlugins + jsPlugins + "GO" -> goPlugins + else -> basePluginSet + } + else -> basePluginSet + } + ) version.set(ideVersion) type.set(ideTypeOrAndroidStudio) } +val remoteRobotVersion = "0.11.16" + tasks { compileKotlin { kotlinOptions { @@ -82,6 +113,31 @@ tasks { untilBuild.set("232.*") version.set(semVer) } + + runIdeForUiTests { + jvmArgs("-Xmx2048m", "-Didea.is.internal=true", "-Didea.ui.debug.mode=true") + + systemProperty("robot-server.port", "8082") // default port 8580 + systemProperty("ide.mac.message.dialogs.as.sheets", "false") + systemProperty("jb.privacy.policy.text", "") + systemProperty("jb.consents.confirmation.enabled", "false") + systemProperty("idea.trust.all.projects", "true") + systemProperty("ide.mac.file.chooser.native", "false") + systemProperty("jbScreenMenuBar.enabled", "false") + systemProperty("apple.laf.useScreenMenuBar", "false") + systemProperty("ide.show.tips.on.startup.default.value", "false") + } + + downloadRobotServerPlugin { + version.set(remoteRobotVersion) + } + + test { + description = "Runs UI integration tests." + useJUnitPlatform { + exclude("/org/utbot/**") //Comment this line to run the tests locally + } + } } dependencies { @@ -103,6 +159,17 @@ dependencies { implementation(project(":utbot-ui-commons")) implementation(project(":utbot-android-studio")) + testImplementation("com.intellij.remoterobot:remote-robot:$remoteRobotVersion") + testImplementation("com.intellij.remoterobot:remote-fixtures:$remoteRobotVersion") + + testImplementation("org.assertj:assertj-core:3.11.1") + + // Logging Network Calls + testImplementation("com.squareup.okhttp3:logging-interceptor:4.10.0") + + // Video Recording + implementation("com.automation-remarks:video-recorder-junit5:2.0") + testImplementation("org.junit.jupiter:junit-jupiter-api:$junit5Version") testRuntimeOnly("org.junit.platform:junit-platform-launcher:$junit4PlatformVersion") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junit5Version") From 078b9ab0a265b93096849f9891c406cfc150f883 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 13 Oct 2023 10:38:43 +0300 Subject: [PATCH 041/144] Move tests --- utbot-intellij/src/test/java/Bar.java | 3 + utbot-intellij/src/test/java/Foo.java | 20 ++ .../kotlin/org/utbot/data/IdeaBuildSystem.kt | 9 + .../test/kotlin/org/utbot/data/JDKVersion.kt | 10 + .../src/test/kotlin/org/utbot/data/RunInfo.kt | 11 ++ .../kotlin/org/utbot/dialogs/DialogFixture.kt | 36 ++++ .../utbot/dialogs/NewProjectDialogFixture.kt | 104 +++++++++++ .../utbot/dialogs/OpenProjectDialogFixture.kt | 21 +++ .../utbot/dialogs/UnitTestBotDialogFixture.kt | 32 ++++ .../org/utbot/dialogs/WarningDialogFixture.kt | 24 +++ .../org/utbot/elements/ActionMenuFixture.kt | 30 +++ .../org/utbot/elements/NotificationFixture.kt | 28 +++ .../test/kotlin/org/utbot/pages/IdeaFrame.kt | 173 ++++++++++++++++++ .../kotlin/org/utbot/pages/IdeaGradleFrame.kt | 50 +++++ .../kotlin/org/utbot/pages/IdeaMavenFrame.kt | 22 +++ .../kotlin/org/utbot/pages/WelcomeFrame.kt | 60 ++++++ .../kotlin/org/utbot/samples/CodeSamples.kt | 40 ++++ .../test/kotlin/org/utbot/steps/IDESteps.kt | 52 ++++++ .../test/kotlin/org/utbot/tests/BaseTest.kt | 93 ++++++++++ .../kotlin/org/utbot/tests/CreateProjects.kt | 41 +++++ .../org/utbot/tests/UnitTestBotActionTest.kt | 76 ++++++++ .../org/utbot/utils/RemoteRobotExtension.kt | 135 ++++++++++++++ .../kotlin/org/utbot/utils/StepsLogger.kt | 15 ++ 23 files changed, 1085 insertions(+) create mode 100644 utbot-intellij/src/test/java/Bar.java create mode 100644 utbot-intellij/src/test/java/Foo.java create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/data/JDKVersion.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/data/RunInfo.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/elements/NotificationFixture.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaFrame.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/samples/CodeSamples.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/steps/IDESteps.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/tests/BaseTest.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/tests/CreateProjects.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt create mode 100644 utbot-intellij/src/test/kotlin/org/utbot/utils/StepsLogger.kt diff --git a/utbot-intellij/src/test/java/Bar.java b/utbot-intellij/src/test/java/Bar.java new file mode 100644 index 0000000000..e4d7ed9b9f --- /dev/null +++ b/utbot-intellij/src/test/java/Bar.java @@ -0,0 +1,3 @@ +public class Bar { + public int c; +} diff --git a/utbot-intellij/src/test/java/Foo.java b/utbot-intellij/src/test/java/Foo.java new file mode 100644 index 0000000000..5dd9ce9112 --- /dev/null +++ b/utbot-intellij/src/test/java/Foo.java @@ -0,0 +1,20 @@ +public class Foo { + public int a; + public int b; + public Bar c; + + public Foo() { + } + + public int getA() { + return a; + } + + public int getB() { + return b; + } + + public Bar getC() { + return c; + } +} diff --git a/utbot-intellij/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt b/utbot-intellij/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt new file mode 100644 index 0000000000..0e602fbff7 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/data/IdeaBuildSystem.kt @@ -0,0 +1,9 @@ +package org.utbot.data + +enum class IdeaBuildSystem (val system: String) { + + INTELLIJ("IntelliJ"), + GRADLE("Gradle"), + MAVEN("Maven") + +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/data/JDKVersion.kt b/utbot-intellij/src/test/kotlin/org/utbot/data/JDKVersion.kt new file mode 100644 index 0000000000..ea4b872573 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/data/JDKVersion.kt @@ -0,0 +1,10 @@ +package org.utbot.data + +enum class JDKVersion (val namePart: String, val number: Int, val supported: Boolean) { + + JDK_1_8(namePart = "1.8", 8, true), + JDK_11(namePart = "11", 11, true), + JDK_17(namePart = "17", 17, true), + JDK_19(namePart = "19", 19, false); + override fun toString() = namePart +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/data/RunInfo.kt b/utbot-intellij/src/test/kotlin/org/utbot/data/RunInfo.kt new file mode 100644 index 0000000000..f91630c119 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/data/RunInfo.kt @@ -0,0 +1,11 @@ +package org.utbot.data + +import java.time.LocalDateTime +import java.time.format.DateTimeFormatter +import java.util.Random + +val TEST_RUN_NUMBER = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMdd_HHmmss")) +val DEFAULT_TEST_GENERATION_TIMEOUT = 60L +val NEW_PROJECT_NAME_START = "Aut_${TEST_RUN_NUMBER}_" +val DEFAULT_PROJECT_DIRECTORY = "~\\IdeaProjects" +var random: Random = Random() diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt new file mode 100644 index 0000000000..ca643c84cc --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/DialogFixture.kt @@ -0,0 +1,36 @@ +package org.utbot.dialogs + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.CommonContainerFixture +import com.intellij.remoterobot.fixtures.ContainerFixture +import com.intellij.remoterobot.fixtures.FixtureName +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.stepsProcessing.step +import java.time.Duration + +fun ContainerFixture.dialog( + title: String, + timeout: Duration = Duration.ofSeconds(20), + function: DialogFixture.() -> Unit = {}): DialogFixture = step("Search for dialog with title $title") { + find(DialogFixture.byTitle(title), timeout).apply(function) +} + +@FixtureName("Dialog") +open class DialogFixture( + remoteRobot: RemoteRobot, + remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { + + companion object { + @JvmStatic + fun byTitle(title: String) = byXpath("title $title", "//div[@title='$title' and @class='MyDialog']") + } + + val title: String + get() = callJs("component.getTitle();") + + val closeButton + get() = button( + byXpath("//div[@class='DialogRootPane']//div[@class='JButton']")) + +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt new file mode 100644 index 0000000000..1ddc6660cc --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/NewProjectDialogFixture.kt @@ -0,0 +1,104 @@ +package org.utbot.dialogs + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.* +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.stepsProcessing.step +import com.intellij.remoterobot.utils.Keyboard +import com.intellij.remoterobot.utils.keyboard +import com.intellij.remoterobot.utils.waitForIgnoringError +import org.utbot.data.DEFAULT_PROJECT_DIRECTORY +import org.utbot.data.IdeaBuildSystem +import org.utbot.data.JDKVersion +import java.awt.event.KeyEvent +import java.time.Duration +import java.time.Duration.ofSeconds + +@FixtureName("NewProjectDialog") +@DefaultXpath("type", "//*[contains(@title.key, 'title.new.project')]") +class NewProjectDialogFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) + : DialogFixture(remoteRobot, remoteComponent) { + val keyboard: Keyboard = Keyboard(remoteRobot) + + val wizardsList + get() = jList( + byXpath("//div[@class='JBList']")) + + val nameInput + get() = textField( + byXpath("//div[@class='JBTextField']")) + + val locationInput + get() = textField( + byXpath("//div[@class='ExtendableTextField']")) + + val addSampleCodeCheckbox + get() = checkBox( + byXpath("//div[@text.key='label.project.wizard.new.project.add.sample.code']")) + + val jdkComboBox + get() = comboBox( + byXpath("//div[@class='JdkComboBox']"), + Duration.ofSeconds(10)) + + val jdkList + get() = heavyWeightWindow().itemsList + + val createButton + get() = button( + byXpath("//div[@text.key='button.create']")) + + val cancelButton + get() = button( + byXpath("//div[@text.key='button.cancel']")) + + fun selectWizard(wizardName: String) { + if (title != wizardName) { + wizardsList.findText(wizardName).click() + } + } + + fun selectJDK(jdkVersion: String) { + step("Select JDK: $jdkVersion") { + jdkComboBox.click() + var jdkMatching = jdkVersion + waitForIgnoringError(ofSeconds(20)) { + findAll(byXpath("//*[@text.key='progress.title.detecting.sdks']")).isEmpty() + jdkMatching = jdkList.collectItems().first { it.contains(jdkVersion) } + jdkMatching.isEmpty().not() + } + jdkList.clickItem(jdkMatching) + } + } + + fun fillDialog(projectName: String, + location: String = "", + language: String = "Java", + buildSystem: IdeaBuildSystem = IdeaBuildSystem.INTELLIJ, + jdkVersion: JDKVersion, + addSampleCode: Boolean = true) { + step("Fill New Project dialog") { + nameInput.doubleClick() + keyboard.hotKey(KeyEvent.VK_CONTROL, KeyEvent.VK_A) + keyboard.enterText(projectName) + var input = DEFAULT_PROJECT_DIRECTORY + if (location != "") { + input = location + } + if (locationInput.hasText(input).not()) { + locationInput.click() + keyboard{ + hotKey(KeyEvent.VK_CONTROL, KeyEvent.VK_A) + enterText(input.replace("\\", "\\\\")) + } + } + this.findText(language).click() + this.findText(buildSystem.system).click() + addSampleCodeCheckbox.setValue(addSampleCode) + if (!jdkComboBox.selectedText().contains(jdkVersion.namePart)) { + selectJDK(jdkVersion.namePart) + } + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt new file mode 100644 index 0000000000..ec2cf4939e --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/OpenProjectDialogFixture.kt @@ -0,0 +1,21 @@ +package org.utbot.dialogs + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.* +import com.intellij.remoterobot.search.locators.byXpath + +@FixtureName("OpenProjectDialog") +@DefaultXpath("Dialog type", "//*[@title.key='title.open.file.or.project']") +class OpenProjectDialogFixture( + remoteRobot: RemoteRobot, + remoteComponent: RemoteComponent) : DialogFixture(remoteRobot, remoteComponent) { + + val pathInput + get() = textField( + byXpath("//div[@class='BorderlessTextField']")) + + val okButton + get() = button( + byXpath("//div[@text.key='button.ok']")) +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt new file mode 100644 index 0000000000..0a411ea440 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/UnitTestBotDialogFixture.kt @@ -0,0 +1,32 @@ +package org.utbot.dialogs + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.* +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.utils.Keyboard + +@FixtureName("UnitTestBotDialog") +@DefaultXpath("Dialog type", "//*[contains(@title, 'UnitTestBot')]") +class UnitTestBotDialogFixture( + remoteRobot: RemoteRobot, + remoteComponent: RemoteComponent) : DialogFixture(remoteRobot, remoteComponent) { + val keyboard: Keyboard = Keyboard(remoteRobot) + + val sdkNotificationLabel + get() = jLabel( + byXpath("//div[@class='SdkNotificationPanel']//div[@defaulticon='fatalError.svg']")) + + val setupSdkLink + get() = actionLink( + byXpath("//div[@class='SdkNotificationPanel']//div[@class='HyperlinkLabel']")) + + val testSourcesRootComboBox + get() = comboBox( + byXpath("//div[@class='TestFolderComboWithBrowseButton']/div[1]")) + + val generateTestsButton + get() = button( + byXpath("//div[@class='MainButton']")) + +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt new file mode 100644 index 0000000000..f5e4a1e651 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/dialogs/WarningDialogFixture.kt @@ -0,0 +1,24 @@ +package org.utbot.dialogs + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.* +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.utils.Keyboard + +@FixtureName("MyDialog") +@DefaultXpath("type", "//div[@class='DialogRootPane']") +class WarningDialogFixture( + remoteRobot: RemoteRobot, + remoteComponent: RemoteComponent) : DialogFixture(remoteRobot, remoteComponent) { + val keyboard: Keyboard = Keyboard(remoteRobot) + + val terminateButton + get() = button( + byXpath("//div[@text.key='button.terminate']")) + + val cancelButton + get() = button( + byXpath("//div[@text.key='button.cancel']")) + +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt new file mode 100644 index 0000000000..6ec17bc84c --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/elements/ActionMenuFixture.kt @@ -0,0 +1,30 @@ +package org.utbot.pages + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.ComponentFixture +import com.intellij.remoterobot.fixtures.FixtureName +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.utils.waitFor + +fun RemoteRobot.actionMenu(text: String): ActionMenuFixture { + val xpath = byXpath("text '$text'", "//div[@class='ActionMenu' and @text='$text']") + waitFor { + findAll(xpath).isNotEmpty() + } + return findAll(xpath).first() +} + +fun RemoteRobot.actionMenuItem(text: String): ActionMenuItemFixture { + val xpath = byXpath("text '$text'", "//div[@class='ActionMenuItem' and @text='$text']") + waitFor { + findAll(xpath).isNotEmpty() + } + return findAll(xpath).first() +} + +@FixtureName("ActionMenu") +class ActionMenuFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : ComponentFixture(remoteRobot, remoteComponent) + +@FixtureName("ActionMenuItem") +class ActionMenuItemFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : ComponentFixture(remoteRobot, remoteComponent) diff --git a/utbot-intellij/src/test/kotlin/org/utbot/elements/NotificationFixture.kt b/utbot-intellij/src/test/kotlin/org/utbot/elements/NotificationFixture.kt new file mode 100644 index 0000000000..5683f12db5 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/elements/NotificationFixture.kt @@ -0,0 +1,28 @@ +package org.utbot.elements + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.CommonContainerFixture +import com.intellij.remoterobot.fixtures.ComponentFixture +import com.intellij.remoterobot.fixtures.DefaultXpath +import com.intellij.remoterobot.fixtures.FixtureName +import com.intellij.remoterobot.search.locators.byXpath +import java.time.Duration.ofSeconds + +@FixtureName("Notification Center Panel") +@DefaultXpath("NotificationCenterPanel type", "//div[@class='NotificationCenterPanel']") +class NotificationFixture(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { + + val title + get() = jLabel(byXpath("//div[@class='JLabel']"), + ofSeconds(5)) + + val body + get() = remoteRobot.find(byXpath("//div[@class='JEditorPane']"), + ofSeconds(5)) + + val link + get() = remoteRobot.find(byXpath("//div[@class='LinkLabel']"), + ofSeconds(5)) +} + diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaFrame.kt b/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaFrame.kt new file mode 100644 index 0000000000..317cd626a6 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaFrame.kt @@ -0,0 +1,173 @@ +package org.utbot.pages + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.* +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.stepsProcessing.step +import com.intellij.remoterobot.utils.keyboard +import com.intellij.remoterobot.utils.waitFor +import com.intellij.remoterobot.utils.waitForIgnoringError +import org.assertj.swing.core.MouseButton +import org.utbot.data.IdeaBuildSystem +import org.utbot.dialogs.UnitTestBotDialogFixture +import org.utbot.dialogs.WarningDialogFixture +import org.utbot.elements.NotificationFixture +import java.awt.event.KeyEvent +import java.time.Duration +import java.time.Duration.ofSeconds + +fun RemoteRobot.idea(function: IdeaFrame.() -> Unit) { + find(timeout = ofSeconds(5)).apply(function) +} + +@DefaultXpath("IdeFrameImpl type", "//div[@class='IdeFrameImpl']") +open class IdeaFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { + + open val buildSystemToUse: IdeaBuildSystem = IdeaBuildSystem.INTELLIJ + + val projectViewTree + get() = find(byXpath("ProjectViewTree", "//div[@class='ProjectViewTree']"), + ofSeconds(10)) + + val projectName + get() = step("Get project name") { return@step callJs("component.getProject().getName()") } + + val menuBar: JMenuBarFixture + get() = step("Menu...") { + return@step remoteRobot.find(JMenuBarFixture::class.java, JMenuBarFixture.byType()) + } + + val inlineProgressTextPanel + get() = remoteRobot.find(byXpath("//div[@class='InlineProgressPanel']//div[@class='TextPanel']"), + ofSeconds(10)) + + val statusTextPanel + get() = remoteRobot.find(byXpath("//div[@class='StatusPanel']//div[@class='TextPanel']"), + ofSeconds(10)) + + val buildResultInEditor + get() = remoteRobot.find(byXpath("//div[@class='TrafficLightButton']"), + ofSeconds(20)) + + val buildResult + get() = textField(byXpath("//div[contains(@accessiblename.key, 'editor.accessible.name')]"), + ofSeconds(20)) + + val ideError + get() = remoteRobot.find(byXpath( "//div[@class='NotificationCenterPanel'][.//div[@accessiblename.key='error.new.notification.title']]"), + ofSeconds(10)) + + val utbotNotification + get() = remoteRobot.find(byXpath( "//div[@class='NotificationCenterPanel'][div[contains(.,'UnitTestBot')]]"), + ofSeconds(10)) + + val unitTestBotDialog + get() = remoteRobot.find(UnitTestBotDialogFixture::class.java, + ofSeconds(10)) + + @JvmOverloads + fun dumbAware(timeout: Duration = Duration.ofMinutes(5), function: () -> Unit) { + step("Wait for smart mode") { + waitFor(duration = timeout, interval = ofSeconds(5)) { + runCatching { isDumbMode().not() }.getOrDefault(false) + } + function() + step("..wait for smart mode again") { + waitFor(duration = timeout, interval = ofSeconds(5)) { + isDumbMode().not() + } + } + } + } + + fun isDumbMode(): Boolean { + return callJs(""" + const frameHelper = com.intellij.openapi.wm.impl.ProjectFrameHelper.getFrameHelper(component) + if (frameHelper) { + const project = frameHelper.getProject() + project ? com.intellij.openapi.project.DumbService.isDumb(project) : true + } else { + true + } + """, true) + } + + fun closeProject() { + if (remoteRobot.isMac()) { + keyboard { + hotKey(KeyEvent.VK_SHIFT, KeyEvent.VK_META, KeyEvent.VK_A) + enterText("Close Project") + enter() + } + } else { + menuBar.select("File", "Close Project") + } + try { + remoteRobot.find(WarningDialogFixture::class.java, ofSeconds(1)) + .terminateButton.click() + } catch (ignore: Throwable) {} + } + + fun openUTBotDialogFromProjectViewForClass(classname: String) { + step("Call UnitTestBot action") { + waitFor(ofSeconds(200)) { !isDumbMode() } + with(projectViewTree) { + findText(classname).click(MouseButton.RIGHT_BUTTON) + } + remoteRobot.actionMenuItem("Generate Tests with UnitTestBot...").click() + } + } + + open fun waitProjectIsOpened() { + waitForIgnoringError(ofSeconds(30)) { + projectViewTree.hasText(projectName) + } + } + + open fun waitProjectIsCreated() { + waitProjectIsOpened() + } + + open fun expandProjectTree(projectName: String) { + with(projectViewTree) { + if (hasText("src").not()) { + findText(projectName).doubleClick() + waitForIgnoringError{ + hasText("src").and(hasText(".idea")) + } + } + } + } + + open fun createNewPackage(packageName: String) { + with(projectViewTree) { + if (hasText("src").not()) { + findText(projectName).doubleClick() + waitFor { hasText("src") } + } + findText("src").click(MouseButton.RIGHT_BUTTON) + } + remoteRobot.actionMenu("New").click() + remoteRobot.actionMenuItem("Package").click() + keyboard { + enterText(packageName) + enter() + } + } + + fun createNewJavaClass(newClassname: String = "Example", + textToClickOn: String = "Main") { + waitProjectIsOpened() + expandProjectTree(projectName) + with(projectViewTree) { + findText(textToClickOn).click(MouseButton.RIGHT_BUTTON) + } + remoteRobot.actionMenu("New").click() + remoteRobot.actionMenuItem("Java Class").click() + remoteRobot.keyboard { + enterText(newClassname) + enter() + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt b/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt new file mode 100644 index 0000000000..52d0fad081 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaGradleFrame.kt @@ -0,0 +1,50 @@ +package org.utbot.pages + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.DefaultXpath +import com.intellij.remoterobot.utils.waitForIgnoringError +import org.utbot.data.IdeaBuildSystem +import java.time.Duration.ofSeconds + +@DefaultXpath("IdeFrameImpl type", "//div[@class='IdeFrameImpl']") +class IdeaGradleFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : IdeaFrame(remoteRobot, remoteComponent) { + + override val buildSystemToUse = IdeaBuildSystem.GRADLE + + override fun waitProjectIsCreated() { + super.waitProjectIsOpened() + repeat (120) { + inlineProgressTextPanel.isShowing.not() + } + } + + override fun expandProjectTree(projectName: String) { + with(projectViewTree) { + waitForIgnoringError(ofSeconds(10)) { + hasText("src") + } + if (hasText("src").not()) { + findText(projectName).doubleClick() + waitForIgnoringError{ + hasText("src") + } + } + if (hasText("main").not()) { + findText("src").doubleClick() + waitForIgnoringError{ + hasText("src").and(hasText("main")) + } + } + if (hasText("java").not()) { + findText("main").doubleClick() + waitForIgnoringError{ + hasText("src").and(hasText("main")).and(hasText("java")) + } + } + if (hasText("Main").not()) { + findText("java").doubleClick() + } + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt b/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt new file mode 100644 index 0000000000..f3fbe39805 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/pages/IdeaMavenFrame.kt @@ -0,0 +1,22 @@ +package org.utbot.pages + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.DefaultXpath +import com.intellij.remoterobot.utils.waitForIgnoringError +import org.utbot.data.IdeaBuildSystem +import java.time.Duration.ofSeconds + +@DefaultXpath("IdeFrameImpl type", "//div[@class='IdeFrameImpl']") +class IdeaMavenFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : IdeaFrame(remoteRobot, remoteComponent) { + + override val buildSystemToUse = IdeaBuildSystem.MAVEN + + override fun waitProjectIsOpened() { + super.waitProjectIsOpened() + waitForIgnoringError (ofSeconds(60)) { + projectViewTree.hasText("Main.java").not() + projectViewTree.hasText("Main") + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt b/utbot-intellij/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt new file mode 100644 index 0000000000..16eab0011f --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/pages/WelcomeFrame.kt @@ -0,0 +1,60 @@ +package org.utbot.pages + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.data.RemoteComponent +import com.intellij.remoterobot.fixtures.* +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.utils.Keyboard +import org.utbot.data.IdeaBuildSystem +import org.utbot.data.JDKVersion +import org.utbot.dialogs.NewProjectDialogFixture +import org.utbot.dialogs.OpenProjectDialogFixture +import java.time.Duration + +fun RemoteRobot.welcomeFrame(function: WelcomeFrame.()-> Unit) { + find(WelcomeFrame::class.java, Duration.ofSeconds(10)).apply(function) +} + +@FixtureName("Welcome Frame") +@DefaultXpath("Welcome Frame type", "//div[@class='FlatWelcomeFrame']") +class WelcomeFrame(remoteRobot: RemoteRobot, remoteComponent: RemoteComponent) : CommonContainerFixture(remoteRobot, remoteComponent) { + val keyboard: Keyboard = Keyboard(remoteRobot) + val ideaVersion //ToDO good locator + get() = jLabel(byXpath("//div[@class='TabbedWelcomeScreen']//div[@class='JLabel' and contains(@text,'20')]")) + + val newProjectLink + get() = actionLink(byXpath("New Project","//div[(@class='MainButton' and @text='New Project') or (@accessiblename='New Project' and @class='JButton')]")) + val openProjectLink + get() = actionLink(byXpath("Open","//div[(@class='MainButton' and @text='Open') or (@accessiblename.key='action.WelcomeScreen.OpenProject.text')]")) + val moreActions + get() = button(byXpath("More Action", "//div[@accessiblename='More Actions']")) + + val recentProjectLinks + get() = jTree(byXpath("//div[@class='CardLayoutPanel']//div[@class='Tree']")) + + val openProjectDialog + get() = remoteRobot.find(OpenProjectDialogFixture::class.java) + + val newProjectDialog + get() = remoteRobot.find(NewProjectDialogFixture::class.java) + + fun openProjectByPath(projectName: String, + location: String = "") { + val localPath = location + projectName + openProjectLink.click() + keyboard.enterText(localPath) + openProjectDialog.okButton.click() + } + + fun createNewProject(projectName: String, location: String = "", + language: String = "Java", buildSystem: IdeaBuildSystem = IdeaBuildSystem.INTELLIJ, + jdkVersion: JDKVersion, addSampleCode: Boolean = true) { + newProjectLink.click() + newProjectDialog.selectWizard("New Project") + newProjectDialog.fillDialog( + projectName, location, language, + buildSystem, jdkVersion, addSampleCode + ) + newProjectDialog.createButton.click() + } +} diff --git a/utbot-intellij/src/test/kotlin/org/utbot/samples/CodeSamples.kt b/utbot-intellij/src/test/kotlin/org/utbot/samples/CodeSamples.kt new file mode 100644 index 0000000000..0464782fe3 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/samples/CodeSamples.kt @@ -0,0 +1,40 @@ +package org.utbot.samples + +import com.intellij.remoterobot.fixtures.TextEditorFixture +import com.intellij.remoterobot.utils.keyboard +import org.utbot.data.TEST_RUN_NUMBER +import java.awt.event.KeyEvent + +fun TextEditorFixture.typeAdditionFunction(className: String): String { + editor.selectText(className) + keyboard { + key(KeyEvent.VK_END) + enter() + enterText("public int addition(") + enterText("int a, int b") + key(KeyEvent.VK_END) + enterText("{") + enter() + enterText("// Test run ${TEST_RUN_NUMBER}") + enter() + enterText("return a + b;") + } + return "@utbot.returnsFrom {@code return a + b;}" +} + +fun TextEditorFixture.typeDivisionFunction(className: String) : String { + editor.selectText(className) + keyboard { + key(KeyEvent.VK_END) + enter() + enterText("public int division(") + enterText("int a, int b") + key(KeyEvent.VK_END) + enterText("{") + enter() + enterText("// Test run ${TEST_RUN_NUMBER}") + enter() + enterText("return a / b;") + } + return "@utbot.returnsFrom {@code return a / b;}" +} diff --git a/utbot-intellij/src/test/kotlin/org/utbot/steps/IDESteps.kt b/utbot-intellij/src/test/kotlin/org/utbot/steps/IDESteps.kt new file mode 100644 index 0000000000..c6dc22c7b3 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/steps/IDESteps.kt @@ -0,0 +1,52 @@ +package org.utbot.steps + +import com.intellij.remoterobot.fixtures.TextEditorFixture +import com.intellij.remoterobot.fixtures.dataExtractor.contains +import com.intellij.remoterobot.search.locators.byXpath +import com.intellij.remoterobot.stepsProcessing.step +import com.intellij.remoterobot.utils.keyboard +import com.intellij.remoterobot.utils.waitFor +import org.utbot.dialogs.DialogFixture +import org.utbot.dialogs.DialogFixture.Companion.byTitle +import org.utbot.pages.IdeaFrame +import java.awt.event.KeyEvent +import java.time.Duration.ofSeconds + +fun IdeaFrame.autocomplete(text: String) { + step("Autocomplete '" + text + "'") { + keyboard { + enterText(text) + } + heavyWeightWindow(ofSeconds(5)) + .findText(contains(text)) + .click() + keyboard { + enter() + } + } +} + +fun TextEditorFixture.goToLineAndColumn(row: Int, column: Int) { + keyboard { + if (remoteRobot.isMac()) { + hotKey(KeyEvent.VK_META, KeyEvent.VK_L) + } else { + hotKey(KeyEvent.VK_CONTROL, KeyEvent.VK_G) + } + enterText("$row:$column") + enter() + } +} + +fun IdeaFrame.closeTipOfTheDay() { + step("Close Tip of the Day if it appears") { + waitFor(ofSeconds(20)) { + remoteRobot.findAll(byXpath("//div[@class='MyDialog'][.//div[@text='Running startup activities...']]")) + .isEmpty() + } + try { + find(byTitle ("Tip of the Day")) + .button("Close").click() + } catch (ignore: Throwable) {} + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/BaseTest.kt b/utbot-intellij/src/test/kotlin/org/utbot/tests/BaseTest.kt new file mode 100644 index 0000000000..2978faa03d --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/tests/BaseTest.kt @@ -0,0 +1,93 @@ +package org.utbot.tests + +import com.intellij.remoterobot.RemoteRobot +import org.junit.jupiter.api.AfterEach +import org.junit.jupiter.api.BeforeAll +import org.junit.jupiter.api.BeforeEach +import org.junit.jupiter.api.extension.ExtendWith +import org.junit.jupiter.params.provider.Arguments +import org.utbot.data.IdeaBuildSystem +import org.utbot.data.JDKVersion +import org.utbot.pages.IdeaFrame +import org.utbot.pages.IdeaGradleFrame +import org.utbot.pages.IdeaMavenFrame +import org.utbot.pages.idea +import org.utbot.utils.RemoteRobotExtension +import org.utbot.utils.StepsLogger +import java.time.Duration.ofSeconds + +@ExtendWith(RemoteRobotExtension::class) +open class BaseTest { + fun getIdeaFrameForBuildSystem(remoteRobot: RemoteRobot, ideaBuildSystem: IdeaBuildSystem): IdeaFrame { + when (ideaBuildSystem) { + IdeaBuildSystem.INTELLIJ -> return remoteRobot.find(IdeaFrame::class.java, ofSeconds(10)) + IdeaBuildSystem.GRADLE -> return remoteRobot.find(IdeaGradleFrame::class.java, ofSeconds(10)) + IdeaBuildSystem.MAVEN -> return remoteRobot.find(IdeaMavenFrame::class.java, ofSeconds(10)) + } + } + + @BeforeEach + fun `Close each project before test`(remoteRobot: RemoteRobot): Unit = with(remoteRobot) { + try { + idea { + closeProject() + } + } catch (ignore: Throwable) {} + } + + @AfterEach + fun `Close each project after test`(remoteRobot: RemoteRobot): Unit = with(remoteRobot) { + idea { + closeProject() + } + } + + companion object { + @BeforeAll + @JvmStatic + fun init(remoteRobot: RemoteRobot): Unit = with(remoteRobot) { + StepsLogger.init() + } + + private val supportedProjectsList: List = + addPairsToList(true) + private val unsupportedProjectsList: List = + addPairsToList(false) + + @JvmStatic + fun supportedProjectsProvider(): List { + return supportedProjectsList + } + + @JvmStatic + fun unsupportedProjectsProvider(): List { + return unsupportedProjectsList + } + + @JvmStatic + fun allProjectsProvider(): List { + return supportedProjectsList + unsupportedProjectsList + } + + @JvmStatic + private fun addPairsToList(supported: Boolean): List { + val ideaBuildSystems = IdeaBuildSystem.values() + ideaBuildSystems.shuffle() + var j = 0 + + val listOfArguments: MutableList = mutableListOf() + JDKVersion.values().toMutableList().filter { + it.supported == supported + }.forEach { + listOfArguments.add( + Arguments.of(ideaBuildSystems[j], it) //each (un)supported JDK with a random build system + ) + j++ + if (j >= ideaBuildSystems.size) { + j = 0 + } + } + return listOfArguments + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/CreateProjects.kt b/utbot-intellij/src/test/kotlin/org/utbot/tests/CreateProjects.kt new file mode 100644 index 0000000000..eee5299898 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/tests/CreateProjects.kt @@ -0,0 +1,41 @@ +package org.utbot.tests + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.utils.waitFor +import org.junit.jupiter.api.Order +import org.junit.jupiter.api.Tag +import org.junit.jupiter.api.Tags +import org.junit.jupiter.params.ParameterizedTest +import org.junit.jupiter.params.provider.MethodSource +import org.utbot.data.IdeaBuildSystem +import org.utbot.data.JDKVersion +import org.utbot.data.NEW_PROJECT_NAME_START +import org.utbot.pages.welcomeFrame +import java.time.Duration + +@Order(1) +class CreateProjects : BaseTest() { + @ParameterizedTest(name = "Create {0} project with JDK {1}") + @Tags(Tag("smoke"), Tag("NewProject"), Tag("Java"), Tag("UTBot"), Tag("")) + @MethodSource("allProjectsProvider") + fun createProjectWithSupportedJDK( + ideaBuildSystem: IdeaBuildSystem, jdkVersion: JDKVersion, + remoteRobot: RemoteRobot + ): Unit = with(remoteRobot) { + val newProjectName = NEW_PROJECT_NAME_START + ideaBuildSystem.system + jdkVersion.number + remoteRobot.welcomeFrame { + createNewProject( + projectName = newProjectName, + buildSystem = ideaBuildSystem, + jdkVersion = jdkVersion + ) + } + val ideaFrame = getIdeaFrameForBuildSystem(remoteRobot, ideaBuildSystem) + with(ideaFrame) { + waitProjectIsCreated() + waitFor(Duration.ofSeconds(30)) { + !isDumbMode() + } + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt b/utbot-intellij/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt new file mode 100644 index 0000000000..e06b403bc8 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/tests/UnitTestBotActionTest.kt @@ -0,0 +1,76 @@ +package org.utbot.tests + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.utils.waitForIgnoringError +import org.assertj.core.api.Assertions.assertThat +import org.junit.jupiter.api.* +import org.junit.jupiter.params.ParameterizedTest +import org.junit.jupiter.params.provider.MethodSource +import org.utbot.data.IdeaBuildSystem +import org.utbot.data.JDKVersion +import org.utbot.data.NEW_PROJECT_NAME_START +import org.utbot.pages.* +import org.utbot.samples.typeAdditionFunction +import org.utbot.samples.typeDivisionFunction +import java.time.Duration.ofSeconds + +class UnitTestBotActionTest : BaseTest() { + + @ParameterizedTest(name = "Generate tests in {0} project with JDK {1}") + @MethodSource("supportedProjectsProvider") + @Tags(Tag("Java"), Tag("UnitTestBot"), Tag("Positive")) + fun checkBasicTestGeneration(ideaBuildSystem: IdeaBuildSystem, jdkVersion: JDKVersion, + remoteRobot: RemoteRobot) { + val createdProjectName = NEW_PROJECT_NAME_START + ideaBuildSystem.system + jdkVersion.number + remoteRobot.welcomeFrame { + findText(createdProjectName).click() + } + val ideaFrame = getIdeaFrameForBuildSystem(remoteRobot, ideaBuildSystem) + with (ideaFrame) { + val newClassName = "Arithmetic" + createNewJavaClass(newClassName, "Main") + val returnsFromTagBody = textEditor().typeDivisionFunction(newClassName) + openUTBotDialogFromProjectViewForClass(newClassName) + unitTestBotDialog.generateTestsButton.click() + waitForIgnoringError (ofSeconds(5)){ + inlineProgressTextPanel.isShowing + } + waitForIgnoringError (ofSeconds(90)){ + inlineProgressTextPanel.hasText("Generate test cases for class $newClassName") + } + waitForIgnoringError(ofSeconds(30)) { + utbotNotification.title.hasText("UnitTestBot: unit tests generated successfully") + } + assertThat(textEditor().editor.text).contains("class ${newClassName}Test") + assertThat(textEditor().editor.text).contains("@Test\n") + assertThat(textEditor().editor.text).contains("assertEquals(") + assertThat(textEditor().editor.text).contains("@utbot.classUnderTest {@link ${newClassName}}") + assertThat(textEditor().editor.text).contains("@utbot.methodUnderTest {@link ${newClassName}#") + assertThat(textEditor().editor.text).contains(returnsFromTagBody) + //ToDo verify how many tests are generated + //ToDo verify Problems view and Arithmetic exception on it + } + } + + @ParameterizedTest(name = "Check Generate tests button is disabled in {0} project with unsupported JDK {1}") + @MethodSource("unsupportedProjectsProvider") + @Tags(Tag("Java"), Tag("UnitTestBot"), Tag("Negative")) + fun checkProjectWithUnsupportedJDK(ideaBuildSystem: IdeaBuildSystem, jdkVersion: JDKVersion, + remoteRobot: RemoteRobot) { + val createdProjectName = NEW_PROJECT_NAME_START + ideaBuildSystem.system + jdkVersion.number + remoteRobot.welcomeFrame { + findText(createdProjectName).click() + } + val ideaFrame = getIdeaFrameForBuildSystem(remoteRobot, ideaBuildSystem) + return with (ideaFrame) { + val newClassName = "Arithmetic" + createNewJavaClass(newClassName, "Main") + textEditor().typeAdditionFunction(newClassName) + openUTBotDialogFromProjectViewForClass(newClassName) + assertThat(unitTestBotDialog.generateTestsButton.isEnabled().not()) + assertThat(unitTestBotDialog.sdkNotificationLabel.hasText("SDK version 19 is not supported, use 1.8, 11 or 17 instead.")) + assertThat(unitTestBotDialog.setupSdkLink.isShowing) + unitTestBotDialog.closeButton.click() + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt b/utbot-intellij/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt new file mode 100644 index 0000000000..650542c1f2 --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/utils/RemoteRobotExtension.kt @@ -0,0 +1,135 @@ +package org.utbot.utils + +import com.intellij.remoterobot.RemoteRobot +import com.intellij.remoterobot.fixtures.ContainerFixture +import com.intellij.remoterobot.search.locators.byXpath +import okhttp3.OkHttpClient +import okhttp3.Request +import okhttp3.logging.HttpLoggingInterceptor +import org.junit.jupiter.api.extension.AfterTestExecutionCallback +import org.junit.jupiter.api.extension.ExtensionContext +import org.junit.jupiter.api.extension.ParameterContext +import org.junit.jupiter.api.extension.ParameterResolver +import java.awt.image.BufferedImage +import java.io.ByteArrayOutputStream +import java.io.File +import java.lang.IllegalStateException +import java.lang.reflect.Method +import javax.imageio.ImageIO + +class RemoteRobotExtension : AfterTestExecutionCallback, ParameterResolver { + private val url: String = System.getProperty("remote-robot-url") ?: "http://127.0.0.1:8082" + private val remoteRobot: RemoteRobot = if (System.getProperty("debug-retrofit")?.equals("enable") == true) { + val interceptor: HttpLoggingInterceptor = HttpLoggingInterceptor().apply { + this.level = HttpLoggingInterceptor.Level.BODY + } + val client = OkHttpClient.Builder().apply { + this.addInterceptor(interceptor) + }.build() + RemoteRobot(url, client) + } else { + RemoteRobot(url) + } + private val client = OkHttpClient() + + override fun supportsParameter(parameterContext: ParameterContext?, extensionContext: ExtensionContext?): Boolean { + return parameterContext?.parameter?.type?.equals(RemoteRobot::class.java) ?: false + } + + override fun resolveParameter(parameterContext: ParameterContext?, extensionContext: ExtensionContext?): Any { + return remoteRobot + } + + override fun afterTestExecution(context: ExtensionContext?) { + val testMethod: Method = context?.requiredTestMethod ?: throw IllegalStateException("test method is null") + val testMethodName = testMethod.name + val testFailed: Boolean = context.executionException?.isPresent ?: false + if (testFailed) { + saveScreenshot(testMethodName) + saveIdeaFrames(testMethodName) + saveHierarchy(testMethodName) + } + } + + private fun saveScreenshot(testName: String) { + fetchScreenShot().save(testName) + } + + private fun saveHierarchy(testName: String) { + val hierarchySnapshot = + saveFile(url, "build/reports", "hierarchy-$testName.html") + if (File("build/reports/styles.css").exists().not()) { + saveFile("$url/styles.css", "build/reports", "styles.css") + } + println("Hierarchy snapshot: ${hierarchySnapshot.absolutePath}") + } + + private fun saveFile(url: String, folder: String, name: String): File { + val response = client.newCall(Request.Builder().url(url).build()).execute() + return File(folder).apply { + mkdirs() + }.resolve(name).apply { + writeText(response.body?.string() ?: "") + } + } + + private fun BufferedImage.save(name: String) { + val bytes = ByteArrayOutputStream().use { b -> + ImageIO.write(this, "png", b) + b.toByteArray() + } + File("build/reports").apply { mkdirs() }.resolve("$name.png").writeBytes(bytes) + } + + private fun saveIdeaFrames(testName: String) { + remoteRobot.findAll(byXpath("//div[@class='IdeFrameImpl']")).forEachIndexed { n, frame -> + val pic = try { + frame.callJs( + """ + importPackage(java.io) + importPackage(javax.imageio) + importPackage(java.awt.image) + const screenShot = new BufferedImage(component.getWidth(), component.getHeight(), BufferedImage.TYPE_INT_ARGB); + component.paint(screenShot.getGraphics()) + let pictureBytes; + const baos = new ByteArrayOutputStream(); + try { + ImageIO.write(screenShot, "png", baos); + pictureBytes = baos.toByteArray(); + } finally { + baos.close(); + } + pictureBytes; + """, true + ) + } catch (e: Throwable) { + e.printStackTrace() + throw e + } + pic.inputStream().use { + ImageIO.read(it) + }.save(testName + "_" + n) + } + } + + private fun fetchScreenShot(): BufferedImage { + return remoteRobot.callJs( + """ + importPackage(java.io) + importPackage(javax.imageio) + const screenShot = new java.awt.Robot().createScreenCapture(new Rectangle(Toolkit.getDefaultToolkit().getScreenSize())); + let pictureBytes; + const baos = new ByteArrayOutputStream(); + try { + ImageIO.write(screenShot, "png", baos); + pictureBytes = baos.toByteArray(); + } finally { + baos.close(); + } + pictureBytes; + """ + ).inputStream().use { + ImageIO.read(it) + } + } +} \ No newline at end of file diff --git a/utbot-intellij/src/test/kotlin/org/utbot/utils/StepsLogger.kt b/utbot-intellij/src/test/kotlin/org/utbot/utils/StepsLogger.kt new file mode 100644 index 0000000000..a97ddfb70b --- /dev/null +++ b/utbot-intellij/src/test/kotlin/org/utbot/utils/StepsLogger.kt @@ -0,0 +1,15 @@ +package org.utbot.utils + +import com.intellij.remoterobot.stepsProcessing.StepLogger +import com.intellij.remoterobot.stepsProcessing.StepWorker + +object StepsLogger { + private var initialized = false + @JvmStatic + fun init() { + if (initialized.not()) { + StepWorker.registerProcessor(StepLogger()) + initialized = true + } + } +} \ No newline at end of file From 74618e6474db8a8594fe54f8356377828205c43a Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 13 Oct 2023 10:52:41 +0300 Subject: [PATCH 042/144] Move readme.md --- {utbot-intellij-main => utbot-intellij}/readme.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {utbot-intellij-main => utbot-intellij}/readme.md (100%) diff --git a/utbot-intellij-main/readme.md b/utbot-intellij/readme.md similarity index 100% rename from utbot-intellij-main/readme.md rename to utbot-intellij/readme.md From 3bf4e5a556f7dffc673fd57e78be4cdeedce93b9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 13 Oct 2023 13:43:52 +0300 Subject: [PATCH 043/144] Add titled separators --- .../plugin/settings/SettingsWindow.kt | 270 +++++++++--------- .../plugin/settings/BaseSettingsWindow.kt | 81 +++--- 2 files changed, 177 insertions(+), 174 deletions(-) diff --git a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt index 503507faab..4474e95217 100644 --- a/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt +++ b/utbot-intellij/src/main/kotlin/org/utbot/intellij/plugin/settings/SettingsWindow.kt @@ -44,162 +44,164 @@ class SettingsWindow(val project: Project) { } val panel: JPanel = panel { - row("Generated test language:") { - codegenLanguageCombo = comboBox(DefaultComboBoxModel(CodegenLanguage.values())).gap(RightGap.COLUMNS) - .apply { - component.renderer = CodeGenerationSettingItemRenderer() - ContextHelpLabel.create("You can generate test methods in Java or Kotlin regardless of your source code language.") - }.bindItem( - getter = { settings.providerNameByServiceLoader(CodegenLanguage::class) as CodegenLanguage }, - setter = { - settings.setProviderByLoader( - CodegenLanguage::class, - it as CodeGenerationSettingItem - ) + group("Java Specific Settings") { + row("Generated test language:") { + codegenLanguageCombo = comboBox(DefaultComboBoxModel(CodegenLanguage.values())).gap(RightGap.COLUMNS) + .apply { + component.renderer = CodeGenerationSettingItemRenderer() + ContextHelpLabel.create("You can generate test methods in Java or Kotlin regardless of your source code language.") + }.bindItem( + getter = { settings.providerNameByServiceLoader(CodegenLanguage::class) as CodegenLanguage }, + setter = { + settings.setProviderByLoader( + CodegenLanguage::class, + it as CodeGenerationSettingItem + ) + } + ).component + codegenLanguageCombo.addActionListener { + if (!codegenLanguageCombo.item.isSummarizationCompatible()) { + enableSummarizationGenerationCheckBox.isSelected = false } - ).component - codegenLanguageCombo.addActionListener { - if (!codegenLanguageCombo.item.isSummarizationCompatible()) { - enableSummarizationGenerationCheckBox.isSelected = false } - } - }.bottomGap(BottomGap.MEDIUM) + }.bottomGap(BottomGap.MEDIUM) - row("Overflow detection:") { - createCombo(TreatOverflowAsError::class, TreatOverflowAsError.values()) - } + row("Overflow detection:") { + createCombo(TreatOverflowAsError::class, TreatOverflowAsError.values()) + } - row { - useTaintAnalysisCheckBox = - checkBox("Enable taint analysis") + row { + useTaintAnalysisCheckBox = + checkBox("Enable taint analysis") + .onApply { + settings.state.useTaintAnalysis = useTaintAnalysisCheckBox.isSelected + } + .onReset { + useTaintAnalysisCheckBox.isSelected = settings.state.useTaintAnalysis + } + .onIsModified { + useTaintAnalysisCheckBox.isSelected xor settings.state.useTaintAnalysis + } + .component + contextHelp("Experimental taint analysis support") + } + row { + runInspectionAfterTestGenerationCheckBox = + checkBox("Display detected errors on the Problems tool window") + .onApply { + settings.state.runInspectionAfterTestGeneration = + runInspectionAfterTestGenerationCheckBox.isSelected + } + .onReset { + runInspectionAfterTestGenerationCheckBox.isSelected = + settings.state.runInspectionAfterTestGeneration + } + .onIsModified { + runInspectionAfterTestGenerationCheckBox.isSelected xor settings.state.runInspectionAfterTestGeneration + } + .component + contextHelp("Automatically run code inspection after test generation") + } + row { + enableSummarizationGenerationCheckBox = checkBox("Enable summaries generation") .onApply { - settings.state.useTaintAnalysis = useTaintAnalysisCheckBox.isSelected + settings.state.summariesGenerationType = + if (enableSummarizationGenerationCheckBox.isSelected) SummariesGenerationType.FULL else SummariesGenerationType.NONE } .onReset { - useTaintAnalysisCheckBox.isSelected = settings.state.useTaintAnalysis + enableSummarizationGenerationCheckBox.isSelected = + settings.state.summariesGenerationType != SummariesGenerationType.NONE } .onIsModified { - useTaintAnalysisCheckBox.isSelected xor settings.state.useTaintAnalysis - } + enableSummarizationGenerationCheckBox.isSelected xor (settings.state.summariesGenerationType != SummariesGenerationType.NONE) + }.enabledIf(codegenLanguageCombo.selectedValueMatches(CodegenLanguage?::isSummarizationCompatible)) .component - contextHelp("Experimental taint analysis support") - } - row { - runInspectionAfterTestGenerationCheckBox = - checkBox("Display detected errors on the Problems tool window") + } + indent { + row("Javadoc comment style:") { + createCombo(JavaDocCommentStyle::class, JavaDocCommentStyle.values()) + }.enabledIf(enableSummarizationGenerationCheckBox.selected).bottomGap(BottomGap.MEDIUM) + } + + row { + forceMockCheckBox = checkBox("Force mocking static methods") .onApply { - settings.state.runInspectionAfterTestGeneration = - runInspectionAfterTestGenerationCheckBox.isSelected - } - .onReset { - runInspectionAfterTestGenerationCheckBox.isSelected = - settings.state.runInspectionAfterTestGeneration - } - .onIsModified { - runInspectionAfterTestGenerationCheckBox.isSelected xor settings.state.runInspectionAfterTestGeneration + settings.state.forceStaticMocking = + if (forceMockCheckBox.isSelected) ForceStaticMocking.FORCE else ForceStaticMocking.DO_NOT_FORCE } + .onReset { forceMockCheckBox.isSelected = settings.forceStaticMocking == ForceStaticMocking.FORCE } + .onIsModified { forceMockCheckBox.isSelected xor (settings.forceStaticMocking != ForceStaticMocking.DO_NOT_FORCE) } .component - contextHelp("Automatically run code inspection after test generation") - } - row { - enableSummarizationGenerationCheckBox = checkBox("Enable summaries generation") - .onApply { - settings.state.summariesGenerationType = - if (enableSummarizationGenerationCheckBox.isSelected) SummariesGenerationType.FULL else SummariesGenerationType.NONE - } - .onReset { - enableSummarizationGenerationCheckBox.isSelected = - settings.state.summariesGenerationType != SummariesGenerationType.NONE - } - .onIsModified { - enableSummarizationGenerationCheckBox.isSelected xor (settings.state.summariesGenerationType != SummariesGenerationType.NONE) - }.enabledIf(codegenLanguageCombo.selectedValueMatches(CodegenLanguage?::isSummarizationCompatible)) - .component - } - indent { - row("Javadoc comment style:") { - createCombo(JavaDocCommentStyle::class, JavaDocCommentStyle.values()) - }.enabledIf(enableSummarizationGenerationCheckBox.selected).bottomGap(BottomGap.MEDIUM) - } - - row { - forceMockCheckBox = checkBox("Force mocking static methods") - .onApply { - settings.state.forceStaticMocking = - if (forceMockCheckBox.isSelected) ForceStaticMocking.FORCE else ForceStaticMocking.DO_NOT_FORCE - } - .onReset { forceMockCheckBox.isSelected = settings.forceStaticMocking == ForceStaticMocking.FORCE } - .onIsModified { forceMockCheckBox.isSelected xor (settings.forceStaticMocking != ForceStaticMocking.DO_NOT_FORCE) } - .component - contextHelp("Overrides other mocking settings") - } - row("Classes to be forcedly mocked:") {} - row { - val updater = Runnable { - UIUtil.setEnabled(excludeTable.component, forceMockCheckBox.isSelected, true) + contextHelp("Overrides other mocking settings") } - cell(excludeTable.component) - .align(Align.FILL) - .onApply { excludeTable.apply() } - .onReset { - excludeTable.reset() - updater.run() + row("Classes to be forcedly mocked:") {} + row { + val updater = Runnable { + UIUtil.setEnabled(excludeTable.component, forceMockCheckBox.isSelected, true) } - .onIsModified { excludeTable.isModified() } + cell(excludeTable.component) + .align(Align.FILL) + .onApply { excludeTable.apply() } + .onReset { + excludeTable.reset() + updater.run() + } + .onIsModified { excludeTable.isModified() } - forceMockCheckBox.addActionListener { updater.run() } - }.bottomGap(BottomGap.MEDIUM) + forceMockCheckBox.addActionListener { updater.run() } + }.bottomGap(BottomGap.MEDIUM) - val fuzzLabel = JBLabel("Fuzzing") - val symLabel = JBLabel("Symbolic execution") - row { - cell(BorderLayoutPanel().apply { - topGap(TopGap.SMALL) - addToLeft(JBLabel("Test generation method:").apply { verticalAlignment = SwingConstants.TOP }) - addToCenter(BorderLayoutPanel().apply { - val granularity = 20 - val slider = object : JSlider() { - val updater = Runnable() { - val fuzzingPercent = 100.0 * (granularity - value) / granularity - fuzzLabel.text = "Fuzzing %.0f %%".format(fuzzingPercent) - symLabel.text = "%.0f %% Symbolic execution".format(100.0 - fuzzingPercent) - } + val fuzzLabel = JBLabel("Fuzzing") + val symLabel = JBLabel("Symbolic execution") + row { + cell(BorderLayoutPanel().apply { + topGap(TopGap.SMALL) + addToLeft(JBLabel("Test generation method:").apply { verticalAlignment = SwingConstants.TOP }) + addToCenter(BorderLayoutPanel().apply { + val granularity = 20 + val slider = object : JSlider() { + val updater = Runnable() { + val fuzzingPercent = 100.0 * (granularity - value) / granularity + fuzzLabel.text = "Fuzzing %.0f %%".format(fuzzingPercent) + symLabel.text = "%.0f %% Symbolic execution".format(100.0 - fuzzingPercent) + } - override fun getValue() = ((1 - settings.fuzzingValue) * granularity).toInt() + override fun getValue() = ((1 - settings.fuzzingValue) * granularity).toInt() - override fun setValue(n: Int) { - val tmp = value - settings.fuzzingValue = 1 - n / granularity.toDouble() - if (tmp != n) { - updater.run() + override fun setValue(n: Int) { + val tmp = value + settings.fuzzingValue = 1 - n / granularity.toDouble() + if (tmp != n) { + updater.run() + } } } - } - UIUtil.setSliderIsFilled(slider, true) - slider.minimum = 0 - slider.maximum = granularity - slider.minorTickSpacing = 1 - slider.majorTickSpacing = granularity / 4 - slider.paintTicks = true - slider.paintTrack = true - slider.paintLabels = false - slider.toolTipText = - "While fuzzer \"guesses\" the values to enter as much execution paths as possible, symbolic executor tries to \"deduce\" them. Choose the proportion of generation time allocated for each of these methods within Test generation timeout. The slide has no effect for Spring Projects." - slider.updater.run() - addToTop(slider) - addToBottom(BorderLayoutPanel().apply { - addToLeft(fuzzLabel) - addToRight(symLabel) + UIUtil.setSliderIsFilled(slider, true) + slider.minimum = 0 + slider.maximum = granularity + slider.minorTickSpacing = 1 + slider.majorTickSpacing = granularity / 4 + slider.paintTicks = true + slider.paintTrack = true + slider.paintLabels = false + slider.toolTipText = + "While fuzzer \"guesses\" the values to enter as much execution paths as possible, symbolic executor tries to \"deduce\" them. Choose the proportion of generation time allocated for each of these methods within Test generation timeout. The slide has no effect for Spring Projects." + slider.updater.run() + addToTop(slider) + addToBottom(BorderLayoutPanel().apply { + addToLeft(fuzzLabel) + addToRight(symLabel) + }) }) - }) - }).align(Align.FILL) - }.enabled(UtSettings.useFuzzing) - if (!UtSettings.useFuzzing) { - row { - comment("Fuzzing is disabled in configuration file.") - link("Edit configuration") { - UIUtil.getWindow(fuzzLabel)?.dispose() - showSettingsEditor(project, "useFuzzing") + }).align(Align.FILL) + }.enabled(UtSettings.useFuzzing) + if (!UtSettings.useFuzzing) { + row { + comment("Fuzzing is disabled in configuration file.") + link("Edit configuration") { + UIUtil.getWindow(fuzzLabel)?.dispose() + showSettingsEditor(project, "useFuzzing") + } } } } diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt index db1433d7a9..8e95275aaf 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/BaseSettingsWindow.kt @@ -25,49 +25,50 @@ class BaseSettingsWindow(val project: Project) { } val panel: JPanel = panel { - row("Tests with exceptions:") { - createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values()) - } - - row("Hanging test timeout:") { - spinner( - range = IntRange( - HangingTestsTimeout.MIN_TIMEOUT_MS.toInt(), - HangingTestsTimeout.MAX_TIMEOUT_MS.toInt() - ), - step = 50 - ).bindIntValue( - getter = { - settings.hangingTestsTimeout.timeoutMs - .coerceIn(HangingTestsTimeout.MIN_TIMEOUT_MS, HangingTestsTimeout.MAX_TIMEOUT_MS).toInt() - }, - setter = { - settings.hangingTestsTimeout = HangingTestsTimeout(it.toLong()) - } - ) + group("Common Settings") { + row("Tests with exceptions:") { + createCombo(RuntimeExceptionTestsBehaviour::class, RuntimeExceptionTestsBehaviour.values()) + } - label("milliseconds per method") - contextHelp( - "Set this timeout to define which test is \"hanging\". Increase it to test the " + - "time-consuming method or decrease if the execution speed is critical for you." - ) - } + row("Hanging test timeout:") { + spinner( + range = IntRange( + HangingTestsTimeout.MIN_TIMEOUT_MS.toInt(), + HangingTestsTimeout.MAX_TIMEOUT_MS.toInt() + ), + step = 50 + ).bindIntValue( + getter = { + settings.hangingTestsTimeout.timeoutMs + .coerceIn(HangingTestsTimeout.MIN_TIMEOUT_MS, HangingTestsTimeout.MAX_TIMEOUT_MS).toInt() + }, + setter = { + settings.hangingTestsTimeout = HangingTestsTimeout(it.toLong()) + } + ) - row { - enableExperimentalLanguagesCheckBox = checkBox("Experimental languages support") - .onApply { - settings.state.enableExperimentalLanguagesSupport = - enableExperimentalLanguagesCheckBox.isSelected - } - .onReset { - enableExperimentalLanguagesCheckBox.isSelected = - settings.experimentalLanguagesSupport == true - } - .onIsModified { enableExperimentalLanguagesCheckBox.isSelected xor settings.experimentalLanguagesSupport } - .component - contextHelp("Enable JavaScript and Python if IDE supports them") - }.bottomGap(BottomGap.MEDIUM) + label("milliseconds per method") + contextHelp( + "Set this timeout to define which test is \"hanging\". Increase it to test the " + + "time-consuming method or decrease if the execution speed is critical for you." + ) + } + row { + enableExperimentalLanguagesCheckBox = checkBox("Experimental languages support") + .onApply { + settings.state.enableExperimentalLanguagesSupport = + enableExperimentalLanguagesCheckBox.isSelected + } + .onReset { + enableExperimentalLanguagesCheckBox.isSelected = + settings.experimentalLanguagesSupport == true + } + .onIsModified { enableExperimentalLanguagesCheckBox.isSelected xor settings.experimentalLanguagesSupport } + .component + contextHelp("Enable JavaScript and Python if IDE supports them") + }.bottomGap(BottomGap.MEDIUM) + } } fun isModified(): Boolean { From 204d172206a2eee191f1ca937cf9fbf4fe7aa9d9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 13 Oct 2023 13:54:11 +0300 Subject: [PATCH 044/144] Add enable experimental by default --- .../kotlin/org/utbot/intellij/plugin/settings/CommonSettings.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/CommonSettings.kt b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/CommonSettings.kt index e6ed028959..2fc63f8e77 100644 --- a/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/CommonSettings.kt +++ b/utbot-ui-commons/src/main/kotlin/org/utbot/intellij/plugin/settings/CommonSettings.kt @@ -71,7 +71,7 @@ class Settings(val project: Project) : PersistentStateComponent var commentStyle: JavaDocCommentStyle = JavaDocCommentStyle.defaultItem, var summariesGenerationType: SummariesGenerationType = UtSettings.summaryGenerationType, var generationTimeoutInMillis: Long = UtSettings.utBotGenerationTimeoutInMillis, - var enableExperimentalLanguagesSupport: Boolean = false, + var enableExperimentalLanguagesSupport: Boolean = true, var isSpringHandled: Boolean = false, ) { From cf67b46bf73e4f0d3501e8eabc343c2ad8fc8550 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 17 Oct 2023 10:47:12 +0300 Subject: [PATCH 045/144] Add instructions/lines trace mode, update coverage output --- .../python/PythonGenerateTestsCommand.kt | 20 ++- .../utbot_executor/utbot_executor/executor.py | 13 +- .../utbot_executor/ut_tracer.py | 33 +++- .../utbot_executor/utbot_executor/utils.py | 33 +++- .../kotlin/org/utbot/python/PythonEngine.kt | 34 ++-- .../utbot/python/PythonTestCaseGenerator.kt | 2 +- .../python/PythonTestGenerationConfig.kt | 4 +- .../python/PythonTestGenerationProcessor.kt | 157 +++++++++++++----- .../python/evaluation/CodeEvaluationApi.kt | 4 +- .../evaluation/PythonCodeSocketExecutor.kt | 35 +--- .../evaluation/PythonCoverageReceiver.kt | 4 +- .../python/evaluation/PythonWorkerManager.kt | 2 +- .../python/evaluation/coverage/CoverageApi.kt | 109 ++++++++++++ .../CoverageIdGenerator.kt | 6 +- .../ExecutionResultDeserializer.kt | 1 - .../utbot/python/evaluation/utils/Utils.kt | 57 ------- .../org/utbot/python/fuzzing/PythonApi.kt | 6 +- 17 files changed, 337 insertions(+), 183 deletions(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt rename utbot-python/src/main/kotlin/org/utbot/python/evaluation/{utils => coverage}/CoverageIdGenerator.kt (52%) delete mode 100644 utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index cdb5565ab7..126f811e1b 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -10,14 +10,15 @@ import org.parsers.python.PythonParser import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework import org.utbot.framework.plugin.api.UtExecutionSuccess +import org.utbot.python.evaluation.coverage.CoverageOutputFormat import org.utbot.python.PythonMethodHeader import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.PythonTestSet -import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.TestFileInformation +import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.code.PythonCode -import org.utbot.python.evaluation.utils.PythonCoverageMode -import org.utbot.python.evaluation.utils.toPythonCoverageMode +import org.utbot.python.evaluation.coverage.PythonCoverageMode +import org.utbot.python.evaluation.coverage.toPythonCoverageMode import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.codegen.model.Pytest import org.utbot.python.framework.codegen.model.Unittest @@ -116,16 +117,20 @@ class PythonGenerateTestsCommand : CliktCommand( .choice("PASS", "FAIL") .default("FAIL") - private val doNotGenerateRegressionSuite by option("--do-not-generate-regression-suite", help = "Do not generate regression test suite") + private val doNotGenerateRegressionSuite by option("--do-not-generate-regression-suite", help = "Do not generate regression test suite.") .flag(default = false) - private val coverageMeasureMode by option("--coverage-measure-mode", help = "Use LINES or INSTRUCTIONS for coverage measurement") + private val coverageMeasureMode by option("--coverage-measure-mode", help = "Use LINES or INSTRUCTIONS for coverage measurement.") .choice("INSTRUCTIONS", "LINES") .default("INSTRUCTIONS") - private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "") + private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "Do not send coverage during execution.") .flag(default = false) + private val coverageOutputFormat by option("--coverage-output-format", help = "Use Lines, Instructions or TopFrameInstructions.") + .choice("Instructions", "Lines", "TopFrameInstructions") + .default("Instructions") + private val testFramework: TestFramework get() = when (testFrameworkAsString) { @@ -263,7 +268,8 @@ class PythonGenerateTestsCommand : CliktCommand( isCanceled = { false }, runtimeExceptionTestsBehaviour = RuntimeExceptionTestsBehaviour.valueOf(runtimeExceptionTestsBehaviour), coverageMeasureMode = coverageMeasureMode.toPythonCoverageMode() ?: PythonCoverageMode.Instructions, - sendCoverageContinuously = !doNotSendCoverageContinuously + sendCoverageContinuously = !doNotSendCoverageContinuously, + coverageOutputFormat = CoverageOutputFormat.valueOf(coverageOutputFormat), ) val processor = PythonCliProcessor( diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 5586d67be2..94c6009302 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -20,7 +20,7 @@ suppress_stdout as __suppress_stdout, get_instructions, filter_instructions, - TraceMode, + TraceMode, UtInstruction, ) __all__ = ['PythonExecutor'] @@ -181,7 +181,7 @@ def _run_calculate_function_value( __is_exception = False _, __start = inspect.getsourcelines(function) - __all_code_lines = filter_instructions(get_instructions(function, __start), tracer.mode) + __all_code_stmts = filter_instructions(get_instructions(function, __start), tracer.mode) __tracer = tracer @@ -195,14 +195,13 @@ def _run_calculate_function_value( logging.debug("Coverage: %s", __tracer.counts) logging.debug("Fullpath: %s", fullpath) - __stmts = [x for x in __tracer.counts] - __stmts_with_def = [(__start, 0)] + __stmts - __missed_filtered = [x for x in __all_code_lines if x not in __stmts_with_def] + __stmts_with_def = [UtInstruction(__start, 0, 0)] + list(__tracer.counts.keys()) + __missed_filtered = [x for x in __all_code_stmts if x not in __stmts_with_def] logging.debug("Covered lines: %s", __stmts_with_def) logging.debug("Missed lines: %s", __missed_filtered) - __str_statements = [":".join(map(str, x)) for x in __stmts_with_def] - __str_missed_statements = [":".join(map(str, x)) for x in __missed_filtered] + __str_statements = [x.serialize() for x in __stmts_with_def] + __str_missed_statements = [x.serialize() for x in __missed_filtered] args_ids, kwargs_ids, result_id, state_after, serialized_state_after = _serialize_state(args, kwargs, __result) ids = args_ids + list(kwargs_ids.values()) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 454826a682..c62ed2278e 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -1,3 +1,5 @@ +import dis +import inspect import logging import os import pathlib @@ -7,7 +9,7 @@ import typing from concurrent.futures import ThreadPoolExecutor -from utbot_executor.utils import TraceMode +from utbot_executor.utils import TraceMode, UtInstruction def _modname(path): @@ -55,6 +57,11 @@ def put_message(self, key: str): self.send_message(message) +class PureSender(UtCoverageSender): + def __init__(self): + super().__init__("000000", "localhost", 0, use_thread=False, send_coverage=False) + + class UtTracer: def __init__( self, @@ -64,20 +71,23 @@ def __init__( mode: TraceMode = TraceMode.Instructions, ): self.tested_file = tested_file - self.counts = {} + self.counts: dict[UtInstruction, int] = {} self.localtrace = self.localtrace_count self.globaltrace = self.globaltrace_lt self.ignore_dirs = ignore_dirs self.sender = sender self.mode = mode + self.depth = 0 def runfunc(self, func, /, *args, **kw): result = None + self.depth = 0 sys.settrace(self.globaltrace) try: result = func(*args, **kw) finally: sys.settrace(None) + self.depth = 0 return result def coverage(self, filename: str) -> typing.List[int]: @@ -91,9 +101,9 @@ def localtrace_count(self, frame, why, arg): offset = lineno * 2 if why == "opcode": offset = frame.f_lasti - key = (lineno, offset) + key = UtInstruction(lineno, offset, self.depth) if key not in self.counts: - message = ":".join(map(str, key)) + message = key.serialize() try: self.sender.put_message(message) except Exception: @@ -102,11 +112,12 @@ def localtrace_count(self, frame, why, arg): return self.localtrace def globaltrace_lt(self, frame, why, arg): + self.depth += 1 if why == 'call': if self.mode == TraceMode.Instructions: frame.f_trace_opcodes = True frame.f_trace_lines = False - filename = frame.f_globals.get('__file__', None) + filename = frame.f_code.co_filename if filename and all(not filename.startswith(d + os.sep) for d in self.ignore_dirs): modulename = _modname(filename) if modulename is not None: @@ -121,3 +132,15 @@ def __init__(self): def runfunc(self, func, /, *args, **kw): return func(*args, **kw) + + +def f(x): + def g(x): + xs = [[j for j in range(i)] for i in range(10)] + return x * 2 + return x * g(x) + 2 + + +if __name__ == "__main__": + tracer = UtTracer(pathlib.Path(__file__), [], PureSender()) + tracer.runfunc(f, 2) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index 29ad7d0f85..b815e45350 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -1,3 +1,4 @@ +import dataclasses import dis import enum import os @@ -11,6 +12,19 @@ class TraceMode(enum.Enum): Instructions = 2 +@dataclasses.dataclass +class UtInstruction: + line: int + offset: int + depth: int + + def serialize(self) -> str: + return ":".join(map(str, [self.line, self.offset, self.depth])) + + def __hash__(self): + return hash((self.line, self.offset, self.depth)) + + @contextmanager def suppress_stdout(): with open(os.devnull, "w") as devnull: @@ -22,21 +36,24 @@ def suppress_stdout(): sys.stdout = old_stdout -def get_instructions(obj: object, start_line: int) -> typing.Iterator[tuple[int, int]]: - def inner_get_instructions(x, current_line): +def get_instructions(obj: object, start_line: int) -> typing.Iterator[UtInstruction]: + def inner_get_instructions(x, current_line, depth): for i, el in enumerate(dis.get_instructions(x)): if el.starts_line is not None: current_line = el.starts_line - yield current_line, el.offset + yield UtInstruction(current_line, el.offset, depth) if any(t in str(type(el.argval)) for t in [""]): - inner_get_instructions(el.argval, current_line) - return inner_get_instructions(obj, start_line) + inner_get_instructions(el.argval, current_line, depth + 1) + return inner_get_instructions(obj, start_line, 0) def filter_instructions( - instructions: typing.Iterable[tuple[int, int]], + instructions: typing.Iterable[UtInstruction], mode: TraceMode = TraceMode.Instructions, -) -> list[tuple[int, int]]: +) -> list[UtInstruction]: if mode == TraceMode.Lines: - return [(it, 2 * it) for it in {line for line, op in instructions}] + unique_line_instructions: set[UtInstruction] = set() + for it in instructions: + unique_line_instructions.add(UtInstruction(it.line, it.line * 2, it.depth)) + return list({UtInstruction(it.line, 2 * it.line, it.depth) for it in instructions}) return list(instructions) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt index 28bd6d501c..095e4761f7 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt @@ -8,12 +8,21 @@ import org.utbot.fuzzing.Control import org.utbot.fuzzing.NoSeedValueException import org.utbot.fuzzing.fuzz import org.utbot.fuzzing.utils.Trie -import org.utbot.python.evaluation.* +import org.utbot.python.evaluation.EvaluationCache +import org.utbot.python.evaluation.PythonCodeExecutor +import org.utbot.python.evaluation.PythonCodeSocketExecutor +import org.utbot.python.evaluation.PythonEvaluationError +import org.utbot.python.evaluation.PythonEvaluationSuccess +import org.utbot.python.evaluation.PythonEvaluationTimeout +import org.utbot.python.evaluation.PythonWorker +import org.utbot.python.evaluation.PythonWorkerManager +import org.utbot.python.evaluation.coverage.CoverageIdGenerator +import org.utbot.python.evaluation.coverage.PyInstruction +import org.utbot.python.evaluation.coverage.PythonCoverageMode +import org.utbot.python.evaluation.coverage.calculateCoverage +import org.utbot.python.evaluation.coverage.makeInstructions import org.utbot.python.evaluation.serialization.MemoryDump import org.utbot.python.evaluation.serialization.toPythonTree -import org.utbot.python.evaluation.utils.CoverageIdGenerator -import org.utbot.python.evaluation.utils.PythonCoverageMode -import org.utbot.python.evaluation.utils.makeInstructions import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.PythonTreeWrapper @@ -95,7 +104,7 @@ class PythonEngine( private fun handleTimeoutResult( arguments: List, methodUnderTestDescription: PythonMethodDescription, - coveredInstructions: List, + coveredInstructions: List, ): FuzzingExecutionFeedback { val summary = arguments .zip(methodUnderTest.arguments) @@ -112,7 +121,7 @@ class PythonEngine( val beforeThisObject = beforeThisObjectTree?.let { PythonTreeModel(it.tree) } val beforeModelList = beforeModelListTree.map { PythonTreeModel(it.tree) } - val coverage = Coverage(coveredInstructions) + val coverage = Coverage(makeInstructions(coveredInstructions, methodUnderTest)) val utFuzzedExecution = PythonUtExecution( stateInit = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), stateBefore = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), @@ -176,7 +185,7 @@ class PythonEngine( stateAfter = EnvironmentModels(afterThisObject, afterModelList, emptyMap(), executableToCall = null), diffIds = evaluationResult.diffIds, result = executionResult, - coverage = evaluationResult.coverage, + coverage = calculateCoverage(evaluationResult.coverage, methodUnderTest), testMethodName = testMethodName.testName?.camelToSnakeCase(), displayName = testMethodName.displayName, summary = summary.map { DocRegularStmt(it) }, @@ -238,11 +247,10 @@ class PythonEngine( } is PythonEvaluationTimeout -> { - val coveredLines = + val coveredInstructions = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) - val coveredInstructions = makeInstructions(coveredLines, methodUnderTest) val utTimeoutException = handleTimeoutResult(arguments, description, coveredInstructions) - val trieNode: Trie.Node = + val trieNode: Trie.Node = if (coveredInstructions.isEmpty()) Trie.emptyNode() else @@ -266,7 +274,7 @@ class PythonEngine( val typeInferenceFeedback = if (result is ValidExecution) SuccessFeedback else InvalidTypeFeedback when (result) { is ValidExecution -> { - val trieNode: Trie.Node = description.tracer.add(coveredInstructions) + val trieNode: Trie.Node = description.tracer.add(coveredInstructions) description.limitManager.addSuccessExecution() PythonExecutionResult( result, @@ -316,7 +324,7 @@ class PythonEngine( parameters, fuzzedConcreteValues, pythonTypeStorage, - Trie(Instruction::id), + Trie(PyInstruction::id), Random(0), TestGenerationLimitManager(ExecutionWithTimoutMode, until, isRootManager = true), methodUnderTest.definition.type, @@ -352,7 +360,7 @@ class PythonEngine( val pair = Pair(description, arguments.map { PythonTreeWrapper(it.tree) }) val mem = cache.get(pair) if (mem != null) { - logger.debug("Repeat in fuzzing ${arguments.map {it.tree}}") + logger.debug { "Repeat in fuzzing ${arguments.map {it.tree}}" } description.limitManager.addSuccessExecution() emit(CachedExecutionFeedback(mem.fuzzingExecutionFeedback)) return@PythonFuzzing mem.fuzzingPlatformFeedback.fromCache() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index 1d69149adf..6549b8f454 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -6,7 +6,7 @@ import org.utbot.framework.minimization.minimizeExecutions import org.utbot.framework.plugin.api.UtError import org.utbot.framework.plugin.api.UtExecution import org.utbot.framework.plugin.api.UtExecutionSuccess -import org.utbot.python.evaluation.utils.PythonCoverageMode +import org.utbot.python.evaluation.coverage.PythonCoverageMode import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.framework.api.python.util.pythonStrClassId import org.utbot.python.fuzzing.* diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index cd62ee8c89..909e8c8f28 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -2,7 +2,8 @@ package org.utbot.python import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework -import org.utbot.python.evaluation.utils.PythonCoverageMode +import org.utbot.python.evaluation.coverage.CoverageOutputFormat +import org.utbot.python.evaluation.coverage.PythonCoverageMode import java.nio.file.Path data class TestFileInformation( @@ -25,4 +26,5 @@ class PythonTestGenerationConfig( val runtimeExceptionTestsBehaviour: RuntimeExceptionTestsBehaviour, val coverageMeasureMode: PythonCoverageMode = PythonCoverageMode.Instructions, val sendCoverageContinuously: Boolean = true, + val coverageOutputFormat: CoverageOutputFormat = CoverageOutputFormat.Lines, ) \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index bec976059d..777dadae17 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -1,7 +1,5 @@ package org.utbot.python -import com.squareup.moshi.Moshi -import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory import mu.KotlinLogging import org.parsers.python.PythonParser import org.utbot.framework.codegen.domain.HangingTestsTimeout @@ -12,6 +10,9 @@ import org.utbot.framework.plugin.api.UtExecutionSuccess import org.utbot.framework.plugin.api.util.UtContext import org.utbot.framework.plugin.api.util.withUtContext import org.utbot.python.code.PythonCode +import org.utbot.python.evaluation.coverage.CoverageOutputFormat +import org.utbot.python.evaluation.coverage.PyInstruction +import org.utbot.python.evaluation.coverage.toPair import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonMethodId import org.utbot.python.framework.api.python.PythonModel @@ -54,6 +55,8 @@ abstract class PythonTestGenerationProcessor { ) } + + fun testGenerate(mypyStorage: MypyInfoBuild): List { val startTime = System.currentTimeMillis() @@ -255,56 +258,128 @@ abstract class PythonTestGenerationProcessor { paths } - data class InstructionSet( - val start: Int, - val end: Int - ) + sealed class CoverageFormat + data class LineCoverage(val start: Int, val end: Int) : CoverageFormat() { + override fun equals(other: Any?): Boolean { + if (other is LineCoverage) { + return start == other.start && end == other.end + } + return false + } - data class CoverageInfo( - val covered: List, - val notCovered: List - ) + override fun hashCode(): Int { + var result = start + result = 31 * result + end + return result + } + } + data class InstructionCoverage(val line: Int, val offset: Long) : CoverageFormat() { + override fun equals(other: Any?): Boolean { + if (other is InstructionCoverage) { + return line == other.line && offset == other.offset + } + return false + } - private val moshi: Moshi = Moshi.Builder().addLast(KotlinJsonAdapterFactory()).build() - private val jsonAdapter = moshi.adapter(CoverageInfo::class.java) - - private fun getInstructionSetList(instructions: Collection): List = - instructions.sorted().fold(emptyList()) { acc, lineNumber -> - if (acc.isEmpty()) - return@fold listOf(InstructionSet(lineNumber, lineNumber)) - val elem = acc.last() - if (elem.end + 1 == lineNumber) - acc.dropLast(1) + listOf(InstructionSet(elem.start, lineNumber)) - else - acc + listOf(InstructionSet(lineNumber, lineNumber)) + override fun hashCode(): Int { + var result = line + result = 31 * result + offset.hashCode() + return result } - protected fun getCoverageInfo(testSets: List): CoverageInfo { - val covered = mutableSetOf() - val missed = mutableSetOf>() + } + + data class InstructionIdCoverage(val line: Int, val id: Long) : CoverageFormat() { + override fun equals(other: Any?): Boolean { + if (other is InstructionCoverage) { + return line == other.line && id == other.offset + } + return false + } + + override fun hashCode(): Int { + var result = line + result = 31 * result + id.hashCode() + return result + } + } + + data class CoverageInfo( + val covered: List, + val notCovered: List, + ) + + private fun getLinesList(instructions: Collection): List = + instructions + .map { it.lineNumber } + .sorted() + .fold(emptyList()) { acc, lineNumber -> + if (acc.isEmpty()) + return@fold listOf(LineCoverage(lineNumber, lineNumber)) + val elem = acc.last() + if (elem.end + 1 == lineNumber || elem.end == lineNumber ) + acc.dropLast(1) + listOf(LineCoverage(elem.start, lineNumber)) + else + acc + listOf(LineCoverage(lineNumber, lineNumber)) + } + + private fun filterMissedLines(covered: Collection, missed: Collection): List = + missed.filterNot { missedInstruction -> covered.any { it.start <= missedInstruction.lineNumber && missedInstruction.lineNumber <= it.end } } + + private fun getInstructionsListWithId(instructions: Collection): List = + instructions.map { InstructionIdCoverage(it.lineNumber, it.id) }.toSet().toList() + + private fun getInstructionsListWithOffset(instructions: Collection): List = + instructions.map { InstructionCoverage(it.lineNumber, it.offset) }.toSet().toList() + + private fun getCoverageInfo(testSets: List): CoverageInfo { + val covered = mutableSetOf() + val missed = mutableSetOf() testSets.forEach { testSet -> testSet.executions.forEach inner@{ execution -> val coverage = execution.coverage ?: return@inner - coverage.coveredInstructions.forEach { covered.add(it.lineNumber) } - missed.add(coverage.missedInstructions.map { it.lineNumber }.toSet()) + covered.addAll(coverage.coveredInstructions.map { PyInstruction(it.lineNumber, it.id) }) + missed.addAll(coverage.missedInstructions.map { PyInstruction(it.lineNumber, it.id) }) } } - val coveredInstructionSets = getInstructionSetList(covered) - val missedInstructionSets = - if (missed.isEmpty()) - emptyList() - else - getInstructionSetList(missed.reduce { a, b -> a intersect b }) - - return CoverageInfo( - coveredInstructionSets, - missedInstructionSets - ) + missed -= covered + val info = when (this.configuration.coverageOutputFormat) { + CoverageOutputFormat.Lines -> { + val coveredLines = getLinesList(covered) + val filteredMissed = filterMissedLines(coveredLines, missed) + val missedLines = getLinesList(filteredMissed) + CoverageInfo(coveredLines, missedLines) + } + CoverageOutputFormat.Instructions -> CoverageInfo(getInstructionsListWithId(covered), getInstructionsListWithId(missed)) + CoverageOutputFormat.TopFrameInstructions -> { + val filteredCovered = covered.filter { it.id.toPair().second == 0L } + val filteredMissed = missed.filter { it.id.toPair().second == 0L } + + val coveredInstructions = getInstructionsListWithOffset(filteredCovered) + val missedInstructions = getInstructionsListWithOffset(filteredMissed) + + CoverageInfo(coveredInstructions, (missedInstructions.toSet() - coveredInstructions.toSet()).toList()) + } + } + return CoverageInfo(info.covered.toSet().toList(), info.notCovered.toSet().toList()) + } + + private fun toJson(coverageInfo: CoverageInfo): String { + val covered = coverageInfo.covered.map { toJson(it) } + val notCovered = coverageInfo.notCovered.map { toJson(it) } + return "{\"covered\": [${covered.joinToString(", ")}], \"notCovered\": [${notCovered.joinToString(", ")}]}" + } + + private fun toJson(coverageFormat: CoverageFormat): String { + return when (coverageFormat) { + is LineCoverage -> "{\"start\": ${coverageFormat.start}, \"end\": ${coverageFormat.end}}" + is InstructionCoverage -> "{\"line\": ${coverageFormat.line}, \"offset\": ${coverageFormat.offset}}" + is InstructionIdCoverage -> "{\"line\": ${coverageFormat.line}, \"id\": ${coverageFormat.id}}" + } } protected fun getStringCoverageInfo(testSets: List): String { - return jsonAdapter.toJson( - getCoverageInfo(testSets) - ) + val value = getCoverageInfo(testSets) + return toJson(value) } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt index 3030ed6870..41154c2baa 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt @@ -1,9 +1,9 @@ package org.utbot.python.evaluation -import org.utbot.framework.plugin.api.Coverage import org.utbot.python.FunctionArguments import org.utbot.python.PythonMethod import org.utbot.python.evaluation.serialization.MemoryDump +import org.utbot.python.evaluation.coverage.PyCoverage interface PythonCodeExecutor { val method: PythonMethod @@ -40,7 +40,7 @@ data class PythonEvaluationTimeout( data class PythonEvaluationSuccess( val isException: Boolean, - val coverage: Coverage, + val coverage: PyCoverage, val stateInit: MemoryDump, val stateBefore: MemoryDump, val stateAfter: MemoryDump, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index d404bd10c4..5b8fba4501 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -1,8 +1,6 @@ package org.utbot.python.evaluation import mu.KotlinLogging -import org.utbot.framework.plugin.api.Coverage -import org.utbot.framework.plugin.api.Instruction import org.utbot.python.FunctionArguments import org.utbot.python.PythonMethod import org.utbot.python.evaluation.serialization.ExecutionRequest @@ -12,14 +10,12 @@ import org.utbot.python.evaluation.serialization.FailExecution import org.utbot.python.evaluation.serialization.PythonExecutionResult import org.utbot.python.evaluation.serialization.SuccessExecution import org.utbot.python.evaluation.serialization.serializeObjects -import org.utbot.python.evaluation.utils.CoverageIdGenerator -import org.utbot.python.evaluation.utils.PyInstruction -import org.utbot.python.evaluation.utils.toPyInstruction -import org.utbot.python.framework.api.python.util.pythonAnyClassId +import org.utbot.python.evaluation.coverage.CoverageIdGenerator +import org.utbot.python.evaluation.coverage.PyCoverage +import org.utbot.python.evaluation.coverage.toPyInstruction import org.utbot.python.newtyping.PythonCallableTypeDescription import org.utbot.python.newtyping.pythonDescription import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation import org.utbot.python.newtyping.utils.isNamed import java.net.SocketException @@ -138,7 +134,7 @@ class PythonCodeSocketExecutor( val missedStatements = executionResult.missedStatements.mapNotNull { it.toPyInstruction() } PythonEvaluationSuccess( executionResult.isException, - calculateCoverage(statements, missedStatements), + PyCoverage(statements, missedStatements), stateInit, stateBefore, stateAfter, @@ -155,29 +151,6 @@ class PythonCodeSocketExecutor( } } - private fun calculateCoverage(statements: List, missedStatements: List): Coverage { - val covered = statements.filter { it !in missedStatements } - return Coverage( - coveredInstructions=covered.map { - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - it.lineNumber, - it.offset - ) - }, - instructionsCount = (covered.size + missedStatements.size).toLong(), - missedInstructions = missedStatements.map { - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - it.lineNumber, - it.offset - ) - } - ) - } - override fun stop() { pythonWorker.stopServer() } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt index 7e21ab744b..63a5e52944 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt @@ -1,8 +1,8 @@ package org.utbot.python.evaluation import mu.KotlinLogging -import org.utbot.python.evaluation.utils.PyInstruction -import org.utbot.python.evaluation.utils.toPyInstruction +import org.utbot.python.evaluation.coverage.PyInstruction +import org.utbot.python.evaluation.coverage.toPyInstruction import java.io.IOException import java.net.DatagramPacket import java.net.DatagramSocket diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 26ada603a3..264299816c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -11,7 +11,7 @@ import java.net.ServerSocket import java.net.Socket import java.net.SocketTimeoutException import org.apache.logging.log4j.LogManager -import org.utbot.python.evaluation.utils.PythonCoverageMode +import org.utbot.python.evaluation.coverage.PythonCoverageMode private val logger = KotlinLogging.logger {} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt new file mode 100644 index 0000000000..2f69428bd2 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt @@ -0,0 +1,109 @@ +package org.utbot.python.evaluation.coverage + +import org.utbot.framework.plugin.api.Coverage +import org.utbot.framework.plugin.api.Instruction +import org.utbot.python.PythonMethod +import org.utbot.python.framework.api.python.util.pythonAnyClassId +import org.utbot.python.newtyping.pythonTypeRepresentation + +enum class PythonCoverageMode { + Lines { + override fun toString() = "lines" + }, + + Instructions { + override fun toString() = "instructions" + } +} + +fun String.toPythonCoverageMode(): PythonCoverageMode? { + return when (this.lowercase()) { + "lines" -> PythonCoverageMode.Lines + "instructions" -> PythonCoverageMode.Instructions + else -> null + } +} + +data class PyInstruction( + val lineNumber: Int, + val offset: Long, + val depth: Int = 0, +) { + override fun toString(): String = listOf(lineNumber, offset, depth).joinToString(":") + + val id: Long = (offset to depth.toLong()).toCoverageId() + + constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong()) + constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().first, id.toPair().second.toInt()) +} + +fun String.toPyInstruction(): PyInstruction? { + val data = this.split(":") + when (data.size) { + 3 -> { + val line = data[0].toInt() + val offset = data[1].toLong() + val depth = data[2].toInt() + return PyInstruction(line, offset, depth) + } + 2 -> { + val line = data[0].toInt() + val offset = data[1].toLong() + return PyInstruction(line, offset) + } + 1 -> { + val line = data[0].toInt() + return PyInstruction(line) + } + else -> return null + } +} + +fun makeInstructions(coveredInstructions: Collection, method: PythonMethod): List { + return coveredInstructions.map { + Instruction( + method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, + method.methodSignature(), + it.lineNumber, + it.id + ) + } +} + +data class PyCoverage( + val coveredInstructions: List, + val missedInstructions: List +) + +fun calculateCoverage(coverage: PyCoverage, method: PythonMethod): Coverage { + return calculateCoverage(coverage.coveredInstructions, coverage.missedInstructions, method) +} + +fun calculateCoverage(statements: List, missedStatements: List, method: PythonMethod): Coverage { + val covered = statements.filter { it !in missedStatements } + return Coverage( + coveredInstructions=covered.map { + Instruction( + method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, + method.methodSignature(), + it.lineNumber, + it.id + ) + }, + instructionsCount = (covered.size + missedStatements.size).toLong(), + missedInstructions = missedStatements.map { + Instruction( + method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, + method.methodSignature(), + it.lineNumber, + it.id + ) + } + ) +} + +enum class CoverageOutputFormat { + Lines, + Instructions, + TopFrameInstructions; +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/CoverageIdGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageIdGenerator.kt similarity index 52% rename from utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/CoverageIdGenerator.kt rename to utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageIdGenerator.kt index 0e13ce16b7..b9248d03f1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/CoverageIdGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageIdGenerator.kt @@ -1,11 +1,11 @@ -package org.utbot.python.evaluation.utils +package org.utbot.python.evaluation.coverage import java.util.concurrent.atomic.AtomicLong object CoverageIdGenerator { - private const val lower_bound: Long = 1500_000_000 + private const val LOWER_BOUND: Long = 1500_000_000 - private val lastId: AtomicLong = AtomicLong(lower_bound) + private val lastId: AtomicLong = AtomicLong(LOWER_BOUND) fun createId(): String { return lastId.incrementAndGet().toString(radix = 16) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt index 74c577b3ed..9cc140a12a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt @@ -4,7 +4,6 @@ import com.squareup.moshi.JsonEncodingException import com.squareup.moshi.Moshi import com.squareup.moshi.adapters.PolymorphicJsonAdapterFactory import com.squareup.moshi.kotlin.reflect.KotlinJsonAdapterFactory -import org.utbot.python.evaluation.utils.PyInstruction object ExecutionResultDeserializer { private val moshi = Moshi.Builder() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt deleted file mode 100644 index c26e17cae4..0000000000 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/utils/Utils.kt +++ /dev/null @@ -1,57 +0,0 @@ -package org.utbot.python.evaluation.utils - -import org.utbot.framework.plugin.api.Instruction -import org.utbot.python.PythonMethod -import org.utbot.python.framework.api.python.util.pythonAnyClassId -import org.utbot.python.newtyping.pythonTypeRepresentation - -enum class PythonCoverageMode { - Lines { - override fun toString() = "lines" - }, - - Instructions { - override fun toString() = "instructions" - } -} - -fun String.toPythonCoverageMode(): PythonCoverageMode? { - return when (this.lowercase()) { - "lines" -> PythonCoverageMode.Lines - "instructions" -> PythonCoverageMode.Instructions - else -> null - } -} - -data class PyInstruction( - val lineNumber: Int, - val offset: Long -) { - constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong()) -} - -fun String.toPyInstruction(): PyInstruction? { - val data = this.split(":") - if (data.size == 2) { - val line = data[0].toInt() - val offset = data[1].toLong() - return PyInstruction(line, offset) - } else if (data.size == 1) { - val line = data[0].toInt() - return PyInstruction(line) - } - return null -} - -fun makeInstructions(coveredInstructions: Collection, method: PythonMethod): List { - return coveredInstructions.map { - val line = it.lineNumber - val offset = it.offset - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - line, - offset - ) - } -} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 00c3fb48e2..6f0a88dea2 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -1,11 +1,11 @@ package org.utbot.python.fuzzing import mu.KotlinLogging -import org.utbot.framework.plugin.api.Instruction import org.utbot.framework.plugin.api.UtError import org.utbot.fuzzer.FuzzedContext import org.utbot.fuzzing.* import org.utbot.fuzzing.utils.Trie +import org.utbot.python.evaluation.coverage.PyInstruction import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.fuzzing.provider.* @@ -35,7 +35,7 @@ class PythonMethodDescription( parameters: List, val concreteValues: Collection = emptyList(), val pythonTypeStorage: PythonTypeHintsStorage, - val tracer: Trie, + val tracer: Trie, val random: Random, val limitManager: TestGenerationLimitManager, val type: FunctionType, @@ -56,7 +56,7 @@ data class PythonExecutionResult( data class PythonFeedback( override val control: Control = Control.CONTINUE, - val result: Trie.Node = Trie.emptyNode(), + val result: Trie.Node = Trie.emptyNode(), val typeInferenceFeedback: InferredTypeFeedback = InvalidTypeFeedback, val fromCache: Boolean = false, ) : Feedback { From c9c1a0e3434190b6353f29070dc8b68ebf6bfdd3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 17 Oct 2023 10:54:57 +0300 Subject: [PATCH 046/144] Fix code style --- .../org/utbot/python/PythonTestGenerationProcessor.kt | 2 -- .../org/utbot/python/evaluation/coverage/CoverageApi.kt | 6 +++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 777dadae17..3e0edda17e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -55,8 +55,6 @@ abstract class PythonTestGenerationProcessor { ) } - - fun testGenerate(mypyStorage: MypyInfoBuild): List { val startTime = System.currentTimeMillis() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt index 2f69428bd2..880390a246 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt @@ -27,13 +27,13 @@ fun String.toPythonCoverageMode(): PythonCoverageMode? { data class PyInstruction( val lineNumber: Int, val offset: Long, - val depth: Int = 0, + val depth: Int, ) { override fun toString(): String = listOf(lineNumber, offset, depth).joinToString(":") val id: Long = (offset to depth.toLong()).toCoverageId() - constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong()) + constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), 0) constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().first, id.toPair().second.toInt()) } @@ -49,7 +49,7 @@ fun String.toPyInstruction(): PyInstruction? { 2 -> { val line = data[0].toInt() val offset = data[1].toLong() - return PyInstruction(line, offset) + return PyInstruction(line, offset, 0) } 1 -> { val line = data[0].toInt() From 99c66ea381bbb490219d823168f0250699ddd322 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 17 Oct 2023 13:18:28 +0300 Subject: [PATCH 047/144] Update cli arguments and coverage format --- .../python/PythonGenerateTestsCommand.kt | 11 +++--- .../utbot_executor/ut_tracer.py | 20 +++++++---- .../utbot_executor/utbot_executor/utils.py | 17 ++++----- .../python/PythonTestGenerationProcessor.kt | 18 +++++----- .../python/evaluation/coverage/CoverageApi.kt | 36 +++++++++++-------- .../utbot/python/evaluation/coverage/Utils.kt | 22 ++++++++++++ 6 files changed, 80 insertions(+), 44 deletions(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index 126f811e1b..c5b917bd7b 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -18,7 +18,6 @@ import org.utbot.python.TestFileInformation import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.code.PythonCode import org.utbot.python.evaluation.coverage.PythonCoverageMode -import org.utbot.python.evaluation.coverage.toPythonCoverageMode import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.codegen.model.Pytest import org.utbot.python.framework.codegen.model.Unittest @@ -127,9 +126,9 @@ class PythonGenerateTestsCommand : CliktCommand( private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "Do not send coverage during execution.") .flag(default = false) - private val coverageOutputFormat by option("--coverage-output-format", help = "Use Lines, Instructions or TopFrameInstructions.") - .choice("Instructions", "Lines", "TopFrameInstructions") - .default("Instructions") + private val coverageOutputFormat by option("--coverage-output-format", help = "Use LINES, INSTRUCTIONS or TOPFRAMEINSTRUCTIONS.") + .choice("INSTRUCTIONS", "LINES", "TOPFRAMEINSTRUCTIONS") + .default("LINES") private val testFramework: TestFramework get() = @@ -267,9 +266,9 @@ class PythonGenerateTestsCommand : CliktCommand( withMinimization = !doNotMinimize, isCanceled = { false }, runtimeExceptionTestsBehaviour = RuntimeExceptionTestsBehaviour.valueOf(runtimeExceptionTestsBehaviour), - coverageMeasureMode = coverageMeasureMode.toPythonCoverageMode() ?: PythonCoverageMode.Instructions, + coverageMeasureMode = PythonCoverageMode.parse(coverageMeasureMode), sendCoverageContinuously = !doNotSendCoverageContinuously, - coverageOutputFormat = CoverageOutputFormat.valueOf(coverageOutputFormat), + coverageOutputFormat = CoverageOutputFormat.parse(coverageOutputFormat), ) val processor = PythonCliProcessor( diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index c62ed2278e..2e66524e5c 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -77,17 +77,19 @@ def __init__( self.ignore_dirs = ignore_dirs self.sender = sender self.mode = mode - self.depth = 0 + self.global_offset = 0 + self.local_offset = 0 + self.offsets = {} def runfunc(self, func, /, *args, **kw): result = None - self.depth = 0 + self.global_offset = 0 sys.settrace(self.globaltrace) try: result = func(*args, **kw) finally: sys.settrace(None) - self.depth = 0 + self.global_offset = 0 return result def coverage(self, filename: str) -> typing.List[int]: @@ -98,10 +100,12 @@ def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename lineno = frame.f_lineno if pathlib.Path(filename) == self.tested_file and lineno is not None: - offset = lineno * 2 + offset = 0 if why == "opcode": offset = frame.f_lasti - key = UtInstruction(lineno, offset, self.depth) + self.local_offset = offset + key = UtInstruction(lineno, offset, self.global_offset) + print(key) if key not in self.counts: message = key.serialize() try: @@ -112,7 +116,11 @@ def localtrace_count(self, frame, why, arg): return self.localtrace def globaltrace_lt(self, frame, why, arg): - self.depth += 1 + print("Global", frame, id(frame), frame.f_lasti, self.global_offset) + if frame not in self.offsets: + self.offsets[frame] = self.global_offset + self.local_offset + self.global_offset = self.offsets[frame] + if why == 'call': if self.mode == TraceMode.Instructions: frame.f_trace_opcodes = True diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index b815e45350..d19f940e87 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -16,13 +16,13 @@ class TraceMode(enum.Enum): class UtInstruction: line: int offset: int - depth: int + global_offset: int def serialize(self) -> str: - return ":".join(map(str, [self.line, self.offset, self.depth])) + return ":".join(map(str, [self.line, self.offset, self.global_offset])) def __hash__(self): - return hash((self.line, self.offset, self.depth)) + return hash((self.line, self.offset, self.global_offset)) @contextmanager @@ -37,13 +37,13 @@ def suppress_stdout(): def get_instructions(obj: object, start_line: int) -> typing.Iterator[UtInstruction]: - def inner_get_instructions(x, current_line, depth): + def inner_get_instructions(x, current_line, offset): for i, el in enumerate(dis.get_instructions(x)): if el.starts_line is not None: current_line = el.starts_line - yield UtInstruction(current_line, el.offset, depth) + yield UtInstruction(current_line, el.offset, el.offset + offset) if any(t in str(type(el.argval)) for t in [""]): - inner_get_instructions(el.argval, current_line, depth + 1) + inner_get_instructions(el.argval, current_line, el.offset + offset) return inner_get_instructions(obj, start_line, 0) @@ -52,8 +52,5 @@ def filter_instructions( mode: TraceMode = TraceMode.Instructions, ) -> list[UtInstruction]: if mode == TraceMode.Lines: - unique_line_instructions: set[UtInstruction] = set() - for it in instructions: - unique_line_instructions.add(UtInstruction(it.line, it.line * 2, it.depth)) - return list({UtInstruction(it.line, 2 * it.line, it.depth) for it in instructions}) + return list({UtInstruction(it.line, 0, 0) for it in instructions}) return list(instructions) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 3e0edda17e..b6d8331c67 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -286,19 +286,21 @@ abstract class PythonTestGenerationProcessor { } } - data class InstructionIdCoverage(val line: Int, val id: Long) : CoverageFormat() { + data class InstructionIdCoverage(val line: Int, val offset: Long, val globalOffset: Long) : CoverageFormat() { override fun equals(other: Any?): Boolean { - if (other is InstructionCoverage) { - return line == other.line && id == other.offset + if (other is InstructionIdCoverage) { + return line == other.line && offset == other.offset && globalOffset == other.globalOffset } return false } override fun hashCode(): Int { var result = line - result = 31 * result + id.hashCode() + result = 31 * result + offset.hashCode() + result = 31 * result + globalOffset.hashCode() return result } + } data class CoverageInfo( @@ -324,7 +326,7 @@ abstract class PythonTestGenerationProcessor { missed.filterNot { missedInstruction -> covered.any { it.start <= missedInstruction.lineNumber && missedInstruction.lineNumber <= it.end } } private fun getInstructionsListWithId(instructions: Collection): List = - instructions.map { InstructionIdCoverage(it.lineNumber, it.id) }.toSet().toList() + instructions.map { InstructionIdCoverage(it.lineNumber, it.offset, it.globalOffset) }.toSet().toList() private fun getInstructionsListWithOffset(instructions: Collection): List = instructions.map { InstructionCoverage(it.lineNumber, it.offset) }.toSet().toList() @@ -349,8 +351,8 @@ abstract class PythonTestGenerationProcessor { } CoverageOutputFormat.Instructions -> CoverageInfo(getInstructionsListWithId(covered), getInstructionsListWithId(missed)) CoverageOutputFormat.TopFrameInstructions -> { - val filteredCovered = covered.filter { it.id.toPair().second == 0L } - val filteredMissed = missed.filter { it.id.toPair().second == 0L } + val filteredCovered = covered.filter { it.id.toPair().first == it.id.toPair().second } + val filteredMissed = missed.filter { it.id.toPair().first == it.id.toPair().second } val coveredInstructions = getInstructionsListWithOffset(filteredCovered) val missedInstructions = getInstructionsListWithOffset(filteredMissed) @@ -371,7 +373,7 @@ abstract class PythonTestGenerationProcessor { return when (coverageFormat) { is LineCoverage -> "{\"start\": ${coverageFormat.start}, \"end\": ${coverageFormat.end}}" is InstructionCoverage -> "{\"line\": ${coverageFormat.line}, \"offset\": ${coverageFormat.offset}}" - is InstructionIdCoverage -> "{\"line\": ${coverageFormat.line}, \"id\": ${coverageFormat.id}}" + is InstructionIdCoverage -> "{\"line\": ${coverageFormat.line}, \"offset\": ${coverageFormat.offset}, \"globalOffset\": ${coverageFormat.globalOffset}}" } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt index 880390a246..f6b840e662 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt @@ -13,28 +13,28 @@ enum class PythonCoverageMode { Instructions { override fun toString() = "instructions" - } -} + }; -fun String.toPythonCoverageMode(): PythonCoverageMode? { - return when (this.lowercase()) { - "lines" -> PythonCoverageMode.Lines - "instructions" -> PythonCoverageMode.Instructions - else -> null + companion object { + fun parse(name: String): PythonCoverageMode { + return PythonCoverageMode.values().first { + it.name.lowercase() == name.lowercase() + } + } } } data class PyInstruction( val lineNumber: Int, val offset: Long, - val depth: Int, + val globalOffset: Long, ) { - override fun toString(): String = listOf(lineNumber, offset, depth).joinToString(":") + override fun toString(): String = listOf(lineNumber, offset, globalOffset).joinToString(":") - val id: Long = (offset to depth.toLong()).toCoverageId() + val id: Long = (offset to globalOffset).toCoverageId() constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), 0) - constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().first, id.toPair().second.toInt()) + constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().first, id.toPair().second) } fun String.toPyInstruction(): PyInstruction? { @@ -43,8 +43,8 @@ fun String.toPyInstruction(): PyInstruction? { 3 -> { val line = data[0].toInt() val offset = data[1].toLong() - val depth = data[2].toInt() - return PyInstruction(line, offset, depth) + val globalOffset = data[2].toLong() + return PyInstruction(line, offset, globalOffset) } 2 -> { val line = data[0].toInt() @@ -106,4 +106,12 @@ enum class CoverageOutputFormat { Lines, Instructions, TopFrameInstructions; -} \ No newline at end of file + + companion object { + fun parse(name: String): CoverageOutputFormat { + return CoverageOutputFormat.values().first { + it.name.lowercase() == name.lowercase() + } + } + } +} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt new file mode 100644 index 0000000000..62b1d19afb --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt @@ -0,0 +1,22 @@ +package org.utbot.python.evaluation.coverage + +import kotlin.math.ceil +import kotlin.math.max +import kotlin.math.min +import kotlin.math.sqrt + +fun Long.toPair(): Pair { + val n = ceil(sqrt(this + 2.0)).toLong() - 1 + val k = this - (n * n - 1) + return if (k <= n + 1) { + n + 1 to k + } else { + k to n + 1 + } +} + +fun Pair.toCoverageId(): Long { + val n = max(this.first, this.second) - 1 + val k = min(this.first, this.second) + return (n * n - 1) + k +} \ No newline at end of file From 09c730e522e9dcc7322ac8fcc4ec1cce4f2c48d5 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 19 Oct 2023 16:43:27 +0300 Subject: [PATCH 048/144] Remove inner frames logic --- .../python/PythonGenerateTestsCommand.kt | 4 +-- .../utbot_executor/utbot_executor/executor.py | 9 ++--- .../utbot_executor/ut_tracer.py | 29 +++++++-------- .../utbot_executor/utbot_executor/utils.py | 26 +++++++------- .../python/PythonTestGenerationProcessor.kt | 35 ++----------------- .../python/evaluation/coverage/CoverageApi.kt | 21 ++++++----- .../fuzzing/provider/DictValueProvider.kt | 5 ++- 7 files changed, 45 insertions(+), 84 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index c5b917bd7b..e8dbee86a3 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -126,8 +126,8 @@ class PythonGenerateTestsCommand : CliktCommand( private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "Do not send coverage during execution.") .flag(default = false) - private val coverageOutputFormat by option("--coverage-output-format", help = "Use LINES, INSTRUCTIONS or TOPFRAMEINSTRUCTIONS.") - .choice("INSTRUCTIONS", "LINES", "TOPFRAMEINSTRUCTIONS") + private val coverageOutputFormat by option("--coverage-output-format", help = "Use LINES, INSTRUCTIONS (only from function frame).") + .choice("INSTRUCTIONS", "LINES") .default("LINES") private val testFramework: TestFramework diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 94c6009302..01fdb290d4 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -6,6 +6,7 @@ import pathlib import sys import traceback +import types from typing import Any, Callable, Dict, Iterable, List, Tuple from utbot_executor.deep_serialization.deep_serialization import serialize_memory_dump, \ @@ -96,7 +97,7 @@ def run_function(self, request: ExecutionRequest) -> ExecutionResponse: importlib.import_module(request.function_module), request.function_name ) - if not callable(function): + if not isinstance(function, types.FunctionType): return ExecutionFailResponse( "fail", f"Invalid function path {request.function_module}.{request.function_name}" @@ -165,7 +166,7 @@ def _serialize_state( def _run_calculate_function_value( - function: Callable, + function: types.FunctionType, args: List[Any], kwargs: Dict[str, Any], fullpath: str, @@ -181,7 +182,7 @@ def _run_calculate_function_value( __is_exception = False _, __start = inspect.getsourcelines(function) - __all_code_stmts = filter_instructions(get_instructions(function, __start), tracer.mode) + __all_code_stmts = filter_instructions(get_instructions(function.__code__), tracer.mode) __tracer = tracer @@ -195,7 +196,7 @@ def _run_calculate_function_value( logging.debug("Coverage: %s", __tracer.counts) logging.debug("Fullpath: %s", fullpath) - __stmts_with_def = [UtInstruction(__start, 0, 0)] + list(__tracer.counts.keys()) + __stmts_with_def = [UtInstruction(__start, 0, True)] + list(__tracer.counts.keys()) __missed_filtered = [x for x in __all_code_stmts if x not in __stmts_with_def] logging.debug("Covered lines: %s", __stmts_with_def) logging.debug("Missed lines: %s", __missed_filtered) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 2e66524e5c..eb0d6d5b41 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -77,19 +77,15 @@ def __init__( self.ignore_dirs = ignore_dirs self.sender = sender self.mode = mode - self.global_offset = 0 - self.local_offset = 0 - self.offsets = {} def runfunc(self, func, /, *args, **kw): result = None - self.global_offset = 0 sys.settrace(self.globaltrace) + self.f_code = func.__code__ try: result = func(*args, **kw) finally: sys.settrace(None) - self.global_offset = 0 return result def coverage(self, filename: str) -> typing.List[int]: @@ -100,12 +96,11 @@ def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename lineno = frame.f_lineno if pathlib.Path(filename) == self.tested_file and lineno is not None: - offset = 0 - if why == "opcode": + if self.mode == TraceMode.Instructions and frame.f_lasti is not None: offset = frame.f_lasti - self.local_offset = offset - key = UtInstruction(lineno, offset, self.global_offset) - print(key) + else: + offset = 0 + key = UtInstruction(lineno, offset, frame.f_code == self.f_code) if key not in self.counts: message = key.serialize() try: @@ -116,16 +111,11 @@ def localtrace_count(self, frame, why, arg): return self.localtrace def globaltrace_lt(self, frame, why, arg): - print("Global", frame, id(frame), frame.f_lasti, self.global_offset) - if frame not in self.offsets: - self.offsets[frame] = self.global_offset + self.local_offset - self.global_offset = self.offsets[frame] - if why == 'call': if self.mode == TraceMode.Instructions: frame.f_trace_opcodes = True frame.f_trace_lines = False - filename = frame.f_code.co_filename + filename = frame.f_globals.get('__file__', None) if filename and all(not filename.startswith(d + os.sep) for d in self.ignore_dirs): modulename = _modname(filename) if modulename is not None: @@ -142,13 +132,18 @@ def runfunc(self, func, /, *args, **kw): return func(*args, **kw) +def g1(x): + return x * 2 + + def f(x): def g(x): xs = [[j for j in range(i)] for i in range(10)] return x * 2 - return x * g(x) + 2 + return g1(x) * g(x) + 2 if __name__ == "__main__": tracer = UtTracer(pathlib.Path(__file__), [], PureSender()) tracer.runfunc(f, 2) + print(tracer.counts) \ No newline at end of file diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py index d19f940e87..d3f6d14700 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/utils.py @@ -1,10 +1,11 @@ +from __future__ import annotations import dataclasses -import dis import enum import os import sys import typing from contextlib import contextmanager +from types import CodeType class TraceMode(enum.Enum): @@ -16,13 +17,13 @@ class TraceMode(enum.Enum): class UtInstruction: line: int offset: int - global_offset: int + from_main_frame: bool def serialize(self) -> str: - return ":".join(map(str, [self.line, self.offset, self.global_offset])) + return ":".join(map(str, [self.line, self.offset, int(self.from_main_frame)])) def __hash__(self): - return hash((self.line, self.offset, self.global_offset)) + return hash((self.line, self.offset, self.from_main_frame)) @contextmanager @@ -36,15 +37,8 @@ def suppress_stdout(): sys.stdout = old_stdout -def get_instructions(obj: object, start_line: int) -> typing.Iterator[UtInstruction]: - def inner_get_instructions(x, current_line, offset): - for i, el in enumerate(dis.get_instructions(x)): - if el.starts_line is not None: - current_line = el.starts_line - yield UtInstruction(current_line, el.offset, el.offset + offset) - if any(t in str(type(el.argval)) for t in [""]): - inner_get_instructions(el.argval, current_line, el.offset + offset) - return inner_get_instructions(obj, start_line, 0) +def get_instructions(obj: CodeType) -> list[UtInstruction]: + return [UtInstruction(line, start_offset, True) for start_offset, _, line in obj.co_lines() if None not in {start_offset, line}] def filter_instructions( @@ -52,5 +46,9 @@ def filter_instructions( mode: TraceMode = TraceMode.Instructions, ) -> list[UtInstruction]: if mode == TraceMode.Lines: - return list({UtInstruction(it.line, 0, 0) for it in instructions}) + return list({UtInstruction(it.line, 0, True) for it in instructions}) return list(instructions) + + +def get_lines(instructions: typing.Iterable[UtInstruction]) -> list[int]: + return [instruction.line for instruction in filter_instructions(instructions)] diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index b6d8331c67..243ecd7111 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -12,7 +12,6 @@ import org.utbot.framework.plugin.api.util.withUtContext import org.utbot.python.code.PythonCode import org.utbot.python.evaluation.coverage.CoverageOutputFormat import org.utbot.python.evaluation.coverage.PyInstruction -import org.utbot.python.evaluation.coverage.toPair import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonMethodId import org.utbot.python.framework.api.python.PythonModel @@ -286,23 +285,6 @@ abstract class PythonTestGenerationProcessor { } } - data class InstructionIdCoverage(val line: Int, val offset: Long, val globalOffset: Long) : CoverageFormat() { - override fun equals(other: Any?): Boolean { - if (other is InstructionIdCoverage) { - return line == other.line && offset == other.offset && globalOffset == other.globalOffset - } - return false - } - - override fun hashCode(): Int { - var result = line - result = 31 * result + offset.hashCode() - result = 31 * result + globalOffset.hashCode() - return result - } - - } - data class CoverageInfo( val covered: List, val notCovered: List, @@ -325,10 +307,7 @@ abstract class PythonTestGenerationProcessor { private fun filterMissedLines(covered: Collection, missed: Collection): List = missed.filterNot { missedInstruction -> covered.any { it.start <= missedInstruction.lineNumber && missedInstruction.lineNumber <= it.end } } - private fun getInstructionsListWithId(instructions: Collection): List = - instructions.map { InstructionIdCoverage(it.lineNumber, it.offset, it.globalOffset) }.toSet().toList() - - private fun getInstructionsListWithOffset(instructions: Collection): List = + private fun getInstructionsList(instructions: Collection): List = instructions.map { InstructionCoverage(it.lineNumber, it.offset) }.toSet().toList() private fun getCoverageInfo(testSets: List): CoverageInfo { @@ -349,16 +328,7 @@ abstract class PythonTestGenerationProcessor { val missedLines = getLinesList(filteredMissed) CoverageInfo(coveredLines, missedLines) } - CoverageOutputFormat.Instructions -> CoverageInfo(getInstructionsListWithId(covered), getInstructionsListWithId(missed)) - CoverageOutputFormat.TopFrameInstructions -> { - val filteredCovered = covered.filter { it.id.toPair().first == it.id.toPair().second } - val filteredMissed = missed.filter { it.id.toPair().first == it.id.toPair().second } - - val coveredInstructions = getInstructionsListWithOffset(filteredCovered) - val missedInstructions = getInstructionsListWithOffset(filteredMissed) - - CoverageInfo(coveredInstructions, (missedInstructions.toSet() - coveredInstructions.toSet()).toList()) - } + CoverageOutputFormat.Instructions -> CoverageInfo(getInstructionsList(covered), getInstructionsList(missed)) } return CoverageInfo(info.covered.toSet().toList(), info.notCovered.toSet().toList()) } @@ -373,7 +343,6 @@ abstract class PythonTestGenerationProcessor { return when (coverageFormat) { is LineCoverage -> "{\"start\": ${coverageFormat.start}, \"end\": ${coverageFormat.end}}" is InstructionCoverage -> "{\"line\": ${coverageFormat.line}, \"offset\": ${coverageFormat.offset}}" - is InstructionIdCoverage -> "{\"line\": ${coverageFormat.line}, \"offset\": ${coverageFormat.offset}, \"globalOffset\": ${coverageFormat.globalOffset}}" } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt index f6b840e662..abc3e30b7a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt @@ -27,14 +27,14 @@ enum class PythonCoverageMode { data class PyInstruction( val lineNumber: Int, val offset: Long, - val globalOffset: Long, + val fromMainFrame: Boolean, ) { - override fun toString(): String = listOf(lineNumber, offset, globalOffset).joinToString(":") + override fun toString(): String = listOf(lineNumber, offset, fromMainFrame).joinToString(":") - val id: Long = (offset to globalOffset).toCoverageId() + val id: Long = (lineNumber.toLong() to offset).toCoverageId() - constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), 0) - constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().first, id.toPair().second) + constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), true) + constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().second, true) } fun String.toPyInstruction(): PyInstruction? { @@ -43,13 +43,13 @@ fun String.toPyInstruction(): PyInstruction? { 3 -> { val line = data[0].toInt() val offset = data[1].toLong() - val globalOffset = data[2].toLong() - return PyInstruction(line, offset, globalOffset) + val fromMainFrame = data[2].toInt() != 0 + return PyInstruction(line, offset, fromMainFrame) } 2 -> { val line = data[0].toInt() val offset = data[1].toLong() - return PyInstruction(line, offset, 0) + return PyInstruction(line, offset, true) } 1 -> { val line = data[0].toInt() @@ -80,7 +80,7 @@ fun calculateCoverage(coverage: PyCoverage, method: PythonMethod): Coverage { } fun calculateCoverage(statements: List, missedStatements: List, method: PythonMethod): Coverage { - val covered = statements.filter { it !in missedStatements } + val covered = statements.filter { it !in missedStatements && it.fromMainFrame } return Coverage( coveredInstructions=covered.map { Instruction( @@ -104,8 +104,7 @@ fun calculateCoverage(statements: List, missedStatements: List - val items = mapOf(v[0].tree to v[1].tree).toMutableMap() + construct = Routine.Create(emptyList()) { v -> PythonFuzzedValue( - PythonTree.DictNode(items), + PythonTree.DictNode(mutableMapOf()), "%var% = ${type.pythonTypeRepresentation()}" ) }, From 5f7ca5d4993f6db36626f4bdada8fe1adc4fc6f7 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 20 Oct 2023 11:34:07 +0300 Subject: [PATCH 049/144] Add setup ideVersion --- .../workflows/publish-plugin-from-branch.yml | 2 +- gradle.properties | 10 +++-- utbot-intellij-go/build.gradle.kts | 37 ++++++++++++++---- utbot-intellij-js/build.gradle.kts | 37 ++++++++++++++---- utbot-intellij-main/build.gradle.kts | 31 ++++++++++----- utbot-intellij-python/build.gradle.kts | 37 ++++++++++++++---- utbot-intellij/build.gradle.kts | 39 +++++++++++++------ utbot-ui-commons/build.gradle.kts | 35 +++++++++++++++-- 8 files changed, 179 insertions(+), 49 deletions(-) diff --git a/.github/workflows/publish-plugin-from-branch.yml b/.github/workflows/publish-plugin-from-branch.yml index 0bfc04d289..b6c191deb9 100644 --- a/.github/workflows/publish-plugin-from-branch.yml +++ b/.github/workflows/publish-plugin-from-branch.yml @@ -49,7 +49,7 @@ jobs: - plugin_type: IU extra_options: "-PideType=IU -PprojectType=Ultimate" - plugin_type: PY - extra_options: "-PideType=PY -PprojectType=Ultimate -PideVersion=2023.2" + extra_options: "-PideType=PY -PprojectType=Ultimate" runs-on: ubuntu-20.04 container: unittestbot/java-env:java17-zulu-jdk-gradle7.6.1-kotlinc1.8.0 steps: diff --git a/gradle.properties b/gradle.properties index 4d5506cf69..559737210c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,7 @@ kotlin.code.style=official -#Project Type +# === IDE settings === +# Project Type # - Community: for Java + Spring + Python (IC supported features) # - Ultimate: for Java + Spring + Python (IU supported features) + JavaScript + Go projectType=Ultimate @@ -11,9 +12,8 @@ ultimateEdition=Ultimate # IU, IC, PC, PY # IC for AndroidStudio ideType=IC -ideVersion=232.8660.185 -#ideVersion=2023.2 -pycharmIdeVersion=2023.2 +ideaVersion=232.8660.185 +pycharmVersion=2023.2 # ALL, NOJS buildType=NOJS @@ -22,6 +22,7 @@ pythonIde=IC,IU,PC,PY jsIde=IU,PY jsBuild=ALL goIde=IU,GO +androidStudioIde=IC # In order to run Android Studio instead of IntelliJ Community, specify the path to your Android Studio installation #androidStudioPath=your_path_to_android_studio @@ -32,6 +33,7 @@ pythonCommunityPluginVersion=232.8660.185 pythonUltimatePluginVersion=232.8660.185 # Version numbers: https://plugins.jetbrains.com/plugin/9568-go/versions goPluginVersion=232.8660.142 +# === IDE settings === junit5Version=5.8.2 junit4Version=4.13.2 diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index 0124225da5..17d5bb616e 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -1,22 +1,45 @@ -val projectType: String by rootProject -val communityEdition: String by rootProject -val ultimateEdition: String by rootProject val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject -val ideType: String? by rootProject -val ideVersion: String by rootProject val kotlinPluginVersion: String by rootProject + +// === IDE settings === +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject + +val ideType: String by rootProject +val androidStudioPath: String? by rootProject + +val ideaVersion: String? by rootProject +val pycharmVersion: String? by rootProject +val goVersion: String? by rootProject + +val javaIde: String? by rootProject +val pythonIde: String? by rootProject +val jsIde: String? by rootProject +val goIde: String? by rootProject + +val ideVersion = when(ideType) { + "PC", "PY" -> pycharmVersion + "GO" -> goVersion + else -> ideaVersion +} + val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val goPluginVersion: String? by rootProject -val androidStudioPath: String? by rootProject + +// https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file +val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" + +project.tasks.asMap["runIde"]?.enabled = false +// === IDE settings === plugins { id("org.jetbrains.intellij") version "1.13.1" } -project.tasks.asMap["runIde"]?.enabled = false tasks { compileKotlin { diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index e3d6474ca1..8a4ff7e969 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -1,21 +1,44 @@ -val projectType: String by rootProject -val communityEdition: String by rootProject -val ultimateEdition: String by rootProject val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject -val ideType: String? by rootProject -val ideVersion: String? by rootProject + +// === IDE settings === +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject + +val ideType: String by rootProject +val androidStudioPath: String? by rootProject + +val ideaVersion: String? by rootProject +val pycharmVersion: String? by rootProject +val goVersion: String? by rootProject + +val javaIde: String? by rootProject +val pythonIde: String? by rootProject +val jsIde: String? by rootProject +val goIde: String? by rootProject + +val ideVersion = when(ideType) { + "PC", "PY" -> pycharmVersion + "GO" -> goVersion + else -> ideaVersion +} + val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val goPluginVersion: String? by rootProject -val androidStudioPath: String? by rootProject + +// https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file +val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" + +project.tasks.asMap["runIde"]?.enabled = false +// === IDE settings === plugins { id("org.jetbrains.intellij") version "1.13.1" } -project.tasks.asMap["runIde"]?.enabled = false tasks { compileKotlin { diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 1461820031..25820bbf08 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -1,27 +1,40 @@ +val semVer: String? by rootProject +val junit5Version: String by rootProject +val junit4PlatformVersion: String by rootProject + +// === IDE settings === val projectType: String by rootProject val communityEdition: String by rootProject val ultimateEdition: String by rootProject -val ideType: String? by rootProject -val ideVersion: String? by rootProject -val pythonCommunityPluginVersion: String? by rootProject -val pythonUltimatePluginVersion: String? by rootProject -val goPluginVersion: String? by rootProject +val ideType: String by rootProject +val androidStudioPath: String? by rootProject + +val ideaVersion: String? by rootProject +val pycharmVersion: String? by rootProject +val goVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject val jsIde: String? by rootProject val goIde: String? by rootProject -val semVer: String? by rootProject -val androidStudioPath: String? by rootProject +val ideVersion = when(ideType) { + "PC", "PY" -> pycharmVersion + "GO" -> goVersion + else -> ideaVersion +} -val junit5Version: String by rootProject -val junit4PlatformVersion: String by rootProject +val pythonCommunityPluginVersion: String? by rootProject +val pythonUltimatePluginVersion: String? by rootProject +val goPluginVersion: String? by rootProject // https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" +project.tasks.asMap["runIde"]?.enabled = false +// === IDE settings === + plugins { id("org.jetbrains.intellij") version "1.13.1" } diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index 2c91a5662c..fe655b97e2 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -1,21 +1,44 @@ -val projectType: String by rootProject -val communityEdition: String by rootProject -val ultimateEdition: String by rootProject val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject -val ideType: String? by rootProject -val ideVersion: String by rootProject + +// === IDE settings === +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject + +val ideType: String by rootProject +val androidStudioPath: String? by rootProject + +val ideaVersion: String? by rootProject +val pycharmVersion: String? by rootProject +val goVersion: String? by rootProject + +val javaIde: String? by rootProject +val pythonIde: String? by rootProject +val jsIde: String? by rootProject +val goIde: String? by rootProject + +val ideVersion = when(ideType) { + "PC", "PY" -> pycharmVersion + "GO" -> goVersion + else -> ideaVersion +} + val pythonCommunityPluginVersion: String? by rootProject val pythonUltimatePluginVersion: String? by rootProject val goPluginVersion: String? by rootProject -val androidStudioPath: String? by rootProject + +// https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file +val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" + +project.tasks.asMap["runIde"]?.enabled = false +// === IDE settings === plugins { id("org.jetbrains.intellij") version "1.13.1" } -project.tasks.asMap["runIde"]?.enabled = false tasks { compileKotlin { diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index 6763a526a0..ec42b9bab0 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -1,31 +1,48 @@ -val projectType: String by rootProject -val communityEdition: String by rootProject -val ultimateEdition: String by rootProject - val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject -val ideType: String? by rootProject -val ideVersion: String? by rootProject -val pythonCommunityPluginVersion: String? by rootProject -val pythonUltimatePluginVersion: String? by rootProject -val goPluginVersion: String? by rootProject - val sootVersion: String? by rootProject val kryoVersion: String? by rootProject val rdVersion: String? by rootProject val semVer: String? by rootProject -val androidStudioPath: String? by rootProject val junit5Version: String by rootProject val junit4PlatformVersion: String by rootProject +// === IDE settings === +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject + +val ideType: String by rootProject +val androidStudioPath: String? by rootProject + +val ideaVersion: String? by rootProject +val pycharmVersion: String? by rootProject +val goVersion: String? by rootProject + +val javaIde: String? by rootProject +val pythonIde: String? by rootProject +val jsIde: String? by rootProject +val goIde: String? by rootProject + +val ideVersion = when(ideType) { + "PC", "PY" -> pycharmVersion + "GO" -> goVersion + else -> ideaVersion +} + +val pythonCommunityPluginVersion: String? by rootProject +val pythonUltimatePluginVersion: String? by rootProject +val goPluginVersion: String? by rootProject + // https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" project.tasks.asMap["runIde"]?.enabled = false +// === IDE settings === plugins { id("org.jetbrains.intellij") version "1.13.1" diff --git a/utbot-ui-commons/build.gradle.kts b/utbot-ui-commons/build.gradle.kts index c0d622a353..434df817e2 100644 --- a/utbot-ui-commons/build.gradle.kts +++ b/utbot-ui-commons/build.gradle.kts @@ -1,14 +1,43 @@ val kotlinLoggingVersion: String by rootProject -val ideType: String by rootProject -val ideVersion: String by rootProject val semVer: String? by rootProject val slf4jVersion: String by rootProject + +// === IDE settings === +val projectType: String by rootProject +val communityEdition: String by rootProject +val ultimateEdition: String by rootProject + +val ideType: String by rootProject val androidStudioPath: String? by rootProject +val ideaVersion: String? by rootProject +val pycharmVersion: String? by rootProject +val goVersion: String? by rootProject + +val javaIde: String? by rootProject +val pythonIde: String? by rootProject +val jsIde: String? by rootProject +val goIde: String? by rootProject + +val ideVersion = when(ideType) { + "PC", "PY" -> pycharmVersion + "GO" -> goVersion + else -> ideaVersion +} + +val pythonCommunityPluginVersion: String? by rootProject +val pythonUltimatePluginVersion: String? by rootProject +val goPluginVersion: String? by rootProject + +// https://plugins.jetbrains.com/docs/intellij/android-studio.html#configuring-the-plugin-pluginxml-file +val ideTypeOrAndroidStudio = if (androidStudioPath == null) ideType else "IC" + +project.tasks.asMap["runIde"]?.enabled = false +// === IDE settings === + plugins { id("org.jetbrains.intellij") version "1.13.1" } -project.tasks.asMap["runIde"]?.enabled = false intellij { version.set(ideVersion) From 5316143fc6ac8519f4717fc29966a26094ada833 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 20 Oct 2023 11:45:26 +0300 Subject: [PATCH 050/144] Update test configuration and matrix class --- .../samples/samples/structures/matrix.py | 19 ++++--- utbot-python/samples/test_configuration.json | 51 ++++++++++++++----- 2 files changed, 50 insertions(+), 20 deletions(-) diff --git a/utbot-python/samples/samples/structures/matrix.py b/utbot-python/samples/samples/structures/matrix.py index 300851f49c..eda69179b9 100644 --- a/utbot-python/samples/samples/structures/matrix.py +++ b/utbot-python/samples/samples/structures/matrix.py @@ -10,15 +10,16 @@ def __init__(self, description): class Matrix: def __init__(self, elements: List[List[float]]): - self.dim = ( - len(elements), - max(len(elements[i]) for i in range(len(elements))) - if len(elements) > 0 else 0 + assert all(len(elements[i-1]) == len(row) for i, row in enumerate(elements)) + self.elements = elements + + @property + def dim(self) -> tuple[int, int]: + return ( + len(self.elements), + max(len(self.elements[i]) for i in range(len(self.elements))) + if len(self.elements) > 0 else 0 ) - self.elements = [ - row + [0] * (self.dim[1] - len(row)) - for row in elements - ] def __repr__(self): return str(self.elements) @@ -59,6 +60,8 @@ def __matmul__(self, other): for k in range(self.dim[1]) ) return Matrix(result) + else: + MatrixException("Wrong dimensions") else: raise MatrixException("Wrong Type") diff --git a/utbot-python/samples/test_configuration.json b/utbot-python/samples/test_configuration.json index 41a64e6f28..41af37e97b 100644 --- a/utbot-python/samples/test_configuration.json +++ b/utbot-python/samples/test_configuration.json @@ -70,7 +70,7 @@ "classes": ["Dictionary"], "methods": ["translate"], "timeout": 10, - "coverage": 89 + "coverage": 88 } ] }, @@ -149,10 +149,16 @@ "name": "dicts", "groups": [ { - "classes": null, - "methods": null, + "classes": ["Dictionary"], + "methods": ["__eq__"], "timeout": 10, "coverage": 100 + }, + { + "classes": ["Dictionary"], + "methods": ["translate"], + "timeout": 20, + "coverage": 100 } ] }, @@ -196,7 +202,7 @@ "classes": null, "methods": null, "timeout": 10, - "coverage": 100 + "coverage": 75 } ] }, @@ -234,7 +240,7 @@ "classes": null, "methods": null, "timeout": 180, - "coverage": 94 + "coverage": 83 } ] }, @@ -343,7 +349,7 @@ "classes": null, "methods": null, "timeout": 180, - "coverage": 100 + "coverage": 97 } ] } @@ -465,9 +471,24 @@ "groups": [ { "classes": null, - "methods": null, + "methods": [ + "concat", + "concat_pair", + "string_constants", + "contains", + "const_contains", + "to_str", + "starts_with", + "join_str" + ], "timeout": 160, "coverage": 100 + }, + { + "classes": null, + "methods": ["separated_str"], + "timeout": 60, + "coverage": 100 } ] } @@ -499,7 +520,7 @@ "classes": ["Graph"], "methods": null, "timeout": 150, - "coverage": 100 + "coverage": 64 } ] }, @@ -521,7 +542,7 @@ "classes": null, "methods": null, "timeout": 120, - "coverage": 100 + "coverage": 96 } ] }, @@ -530,8 +551,14 @@ "groups": [ { "classes": ["Matrix"], - "methods": null, - "timeout": 180, + "methods": ["__repr__", "__eq__", "__add__", "__mul__", "is_diagonal"], + "timeout": 120, + "coverage": 100 + }, + { + "classes": ["Matrix"], + "methods": ["__matmul__"], + "timeout": 120, "coverage": 100 } ] @@ -543,7 +570,7 @@ "classes": null, "methods": null, "timeout": 180, - "coverage": 100 + "coverage": 62 } ] } From f308bd29a5edbdedd294fc1688579bb92ad68810 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 20 Oct 2023 15:59:19 +0300 Subject: [PATCH 051/144] Update test configuration and matrix class --- utbot-python/samples/run_tests.py | 20 +++++++++--- utbot-python/samples/samples/classes/field.py | 10 ------ .../samples/samples/structures/matrix.py | 2 +- utbot-python/samples/test_configuration.json | 31 +++++-------------- 4 files changed, 23 insertions(+), 40 deletions(-) delete mode 100644 utbot-python/samples/samples/classes/field.py diff --git a/utbot-python/samples/run_tests.py b/utbot-python/samples/run_tests.py index f0a7900957..c426fed41c 100644 --- a/utbot-python/samples/run_tests.py +++ b/utbot-python/samples/run_tests.py @@ -110,10 +110,15 @@ def check_coverage( coverage: typing.Dict[str, typing.Tuple[float, float]] = {} for part in config["parts"]: for file in part["files"]: - for group in file["groups"]: + for i, group in enumerate(file["groups"]): + if i > 0: + suffix = f"_{i}" + else: + suffix = "" + expected_coverage = group.get("coverage", 0) - file_suffix = f"{part['path'].replace('/', '_')}_{file['name']}" + file_suffix = f"{part['path'].replace('/', '_')}_{file['name']}{suffix}" coverage_output_file = pathlib.Path( coverage_output_dir, f"coverage_{file_suffix}.json" ) @@ -161,17 +166,22 @@ def main_test_generation(args): for file in tqdm.tqdm( part["files"], file=orig_stdout, dynamic_ncols=True, desc=part["path"] ): - for group in file["groups"]: + for i, group in enumerate(file["groups"]): + if i > 0: + suffix = f"_{i}" + else: + suffix = "" + full_name = pathlib.PurePath( args.path_to_test_dir, part["path"], file["name"] ) output_file = pathlib.PurePath( args.output_dir, - f"utbot_tests_{part['path'].replace('/', '_')}_{file['name']}.py", + f"utbot_tests_{part['path'].replace('/', '_')}_{file['name']}{suffix}.py", ) coverage_output_file = pathlib.PurePath( args.coverage_output_dir, - f"coverage_{part['path'].replace('/', '_')}_{file['name']}.json", + f"coverage_{part['path'].replace('/', '_')}_{file['name']}{suffix}.json", ) generate_tests( args.java, diff --git a/utbot-python/samples/samples/classes/field.py b/utbot-python/samples/samples/classes/field.py deleted file mode 100644 index 55a4676041..0000000000 --- a/utbot-python/samples/samples/classes/field.py +++ /dev/null @@ -1,10 +0,0 @@ -class NoTestsProblem: - def __init__(self): - self.board = [] - - def set_position(self, row, col, symbol): - self.board[row][col] = symbol - return symbol - - def start(self): - self.set_position(1, 2, "O") diff --git a/utbot-python/samples/samples/structures/matrix.py b/utbot-python/samples/samples/structures/matrix.py index eda69179b9..b9b284d334 100644 --- a/utbot-python/samples/samples/structures/matrix.py +++ b/utbot-python/samples/samples/structures/matrix.py @@ -50,7 +50,7 @@ def __mul__(self, other): else: raise MatrixException("Wrong Type") - def __matmul__(self, other): + def __matmul__(self, other: Matrix): if isinstance(other, Matrix): if self.dim[1] == other.dim[0]: result = [[0 for _ in range(self.dim[0])] * other.dim[1]] diff --git a/utbot-python/samples/test_configuration.json b/utbot-python/samples/test_configuration.json index 41af37e97b..2051d5515a 100644 --- a/utbot-python/samples/test_configuration.json +++ b/utbot-python/samples/test_configuration.json @@ -10,7 +10,7 @@ "classes": null, "methods": null, "timeout": 10, - "coverage": 93 + "coverage": 92 } ] }, @@ -69,8 +69,8 @@ { "classes": ["Dictionary"], "methods": ["translate"], - "timeout": 10, - "coverage": 88 + "timeout": 30, + "coverage": 100 } ] }, @@ -96,17 +96,6 @@ } ] }, - { - "name": "field", - "groups": [ - { - "classes": ["NoTestsProblem"], - "methods": null, - "timeout": 10, - "coverage": 100 - } - ] - }, { "name": "inner_class", "groups": [ @@ -149,14 +138,8 @@ "name": "dicts", "groups": [ { - "classes": ["Dictionary"], - "methods": ["__eq__"], - "timeout": 10, - "coverage": 100 - }, - { - "classes": ["Dictionary"], - "methods": ["translate"], + "classes": null, + "methods": null, "timeout": 20, "coverage": 100 } @@ -558,8 +541,8 @@ { "classes": ["Matrix"], "methods": ["__matmul__"], - "timeout": 120, - "coverage": 100 + "timeout": 80, + "coverage": 90 } ] }, From e6da4675a4d4d90a4c1fcb79a7e28d4e337cafc5 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 23 Oct 2023 14:49:26 +0300 Subject: [PATCH 052/144] Remove unused test files, change combined-projects-matrix.json --- .../workflows/combined-projects-matrix.json | 2 +- utbot-intellij-main/src/test/java/Bar.java | 3 --- utbot-intellij-main/src/test/java/Foo.java | 20 ------------------- 3 files changed, 1 insertion(+), 24 deletions(-) delete mode 100644 utbot-intellij-main/src/test/java/Bar.java delete mode 100644 utbot-intellij-main/src/test/java/Foo.java diff --git a/.github/workflows/combined-projects-matrix.json b/.github/workflows/combined-projects-matrix.json index adbcb967c6..83130dd191 100644 --- a/.github/workflows/combined-projects-matrix.json +++ b/.github/workflows/combined-projects-matrix.json @@ -1,7 +1,7 @@ { "projects": [ { - "FIRST": "utbot-intellij-main", + "FIRST": "utbot-intellij", "SECOND": "utbot-cli" }, { diff --git a/utbot-intellij-main/src/test/java/Bar.java b/utbot-intellij-main/src/test/java/Bar.java deleted file mode 100644 index e4d7ed9b9f..0000000000 --- a/utbot-intellij-main/src/test/java/Bar.java +++ /dev/null @@ -1,3 +0,0 @@ -public class Bar { - public int c; -} diff --git a/utbot-intellij-main/src/test/java/Foo.java b/utbot-intellij-main/src/test/java/Foo.java deleted file mode 100644 index 5dd9ce9112..0000000000 --- a/utbot-intellij-main/src/test/java/Foo.java +++ /dev/null @@ -1,20 +0,0 @@ -public class Foo { - public int a; - public int b; - public Bar c; - - public Foo() { - } - - public int getA() { - return a; - } - - public int getB() { - return b; - } - - public Bar getC() { - return c; - } -} From 5f3ac6fbbc93ea23e900c48f1e05d95b7f4331c9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 23 Oct 2023 15:16:26 +0300 Subject: [PATCH 053/144] Fix repositories in utbot-intellij --- utbot-intellij-main/build.gradle.kts | 5 ----- utbot-intellij/build.gradle.kts | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index 25820bbf08..b97160e524 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -122,11 +122,6 @@ tasks { } } -repositories { - maven("https://jitpack.io") - maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies") -} - dependencies { implementation(project(":utbot-ui-commons")) diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index ec42b9bab0..fd7ecfda71 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -157,6 +157,11 @@ tasks { } } +repositories { + maven("https://jitpack.io") + maven("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies") +} + dependencies { implementation(group ="com.jetbrains.rd", name = "rd-framework", version = rdVersion) implementation(group ="com.jetbrains.rd", name = "rd-core", version = rdVersion) From d9b299bb03592f19ab0a5cc3b21e5ad31798b16a Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 25 Oct 2023 15:08:35 +0300 Subject: [PATCH 054/144] Refactor python coverage --- .../python/PythonGenerateTestsCommand.kt | 4 +- .../utbot/framework/plugin/api/CoverageApi.kt | 6 +- .../kotlin/org/utbot/python/PythonEngine.kt | 15 ++- .../utbot/python/PythonTestCaseGenerator.kt | 2 +- .../python/PythonTestGenerationConfig.kt | 4 +- .../python/PythonTestGenerationProcessor.kt | 93 +++----------- .../org/utbot/python/coverage/CoverageApi.kt | 80 ++++++++++++ .../coverage/CoverageIdGenerator.kt | 2 +- .../utbot/python/coverage/CoverageOutput.kt | 41 +++++++ .../python/{evaluation => }/coverage/Utils.kt | 2 +- .../python/evaluation/CodeEvaluationApi.kt | 5 +- .../evaluation/PythonCodeSocketExecutor.kt | 10 +- .../evaluation/PythonCoverageReceiver.kt | 4 +- .../python/evaluation/PythonWorkerManager.kt | 2 +- .../python/evaluation/coverage/CoverageApi.kt | 116 ------------------ .../org/utbot/python/fuzzing/PythonApi.kt | 2 +- 16 files changed, 166 insertions(+), 222 deletions(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt rename utbot-python/src/main/kotlin/org/utbot/python/{evaluation => }/coverage/CoverageIdGenerator.kt (86%) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageOutput.kt rename utbot-python/src/main/kotlin/org/utbot/python/{evaluation => }/coverage/Utils.kt (91%) delete mode 100644 utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index e8dbee86a3..43b081d4a7 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -10,14 +10,14 @@ import org.parsers.python.PythonParser import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework import org.utbot.framework.plugin.api.UtExecutionSuccess -import org.utbot.python.evaluation.coverage.CoverageOutputFormat +import org.utbot.python.coverage.CoverageOutputFormat import org.utbot.python.PythonMethodHeader import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.PythonTestSet import org.utbot.python.TestFileInformation import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.code.PythonCode -import org.utbot.python.evaluation.coverage.PythonCoverageMode +import org.utbot.python.coverage.PythonCoverageMode import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.codegen.model.Pytest import org.utbot.python.framework.codegen.model.Unittest diff --git a/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt b/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt index 06c4c9350f..923fd99b7e 100644 --- a/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt +++ b/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt @@ -10,11 +10,11 @@ package org.utbot.framework.plugin.api * * @see Test minimization */ -data class Instruction( +open class Instruction( val internalName: String, val methodSignature: String, - val lineNumber: Int, - val id: Long + open val lineNumber: Int, + open val id: Long ) { val className: String get() = internalName.replace('/', '.') } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt index 095e4761f7..076194a87e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt @@ -16,11 +16,10 @@ import org.utbot.python.evaluation.PythonEvaluationSuccess import org.utbot.python.evaluation.PythonEvaluationTimeout import org.utbot.python.evaluation.PythonWorker import org.utbot.python.evaluation.PythonWorkerManager -import org.utbot.python.evaluation.coverage.CoverageIdGenerator -import org.utbot.python.evaluation.coverage.PyInstruction -import org.utbot.python.evaluation.coverage.PythonCoverageMode -import org.utbot.python.evaluation.coverage.calculateCoverage -import org.utbot.python.evaluation.coverage.makeInstructions +import org.utbot.python.coverage.CoverageIdGenerator +import org.utbot.python.coverage.PyInstruction +import org.utbot.python.coverage.PythonCoverageMode +import org.utbot.python.coverage.buildCoverage import org.utbot.python.evaluation.serialization.MemoryDump import org.utbot.python.evaluation.serialization.toPythonTree import org.utbot.python.framework.api.python.PythonTree @@ -121,7 +120,7 @@ class PythonEngine( val beforeThisObject = beforeThisObjectTree?.let { PythonTreeModel(it.tree) } val beforeModelList = beforeModelListTree.map { PythonTreeModel(it.tree) } - val coverage = Coverage(makeInstructions(coveredInstructions, methodUnderTest)) + val coverage = Coverage(coveredInstructions) val utFuzzedExecution = PythonUtExecution( stateInit = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), stateBefore = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), @@ -185,7 +184,7 @@ class PythonEngine( stateAfter = EnvironmentModels(afterThisObject, afterModelList, emptyMap(), executableToCall = null), diffIds = evaluationResult.diffIds, result = executionResult, - coverage = calculateCoverage(evaluationResult.coverage, methodUnderTest), + coverage = buildCoverage(evaluationResult.coveredStatements, evaluationResult.missedStatements), testMethodName = testMethodName.testName?.camelToSnakeCase(), displayName = testMethodName.displayName, summary = summary.map { DocRegularStmt(it) }, @@ -263,7 +262,7 @@ class PythonEngine( } is PythonEvaluationSuccess -> { - val coveredInstructions = evaluationResult.coverage.coveredInstructions + val coveredInstructions = evaluationResult.coveredStatements val result = handleSuccessResult( arguments, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index 6549b8f454..cd43648659 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -6,7 +6,7 @@ import org.utbot.framework.minimization.minimizeExecutions import org.utbot.framework.plugin.api.UtError import org.utbot.framework.plugin.api.UtExecution import org.utbot.framework.plugin.api.UtExecutionSuccess -import org.utbot.python.evaluation.coverage.PythonCoverageMode +import org.utbot.python.coverage.PythonCoverageMode import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.framework.api.python.util.pythonStrClassId import org.utbot.python.fuzzing.* diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 909e8c8f28..99a9500e18 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -2,8 +2,8 @@ package org.utbot.python import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework -import org.utbot.python.evaluation.coverage.CoverageOutputFormat -import org.utbot.python.evaluation.coverage.PythonCoverageMode +import org.utbot.python.coverage.CoverageOutputFormat +import org.utbot.python.coverage.PythonCoverageMode import java.nio.file.Path data class TestFileInformation( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 243ecd7111..cd8c835e45 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -10,8 +10,13 @@ import org.utbot.framework.plugin.api.UtExecutionSuccess import org.utbot.framework.plugin.api.util.UtContext import org.utbot.framework.plugin.api.util.withUtContext import org.utbot.python.code.PythonCode -import org.utbot.python.evaluation.coverage.CoverageOutputFormat -import org.utbot.python.evaluation.coverage.PyInstruction +import org.utbot.python.coverage.CoverageFormat +import org.utbot.python.coverage.CoverageInfo +import org.utbot.python.coverage.CoverageOutputFormat +import org.utbot.python.coverage.PyInstruction +import org.utbot.python.coverage.filterMissedLines +import org.utbot.python.coverage.getInstructionsList +import org.utbot.python.coverage.getLinesList import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonMethodId import org.utbot.python.framework.api.python.PythonModel @@ -255,69 +260,14 @@ abstract class PythonTestGenerationProcessor { paths } - sealed class CoverageFormat - data class LineCoverage(val start: Int, val end: Int) : CoverageFormat() { - override fun equals(other: Any?): Boolean { - if (other is LineCoverage) { - return start == other.start && end == other.end - } - return false - } - - override fun hashCode(): Int { - var result = start - result = 31 * result + end - return result - } - } - data class InstructionCoverage(val line: Int, val offset: Long) : CoverageFormat() { - override fun equals(other: Any?): Boolean { - if (other is InstructionCoverage) { - return line == other.line && offset == other.offset - } - return false - } - - override fun hashCode(): Int { - var result = line - result = 31 * result + offset.hashCode() - return result - } - } - - data class CoverageInfo( - val covered: List, - val notCovered: List, - ) - - private fun getLinesList(instructions: Collection): List = - instructions - .map { it.lineNumber } - .sorted() - .fold(emptyList()) { acc, lineNumber -> - if (acc.isEmpty()) - return@fold listOf(LineCoverage(lineNumber, lineNumber)) - val elem = acc.last() - if (elem.end + 1 == lineNumber || elem.end == lineNumber ) - acc.dropLast(1) + listOf(LineCoverage(elem.start, lineNumber)) - else - acc + listOf(LineCoverage(lineNumber, lineNumber)) - } - - private fun filterMissedLines(covered: Collection, missed: Collection): List = - missed.filterNot { missedInstruction -> covered.any { it.start <= missedInstruction.lineNumber && missedInstruction.lineNumber <= it.end } } - - private fun getInstructionsList(instructions: Collection): List = - instructions.map { InstructionCoverage(it.lineNumber, it.offset) }.toSet().toList() - private fun getCoverageInfo(testSets: List): CoverageInfo { val covered = mutableSetOf() val missed = mutableSetOf() testSets.forEach { testSet -> testSet.executions.forEach inner@{ execution -> val coverage = execution.coverage ?: return@inner - covered.addAll(coverage.coveredInstructions.map { PyInstruction(it.lineNumber, it.id) }) - missed.addAll(coverage.missedInstructions.map { PyInstruction(it.lineNumber, it.id) }) + covered.addAll(coverage.coveredInstructions.filterIsInstance()) + missed.addAll(coverage.missedInstructions.filterIsInstance()) } } missed -= covered @@ -328,29 +278,20 @@ abstract class PythonTestGenerationProcessor { val missedLines = getLinesList(filteredMissed) CoverageInfo(coveredLines, missedLines) } - CoverageOutputFormat.Instructions -> CoverageInfo(getInstructionsList(covered), getInstructionsList(missed)) + CoverageOutputFormat.Instructions -> CoverageInfo( + getInstructionsList(covered), + getInstructionsList(missed) + ) } return CoverageInfo(info.covered.toSet().toList(), info.notCovered.toSet().toList()) } - private fun toJson(coverageInfo: CoverageInfo): String { - val covered = coverageInfo.covered.map { toJson(it) } - val notCovered = coverageInfo.notCovered.map { toJson(it) } - return "{\"covered\": [${covered.joinToString(", ")}], \"notCovered\": [${notCovered.joinToString(", ")}]}" - } - - private fun toJson(coverageFormat: CoverageFormat): String { - return when (coverageFormat) { - is LineCoverage -> "{\"start\": ${coverageFormat.start}, \"end\": ${coverageFormat.end}}" - is InstructionCoverage -> "{\"line\": ${coverageFormat.line}, \"offset\": ${coverageFormat.offset}}" - } - } - protected fun getStringCoverageInfo(testSets: List): String { - val value = getCoverageInfo(testSets) - return toJson(value) + val coverageInfo = getCoverageInfo(testSets) + val covered = coverageInfo.covered.map { it.toJson() } + val notCovered = coverageInfo.notCovered.map { it.toJson() } + return "{\"covered\": [${covered.joinToString(", ")}], \"notCovered\": [${notCovered.joinToString(", ")}]}" } - } data class SelectedMethodIsNotAFunctionDefinition(val methodName: String): Exception() \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt new file mode 100644 index 0000000000..0effe8b010 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt @@ -0,0 +1,80 @@ +package org.utbot.python.coverage + +import org.utbot.framework.plugin.api.Coverage +import org.utbot.framework.plugin.api.Instruction + +enum class PythonCoverageMode { + Lines { + override fun toString() = "lines" + }, + + Instructions { + override fun toString() = "instructions" + }; + + companion object { + fun parse(name: String): PythonCoverageMode { + return PythonCoverageMode.values().first { + it.name.lowercase() == name.lowercase() + } + } + } +} + +data class PyInstruction( + override val lineNumber: Int, + val offset: Long, + val fromMainFrame: Boolean, +): Instruction("", "", lineNumber, 0) { + override fun toString(): String = listOf(lineNumber, offset, fromMainFrame).joinToString(":") + + override val id: Long = (lineNumber.toLong() to offset).toCoverageId() * 2 + fromMainFrame.toLong() + + constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), true) + constructor(lineNumber: Int, id: Long) : this(lineNumber, id.floorDiv(2).toPair().second, id % 2 == 1L) +} + +fun Boolean.toLong() = if (this) 1L else 0L + +fun String.toPyInstruction(): PyInstruction? { + val data = this.split(":") + when (data.size) { + 3 -> { + val line = data[0].toInt() + val offset = data[1].toLong() + val fromMainFrame = data[2].toInt() != 0 + return PyInstruction(line, offset, fromMainFrame) + } + 2 -> { + val line = data[0].toInt() + val offset = data[1].toLong() + return PyInstruction(line, offset, true) + } + 1 -> { + val line = data[0].toInt() + return PyInstruction(line) + } + else -> return null + } +} + +fun buildCoverage(coveredStatements: List, missedStatements: List): Coverage { + return Coverage( + coveredInstructions = coveredStatements, + instructionsCount = (coveredStatements.size + missedStatements.size).toLong(), + missedInstructions = missedStatements + ) +} + +enum class CoverageOutputFormat { + Lines, + Instructions; + + companion object { + fun parse(name: String): CoverageOutputFormat { + return CoverageOutputFormat.values().first { + it.name.lowercase() == name.lowercase() + } + } + } +} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageIdGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageIdGenerator.kt similarity index 86% rename from utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageIdGenerator.kt rename to utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageIdGenerator.kt index b9248d03f1..15aafacb54 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageIdGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageIdGenerator.kt @@ -1,4 +1,4 @@ -package org.utbot.python.evaluation.coverage +package org.utbot.python.coverage import java.util.concurrent.atomic.AtomicLong diff --git a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageOutput.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageOutput.kt new file mode 100644 index 0000000000..0bd4055da4 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageOutput.kt @@ -0,0 +1,41 @@ +package org.utbot.python.coverage + +sealed interface CoverageFormat { + fun toJson(): String +} +data class LineCoverage(val start: Int, val end: Int) : CoverageFormat { + override fun toJson(): String = "{\"start\": ${start}, \"end\": ${end}}" +} + +data class InstructionCoverage( + val line: Int, + val offset: Long, + val fromMainFrame: Boolean +) : CoverageFormat { + override fun toJson(): String = "{\"line\": ${line}, \"offset\": ${offset}, \"fromMainFrame\": ${fromMainFrame}}" +} + +data class CoverageInfo( + val covered: List, + val notCovered: List, +) + +fun getLinesList(instructions: Collection): List = + instructions + .map { it.lineNumber } + .sorted() + .fold(emptyList()) { acc, lineNumber -> + if (acc.isEmpty()) + return@fold listOf(LineCoverage(lineNumber, lineNumber)) + val elem = acc.last() + if (elem.end + 1 == lineNumber || elem.end == lineNumber ) + acc.dropLast(1) + listOf(LineCoverage(elem.start, lineNumber)) + else + acc + listOf(LineCoverage(lineNumber, lineNumber)) + } + +fun filterMissedLines(covered: Collection, missed: Collection): List = + missed.filterNot { missedInstruction -> covered.any { it.start <= missedInstruction.lineNumber && missedInstruction.lineNumber <= it.end } } + +fun getInstructionsList(instructions: Collection): List = + instructions.map { InstructionCoverage(it.lineNumber, it.offset, it.fromMainFrame) }.toSet().toList() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/Utils.kt similarity index 91% rename from utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt rename to utbot-python/src/main/kotlin/org/utbot/python/coverage/Utils.kt index 62b1d19afb..37e04a747d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/Utils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/Utils.kt @@ -1,4 +1,4 @@ -package org.utbot.python.evaluation.coverage +package org.utbot.python.coverage import kotlin.math.ceil import kotlin.math.max diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt index 41154c2baa..7e6eed438a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt @@ -3,7 +3,7 @@ package org.utbot.python.evaluation import org.utbot.python.FunctionArguments import org.utbot.python.PythonMethod import org.utbot.python.evaluation.serialization.MemoryDump -import org.utbot.python.evaluation.coverage.PyCoverage +import org.utbot.python.coverage.PyInstruction interface PythonCodeExecutor { val method: PythonMethod @@ -40,7 +40,8 @@ data class PythonEvaluationTimeout( data class PythonEvaluationSuccess( val isException: Boolean, - val coverage: PyCoverage, + val coveredStatements: List, + val missedStatements: List, val stateInit: MemoryDump, val stateBefore: MemoryDump, val stateAfter: MemoryDump, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index 5b8fba4501..f30872204a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -10,17 +10,14 @@ import org.utbot.python.evaluation.serialization.FailExecution import org.utbot.python.evaluation.serialization.PythonExecutionResult import org.utbot.python.evaluation.serialization.SuccessExecution import org.utbot.python.evaluation.serialization.serializeObjects -import org.utbot.python.evaluation.coverage.CoverageIdGenerator -import org.utbot.python.evaluation.coverage.PyCoverage -import org.utbot.python.evaluation.coverage.toPyInstruction +import org.utbot.python.coverage.CoverageIdGenerator +import org.utbot.python.coverage.toPyInstruction import org.utbot.python.newtyping.PythonCallableTypeDescription import org.utbot.python.newtyping.pythonDescription import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.utils.isNamed import java.net.SocketException -private val logger = KotlinLogging.logger {} - class PythonCodeSocketExecutor( override val method: PythonMethod, override val moduleToImport: String, @@ -134,7 +131,8 @@ class PythonCodeSocketExecutor( val missedStatements = executionResult.missedStatements.mapNotNull { it.toPyInstruction() } PythonEvaluationSuccess( executionResult.isException, - PyCoverage(statements, missedStatements), + statements, + missedStatements, stateInit, stateBefore, stateAfter, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt index 63a5e52944..e28cc2654b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCoverageReceiver.kt @@ -1,8 +1,8 @@ package org.utbot.python.evaluation import mu.KotlinLogging -import org.utbot.python.evaluation.coverage.PyInstruction -import org.utbot.python.evaluation.coverage.toPyInstruction +import org.utbot.python.coverage.PyInstruction +import org.utbot.python.coverage.toPyInstruction import java.io.IOException import java.net.DatagramPacket import java.net.DatagramSocket diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 264299816c..0841e1c36a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -11,7 +11,7 @@ import java.net.ServerSocket import java.net.Socket import java.net.SocketTimeoutException import org.apache.logging.log4j.LogManager -import org.utbot.python.evaluation.coverage.PythonCoverageMode +import org.utbot.python.coverage.PythonCoverageMode private val logger = KotlinLogging.logger {} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt deleted file mode 100644 index abc3e30b7a..0000000000 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/coverage/CoverageApi.kt +++ /dev/null @@ -1,116 +0,0 @@ -package org.utbot.python.evaluation.coverage - -import org.utbot.framework.plugin.api.Coverage -import org.utbot.framework.plugin.api.Instruction -import org.utbot.python.PythonMethod -import org.utbot.python.framework.api.python.util.pythonAnyClassId -import org.utbot.python.newtyping.pythonTypeRepresentation - -enum class PythonCoverageMode { - Lines { - override fun toString() = "lines" - }, - - Instructions { - override fun toString() = "instructions" - }; - - companion object { - fun parse(name: String): PythonCoverageMode { - return PythonCoverageMode.values().first { - it.name.lowercase() == name.lowercase() - } - } - } -} - -data class PyInstruction( - val lineNumber: Int, - val offset: Long, - val fromMainFrame: Boolean, -) { - override fun toString(): String = listOf(lineNumber, offset, fromMainFrame).joinToString(":") - - val id: Long = (lineNumber.toLong() to offset).toCoverageId() - - constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), true) - constructor(lineNumber: Int, id: Long) : this(lineNumber, id.toPair().second, true) -} - -fun String.toPyInstruction(): PyInstruction? { - val data = this.split(":") - when (data.size) { - 3 -> { - val line = data[0].toInt() - val offset = data[1].toLong() - val fromMainFrame = data[2].toInt() != 0 - return PyInstruction(line, offset, fromMainFrame) - } - 2 -> { - val line = data[0].toInt() - val offset = data[1].toLong() - return PyInstruction(line, offset, true) - } - 1 -> { - val line = data[0].toInt() - return PyInstruction(line) - } - else -> return null - } -} - -fun makeInstructions(coveredInstructions: Collection, method: PythonMethod): List { - return coveredInstructions.map { - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - it.lineNumber, - it.id - ) - } -} - -data class PyCoverage( - val coveredInstructions: List, - val missedInstructions: List -) - -fun calculateCoverage(coverage: PyCoverage, method: PythonMethod): Coverage { - return calculateCoverage(coverage.coveredInstructions, coverage.missedInstructions, method) -} - -fun calculateCoverage(statements: List, missedStatements: List, method: PythonMethod): Coverage { - val covered = statements.filter { it !in missedStatements && it.fromMainFrame } - return Coverage( - coveredInstructions=covered.map { - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - it.lineNumber, - it.id - ) - }, - instructionsCount = (covered.size + missedStatements.size).toLong(), - missedInstructions = missedStatements.map { - Instruction( - method.containingPythonClass?.pythonTypeRepresentation() ?: pythonAnyClassId.name, - method.methodSignature(), - it.lineNumber, - it.id - ) - } - ) -} - -enum class CoverageOutputFormat { - Lines, - Instructions; - - companion object { - fun parse(name: String): CoverageOutputFormat { - return CoverageOutputFormat.values().first { - it.name.lowercase() == name.lowercase() - } - } - } -} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 6f0a88dea2..2d7f63ac35 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -5,7 +5,7 @@ import org.utbot.framework.plugin.api.UtError import org.utbot.fuzzer.FuzzedContext import org.utbot.fuzzing.* import org.utbot.fuzzing.utils.Trie -import org.utbot.python.evaluation.coverage.PyInstruction +import org.utbot.python.coverage.PyInstruction import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.fuzzing.provider.* From 28be8be51ccbf46dee47bcdf17aa98c829ada2ea Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 25 Oct 2023 16:28:10 +0300 Subject: [PATCH 055/144] Add ide version for goland --- utbot-intellij-go/build.gradle.kts | 4 ++-- utbot-intellij-js/build.gradle.kts | 4 ++-- utbot-intellij-main/build.gradle.kts | 4 ++-- utbot-intellij-python/build.gradle.kts | 4 ++-- utbot-intellij/build.gradle.kts | 4 ++-- utbot-ui-commons/build.gradle.kts | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/utbot-intellij-go/build.gradle.kts b/utbot-intellij-go/build.gradle.kts index 17d5bb616e..fff30caba1 100644 --- a/utbot-intellij-go/build.gradle.kts +++ b/utbot-intellij-go/build.gradle.kts @@ -14,7 +14,7 @@ val androidStudioPath: String? by rootProject val ideaVersion: String? by rootProject val pycharmVersion: String? by rootProject -val goVersion: String? by rootProject +val golandVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject @@ -23,7 +23,7 @@ val goIde: String? by rootProject val ideVersion = when(ideType) { "PC", "PY" -> pycharmVersion - "GO" -> goVersion + "GO" -> golandVersion else -> ideaVersion } diff --git a/utbot-intellij-js/build.gradle.kts b/utbot-intellij-js/build.gradle.kts index 8a4ff7e969..916c540eed 100644 --- a/utbot-intellij-js/build.gradle.kts +++ b/utbot-intellij-js/build.gradle.kts @@ -13,7 +13,7 @@ val androidStudioPath: String? by rootProject val ideaVersion: String? by rootProject val pycharmVersion: String? by rootProject -val goVersion: String? by rootProject +val golandVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject @@ -22,7 +22,7 @@ val goIde: String? by rootProject val ideVersion = when(ideType) { "PC", "PY" -> pycharmVersion - "GO" -> goVersion + "GO" -> golandVersion else -> ideaVersion } diff --git a/utbot-intellij-main/build.gradle.kts b/utbot-intellij-main/build.gradle.kts index b97160e524..30e728a74d 100644 --- a/utbot-intellij-main/build.gradle.kts +++ b/utbot-intellij-main/build.gradle.kts @@ -12,7 +12,7 @@ val androidStudioPath: String? by rootProject val ideaVersion: String? by rootProject val pycharmVersion: String? by rootProject -val goVersion: String? by rootProject +val golandVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject @@ -21,7 +21,7 @@ val goIde: String? by rootProject val ideVersion = when(ideType) { "PC", "PY" -> pycharmVersion - "GO" -> goVersion + "GO" -> golandVersion else -> ideaVersion } diff --git a/utbot-intellij-python/build.gradle.kts b/utbot-intellij-python/build.gradle.kts index fe655b97e2..cf1e5ea9f1 100644 --- a/utbot-intellij-python/build.gradle.kts +++ b/utbot-intellij-python/build.gradle.kts @@ -13,7 +13,7 @@ val androidStudioPath: String? by rootProject val ideaVersion: String? by rootProject val pycharmVersion: String? by rootProject -val goVersion: String? by rootProject +val golandVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject @@ -22,7 +22,7 @@ val goIde: String? by rootProject val ideVersion = when(ideType) { "PC", "PY" -> pycharmVersion - "GO" -> goVersion + "GO" -> golandVersion else -> ideaVersion } diff --git a/utbot-intellij/build.gradle.kts b/utbot-intellij/build.gradle.kts index fd7ecfda71..8f0520b4a9 100644 --- a/utbot-intellij/build.gradle.kts +++ b/utbot-intellij/build.gradle.kts @@ -21,7 +21,7 @@ val androidStudioPath: String? by rootProject val ideaVersion: String? by rootProject val pycharmVersion: String? by rootProject -val goVersion: String? by rootProject +val golandVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject @@ -30,7 +30,7 @@ val goIde: String? by rootProject val ideVersion = when(ideType) { "PC", "PY" -> pycharmVersion - "GO" -> goVersion + "GO" -> golandVersion else -> ideaVersion } diff --git a/utbot-ui-commons/build.gradle.kts b/utbot-ui-commons/build.gradle.kts index 434df817e2..10ab87140d 100644 --- a/utbot-ui-commons/build.gradle.kts +++ b/utbot-ui-commons/build.gradle.kts @@ -12,7 +12,7 @@ val androidStudioPath: String? by rootProject val ideaVersion: String? by rootProject val pycharmVersion: String? by rootProject -val goVersion: String? by rootProject +val golandVersion: String? by rootProject val javaIde: String? by rootProject val pythonIde: String? by rootProject @@ -21,7 +21,7 @@ val goIde: String? by rootProject val ideVersion = when(ideType) { "PC", "PY" -> pycharmVersion - "GO" -> goVersion + "GO" -> golandVersion else -> ideaVersion } From 4e6fd48bb207d3571e17198b134b96e0e370d43c Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 25 Oct 2023 16:28:37 +0300 Subject: [PATCH 056/144] Rename test module --- .github/workflows/run-chosen-tests-from-branch.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-chosen-tests-from-branch.yml b/.github/workflows/run-chosen-tests-from-branch.yml index d59a68b03c..ea5dec9ac5 100644 --- a/.github/workflows/run-chosen-tests-from-branch.yml +++ b/.github/workflows/run-chosen-tests-from-branch.yml @@ -18,7 +18,7 @@ on: - utbot-gradle - utbot-instrumentation-tests - utbot-instrumentation - - utbot-intellij-main + - utbot-intellij - utbot-sample - utbot-summary - utbot-summary-tests From 5e5970f35c39fc3bded4d54ee6eab1ebd4891963 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 25 Oct 2023 16:30:17 +0300 Subject: [PATCH 057/144] Move java dependencies --- .../src/main/resources/META-INF/plugin.xml | 17 ----------------- .../src/main/resources/META-INF/withJava.xml | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 17 deletions(-) diff --git a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml index 024c39dc04..89f84572f4 100644 --- a/utbot-intellij-main/src/main/resources/META-INF/plugin.xml +++ b/utbot-intellij-main/src/main/resources/META-INF/plugin.xml @@ -31,13 +31,7 @@ displayName="UnitTestBot"/> - - - - - - @@ -89,15 +83,4 @@ ]]> - - - - diff --git a/utbot-intellij-main/src/main/resources/META-INF/withJava.xml b/utbot-intellij-main/src/main/resources/META-INF/withJava.xml index fafe2e683d..eafe833bc7 100644 --- a/utbot-intellij-main/src/main/resources/META-INF/withJava.xml +++ b/utbot-intellij-main/src/main/resources/META-INF/withJava.xml @@ -4,5 +4,19 @@ + + + + + + + \ No newline at end of file From d578c90d419a73a9326e4b2b5afe76d89366a3bb Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 26 Oct 2023 09:27:04 +0300 Subject: [PATCH 058/144] Move instruction id calculation to constructor --- .../main/kotlin/org/utbot/python/coverage/CoverageApi.kt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt index 0effe8b010..214011ed74 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt @@ -25,11 +25,13 @@ data class PyInstruction( override val lineNumber: Int, val offset: Long, val fromMainFrame: Boolean, -): Instruction("", "", lineNumber, 0) { +) : Instruction( + "", + "", + lineNumber, + (lineNumber.toLong() to offset).toCoverageId() * 2 + fromMainFrame.toLong()) { override fun toString(): String = listOf(lineNumber, offset, fromMainFrame).joinToString(":") - override val id: Long = (lineNumber.toLong() to offset).toCoverageId() * 2 + fromMainFrame.toLong() - constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), true) constructor(lineNumber: Int, id: Long) : this(lineNumber, id.floorDiv(2).toPair().second, id % 2 == 1L) } From 47662e115329cf338bd8990448d18f245821d5d0 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 26 Oct 2023 09:50:38 +0300 Subject: [PATCH 059/144] Make coverage line and id not open --- .../kotlin/org/utbot/framework/plugin/api/CoverageApi.kt | 4 ++-- .../main/kotlin/org/utbot/python/coverage/CoverageApi.kt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt b/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt index 923fd99b7e..3c3f31cb08 100644 --- a/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt +++ b/utbot-framework-api/src/main/kotlin/org/utbot/framework/plugin/api/CoverageApi.kt @@ -13,8 +13,8 @@ package org.utbot.framework.plugin.api open class Instruction( val internalName: String, val methodSignature: String, - open val lineNumber: Int, - open val id: Long + val lineNumber: Int, + val id: Long ) { val className: String get() = internalName.replace('/', '.') } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt index 214011ed74..34403ad42a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt @@ -22,14 +22,14 @@ enum class PythonCoverageMode { } data class PyInstruction( - override val lineNumber: Int, + val pyLineNumber: Int, val offset: Long, val fromMainFrame: Boolean, ) : Instruction( "", "", - lineNumber, - (lineNumber.toLong() to offset).toCoverageId() * 2 + fromMainFrame.toLong()) { + pyLineNumber, + (pyLineNumber.toLong() to offset).toCoverageId() * 2 + fromMainFrame.toLong()) { override fun toString(): String = listOf(lineNumber, offset, fromMainFrame).joinToString(":") constructor(lineNumber: Int) : this(lineNumber, lineNumber.toLong(), true) From e4e83dba353c5b1cd24ed3f7e0cefdf5d2563b45 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 30 Oct 2023 14:51:46 +0300 Subject: [PATCH 060/144] First version python-usvm api usage --- .../python/PythonGenerateTestsCommand.kt | 6 +- .../plugin/python/PythonDialogProcessor.kt | 4 +- .../src/main/python/utbot_executor/README.md | 2 + .../main/python/utbot_executor/pyproject.toml | 2 +- .../tests/test_deep_serialization.py | 2 + .../deep_serialization/json_converter.py | 5 +- .../utbot_executor/example/example.py | 2 +- .../utbot_executor/utbot_executor/executor.py | 69 ++- .../utbot_executor/utbot_executor/parser.py | 15 +- .../src/main/resources/utbot_executor_version | 2 +- .../samples/samples/easy_samples/my_func.py | 6 + .../utbot/python/PythonTestCaseGenerator.kt | 333 ++------------- .../python/PythonTestGenerationProcessor.kt | 33 +- .../kotlin/org/utbot/python/UTPythonAPI.kt | 5 +- .../utbot/python/engine/ExecutionFeedback.kt | 12 + .../utbot/python/engine/ExecutionStorage.kt | 36 ++ .../utbot/python/engine/GlobalPythonEngine.kt | 116 +++++ .../fuzzing/FuzzingEngine.kt} | 402 +++++++++++------- .../typeinference/FunctionAnnotationUtils.kt | 123 ++++++ .../python/engine/symbolic/SymbolicEngine.kt | 42 ++ .../USVMPythonAnalysisResultReceiver.kt | 164 +++++++ .../engine/symbolic/USVMPythonConfig.kt | 20 + .../engine/utils/ModelsTransformation.kt | 31 ++ .../python/evaluation/CodeEvaluationApi.kt | 5 + .../evaluation/PythonCodeSocketExecutor.kt | 63 ++- .../python/evaluation/PythonWorkerManager.kt | 21 + .../ExecutionRequestSerializer.kt | 6 + .../ExecutionResultDeserializer.kt | 6 +- .../python/framework/api/python/PythonApi.kt | 16 +- .../org/utbot/python/fuzzing/PythonApi.kt | 20 +- 30 files changed, 1040 insertions(+), 529 deletions(-) create mode 100644 utbot-python/samples/samples/easy_samples/my_func.py create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionFeedback.kt create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionStorage.kt create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt rename utbot-python/src/main/kotlin/org/utbot/python/{PythonEngine.kt => engine/fuzzing/FuzzingEngine.kt} (51%) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/utils/ModelsTransformation.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index 43b081d4a7..c7f20382e4 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -280,10 +280,10 @@ class PythonGenerateTestsCommand : CliktCommand( ) logger.info("Loading information about Python types...") - val (mypyStorage, _) = processor.sourceCodeAnalyze() + val (mypyStorage, mypyReport) = processor.sourceCodeAnalyze() logger.info("Generating tests...") - var testSets = processor.testGenerate(mypyStorage) + var testSets = processor.testGenerate(mypyStorage, mypyReport) if (testSets.isEmpty()) return if (doNotGenerateRegressionSuite) { testSets = testSets.map { testSet -> @@ -291,8 +291,6 @@ class PythonGenerateTestsCommand : CliktCommand( testSet.method, testSet.executions.filterNot { it.result is UtExecutionSuccess }, testSet.errors, - testSet.mypyReport, - testSet.classId, testSet.executionsNumber ) } diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index 86eb6b4d56..d8a4a40948 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -287,7 +287,7 @@ object PythonDialogProcessor { localUpdateIndicator(ProgressRange.ANALYZE, "Analyze module ${model.currentPythonModule}", 0.5) - val (mypyStorage, _) = processor.sourceCodeAnalyze() + val (mypyStorage, mypyReport) = processor.sourceCodeAnalyze() localUpdateIndicator(ProgressRange.ANALYZE, "Analyze module ${model.currentPythonModule}", 1.0) @@ -300,7 +300,7 @@ object PythonDialogProcessor { model.timeout, ) try { - val testSets = processor.testGenerate(mypyStorage) + val testSets = processor.testGenerate(mypyStorage, mypyReport) timerHandler.cancel(true) if (testSets.isEmpty()) return@forEachIndexed diff --git a/utbot-python-executor/src/main/python/utbot_executor/README.md b/utbot-python-executor/src/main/python/utbot_executor/README.md index 05197bc444..38a53d7bcc 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/README.md +++ b/utbot-python-executor/src/main/python/utbot_executor/README.md @@ -29,6 +29,7 @@ $ python -m utbot_executor [ ["] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py b/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py index 58f991562d..87900ffe47 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py +++ b/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py @@ -3,6 +3,7 @@ import datetime import importlib.metadata import json +import pickle import re import sys import typing @@ -47,6 +48,7 @@ def template_test_assert(obj: typing.Any, imports: typing.List[str]): ({},), ((1, 2, 3),), (tuple(),), + (pickle.dumps(((2, [1, 2]), {})),), ], ) def test_primitives(obj: typing.Any): diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py index 753fd8a060..3034c72d64 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py @@ -1,6 +1,7 @@ import copy import importlib import json +import pickle import sys from typing import Dict, Iterable, Union from utbot_executor.deep_serialization.memory_objects import ( @@ -51,7 +52,7 @@ def default(self, o): return json.JSONEncoder.default(self, o) -def as_repr_object(dct: Dict) -> Union[MemoryObject, Dict]: +def as_reduce_object(dct: Dict) -> Union[MemoryObject, Dict]: if "strategy" in dct: obj: MemoryObject if dct["strategy"] == "repr": @@ -97,7 +98,7 @@ def as_repr_object(dct: Dict) -> Union[MemoryObject, Dict]: def deserialize_memory_objects(memory_dump: str) -> MemoryDump: - parsed_data = json.loads(memory_dump, object_hook=as_repr_object) + parsed_data = json.loads(memory_dump, object_hook=as_reduce_object) return MemoryDump(parsed_data["objects"]) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/example/example.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/example/example.py index c16550ba84..7c233d697d 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/example/example.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/example/example.py @@ -17,7 +17,7 @@ def test_execution(): '/home/vyacheslav/Projects/utbot_executor/utbot_executor/tests/my_func.py', '0x1' ) - response = executor.run_function(request) + response = executor.run_reduce_function(request) assert isinstance(response, ExecutionSuccessResponse) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 01fdb290d4..a9e7d3a631 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -4,6 +4,7 @@ import inspect import logging import pathlib +import pickle import sys import traceback import types @@ -15,7 +16,8 @@ from utbot_executor.deep_serialization.memory_objects import MemoryDump, PythonSerializer from utbot_executor.deep_serialization.utils import PythonId, getattr_by_path from utbot_executor.memory_compressor import compress_memory -from utbot_executor.parser import ExecutionRequest, ExecutionResponse, ExecutionFailResponse, ExecutionSuccessResponse +from utbot_executor.parser import ExecutionRequest, ExecutionResponse, ExecutionFailResponse, ExecutionSuccessResponse, \ + MemoryMode from utbot_executor.ut_tracer import UtTracer, UtCoverageSender from utbot_executor.utils import ( suppress_stdout as __suppress_stdout, @@ -71,6 +73,13 @@ def add_imports(imports: Iterable[str]): logging.debug("Submodule #%d: OK", i) def run_function(self, request: ExecutionRequest) -> ExecutionResponse: + match request.memory_mode: + case MemoryMode.PICKLE: + return self.run_pickle_function(request) + case MemoryMode.REDUCE: + return self.run_reduce_function(request) + + def run_reduce_function(self, request: ExecutionRequest) -> ExecutionResponse: logging.debug("Prepare to run function `%s`", request.function_name) try: memory_dump = deserialize_memory_objects(request.serialized_memory) @@ -143,6 +152,64 @@ def run_function(self, request: ExecutionRequest) -> ExecutionResponse: logging.debug("Value have been calculated: %s", value) return value + def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: + logging.debug("Prepare to run function `%s`", request.function_name) + try: + logging.debug("Imports: %s", request.imports) + logging.debug("Syspaths: %s", request.syspaths) + self.add_syspaths(request.syspaths) + self.add_imports(request.imports) + except Exception as _: + logging.debug("Error \n%s", traceback.format_exc()) + return ExecutionFailResponse("fail", traceback.format_exc()) + logging.debug("Imports have been added") + + try: + function = getattr_by_path( + importlib.import_module(request.function_module), + request.function_name + ) + if not isinstance(function, types.FunctionType): + return ExecutionFailResponse( + "fail", + f"Invalid function path {request.function_module}.{request.function_name}" + ) + logging.debug("Function initialized") + args, kwargs = pickle.loads(eval(request.serialized_memory)) + logging.debug("Arguments: %s", args) + logging.debug("Kwarguments: %s", kwargs) + except Exception as _: + logging.debug("Error \n%s", traceback.format_exc()) + return ExecutionFailResponse("fail", traceback.format_exc()) + logging.debug("Arguments have been created") + + try: + _coverage_sender = UtCoverageSender( + request.coverage_id, + self.coverage_hostname, + self.coverage_port, + send_coverage=self.send_coverage, + ) + + value = _run_calculate_function_value( + function, + list(args), + kwargs, + request.filepath, + "", + tracer=UtTracer( + pathlib.Path(request.filepath), + [sys.prefix, sys.exec_prefix], + _coverage_sender, + self.trace_mode, + ), + ) + except Exception as _: + logging.debug("Error \n%s", traceback.format_exc()) + return ExecutionFailResponse("fail", traceback.format_exc()) + logging.debug("Value have been calculated: %s", value) + return value + def _serialize_state( args: List[Any], diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py index d247c28290..a951624bc6 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py @@ -1,6 +1,12 @@ import dataclasses +import enum import json -from typing import Dict, List, Union, Tuple +from typing import Dict, List, Union, Tuple, Literal + + +class MemoryMode(enum.StrEnum): + PICKLE = "PICKLE" + REDUCE = "REDUCE" @dataclasses.dataclass @@ -12,6 +18,7 @@ class ExecutionRequest: arguments_ids: List[str] kwarguments_ids: Dict[str, str] serialized_memory: str + memory_mode: MemoryMode filepath: str coverage_id: str @@ -41,7 +48,7 @@ class ExecutionFailResponse(ExecutionResponse): exception: str -def as_execution_result(dct: Dict) -> Union[ExecutionRequest, Dict]: +def as_execution_request(dct: Dict) -> Union[ExecutionRequest, Dict]: if set(dct.keys()) == { 'functionName', 'functionModule', @@ -50,6 +57,7 @@ def as_execution_result(dct: Dict) -> Union[ExecutionRequest, Dict]: 'argumentsIds', 'kwargumentsIds', 'serializedMemory', + 'memoryMode', 'filepath', 'coverageId', }: @@ -61,6 +69,7 @@ def as_execution_result(dct: Dict) -> Union[ExecutionRequest, Dict]: dct['argumentsIds'], dct['kwargumentsIds'], dct['serializedMemory'], + MemoryMode(dct['memoryMode']), dct['filepath'], dct['coverageId'], ) @@ -68,7 +77,7 @@ def as_execution_result(dct: Dict) -> Union[ExecutionRequest, Dict]: def parse_request(request: str) -> ExecutionRequest: - return json.loads(request, object_hook=as_execution_result) + return json.loads(request, object_hook=as_execution_request) class ResponseEncoder(json.JSONEncoder): diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index afa2b3515e..884f0b7555 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.8.0 \ No newline at end of file +1.9.0.dev9 \ No newline at end of file diff --git a/utbot-python/samples/samples/easy_samples/my_func.py b/utbot-python/samples/samples/easy_samples/my_func.py new file mode 100644 index 0000000000..27b63c830b --- /dev/null +++ b/utbot-python/samples/samples/easy_samples/my_func.py @@ -0,0 +1,6 @@ +def my_func(x: int, xs: list[int]): + if len(xs) == x: + return x ** 2 + elif not xs: + return x + return len(xs) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index cd43648659..868a1218ec 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -1,340 +1,69 @@ package org.utbot.python -import kotlinx.coroutines.runBlocking import mu.KotlinLogging import org.utbot.framework.minimization.minimizeExecutions +import org.utbot.framework.plugin.api.UtClusterInfo import org.utbot.framework.plugin.api.UtError -import org.utbot.framework.plugin.api.UtExecution import org.utbot.framework.plugin.api.UtExecutionSuccess -import org.utbot.python.coverage.PythonCoverageMode +import org.utbot.python.engine.GlobalPythonEngine import org.utbot.python.framework.api.python.PythonUtExecution -import org.utbot.python.framework.api.python.util.pythonStrClassId -import org.utbot.python.fuzzing.* -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.ast.visitor.Visitor -import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector -import org.utbot.python.newtyping.ast.visitor.hints.HintCollector -import org.utbot.python.newtyping.general.* -import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm -import org.utbot.python.newtyping.mypy.GlobalNamesStorage import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.MypyReportLine -import org.utbot.python.newtyping.mypy.getErrorNumber -import org.utbot.python.newtyping.utils.getOffsetLine -import org.utbot.python.newtyping.utils.isRequired -import org.utbot.python.utils.TestGenerationLimitManager -import org.utbot.python.utils.PriorityCartesianProduct -import org.utbot.python.utils.TimeoutMode private val logger = KotlinLogging.logger {} -private const val RANDOM_TYPE_FREQUENCY = 6 private const val MAX_EMPTY_COVERAGE_TESTS = 5 -private const val MAX_SUBSTITUTIONS = 10 class PythonTestCaseGenerator( - private val withMinimization: Boolean = true, - private val directoriesForSysPath: Set, - private val curModule: String, - private val pythonPath: String, - private val fileOfMethod: String, - private val isCancelled: () -> Boolean, - private val timeoutForRun: Long = 0, - private val sourceFileContent: String, + private val configuration: PythonTestGenerationConfig, private val mypyStorage: MypyInfoBuild, - private val mypyReportLine: List, - private val coverageMode: PythonCoverageMode = PythonCoverageMode.Instructions, - private val sendCoverageContinuously: Boolean = true, + private val mypyReportLine: List ) { + private val withMinimization = configuration.withMinimization - private val storageForMypyMessages: MutableList = mutableListOf() + fun generate(method: PythonMethod, until: Long): List { - private fun constructCollectors( - mypyStorage: MypyInfoBuild, - typeStorage: PythonTypeHintsStorage, - method: PythonMethod - ): Pair { - - // initialize definitions first - mypyStorage.definitions[curModule]!!.values.map { def -> - def.getUtBotDefinition() - } - - val mypyExpressionTypes = mypyStorage.exprTypes[curModule]?.let { moduleTypes -> - moduleTypes.associate { - Pair(it.startOffset.toInt(), it.endOffset.toInt() + 1) to it.type.asUtBotType - } - } ?: emptyMap() - - val namesStorage = GlobalNamesStorage(mypyStorage) - val hintCollector = HintCollector(method.definition, typeStorage, mypyExpressionTypes, namesStorage, curModule) - val constantCollector = ConstantCollector(typeStorage) - val visitor = Visitor(listOf(hintCollector, constantCollector)) - visitor.visit(method.ast) - return Pair(hintCollector, constantCollector) - } - - private fun getCandidates(param: TypeParameter, typeStorage: PythonTypeHintsStorage): List { - val meta = param.pythonDescription() as PythonTypeVarDescription - return when (meta.parameterKind) { - PythonTypeVarDescription.ParameterKind.WithConcreteValues -> { - param.constraints.map { it.boundary } - } - PythonTypeVarDescription.ParameterKind.WithUpperBound -> { - typeStorage.simpleTypes.filter { - if (it.hasBoundedParameters()) - return@filter false - val bound = param.constraints.first().boundary - PythonSubtypeChecker.checkIfRightIsSubtypeOfLeft(bound, it, typeStorage) - } - } - } - } - - private fun generateTypesAfterSubstitution(type: UtType, typeStorage: PythonTypeHintsStorage): List { - val params = type.getBoundedParameters() - return PriorityCartesianProduct(params.map { getCandidates(it, typeStorage) }).getSequence().map { subst -> - DefaultSubstitutionProvider.substitute(type, (params zip subst).associate { it }) - }.take(MAX_SUBSTITUTIONS).toList() - } - - private fun substituteTypeParameters( - method: PythonMethod, - typeStorage: PythonTypeHintsStorage, - ): List { - val newClasses = method.containingPythonClass?.let { - generateTypesAfterSubstitution(it, typeStorage) - } ?: listOf(null) - return newClasses.flatMap { newClass -> - val funcType = newClass?.getPythonAttributeByName(typeStorage, method.name)?.type as? FunctionType - ?: method.definition.type - val newFuncTypes = generateTypesAfterSubstitution(funcType, typeStorage) - newFuncTypes.map { newFuncType -> - val def = PythonFunctionDefinition(method.definition.meta, newFuncType as FunctionType) - PythonMethod( - method.name, - method.moduleFilename, - newClass as? CompositeType, - method.codeAsString, - def, - method.ast - ) - } - }.take(MAX_SUBSTITUTIONS) - } - - private fun methodHandler( - method: PythonMethod, - typeStorage: PythonTypeHintsStorage, - coveredLines: MutableSet, - errors: MutableList, - executions: MutableList, - initMissingLines: Set?, - until: Long, - additionalVars: String = "", - ): Set? { // returns missing lines - val limitManager = TestGenerationLimitManager( - TimeoutMode, + logger.info { "Start test generation for ${method.name}" } + val engine = GlobalPythonEngine( + method = method, + configuration = configuration, + mypyStorage, + mypyReportLine, until, ) - var missingLines = initMissingLines - - val (hintCollector, constantCollector) = constructCollectors(mypyStorage, typeStorage, method) - val constants = constantCollector.result - .mapNotNull { (type, value) -> - if (type.pythonTypeName() == pythonStrClassId.name && value is String) { - // Filter doctests - if (value.contains(">>>")) return@mapNotNull null - } - logger.debug { "Collected constant: ${type.pythonTypeRepresentation()}: $value" } - PythonFuzzedConcreteValue(type, value) - } - - val engine = PythonEngine( - method, - directoriesForSysPath, - curModule, - pythonPath, - constants, - timeoutForRun, - PythonTypeHintsStorage.get(mypyStorage), - coverageMode, - sendCoverageContinuously, - ) - val namesInModule = mypyStorage.names - .getOrDefault(curModule, emptyList()) - .map { it.name } - .filter { - it.length < 4 || !it.startsWith("__") || !it.endsWith("__") - } - - val algo = BaselineAlgorithm( - typeStorage, - hintCollector.result, - pythonPath, - method, - directoriesForSysPath, - curModule, - namesInModule, - getErrorNumber( - mypyReportLine, - fileOfMethod, - getOffsetLine(sourceFileContent, method.ast.beginOffset), - getOffsetLine(sourceFileContent, method.ast.endOffset) - ), - mypyStorage.buildRoot.configFile, - additionalVars, - randomTypeFrequency = RANDOM_TYPE_FREQUENCY, - dMypyTimeout = timeoutForRun, - ) - - val fuzzerCancellation = { isCancelled() || limitManager.isCancelled() } - - val initFunctionType = method.definition.type.arguments - runBlocking { - engine.fuzzing( - initFunctionType, - algo, - fuzzerCancellation, - until - ).collect { - when (it) { - is ValidExecution -> { - executions += it.utFuzzedExecution - missingLines = updateMissingLines(it.utFuzzedExecution, coveredLines, missingLines) - limitManager.addSuccessExecution() - } - is InvalidExecution -> { - errors += it.utError - limitManager.addInvalidExecution() - } - is ArgumentsTypeErrorFeedback -> { - limitManager.addInvalidExecution() - } - is TypeErrorFeedback -> { - limitManager.addInvalidExecution() - } - is CachedExecutionFeedback -> { - when (it.cachedFeedback) { - is ValidExecution -> { - limitManager.addSuccessExecution() - } - else -> { - limitManager.addInvalidExecution() - } - } - } - is FakeNodeFeedback -> { - limitManager.addFakeNodeExecutions() - } - } - limitManager.missedLines = missingLines?.size - } - } - - return missingLines - } - - fun generate(method: PythonMethod, until: Long): PythonTestSet { - storageForMypyMessages.clear() - - val typeStorage = PythonTypeHintsStorage.get(mypyStorage) - - val executions = mutableListOf() - val errors = mutableListOf() - val coveredLines = mutableSetOf() - - logger.info { "Start test generation for ${method.name}" } try { - val methodModifications = mutableSetOf>() // Set of pairs - - substituteTypeParameters(method, typeStorage).forEach { newMethod -> - createShortForm(newMethod)?.let { methodModifications.add(it) } - methodModifications.add(newMethod to "") - } - - val now = System.currentTimeMillis() - val timeout = (until - now) / methodModifications.size - var missingLines: Set? = null - methodModifications.forEach { (method, additionalVars) -> - missingLines = methodHandler( - method, - typeStorage, - coveredLines, - errors, - executions, - missingLines, - minOf(until, System.currentTimeMillis() + timeout), - additionalVars, - ) - } + engine.run() } catch (_: OutOfMemoryError) { logger.debug { "Out of memory error. Stop test generation process" } } logger.info { "Collect all test executions for ${method.name}" } + return listOf( + buildTestSet(method, engine.executionStorage.fuzzingExecutions, engine.executionStorage.fuzzingErrors, UtClusterInfo("FUZZER")), + buildTestSet(method, engine.executionStorage.symbolicExecutions, engine.executionStorage.symbolicErrors, UtClusterInfo("SYMBOLIC")), + ) + } + + private fun buildTestSet( + method: PythonMethod, + executions: List, + errors: List, + clusterInfo: UtClusterInfo, + ): PythonTestSet { val (emptyCoverageExecutions, coverageExecutions) = executions.partition { it.coverage == null } val (successfulExecutions, failedExecutions) = coverageExecutions.partition { it.result is UtExecutionSuccess } - - return PythonTestSet( - method, + val minimized = if (withMinimization) minimizeExecutions(successfulExecutions) + minimizeExecutions(failedExecutions) + emptyCoverageExecutions.take(MAX_EMPTY_COVERAGE_TESTS) else - coverageExecutions + emptyCoverageExecutions.take(MAX_EMPTY_COVERAGE_TESTS), + coverageExecutions + emptyCoverageExecutions.take(MAX_EMPTY_COVERAGE_TESTS) + return PythonTestSet( + method, + minimized, errors, - storageForMypyMessages, executionsNumber = executions.size, + clustersInfo = listOf(Pair(clusterInfo, minimized.indices)) ) } - - /** - * Calculate a new set of missing lines in tested function - */ - private fun updateMissingLines( - execution: UtExecution, - coveredLines: MutableSet, - missingLines: Set? - ): Set { - execution.coverage?.coveredInstructions?.map { instr -> coveredLines.add(instr.lineNumber) } - val curMissing = - execution.coverage - ?.missedInstructions - ?.map { x -> x.lineNumber }?.toSet() - ?: emptySet() - return if (missingLines == null) curMissing else missingLines intersect curMissing - } - - companion object { - fun createShortForm(method: PythonMethod): Pair? { - val meta = method.definition.type.pythonDescription() as PythonCallableTypeDescription - val argKinds = meta.argumentKinds - if (argKinds.any { !isRequired(it) }) { - val originalDef = method.definition - val shortType = meta.removeNotRequiredArgs(originalDef.type) - val shortMeta = PythonFuncItemDescription( - originalDef.meta.name, - originalDef.meta.args.filterIndexed { index, _ -> isRequired(argKinds[index]) } - ) - val additionalVars = originalDef.meta.args - .filterIndexed { index, _ -> !isRequired(argKinds[index]) } - .mapIndexed { index, arg -> - "${arg.name}: ${method.argumentsWithoutSelf[index].annotation ?: pythonAnyType.pythonTypeRepresentation()}" - } - .joinToString(separator = "\n", prefix = "\n") - val shortDef = PythonFunctionDefinition(shortMeta, shortType) - val shortMethod = PythonMethod( - method.name, - method.moduleFilename, - method.containingPythonClass, - method.codeAsString, - shortDef, - method.ast - ) - return Pair(shortMethod, additionalVars) - } - return null - } - } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index cd8c835e45..57762d1175 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -5,7 +5,6 @@ import org.parsers.python.PythonParser import org.utbot.framework.codegen.domain.HangingTestsTimeout import org.utbot.framework.codegen.domain.models.CgMethodTestSet import org.utbot.framework.plugin.api.ExecutableId -import org.utbot.framework.plugin.api.UtClusterInfo import org.utbot.framework.plugin.api.UtExecutionSuccess import org.utbot.framework.plugin.api.util.UtContext import org.utbot.framework.plugin.api.util.withUtContext @@ -59,22 +58,13 @@ abstract class PythonTestGenerationProcessor { ) } - fun testGenerate(mypyStorage: MypyInfoBuild): List { + fun testGenerate(mypyStorage: MypyInfoBuild, mypyReport: List): List { val startTime = System.currentTimeMillis() val testCaseGenerator = PythonTestCaseGenerator( - withMinimization = configuration.withMinimization, - directoriesForSysPath = configuration.sysPathDirectories, - curModule = configuration.testFileInformation.moduleName, - pythonPath = configuration.pythonPath, - fileOfMethod = configuration.testFileInformation.testedFilePath, - isCancelled = configuration.isCanceled, - timeoutForRun = configuration.timeoutForRun, - sourceFileContent = configuration.testFileInformation.testedFileContent, + configuration = configuration, mypyStorage = mypyStorage, - mypyReportLine = emptyList(), - coverageMode = configuration.coverageMeasureMode, - sendCoverageContinuously = configuration.sendCoverageContinuously, + mypyReportLine = mypyReport, ) val until = startTime + configuration.timeout @@ -93,11 +83,16 @@ abstract class PythonTestGenerationProcessor { logger.warn { "Skipping method ${e.methodName}: did not find its function definition" } null } - } - val (notEmptyTests, emptyTestSets) = tests.partition { it.executions.isNotEmpty() } + }.flatten() + val notEmptyTests = tests.filter { it.executions.isNotEmpty() } + + val emptyTests = tests + .groupBy { it.method } + .filter { it.value.all { testSet -> testSet.executions.isEmpty() } } + .map { it.key.name } - if (emptyTestSets.isNotEmpty()) { - notGeneratedTestsAction(emptyTestSets.map { it.method.name }) + if (emptyTests.isNotEmpty()) { + notGeneratedTestsAction(emptyTests) } return notEmptyTests @@ -142,12 +137,10 @@ abstract class PythonTestGenerationProcessor { ) val testCode = codegen.pythonGenerateAsStringWithTestReport( testSets.map { testSet -> - val intRange = testSet.executions.indices - val clusterInfo = listOf(Pair(UtClusterInfo("FUZZER"), intRange)) CgMethodTestSet( executableId = methodIds[testSet.method] as ExecutableId, executions = testSet.executions, - clustersInfo = clusterInfo, + clustersInfo = testSet.clustersInfo, ) }, allImports diff --git a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt index 57da4cc17d..ecdbe9de48 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -1,6 +1,7 @@ package org.utbot.python import org.parsers.python.ast.Block +import org.utbot.framework.plugin.api.UtClusterInfo import org.utbot.framework.plugin.api.UtError import org.utbot.framework.plugin.api.UtExecution import org.utbot.python.framework.api.python.PythonClassId @@ -8,7 +9,6 @@ import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.util.pythonAnyClassId import org.utbot.python.newtyping.* import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.mypy.MypyReportLine import org.utbot.python.newtyping.utils.isNamed data class PythonArgument( @@ -69,9 +69,8 @@ data class PythonTestSet( val method: PythonMethod, val executions: List, val errors: List, - val mypyReport: List, - val classId: PythonClassId? = null, val executionsNumber: Int = 0, + val clustersInfo: List> = listOf(null to executions.indices) ) data class FunctionArguments( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionFeedback.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionFeedback.kt new file mode 100644 index 0000000000..79e43604c8 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionFeedback.kt @@ -0,0 +1,12 @@ +package org.utbot.python.engine + +import org.utbot.framework.plugin.api.UtError +import org.utbot.python.framework.api.python.PythonUtExecution + +sealed interface ExecutionFeedback +class ValidExecution(val utFuzzedExecution: PythonUtExecution): ExecutionFeedback +class InvalidExecution(val utError: UtError): ExecutionFeedback +class TypeErrorFeedback(val message: String) : ExecutionFeedback +class ArgumentsTypeErrorFeedback(val message: String) : ExecutionFeedback +class CachedExecutionFeedback(val cachedFeedback: ExecutionFeedback) : ExecutionFeedback +object FakeNodeFeedback : ExecutionFeedback \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionStorage.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionStorage.kt new file mode 100644 index 0000000000..c5ff098d6b --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/ExecutionStorage.kt @@ -0,0 +1,36 @@ +package org.utbot.python.engine + +import org.utbot.framework.plugin.api.UtError +import org.utbot.python.framework.api.python.PythonUtExecution + +class ExecutionStorage { + val fuzzingExecutions: MutableList = mutableListOf() + val fuzzingErrors: MutableList = mutableListOf() + + val symbolicExecutions: MutableList = mutableListOf() + val symbolicErrors: MutableList = mutableListOf() + + fun saveFuzzingExecution(feedback: ExecutionFeedback) { + when (feedback) { + is ValidExecution -> { + fuzzingExecutions += feedback.utFuzzedExecution + } + is InvalidExecution -> { + fuzzingErrors += feedback.utError + } + else -> {} + } + } + + fun saveSymbolicExecution(feedback: ExecutionFeedback) { + when (feedback) { + is ValidExecution -> { + symbolicExecutions += feedback.utFuzzedExecution + } + is InvalidExecution -> { + symbolicErrors += feedback.utError + } + else -> {} + } + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt new file mode 100644 index 0000000000..35a46e918c --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -0,0 +1,116 @@ +package org.utbot.python.engine + +import mu.KotlinLogging +import org.utbot.python.PythonMethod +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.engine.fuzzing.FuzzingEngine +import org.utbot.python.engine.symbolic.DummySymbolicEngine +import org.utbot.python.engine.symbolic.USVMPythonAnalysisResultReceiver +import org.utbot.python.engine.symbolic.USVMPythonFunctionConfig +import org.utbot.python.engine.symbolic.USVMPythonRunConfig +import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utbot.python.newtyping.ast.visitor.Visitor +import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector +import org.utbot.python.newtyping.ast.visitor.hints.HintCollector +import org.utbot.python.newtyping.mypy.GlobalNamesStorage +import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utbot.python.newtyping.mypy.MypyReportLine +import kotlin.concurrent.thread + +private val logger = KotlinLogging.logger {} + +class GlobalPythonEngine( + val method: PythonMethod, + val configuration: PythonTestGenerationConfig, + val mypyStorage: MypyInfoBuild, + val mypyReport: List, + val until: Long, +) { + val executionStorage = ExecutionStorage() + val typeStorage = PythonTypeHintsStorage.get(mypyStorage) + val constantCollector = ConstantCollector(typeStorage) + val hintCollector = constructHintCollector( + mypyStorage, + typeStorage, + constantCollector, + method, + configuration.testFileInformation.moduleName + ) + + private fun runFuzzing() { + FuzzingEngine( + method, + configuration, + typeStorage, + hintCollector, + constantCollector, + mypyStorage, + mypyReport, + until, + executionStorage, + ).start() + } + + private fun runSymbolic() { + DummySymbolicEngine( + configuration, + executionStorage, + ).analyze( + USVMPythonRunConfig( + USVMPythonFunctionConfig(method.moduleFilename, method.name), + configuration.timeout, + configuration.timeoutForRun + ), + USVMPythonAnalysisResultReceiver(method, configuration, System.currentTimeMillis() + configuration.timeout) + ) + } + + fun run() { + val fuzzing = thread( + start = true, + isDaemon = true, + name = "Fuzzer" + ) { + logger.info { " ======= Start fuzzer ======= " } + runFuzzing() + logger.info { " ======= Finish fuzzer ======= " } + } + val symbolic = thread( + start = true, + isDaemon = true, + name = "Symbolic" + ) { + logger.info { " ======= Start symbolic ======= " } + runSymbolic() + logger.info { " ======= Finish symbolic ======= " } + } + fuzzing.join() + symbolic.join() + } + + private fun constructHintCollector( + mypyStorage: MypyInfoBuild, + typeStorage: PythonTypeHintsStorage, + constantCollector: ConstantCollector, + method: PythonMethod, + moduleName: String, + ): HintCollector { + + // initialize definitions first + mypyStorage.definitions[moduleName]!!.values.map { def -> + def.getUtBotDefinition() + } + + val mypyExpressionTypes = mypyStorage.exprTypes[moduleName]?.let { moduleTypes -> + moduleTypes.associate { + Pair(it.startOffset.toInt(), it.endOffset.toInt() + 1) to it.type.asUtBotType + } + } ?: emptyMap() + + val namesStorage = GlobalNamesStorage(mypyStorage) + val hintCollector = HintCollector(method.definition, typeStorage, mypyExpressionTypes, namesStorage, moduleName) + val visitor = Visitor(listOf(hintCollector, constantCollector)) + visitor.visit(method.ast) + return hintCollector + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt similarity index 51% rename from utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt rename to utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 076194a87e..88120a4eb6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -1,62 +1,260 @@ -package org.utbot.python +package org.utbot.python.engine.fuzzing +import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.flow +import kotlinx.coroutines.flow.flowOn +import kotlinx.coroutines.runBlocking import mu.KotlinLogging -import org.utbot.framework.plugin.api.* +import org.utbot.framework.plugin.api.Coverage +import org.utbot.framework.plugin.api.DocRegularStmt +import org.utbot.framework.plugin.api.EnvironmentModels +import org.utbot.framework.plugin.api.TimeoutException +import org.utbot.framework.plugin.api.UtError +import org.utbot.framework.plugin.api.UtExecutionFailure +import org.utbot.framework.plugin.api.UtExecutionResult +import org.utbot.framework.plugin.api.UtExecutionSuccess +import org.utbot.framework.plugin.api.UtImplicitlyThrownException +import org.utbot.framework.plugin.api.UtTimeoutException import org.utbot.fuzzing.Control import org.utbot.fuzzing.NoSeedValueException import org.utbot.fuzzing.fuzz import org.utbot.fuzzing.utils.Trie +import org.utbot.python.FunctionArguments +import org.utbot.python.PythonMethod +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.coverage.CoverageIdGenerator +import org.utbot.python.coverage.PyInstruction +import org.utbot.python.coverage.buildCoverage +import org.utbot.python.engine.CachedExecutionFeedback +import org.utbot.python.engine.ExecutionFeedback +import org.utbot.python.engine.ExecutionStorage +import org.utbot.python.engine.FakeNodeFeedback +import org.utbot.python.engine.InvalidExecution +import org.utbot.python.engine.TypeErrorFeedback +import org.utbot.python.engine.ValidExecution +import org.utbot.python.engine.fuzzing.typeinference.createMethodAnnotationModifications +import org.utbot.python.engine.utils.transformModelList import org.utbot.python.evaluation.EvaluationCache -import org.utbot.python.evaluation.PythonCodeExecutor import org.utbot.python.evaluation.PythonCodeSocketExecutor import org.utbot.python.evaluation.PythonEvaluationError import org.utbot.python.evaluation.PythonEvaluationSuccess import org.utbot.python.evaluation.PythonEvaluationTimeout -import org.utbot.python.evaluation.PythonWorker import org.utbot.python.evaluation.PythonWorkerManager -import org.utbot.python.coverage.CoverageIdGenerator -import org.utbot.python.coverage.PyInstruction -import org.utbot.python.coverage.PythonCoverageMode -import org.utbot.python.coverage.buildCoverage -import org.utbot.python.evaluation.serialization.MemoryDump import org.utbot.python.evaluation.serialization.toPythonTree import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.PythonTreeWrapper import org.utbot.python.framework.api.python.PythonUtExecution -import org.utbot.python.fuzzing.* +import org.utbot.python.framework.api.python.util.pythonStrClassId +import org.utbot.python.fuzzing.PythonExecutionResult +import org.utbot.python.fuzzing.PythonFeedback +import org.utbot.python.fuzzing.PythonFuzzedConcreteValue +import org.utbot.python.fuzzing.PythonFuzzedValue +import org.utbot.python.fuzzing.PythonFuzzing +import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector +import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm +import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utbot.python.newtyping.mypy.MypyReportLine +import org.utbot.python.newtyping.mypy.getErrorNumber import org.utbot.python.newtyping.pythonModules +import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utbot.python.newtyping.utils.getOffsetLine import org.utbot.python.utils.ExecutionWithTimoutMode import org.utbot.python.utils.TestGenerationLimitManager +import org.utbot.python.utils.TimeoutMode import org.utbot.python.utils.camelToSnakeCase import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket import kotlin.random.Random private val logger = KotlinLogging.logger {} +private const val RANDOM_TYPE_FREQUENCY = 6 -class PythonEngine( - private val methodUnderTest: PythonMethod, - private val directoriesForSysPath: Set, - private val moduleToImport: String, - private val pythonPath: String, - private val fuzzedConcreteValues: List, - private val timeoutForRun: Long, - private val pythonTypeStorage: PythonTypeHintsStorage, - private val coverageMode: PythonCoverageMode = PythonCoverageMode.Instructions, - private val sendCoverageContinuously: Boolean = true, +class FuzzingEngine( + val method: PythonMethod, + val configuration: PythonTestGenerationConfig, + val typeStorage: PythonTypeHintsStorage, + val hintCollector: HintCollector, + val constantCollector: ConstantCollector, + val mypyStorage: MypyInfoBuild, + val mypyReport: List, + val until: Long, + val executionStorage: ExecutionStorage, ) { - private val cache = EvaluationCache() + private val constants: List = constantCollector.result + .mapNotNull { (type, value) -> + if (type.pythonTypeName() == pythonStrClassId.name && value is String) { + // Filter doctests + if (value.contains(">>>")) return@mapNotNull null + } + logger.debug { "Collected constant: ${type.pythonTypeRepresentation()}: $value" } + PythonFuzzedConcreteValue(type, value) + } + + fun start() { + val modifications = createMethodAnnotationModifications(method, typeStorage) + val now = System.currentTimeMillis() + val timeout = (until - now) / modifications.size + modifications.forEach { (modifiedMethod, additionalVars) -> + generateTests(modifiedMethod, additionalVars, System.currentTimeMillis() + timeout) + } + } + + fun generateTests( + method: PythonMethod, + additionalVars: String, + until: Long, + ) { + val timeoutLimitManager = TestGenerationLimitManager( + TimeoutMode, + until, + ) + val namesInModule = mypyStorage.names + .getOrDefault(configuration.testFileInformation.moduleName, emptyList()) + .map { it.name } + .filter { + it.length < 4 || !it.startsWith("__") || !it.endsWith("__") + } + + val sourceFileContent = configuration.testFileInformation.testedFileContent + val algo = BaselineAlgorithm( + typeStorage, + hintCollector.result, + configuration.pythonPath, + method, + configuration.sysPathDirectories, + configuration.testFileInformation.moduleName, + namesInModule, + getErrorNumber( + mypyReport, + configuration.testFileInformation.testedFilePath, + getOffsetLine(sourceFileContent, method.ast.beginOffset), + getOffsetLine(sourceFileContent, method.ast.endOffset) + ), + mypyStorage.buildRoot.configFile, + additionalVars, + randomTypeFrequency = RANDOM_TYPE_FREQUENCY, + dMypyTimeout = configuration.timeoutForRun, + ) + + val fuzzerCancellation = { configuration.isCanceled() || timeoutLimitManager.isCancelled() } + runBlocking { + runFuzzing( + algo, + fuzzerCancellation, + until + ).collect { + logger.info { "FUZZING: save new execution" } + executionStorage.saveFuzzingExecution(it) + } + } + } + + private fun runFuzzing( + typeInferenceAlgorithm: BaselineAlgorithm, + isCancelled: () -> Boolean, + until: Long + ): Flow = flow { + ServerSocket(0).use { serverSocket -> + logger.debug { "Server port: ${serverSocket.localPort}" } + val manager = try { + PythonWorkerManager( + serverSocket, + configuration.pythonPath, + until, + configuration.coverageMeasureMode, + configuration.sendCoverageContinuously, + ) { + PythonCodeSocketExecutor( + method, + configuration.testFileInformation.moduleName, + configuration.pythonPath, + configuration.sysPathDirectories, + configuration.timeoutForRun, + it, + ) + } + } catch (_: TimeoutException) { + return@use + } + logger.debug { "Executor manager was created successfully" } + + val pmd = PythonMethodDescription( + method.name, + constants, + typeStorage, + Trie(PyInstruction::id), + Random(0), + TestGenerationLimitManager(ExecutionWithTimoutMode, until, isRootManager = true), + method.definition.type, + ) + + try { + val parameters = method.definition.type.arguments + if (parameters.isEmpty()) { + val result = fuzzingResultHandler(pmd, emptyList(), parameters, manager) + result?.let { + emit(it.executionFeedback) + } + } else { + try { + PythonFuzzing(typeStorage, typeInferenceAlgorithm) { description, arguments -> + if (isCancelled()) { + logger.debug { "Fuzzing process was interrupted" } + manager.disconnect() + return@PythonFuzzing PythonFeedback(control = Control.STOP) + } + if (System.currentTimeMillis() >= until) { + logger.debug { "Fuzzing process was interrupted by timeout" } + manager.disconnect() + return@PythonFuzzing PythonFeedback(control = Control.STOP) + } + + if (arguments.any { PythonTree.containsFakeNode(it.tree) }) { + logger.debug { "FakeNode in Python model" } + description.limitManager.addFakeNodeExecutions() + emit(FakeNodeFeedback) + return@PythonFuzzing PythonFeedback(control = Control.CONTINUE) + } + + val pair = Pair(description, arguments.map { PythonTreeWrapper(it.tree) }) + val mem = cache.get(pair) + if (mem != null) { + logger.debug { "Repeat in fuzzing ${arguments.map { it.tree }}" } + description.limitManager.addSuccessExecution() + emit(CachedExecutionFeedback(mem.executionFeedback)) + return@PythonFuzzing mem.fuzzingPlatformFeedback.fromCache() + } + val result = fuzzingResultHandler(description, arguments, parameters, manager) + if (result == null) { // timeout + manager.disconnect() + return@PythonFuzzing PythonFeedback(control = Control.STOP) + } + + cache.add(pair, result) + emit(result.executionFeedback) + return@PythonFuzzing result.fuzzingPlatformFeedback + }.fuzz(pmd) + } catch (_: NoSeedValueException) { + logger.debug { "Cannot fuzz values for types: ${parameters.map { it.pythonTypeRepresentation() }}" } + } + } + } finally { + manager.shutdown() + } + } + }.flowOn(Dispatchers.IO) + private fun suggestExecutionName( description: PythonMethodDescription, executionResult: UtExecutionResult @@ -76,42 +274,18 @@ class PythonEngine( ) } - private fun transformModelList( - hasThisObject: Boolean, - state: MemoryDump, - modelListIds: List - ): Pair> { - val (stateThisId, resultModelListIds) = - if (hasThisObject) { - Pair(modelListIds.first(), modelListIds.drop(1)) - } else { - Pair(null, modelListIds) - } - val stateThisObject = stateThisId?.let { - PythonTreeModel( - state.getById(it).toPythonTree(state) - ) - } - val modelList = resultModelListIds.map { - PythonTreeModel( - state.getById(it).toPythonTree(state) - ) - } - return Pair(stateThisObject, modelList) - } - private fun handleTimeoutResult( arguments: List, methodUnderTestDescription: PythonMethodDescription, coveredInstructions: List, - ): FuzzingExecutionFeedback { + ): ExecutionFeedback { val summary = arguments - .zip(methodUnderTest.arguments) + .zip(method.arguments) .mapNotNull { it.first.summary?.replace("%var%", it.second.name) } val executionResult = UtTimeoutException(TimeoutException("Execution is too long")) val testMethodName = suggestExecutionName(methodUnderTestDescription, executionResult) - val hasThisObject = methodUnderTest.hasThisArgument + val hasThisObject = method.hasThisArgument val (beforeThisObjectTree, beforeModelListTree) = if (hasThisObject) { arguments.first() to arguments.drop(1) } else { @@ -131,7 +305,7 @@ class PythonEngine( testMethodName = testMethodName.testName?.camelToSnakeCase(), displayName = testMethodName.displayName, summary = summary.map { DocRegularStmt(it) }, - arguments = methodUnderTest.argumentsWithoutSelf + arguments = method.argumentsWithoutSelf ) return ValidExecution(utFuzzedExecution) } @@ -141,7 +315,7 @@ class PythonEngine( types: List, evaluationResult: PythonEvaluationSuccess, methodUnderTestDescription: PythonMethodDescription, - ): FuzzingExecutionFeedback { + ): ExecutionFeedback { val prohibitedExceptions = listOf( "builtins.AttributeError", "builtins.TypeError", @@ -149,9 +323,9 @@ class PythonEngine( ) val summary = arguments - .zip(methodUnderTest.arguments) + .zip(method.arguments) .mapNotNull { it.first.summary?.replace("%var%", it.second.name) } - val hasThisObject = methodUnderTest.hasThisArgument + val hasThisObject = method.hasThisArgument val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) @@ -188,22 +362,11 @@ class PythonEngine( testMethodName = testMethodName.testName?.camelToSnakeCase(), displayName = testMethodName.displayName, summary = summary.map { DocRegularStmt(it) }, - arguments = methodUnderTest.argumentsWithoutSelf, + arguments = method.argumentsWithoutSelf, ) return ValidExecution(utFuzzedExecution) } - private fun constructEvaluationInput(pythonWorker: PythonWorker): PythonCodeExecutor { - return PythonCodeSocketExecutor( - methodUnderTest, - moduleToImport, - pythonPath, - directoriesForSysPath, - timeoutForRun, - pythonWorker, - ) - } - private fun fuzzingResultHandler( description: PythonMethodDescription, arguments: List, @@ -213,22 +376,22 @@ class PythonEngine( val additionalModules = parameters.flatMap { it.pythonModules() } val argumentValues = arguments.map { PythonTreeModel(it.tree, it.tree.type) } - logger.debug(argumentValues.map { it.tree } .toString()) + val moduleToImport = configuration.testFileInformation.moduleName val argumentModules = argumentValues .flatMap { it.allContainingClassIds } .map { it.moduleName } .filterNot { it.startsWith(moduleToImport) } val localAdditionalModules = (additionalModules + argumentModules + moduleToImport).toSet() - val (thisObject, modelList) = if (methodUnderTest.hasThisArgument) - Pair(argumentValues[0], argumentValues.drop(1)) - else - Pair(null, argumentValues) + val (thisObject, modelList) = if (method.hasThisArgument) + Pair(argumentValues[0], argumentValues.drop(1)) + else + Pair(null, argumentValues) val functionArguments = FunctionArguments( thisObject, - methodUnderTest.thisObjectName, + method.thisObjectName, modelList, - methodUnderTest.argumentsNames + method.argumentsNames ) try { val coverageId = CoverageIdGenerator.createId() @@ -265,10 +428,10 @@ class PythonEngine( val coveredInstructions = evaluationResult.coveredStatements val result = handleSuccessResult( - arguments, - parameters, - evaluationResult, - description, + arguments, + parameters, + evaluationResult, + description, ) val typeInferenceFeedback = if (result is ValidExecution) SuccessFeedback else InvalidTypeFeedback when (result) { @@ -296,91 +459,4 @@ class PythonEngine( return null } } - - fun fuzzing( - parameters: List, - typeInferenceAlgorithm: BaselineAlgorithm, - isCancelled: () -> Boolean, - until: Long - ): Flow = flow { - ServerSocket(0).use { serverSocket -> - logger.debug { "Server port: ${serverSocket.localPort}" } - val manager = try { - PythonWorkerManager( - serverSocket, - pythonPath, - until, - coverageMode, - sendCoverageContinuously, - ) { constructEvaluationInput(it) } - } catch (_: TimeoutException) { - return@flow - } - logger.debug { "Executor manager was created successfully" } - - val pmd = PythonMethodDescription( - methodUnderTest.name, - parameters, - fuzzedConcreteValues, - pythonTypeStorage, - Trie(PyInstruction::id), - Random(0), - TestGenerationLimitManager(ExecutionWithTimoutMode, until, isRootManager = true), - methodUnderTest.definition.type, - ) - - try { - if (parameters.isEmpty()) { - val result = fuzzingResultHandler(pmd, emptyList(), parameters, manager) - result?.let { - emit(it.fuzzingExecutionFeedback) - } - } else { - try { - PythonFuzzing(pythonTypeStorage, typeInferenceAlgorithm) { description, arguments -> - if (isCancelled()) { - logger.debug { "Fuzzing process was interrupted" } - manager.disconnect() - return@PythonFuzzing PythonFeedback(control = Control.STOP) - } - if (System.currentTimeMillis() >= until) { - logger.debug { "Fuzzing process was interrupted by timeout" } - manager.disconnect() - return@PythonFuzzing PythonFeedback(control = Control.STOP) - } - - if (arguments.any { PythonTree.containsFakeNode(it.tree) }) { - logger.debug { "FakeNode in Python model" } - description.limitManager.addFakeNodeExecutions() - emit(FakeNodeFeedback) - return@PythonFuzzing PythonFeedback(control = Control.CONTINUE) - } - - val pair = Pair(description, arguments.map { PythonTreeWrapper(it.tree) }) - val mem = cache.get(pair) - if (mem != null) { - logger.debug { "Repeat in fuzzing ${arguments.map {it.tree}}" } - description.limitManager.addSuccessExecution() - emit(CachedExecutionFeedback(mem.fuzzingExecutionFeedback)) - return@PythonFuzzing mem.fuzzingPlatformFeedback.fromCache() - } - val result = fuzzingResultHandler(description, arguments, parameters, manager) - if (result == null) { // timeout - manager.disconnect() - return@PythonFuzzing PythonFeedback(control = Control.STOP) - } - - cache.add(pair, result) - emit(result.fuzzingExecutionFeedback) - return@PythonFuzzing result.fuzzingPlatformFeedback - }.fuzz(pmd) - } catch (_: NoSeedValueException) { - logger.debug { "Cannot fuzz values for types: ${parameters.map { it.pythonTypeRepresentation() }}" } - } - } - } finally { - manager.shutdown() - } - } - } -} +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt new file mode 100644 index 0000000000..53cd92b91e --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt @@ -0,0 +1,123 @@ +package org.utbot.python.engine.fuzzing.typeinference + +import org.utbot.python.PythonMethod +import org.utbot.python.newtyping.PythonCallableTypeDescription +import org.utbot.python.newtyping.PythonFuncItemDescription +import org.utbot.python.newtyping.PythonFunctionDefinition +import org.utbot.python.newtyping.PythonSubtypeChecker +import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utbot.python.newtyping.PythonTypeVarDescription +import org.utbot.python.newtyping.general.CompositeType +import org.utbot.python.newtyping.general.DefaultSubstitutionProvider +import org.utbot.python.newtyping.general.FunctionType +import org.utbot.python.newtyping.general.TypeParameter +import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.general.getBoundedParameters +import org.utbot.python.newtyping.general.hasBoundedParameters +import org.utbot.python.newtyping.getPythonAttributeByName +import org.utbot.python.newtyping.pythonAnyType +import org.utbot.python.newtyping.pythonDescription +import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utbot.python.newtyping.utils.isRequired +import org.utbot.python.utils.PriorityCartesianProduct + +private const val MAX_SUBSTITUTIONS = 10 + +fun getCandidates(param: TypeParameter, typeStorage: PythonTypeHintsStorage): List { + val meta = param.pythonDescription() as PythonTypeVarDescription + return when (meta.parameterKind) { + PythonTypeVarDescription.ParameterKind.WithConcreteValues -> { + param.constraints.map { it.boundary } + } + + PythonTypeVarDescription.ParameterKind.WithUpperBound -> { + typeStorage.simpleTypes.filter { + if (it.hasBoundedParameters()) + return@filter false + val bound = param.constraints.first().boundary + PythonSubtypeChecker.checkIfRightIsSubtypeOfLeft(bound, it, typeStorage) + } + } + } +} + +fun generateTypesAfterSubstitution(type: UtType, typeStorage: PythonTypeHintsStorage): List { + val params = type.getBoundedParameters() + return PriorityCartesianProduct(params.map { getCandidates(it, typeStorage) }).getSequence().map { subst -> + DefaultSubstitutionProvider.substitute(type, (params zip subst).associate { it }) + }.take(MAX_SUBSTITUTIONS).toList() +} + +fun substituteTypeParameters( + method: PythonMethod, + typeStorage: PythonTypeHintsStorage, +): List { + val newClasses = method.containingPythonClass?.let { + generateTypesAfterSubstitution(it, typeStorage) + } ?: listOf(null) + return newClasses.flatMap { newClass -> + val funcType = newClass?.getPythonAttributeByName(typeStorage, method.name)?.type as? FunctionType + ?: method.definition.type + val newFuncTypes = generateTypesAfterSubstitution(funcType, typeStorage) + newFuncTypes.map { newFuncType -> + val def = PythonFunctionDefinition(method.definition.meta, newFuncType as FunctionType) + PythonMethod( + method.name, + method.moduleFilename, + newClass as? CompositeType, + method.codeAsString, + def, + method.ast + ) + } + }.take(MAX_SUBSTITUTIONS) +} + +fun createShortForm(method: PythonMethod): Pair? { + val meta = method.definition.type.pythonDescription() as PythonCallableTypeDescription + val argKinds = meta.argumentKinds + if (argKinds.any { !isRequired(it) }) { + val originalDef = method.definition + val shortType = meta.removeNotRequiredArgs(originalDef.type) + val shortMeta = PythonFuncItemDescription( + originalDef.meta.name, + originalDef.meta.args.filterIndexed { index, _ -> isRequired(argKinds[index]) } + ) + val additionalVars = originalDef.meta.args + .filterIndexed { index, _ -> !isRequired(argKinds[index]) } + .mapIndexed { index, arg -> + "${arg.name}: ${method.argumentsWithoutSelf[index].annotation ?: pythonAnyType.pythonTypeRepresentation()}" + } + .joinToString(separator = "\n", prefix = "\n") + val shortDef = PythonFunctionDefinition(shortMeta, shortType) + val shortMethod = PythonMethod( + method.name, + method.moduleFilename, + method.containingPythonClass, + method.codeAsString, + shortDef, + method.ast + ) + return Pair(shortMethod, additionalVars) + } + return null +} + +data class ModifiedAnnotation( + val method: PythonMethod, + val additionalVars: String +) + +fun createMethodAnnotationModifications( + method: PythonMethod, + typeStorage: PythonTypeHintsStorage, +): List { + return substituteTypeParameters(method, typeStorage).flatMap { newMethod -> + listOfNotNull( + createShortForm(newMethod), + (newMethod to "") + ) + }.map { + ModifiedAnnotation(it.first, it.second) + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt new file mode 100644 index 0000000000..e405910e0f --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt @@ -0,0 +1,42 @@ +package org.utbot.python.engine.symbolic + +import mu.KotlinLogging +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.engine.ExecutionStorage + +private val logger = KotlinLogging.logger {} + +interface SymbolicEngineApi { + fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiver) +} + +class DummySymbolicEngine( + val configuration: PythonTestGenerationConfig, + val executionStorage: ExecutionStorage, +) : SymbolicEngineApi { + override fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiver) { + val endTime = System.currentTimeMillis() + runConfig.timeoutMs + val symbolicCancellation = { configuration.isCanceled() || System.currentTimeMillis() > endTime } + while (!symbolicCancellation()) { + receiver.receivePickledInputValues("""b'\x80\x04\x95\x11\x00\x00\x00\x00\x00\x00\x00K\x02]\x94(K\x01K\x02e\x86\x94}\x94\x86\x94.'""")?.let { + logger.info { "SYMBOLIC: save new execution" } + executionStorage.saveSymbolicExecution(it) + } + Thread.sleep(100) + } + } + +} + +class SymbolicEngine( + val usvmPythonConfig: USVMPythonConfig, + val configuration: PythonTestGenerationConfig, + val executionStorage: ExecutionStorage, +) : SymbolicEngineApi { + override fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiver) { + receiver.receivePickledInputValues("")?.let { + executionStorage.saveSymbolicExecution(it) + } + TODO() + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt new file mode 100644 index 0000000000..e79922cfa3 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt @@ -0,0 +1,164 @@ +package org.utbot.python.engine.symbolic + +import mu.KotlinLogging +import org.utbot.framework.plugin.api.DocRegularStmt +import org.utbot.framework.plugin.api.EnvironmentModels +import org.utbot.framework.plugin.api.UtError +import org.utbot.framework.plugin.api.UtExecutionFailure +import org.utbot.framework.plugin.api.UtExecutionResult +import org.utbot.framework.plugin.api.UtExecutionSuccess +import org.utbot.framework.plugin.api.UtImplicitlyThrownException +import org.utbot.python.PythonMethod +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.coverage.CoverageIdGenerator +import org.utbot.python.coverage.PyInstruction +import org.utbot.python.coverage.buildCoverage +import org.utbot.python.engine.ExecutionFeedback +import org.utbot.python.engine.InvalidExecution +import org.utbot.python.engine.TypeErrorFeedback +import org.utbot.python.engine.ValidExecution +import org.utbot.python.engine.utils.transformModelList +import org.utbot.python.evaluation.PythonCodeSocketExecutor +import org.utbot.python.evaluation.PythonEvaluationError +import org.utbot.python.evaluation.PythonEvaluationSuccess +import org.utbot.python.evaluation.PythonEvaluationTimeout +import org.utbot.python.evaluation.PythonWorkerManager +import org.utbot.python.evaluation.serialization.toPythonTree +import org.utbot.python.framework.api.python.PythonSymbolicUtExecution +import org.utbot.python.framework.api.python.PythonTreeModel +import org.utbot.python.utils.camelToSnakeCase +import org.utbot.summary.fuzzer.names.TestSuggestedInfo +import java.net.ServerSocket +import java.util.concurrent.TimeoutException + +private val logger = KotlinLogging.logger {} + +class USVMPythonAnalysisResultReceiver( + val method: PythonMethod, + val configuration: PythonTestGenerationConfig, + val until: Long, +) { + private val serverSocket = ServerSocket(0) + private val manager = + PythonWorkerManager( + serverSocket, + configuration.pythonPath, + until, + configuration.coverageMeasureMode, + configuration.sendCoverageContinuously, + ) { + PythonCodeSocketExecutor( + method, + configuration.testFileInformation.moduleName, + configuration.pythonPath, + configuration.sysPathDirectories, + configuration.timeoutForRun, + it, + ) + } + + fun receivePickledInputValues(pickledTuple: String): ExecutionFeedback? { + serverSocket.use { + try { + val coverageId = CoverageIdGenerator.createId() + return when ( + val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) + ) { + is PythonEvaluationError -> { + val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") + val utError = UtError( + "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", + Throwable(stackTraceMessage) + ) + logger.debug(stackTraceMessage) + InvalidExecution(utError) + } + + is PythonEvaluationTimeout -> { +// val coveredInstructions = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) +// handleTimeoutResult(method, coveredInstructions) + null + } + + is PythonEvaluationSuccess -> { + handleSuccessResult(method, evaluationResult) + } + } + } catch (_: TimeoutException) { + logger.debug { "Fuzzing process was interrupted by timeout" } + return null + } + } + } + + private fun suggestExecutionName( + method: PythonMethod, + executionResult: UtExecutionResult + ): TestSuggestedInfo { + val testSuffix = when (executionResult) { + is UtExecutionSuccess -> { + // can be improved + method.name + } + is UtExecutionFailure -> "${method.name}_with_exception" + else -> method.name + } + val testName = "test_$testSuffix" + return TestSuggestedInfo( + testName, + testName, + ) + } + + private fun handleSuccessResult( + method: PythonMethod, + evaluationResult: PythonEvaluationSuccess + ): ExecutionFeedback { + val prohibitedExceptions = listOf( + "builtins.AttributeError", + "builtins.TypeError", + "builtins.NotImplementedError", + ) + + val summary = emptyList() // TODO: improve + val hasThisObject = method.hasThisArgument + val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) + + if (evaluationResult.isException && (resultModel.type.name in prohibitedExceptions)) { // wrong type (sometimes mypy fails) + val errorMessage = "Evaluation with prohibited exception. Substituted types: ???" // TODO: improve message + logger.debug { errorMessage } + return TypeErrorFeedback(errorMessage) + } + val executionResult = + if (evaluationResult.isException) { + UtImplicitlyThrownException(Throwable(resultModel.type.toString()), false) + } + else { + UtExecutionSuccess(PythonTreeModel(resultModel)) + } + val testMethodName = suggestExecutionName(method, executionResult) + + val (beforeThisObject, beforeModelList) = transformModelList(hasThisObject, evaluationResult.stateBefore, evaluationResult.modelListIds) + val (afterThisObject, afterModelList) = transformModelList(hasThisObject, evaluationResult.stateAfter, evaluationResult.modelListIds) + + val utFuzzedExecution = PythonSymbolicUtExecution( + stateBefore = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), + stateAfter = EnvironmentModels(afterThisObject, afterModelList, emptyMap(), executableToCall = null), + diffIds = evaluationResult.diffIds, + result = executionResult, + coverage = buildCoverage(evaluationResult.coveredStatements, evaluationResult.missedStatements), + testMethodName = testMethodName.testName?.camelToSnakeCase(), + displayName = testMethodName.displayName, + summary = summary.map { DocRegularStmt(it) }, + arguments = method.argumentsWithoutSelf, + ) + return ValidExecution(utFuzzedExecution) + } + + private fun handleTimeoutResult( + method: PythonMethod, + coveredInstructions: MutableList + ): ExecutionFeedback { + TODO() + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt new file mode 100644 index 0000000000..63ccbc1300 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt @@ -0,0 +1,20 @@ +package org.utbot.python.engine.symbolic + +data class USVMPythonConfig( + val distributionPath: String, + val mypyBuildDir: String, +) + +sealed class USVMPythonCallableConfig + +data class USVMPythonFunctionConfig( + val module: String, + val name: String, +): USVMPythonCallableConfig() + +data class USVMPythonRunConfig( + val callableConfig: USVMPythonCallableConfig, + val timeoutMs: Long, + val timeoutPerRunMs: Long, +) + diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/utils/ModelsTransformation.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/utils/ModelsTransformation.kt new file mode 100644 index 0000000000..cef51ab953 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/utils/ModelsTransformation.kt @@ -0,0 +1,31 @@ +package org.utbot.python.engine.utils + +import org.utbot.framework.plugin.api.UtModel +import org.utbot.python.evaluation.serialization.MemoryDump +import org.utbot.python.evaluation.serialization.toPythonTree +import org.utbot.python.framework.api.python.PythonTreeModel + +fun transformModelList( + hasThisObject: Boolean, + state: MemoryDump, + modelListIds: List +): Pair> { + val (stateThisId, resultModelListIds) = + if (hasThisObject) { + Pair(modelListIds.first(), modelListIds.drop(1)) + } else { + Pair(null, modelListIds) + } + val stateThisObject = stateThisId?.let { + PythonTreeModel( + state.getById(it).toPythonTree(state) + ) + } + val modelList = resultModelListIds.map { + PythonTreeModel( + state.getById(it).toPythonTree(state) + ) + } + return Pair(stateThisObject, modelList) +} + diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt index 7e6eed438a..c7cefa86e3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/CodeEvaluationApi.kt @@ -23,6 +23,11 @@ interface PythonCodeExecutor { coverageId: String, ): PythonEvaluationResult + fun runWithCoverage( + pickledArguments: String, + coverageId: String, + ): PythonEvaluationResult + fun stop() } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index f30872204a..148ad71561 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -1,6 +1,5 @@ package org.utbot.python.evaluation -import mu.KotlinLogging import org.utbot.python.FunctionArguments import org.utbot.python.PythonMethod import org.utbot.python.evaluation.serialization.ExecutionRequest @@ -12,6 +11,7 @@ import org.utbot.python.evaluation.serialization.SuccessExecution import org.utbot.python.evaluation.serialization.serializeObjects import org.utbot.python.coverage.CoverageIdGenerator import org.utbot.python.coverage.toPyInstruction +import org.utbot.python.evaluation.serialization.MemoryMode import org.utbot.python.newtyping.PythonCallableTypeDescription import org.utbot.python.newtyping.pythonDescription import org.utbot.python.newtyping.pythonTypeName @@ -87,6 +87,7 @@ class PythonCodeSocketExecutor( positionalArguments.map { it.first }, namedArguments.associate { it.second!! to it.first }, // here can be only-kwargs arguments memory, + MemoryMode.REDUCE, method.moduleFilename, coverageId, ) @@ -115,6 +116,52 @@ class PythonCodeSocketExecutor( } } + override fun runWithCoverage(pickledArguments: String, coverageId: String): PythonEvaluationResult { + val containingClass = method.containingPythonClass + val functionTextName = + if (containingClass == null) + method.name + else { + val fullname = "${containingClass.pythonTypeName()}.${method.name}" + fullname.drop(moduleToImport.length).removePrefix(".") + } + + val request = ExecutionRequest( + functionTextName, + moduleToImport, + emptyList(), + syspathDirectories.toList(), + emptyList(), + emptyMap(), + pickledArguments, + MemoryMode.PICKLE, + method.moduleFilename, + coverageId, + ) + val message = ExecutionRequestSerializer.serializeRequest(request) ?: error("Cannot serialize request to python executor") + try { + pythonWorker.sendData(message) + } catch (_: SocketException) { + return parseExecutionResult(FailExecution("Send data error")) + } + + val (status, response) = UtExecutorThread.run(pythonWorker, executionTimeout) + return when (status) { + UtExecutorThread.Status.TIMEOUT -> { + PythonEvaluationTimeout() + } + + UtExecutorThread.Status.OK -> { + val executionResult = response?.let { + ExecutionResultDeserializer.parseExecutionResult(it) + ?: error("Cannot parse execution result: $it") + } ?: FailExecution("Execution result error") + + parseExecutionResult(executionResult) + } + } + } + private fun parseExecutionResult(executionResult: PythonExecutionResult): PythonEvaluationResult { val parsingException = PythonEvaluationError( -1, @@ -123,9 +170,9 @@ class PythonCodeSocketExecutor( ) return when (executionResult) { is SuccessExecution -> { - val stateInit = ExecutionResultDeserializer.parseMemoryDump(executionResult.stateInit) ?: return parsingException val stateBefore = ExecutionResultDeserializer.parseMemoryDump(executionResult.stateBefore) ?: return parsingException val stateAfter = ExecutionResultDeserializer.parseMemoryDump(executionResult.stateAfter) ?: return parsingException + val stateInit = ExecutionResultDeserializer.parseMemoryDump(executionResult.stateInit) ?: stateBefore val diffIds = executionResult.diffIds.map {it.toLong()} val statements = executionResult.statements.mapNotNull { it.toPyInstruction() } val missedStatements = executionResult.missedStatements.mapNotNull { it.toPyInstruction() } @@ -141,11 +188,13 @@ class PythonCodeSocketExecutor( executionResult.resultId, ) } - is FailExecution -> PythonEvaluationError( - -2, - "Fail Execution", - executionResult.exception.split(System.lineSeparator()), - ) + is FailExecution -> { + PythonEvaluationError( + -2, + "Fail Execution", + executionResult.exception.split(System.lineSeparator()), + ) + } } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 0841e1c36a..f3628f01b6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -12,6 +12,7 @@ import java.net.Socket import java.net.SocketTimeoutException import org.apache.logging.log4j.LogManager import org.utbot.python.coverage.PythonCoverageMode +import java.net.SocketException private val logger = KotlinLogging.logger {} @@ -65,6 +66,9 @@ class PythonWorkerManager( logger.debug { "utbot_executor exit value: ${result.exitValue}. stderr: ${result.stderr}, stdout: ${result.stdout}." } process.destroy() throw TimeoutException("Worker not connected") + } catch (e: SocketException) { + logger.debug { e.message } + throw TimeoutException("Worker not connected") } logger.debug { "Worker connected successfully" } @@ -106,6 +110,23 @@ class PythonWorkerManager( return evaluationResult } + fun runWithCoverage( + pickledArguments: String, + coverageId: String + ): PythonEvaluationResult { + val evaluationResult = try { + codeExecutor.runWithCoverage(pickledArguments, coverageId) + } catch (_: SocketTimeoutException) { + logger.debug { "Socket timeout" } + reconnect() + PythonEvaluationTimeout() + } + if (evaluationResult is PythonEvaluationError || evaluationResult is PythonEvaluationTimeout) { + reconnect() + } + return evaluationResult + } + fun run( fuzzedValues: FunctionArguments, additionalModulesToImport: Set diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionRequestSerializer.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionRequestSerializer.kt index d4b9d7bbc6..a8db047a6a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionRequestSerializer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionRequestSerializer.kt @@ -15,6 +15,11 @@ object ExecutionRequestSerializer { } } +enum class MemoryMode { + PICKLE, + REDUCE +} + data class ExecutionRequest( val functionName: String, val functionModule: String, @@ -23,6 +28,7 @@ data class ExecutionRequest( val argumentsIds: List, val kwargumentsIds: Map, val serializedMemory: String, + val memoryMode: MemoryMode, val filepath: String, val coverageId: String, ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt index 9cc140a12a..b28f16e72f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt @@ -35,7 +35,11 @@ object ExecutionResultDeserializer { } fun parseMemoryDump(content: String): MemoryDump? { - return jsonAdapterMemoryDump.fromJson(content) + return if (content.isNotEmpty()) { + jsonAdapterMemoryDump.fromJson(content) + } else { + null + } } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonApi.kt index e2c6ca43ba..2e7d37ca48 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonApi.kt @@ -87,7 +87,7 @@ class PythonTreeModel( } } -class PythonUtExecution( +open class PythonUtExecution( val stateInit: EnvironmentModels, stateBefore: EnvironmentModels, stateAfter: EnvironmentModels, @@ -133,4 +133,16 @@ class PythonUtExecution( arguments = arguments ) } -} \ No newline at end of file +} + +class PythonSymbolicUtExecution( + stateBefore: EnvironmentModels, + stateAfter: EnvironmentModels, + diffIds: List, + result: UtExecutionResult, + arguments: List, + coverage: Coverage? = null, + summary: List? = null, + testMethodName: String? = null, + displayName: String? = null, +) : PythonUtExecution(stateBefore, stateBefore, stateAfter, diffIds, result, arguments, coverage, summary, testMethodName, displayName) \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 2d7f63ac35..9d657662b6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -1,13 +1,12 @@ package org.utbot.python.fuzzing import mu.KotlinLogging -import org.utbot.framework.plugin.api.UtError import org.utbot.fuzzer.FuzzedContext import org.utbot.fuzzing.* import org.utbot.fuzzing.utils.Trie import org.utbot.python.coverage.PyInstruction +import org.utbot.python.engine.ExecutionFeedback import org.utbot.python.framework.api.python.PythonTree -import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.fuzzing.provider.* import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.newtyping.* @@ -32,25 +31,16 @@ data class PythonFuzzedConcreteValue( class PythonMethodDescription( val name: String, - parameters: List, val concreteValues: Collection = emptyList(), val pythonTypeStorage: PythonTypeHintsStorage, val tracer: Trie, val random: Random, val limitManager: TestGenerationLimitManager, val type: FunctionType, -) : Description(parameters) - -sealed interface FuzzingExecutionFeedback -class ValidExecution(val utFuzzedExecution: PythonUtExecution): FuzzingExecutionFeedback -class InvalidExecution(val utError: UtError): FuzzingExecutionFeedback -class TypeErrorFeedback(val message: String) : FuzzingExecutionFeedback -class ArgumentsTypeErrorFeedback(val message: String) : FuzzingExecutionFeedback -class CachedExecutionFeedback(val cachedFeedback: FuzzingExecutionFeedback) : FuzzingExecutionFeedback -object FakeNodeFeedback : FuzzingExecutionFeedback +) : Description(type.arguments) data class PythonExecutionResult( - val fuzzingExecutionFeedback: FuzzingExecutionFeedback, + val executionFeedback: ExecutionFeedback, val fuzzingPlatformFeedback: PythonFeedback ) @@ -150,16 +140,14 @@ class PythonFuzzing( private suspend fun forkType(description: PythonMethodDescription, stats: Statistic) { val type: UtType? = typeInferenceAlgorithm.expandState() if (type != null) { - val newTypes = (type as FunctionType).arguments val d = PythonMethodDescription( description.name, - newTypes, description.concreteValues, description.pythonTypeStorage, description.tracer, description.random, TestGenerationLimitManager(ExecutionWithTimoutMode, description.limitManager.until), - type + type as FunctionType ) if (!d.limitManager.isCancelled()) { logger.debug { "Fork new type" } From 3a532c61d6288702d6471513e87b39651d87152f Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 3 Nov 2023 12:18:02 +0300 Subject: [PATCH 061/144] Add usvm --- build.gradle.kts | 41 +++++- .../python/PythonGenerateTestsCommand.kt | 4 +- .../plugin/python/PythonDialogProcessor.kt | 6 +- .../main/python/utbot_executor/pyproject.toml | 2 +- .../deep_serialization/memory_objects.py | 5 +- .../src/main/resources/utbot_executor_version | 2 +- .../utbot/python/newtyping/mypy/RunMypy.kt | 2 +- utbot-python/build.gradle.kts | 5 +- .../utbot/python/PythonTestCaseGenerator.kt | 8 +- .../python/PythonTestGenerationConfig.kt | 9 ++ .../python/PythonTestGenerationProcessor.kt | 16 +-- .../utbot/python/engine/GlobalPythonEngine.kt | 51 +++++--- .../python/engine/fuzzing/FuzzingEngine.kt | 3 +- .../python/engine/symbolic/SymbolicEngine.kt | 22 ++-- ...> USVMPythonAnalysisResultReceiverImpl.kt} | 121 ++++++++++-------- .../engine/symbolic/USVMPythonConfig.kt | 34 ++--- .../python/engine/symbolic/UsvmLoader.kt | 9 ++ .../python/evaluation/PythonWorkerManager.kt | 5 +- 18 files changed, 222 insertions(+), 123 deletions(-) rename utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/{USVMPythonAnalysisResultReceiver.kt => USVMPythonAnalysisResultReceiverImpl.kt} (65%) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt diff --git a/build.gradle.kts b/build.gradle.kts index 823b6c22ba..7322c60014 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,4 @@ import java.text.SimpleDateFormat -import org.gradle.api.JavaVersion.* import org.jetbrains.kotlin.gradle.tasks.KotlinCompile group = "org.utbot" @@ -137,6 +136,13 @@ allprojects { } } +// from GRADLE_USER_HOME/gradle.properties + val githubUserFromHome: String? by project + val githubTokenFromHome: String? by project // with permission to read packages + + val githubUser: String = githubUserFromHome ?: System.getenv("GITHUB_ACTOR") ?: error("githubUser not defined") + val githubToken: String = githubTokenFromHome ?: System.getenv("GITHUB_TOKEN") ?: error("githubToken not defined") + repositories { mavenCentral() maven("https://jitpack.io") @@ -144,6 +150,13 @@ allprojects { maven("https://plugins.gradle.org/m2") maven("https://www.jetbrains.com/intellij-repository/releases") maven("https://cache-redirector.jetbrains.com/maven-central") + maven { + url = uri("https://maven.pkg.github.com/UnitTestBot/usvm") + credentials { + username = githubUser + password = githubToken + } + } } dependencies { @@ -209,3 +222,29 @@ configure( } } } + +// from GRADLE_USER_HOME/gradle.properties +val githubUserFromHome: String? by project +val githubTokenFromHome: String? by project // with permission to read packages + +val githubUser: String = githubUserFromHome ?: System.getenv("GITHUB_ACTOR") ?: error("githubUser not defined") +val githubToken: String = githubTokenFromHome ?: System.getenv("GITHUB_TOKEN") ?: error("githubToken not defined") + +configure( + listOf( + project(":utbot-python"), + project(":utbot-intellij-python"), + project(":utbot-intellij-main"), + project(":utbot-cli-python"), + ) +) { + repositories { + maven { + url = uri("https://maven.pkg.github.com/UnitTestBot/usvm") + credentials { + username = githubUser + password = githubToken + } + } + } +} \ No newline at end of file diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index c7f20382e4..50e4cb305a 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -280,10 +280,10 @@ class PythonGenerateTestsCommand : CliktCommand( ) logger.info("Loading information about Python types...") - val (mypyStorage, mypyReport) = processor.sourceCodeAnalyze() + val mypyConfig = processor.sourceCodeAnalyze() logger.info("Generating tests...") - var testSets = processor.testGenerate(mypyStorage, mypyReport) + var testSets = processor.testGenerate(mypyConfig) if (testSets.isEmpty()) return if (doNotGenerateRegressionSuite) { testSets = testSets.map { testSet -> diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index d8a4a40948..7ce9a5c84b 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -287,7 +287,7 @@ object PythonDialogProcessor { localUpdateIndicator(ProgressRange.ANALYZE, "Analyze module ${model.currentPythonModule}", 0.5) - val (mypyStorage, mypyReport) = processor.sourceCodeAnalyze() + val mypyConfig = processor.sourceCodeAnalyze() localUpdateIndicator(ProgressRange.ANALYZE, "Analyze module ${model.currentPythonModule}", 1.0) @@ -300,7 +300,7 @@ object PythonDialogProcessor { model.timeout, ) try { - val testSets = processor.testGenerate(mypyStorage, mypyReport) + val testSets = processor.testGenerate(mypyConfig) timerHandler.cancel(true) if (testSets.isEmpty()) return@forEachIndexed @@ -312,7 +312,7 @@ object PythonDialogProcessor { logger.info( "Finished test generation for the following functions: ${ - testSets.joinToString { it.method.name } + testSets.map { it.method.name }.toSet().joinToString() }" ) } finally { diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 5448b3d343..6dda38920a 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.0.dev9" +version = "1.9.0.dev10" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py index 5acc0703a5..e4f591bfd8 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py @@ -332,7 +332,10 @@ def initialize(self) -> None: for key, value in dictitems.items(): deserialized_obj[key] = value - comparable = self.obj == deserialized_obj + try: + comparable = self.obj == deserialized_obj + except: + comparable = False super()._initialize(deserialized_obj, comparable) diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 884f0b7555..3a15e8b8c7 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.0.dev9 \ No newline at end of file +1.9.0.dev10 \ No newline at end of file diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt index 4491154bd1..bf76a12be6 100644 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/mypy/RunMypy.kt @@ -19,7 +19,7 @@ class MypyBuildDirectory( val fileForMypyStdout = File(root, mypyStdoutFilename) val fileForMypyStderr = File(root, mypyStderrFilename) val fileForMypyExitStatus = File(root, mypyExitStatusFilename) - private val dirForCache = File(root, mypyCacheDirectoryName) + val dirForCache = File(root, mypyCacheDirectoryName) init { val configContent = """ diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 8d0c4b02c6..5e70e467c7 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -2,9 +2,6 @@ val intellijPluginVersion: String? by rootProject val kotlinLoggingVersion: String? by rootProject val apacheCommonsTextVersion: String? by rootProject val jacksonVersion: String? by rootProject -val ideType: String? by rootProject -val pythonCommunityPluginVersion: String? by rootProject -val pythonUltimatePluginVersion: String? by rootProject val log4j2Version: String? by rootProject dependencies { @@ -13,6 +10,8 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) + api("org.usvm:usvm-python-runner:74d8ccc") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") implementation(group = "org.apache.commons", name = "commons-lang3", version = "3.12.0") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index 868a1218ec..6fd40f4521 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -7,16 +7,13 @@ import org.utbot.framework.plugin.api.UtError import org.utbot.framework.plugin.api.UtExecutionSuccess import org.utbot.python.engine.GlobalPythonEngine import org.utbot.python.framework.api.python.PythonUtExecution -import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.MypyReportLine private val logger = KotlinLogging.logger {} private const val MAX_EMPTY_COVERAGE_TESTS = 5 class PythonTestCaseGenerator( private val configuration: PythonTestGenerationConfig, - private val mypyStorage: MypyInfoBuild, - private val mypyReportLine: List + private val mypyConfig: MypyConfig, ) { private val withMinimization = configuration.withMinimization @@ -26,8 +23,7 @@ class PythonTestCaseGenerator( val engine = GlobalPythonEngine( method = method, configuration = configuration, - mypyStorage, - mypyReportLine, + mypyConfig, until, ) try { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 99a9500e18..27855492e0 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -4,6 +4,9 @@ import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour import org.utbot.framework.codegen.domain.TestFramework import org.utbot.python.coverage.CoverageOutputFormat import org.utbot.python.coverage.PythonCoverageMode +import org.utbot.python.newtyping.mypy.MypyBuildDirectory +import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utbot.python.newtyping.mypy.MypyReportLine import java.nio.file.Path data class TestFileInformation( @@ -27,4 +30,10 @@ class PythonTestGenerationConfig( val coverageMeasureMode: PythonCoverageMode = PythonCoverageMode.Instructions, val sendCoverageContinuously: Boolean = true, val coverageOutputFormat: CoverageOutputFormat = CoverageOutputFormat.Lines, +) + +data class MypyConfig( + val mypyStorage: MypyInfoBuild, + val mypyReportLine: List, + val mypyBuildDirectory: MypyBuildDirectory, ) \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 57762d1175..8f8f6b78d6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -34,7 +34,6 @@ import org.utbot.python.newtyping.general.CompositeType import org.utbot.python.newtyping.getPythonAttributes import org.utbot.python.newtyping.mypy.MypyBuildDirectory import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.MypyReportLine import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors import org.utbot.python.newtyping.pythonName import org.utbot.python.utils.TemporaryFileManager @@ -49,22 +48,23 @@ abstract class PythonTestGenerationProcessor { abstract val configuration: PythonTestGenerationConfig private val mypyBuildRoot = TemporaryFileManager.assignTemporaryFile(tag = "mypyBuildRoot") - fun sourceCodeAnalyze(): Pair> { - return readMypyAnnotationStorageAndInitialErrors( + fun sourceCodeAnalyze(): MypyConfig { + val buildDirectory = MypyBuildDirectory(mypyBuildRoot, configuration.sysPathDirectories) + val (mypyInfoBuild, mypyReportLines) = readMypyAnnotationStorageAndInitialErrors( configuration.pythonPath, configuration.testFileInformation.testedFilePath, configuration.testFileInformation.moduleName, - MypyBuildDirectory(mypyBuildRoot, configuration.sysPathDirectories) + buildDirectory ) + return MypyConfig(mypyInfoBuild, mypyReportLines, buildDirectory) } - fun testGenerate(mypyStorage: MypyInfoBuild, mypyReport: List): List { + fun testGenerate(mypyConfig: MypyConfig): List { val startTime = System.currentTimeMillis() val testCaseGenerator = PythonTestCaseGenerator( configuration = configuration, - mypyStorage = mypyStorage, - mypyReportLine = mypyReport, + mypyConfig = mypyConfig, ) val until = startTime + configuration.timeout @@ -73,7 +73,7 @@ abstract class PythonTestGenerationProcessor { val localUntil = (until - System.currentTimeMillis()) / methodsLeft + System.currentTimeMillis() try { val method = findMethodByHeader( - mypyStorage, + mypyConfig.mypyStorage, methodHeader, configuration.testFileInformation.moduleName, configuration.testFileInformation.testedFileContent diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 35a46e918c..e3020fbfce 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -1,20 +1,23 @@ package org.utbot.python.engine import mu.KotlinLogging +import org.usvm.runner.StandardLayout +import org.usvm.runner.USVMPythonConfig +import org.usvm.runner.USVMPythonFunctionConfig +import org.usvm.runner.USVMPythonRunConfig +import org.utbot.python.MypyConfig import org.utbot.python.PythonMethod import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.engine.fuzzing.FuzzingEngine -import org.utbot.python.engine.symbolic.DummySymbolicEngine -import org.utbot.python.engine.symbolic.USVMPythonAnalysisResultReceiver -import org.utbot.python.engine.symbolic.USVMPythonFunctionConfig -import org.utbot.python.engine.symbolic.USVMPythonRunConfig +import org.utbot.python.engine.symbolic.SymbolicEngine +import org.utbot.python.engine.symbolic.USVMPythonAnalysisResultReceiverImpl +import org.utbot.python.engine.symbolic.UsvmLoader import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.Visitor import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.mypy.GlobalNamesStorage import org.utbot.python.newtyping.mypy.MypyInfoBuild -import org.utbot.python.newtyping.mypy.MypyReportLine import kotlin.concurrent.thread private val logger = KotlinLogging.logger {} @@ -22,15 +25,14 @@ private val logger = KotlinLogging.logger {} class GlobalPythonEngine( val method: PythonMethod, val configuration: PythonTestGenerationConfig, - val mypyStorage: MypyInfoBuild, - val mypyReport: List, + private val mypyConfig: MypyConfig, val until: Long, ) { val executionStorage = ExecutionStorage() - val typeStorage = PythonTypeHintsStorage.get(mypyStorage) - val constantCollector = ConstantCollector(typeStorage) - val hintCollector = constructHintCollector( - mypyStorage, + private val typeStorage = PythonTypeHintsStorage.get(mypyConfig.mypyStorage) + private val constantCollector = ConstantCollector(typeStorage) + private val hintCollector = constructHintCollector( + mypyConfig.mypyStorage, typeStorage, constantCollector, method, @@ -44,25 +46,40 @@ class GlobalPythonEngine( typeStorage, hintCollector, constantCollector, - mypyStorage, - mypyReport, + mypyConfig.mypyStorage, + mypyConfig.mypyReportLine, until, executionStorage, ).start() } private fun runSymbolic() { - DummySymbolicEngine( + val javaHome = System.getProperty("java.home") + val usvmPythonConfig = USVMPythonConfig( + StandardLayout(UsvmLoader.usvmDirectory), + "$javaHome/bin/java", + mypyConfig.mypyBuildDirectory.root.canonicalPath, + configuration.sysPathDirectories + ) + val receiver = USVMPythonAnalysisResultReceiverImpl( + method, configuration, executionStorage, + System.currentTimeMillis() + configuration.timeout + ) + SymbolicEngine( + usvmPythonConfig, + configuration, ).analyze( USVMPythonRunConfig( - USVMPythonFunctionConfig(method.moduleFilename, method.name), + USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name), configuration.timeout, - configuration.timeoutForRun + configuration.timeoutForRun * 3 ), - USVMPythonAnalysisResultReceiver(method, configuration, System.currentTimeMillis() + configuration.timeout) + receiver ) + logger.info { "Symbolic: stop receiver" } + receiver.close() } fun run() { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 88120a4eb6..8bf7c464bd 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -110,7 +110,7 @@ class FuzzingEngine( } } - fun generateTests( + private fun generateTests( method: PythonMethod, additionalVars: String, until: Long, @@ -154,7 +154,6 @@ class FuzzingEngine( fuzzerCancellation, until ).collect { - logger.info { "FUZZING: save new execution" } executionStorage.saveFuzzingExecution(it) } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt index e405910e0f..1aa1cabe81 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt @@ -1,24 +1,27 @@ package org.utbot.python.engine.symbolic import mu.KotlinLogging +import org.usvm.runner.PythonSymbolicAnalysisRunnerImpl +import org.usvm.runner.USVMPythonConfig +import org.usvm.runner.USVMPythonRunConfig import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.engine.ExecutionStorage private val logger = KotlinLogging.logger {} interface SymbolicEngineApi { - fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiver) + fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiverImpl) } class DummySymbolicEngine( val configuration: PythonTestGenerationConfig, val executionStorage: ExecutionStorage, ) : SymbolicEngineApi { - override fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiver) { + override fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiverImpl) { val endTime = System.currentTimeMillis() + runConfig.timeoutMs val symbolicCancellation = { configuration.isCanceled() || System.currentTimeMillis() > endTime } while (!symbolicCancellation()) { - receiver.receivePickledInputValues("""b'\x80\x04\x95\x11\x00\x00\x00\x00\x00\x00\x00K\x02]\x94(K\x01K\x02e\x86\x94}\x94\x86\x94.'""")?.let { + receiver.receivePickledInputValuesWithFeedback("""b'\x80\x04\x95\x11\x00\x00\x00\x00\x00\x00\x00K\x02]\x94(K\x01K\x02e\x86\x94}\x94\x86\x94.'""")?.let { logger.info { "SYMBOLIC: save new execution" } executionStorage.saveSymbolicExecution(it) } @@ -31,12 +34,15 @@ class DummySymbolicEngine( class SymbolicEngine( val usvmPythonConfig: USVMPythonConfig, val configuration: PythonTestGenerationConfig, - val executionStorage: ExecutionStorage, ) : SymbolicEngineApi { - override fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiver) { - receiver.receivePickledInputValues("")?.let { - executionStorage.saveSymbolicExecution(it) + override fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiverImpl) { + val endTime = System.currentTimeMillis() + runConfig.timeoutMs + val symbolicCancellation = { configuration.isCanceled() || System.currentTimeMillis() > endTime } + val symbolicRunner = PythonSymbolicAnalysisRunnerImpl(usvmPythonConfig) + symbolicRunner.use { + logger.info { "Start symbolic ${System.currentTimeMillis()}" } + it.analyze(runConfig, receiver, symbolicCancellation) + logger.info { "Stop symbolic ${System.currentTimeMillis()}" } } - TODO() } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt similarity index 65% rename from utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt rename to utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index e79922cfa3..6deca9f744 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiver.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -1,6 +1,7 @@ package org.utbot.python.engine.symbolic import mu.KotlinLogging +import org.usvm.runner.USVMPythonAnalysisResultReceiver import org.utbot.framework.plugin.api.DocRegularStmt import org.utbot.framework.plugin.api.EnvironmentModels import org.utbot.framework.plugin.api.UtError @@ -14,6 +15,7 @@ import org.utbot.python.coverage.CoverageIdGenerator import org.utbot.python.coverage.PyInstruction import org.utbot.python.coverage.buildCoverage import org.utbot.python.engine.ExecutionFeedback +import org.utbot.python.engine.ExecutionStorage import org.utbot.python.engine.InvalidExecution import org.utbot.python.engine.TypeErrorFeedback import org.utbot.python.engine.ValidExecution @@ -29,65 +31,82 @@ import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.utils.camelToSnakeCase import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket +import java.net.SocketException import java.util.concurrent.TimeoutException private val logger = KotlinLogging.logger {} -class USVMPythonAnalysisResultReceiver( +class USVMPythonAnalysisResultReceiverImpl( val method: PythonMethod, val configuration: PythonTestGenerationConfig, + val executionStorage: ExecutionStorage, val until: Long, -) { - private val serverSocket = ServerSocket(0) - private val manager = - PythonWorkerManager( - serverSocket, - configuration.pythonPath, - until, - configuration.coverageMeasureMode, - configuration.sendCoverageContinuously, - ) { - PythonCodeSocketExecutor( - method, - configuration.testFileInformation.moduleName, +) : USVMPythonAnalysisResultReceiver() { + private lateinit var serverSocket: ServerSocket + private lateinit var manager: PythonWorkerManager + + init { + connect() + } + + fun connect() { + serverSocket = ServerSocket(0) + manager = + PythonWorkerManager( + serverSocket, configuration.pythonPath, - configuration.sysPathDirectories, - configuration.timeoutForRun, - it, - ) - } + until, + configuration.coverageMeasureMode, + configuration.sendCoverageContinuously, + ) { + PythonCodeSocketExecutor( + method, + configuration.testFileInformation.moduleName, + configuration.pythonPath, + configuration.sysPathDirectories, + configuration.timeoutForRun, + it, + ) + } + } + + fun close() { + manager.shutdown() + serverSocket.close() + } + + fun receivePickledInputValuesWithFeedback(pickledTuple: String): ExecutionFeedback? { + try { + val coverageId = CoverageIdGenerator.createId() + return when ( + val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) + ) { + is PythonEvaluationError -> { + val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") + val utError = UtError( + "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", + Throwable(stackTraceMessage) + ) + logger.debug(stackTraceMessage) + InvalidExecution(utError) + } - fun receivePickledInputValues(pickledTuple: String): ExecutionFeedback? { - serverSocket.use { - try { - val coverageId = CoverageIdGenerator.createId() - return when ( - val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) - ) { - is PythonEvaluationError -> { - val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") - val utError = UtError( - "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", - Throwable(stackTraceMessage) - ) - logger.debug(stackTraceMessage) - InvalidExecution(utError) - } - - is PythonEvaluationTimeout -> { + is PythonEvaluationTimeout -> { // val coveredInstructions = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) // handleTimeoutResult(method, coveredInstructions) - null - } + null + } - is PythonEvaluationSuccess -> { - handleSuccessResult(method, evaluationResult) - } + is PythonEvaluationSuccess -> { + handleSuccessResult(method, evaluationResult) } - } catch (_: TimeoutException) { - logger.debug { "Fuzzing process was interrupted by timeout" } - return null } + } catch (_: TimeoutException) { + logger.debug { "Symbolic process was interrupted by timeout" } + return null + } catch (_: SocketException) { + connect() + return null } } @@ -125,7 +144,7 @@ class USVMPythonAnalysisResultReceiver( val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) if (evaluationResult.isException && (resultModel.type.name in prohibitedExceptions)) { // wrong type (sometimes mypy fails) - val errorMessage = "Evaluation with prohibited exception. Substituted types: ???" // TODO: improve message + val errorMessage = "Evaluation with prohibited exception. Error: $resultModel" logger.debug { errorMessage } return TypeErrorFeedback(errorMessage) } @@ -155,10 +174,10 @@ class USVMPythonAnalysisResultReceiver( return ValidExecution(utFuzzedExecution) } - private fun handleTimeoutResult( - method: PythonMethod, - coveredInstructions: MutableList - ): ExecutionFeedback { - TODO() + override fun receivePickledInputValues(pickledTuple: String) { + logger.info { "SYMBOLIC: $pickledTuple" } + receivePickledInputValuesWithFeedback(pickledTuple)?.let { + executionStorage.saveSymbolicExecution(it) + } } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt index 63ccbc1300..5340f8a02c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt @@ -1,20 +1,20 @@ package org.utbot.python.engine.symbolic -data class USVMPythonConfig( - val distributionPath: String, - val mypyBuildDir: String, -) - -sealed class USVMPythonCallableConfig - -data class USVMPythonFunctionConfig( - val module: String, - val name: String, -): USVMPythonCallableConfig() - -data class USVMPythonRunConfig( - val callableConfig: USVMPythonCallableConfig, - val timeoutMs: Long, - val timeoutPerRunMs: Long, -) +//data class USVMPythonConfig( +// val distributionPath: String, +// val mypyBuildDir: String, +//) +// +//sealed class USVMPythonCallableConfig +// +//data class USVMPythonFunctionConfig( +// val module: String, +// val name: String, +//): USVMPythonCallableConfig() +// +//data class USVMPythonRunConfig( +// val callableConfig: USVMPythonCallableConfig, +// val timeoutMs: Long, +// val timeoutPerRunMs: Long, +//) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt new file mode 100644 index 0000000000..e4f5b28c6c --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt @@ -0,0 +1,9 @@ +package org.utbot.python.engine.symbolic + +import java.io.File + +class UsvmLoader { + companion object { + val usvmDirectory = File("/home/vyacheslav/IdeaProjects/NewUTBot/UTBotJava/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/usvm-python") + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index f3628f01b6..686fd12956 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -42,6 +42,9 @@ class PythonWorkerManager( process.destroy() } val logLevel = LogManager.getRootLogger().level.name() + if (serverSocket.isClosed) { + serverSocket.accept() + } process = startProcess(listOf( pythonPath, "-m", "utbot_executor", @@ -68,7 +71,7 @@ class PythonWorkerManager( throw TimeoutException("Worker not connected") } catch (e: SocketException) { logger.debug { e.message } - throw TimeoutException("Worker not connected") + throw SocketException("Worker not connected: $e") } logger.debug { "Worker connected successfully" } From a8201470b1daf612fb7fdfd798c90f07a950b210 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 3 Nov 2023 15:37:31 +0300 Subject: [PATCH 062/144] Add usvm arguments --- .../language/python/PythonGenerateTestsCommand.kt | 13 +++++++++++++ .../utbot/python/PythonTestGenerationConfig.kt | 15 ++++++++++++++- .../org/utbot/python/engine/GlobalPythonEngine.kt | 7 +++---- .../utbot/python/engine/symbolic/UsvmConfig.kt | 1 + .../utbot/python/engine/symbolic/UsvmLoader.kt | 9 --------- 5 files changed, 31 insertions(+), 14 deletions(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt delete mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt index 50e4cb305a..face9bd6bc 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/PythonGenerateTestsCommand.kt @@ -15,6 +15,7 @@ import org.utbot.python.PythonMethodHeader import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.PythonTestSet import org.utbot.python.TestFileInformation +import org.utbot.python.UsvmConfig import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.code.PythonCode import org.utbot.python.coverage.PythonCoverageMode @@ -130,6 +131,17 @@ class PythonGenerateTestsCommand : CliktCommand( .choice("INSTRUCTIONS", "LINES") .default("LINES") + private val javaCmd by option( + "--java-cmd", + help = "(required) Path to Java command (ONLY FOR USVM)." + ).required() + + private val usvmDirectory by option( + "--usvm-dir", + help = "(required) Path to usvm directory (ONLY FOR USVM)." + ).required() + + private val testFramework: TestFramework get() = when (testFrameworkAsString) { @@ -269,6 +281,7 @@ class PythonGenerateTestsCommand : CliktCommand( coverageMeasureMode = PythonCoverageMode.parse(coverageMeasureMode), sendCoverageContinuously = !doNotSendCoverageContinuously, coverageOutputFormat = CoverageOutputFormat.parse(coverageOutputFormat), + usvmConfig = UsvmConfig(javaCmd, usvmDirectory) ) val processor = PythonCliProcessor( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 27855492e0..6f669b7bc3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -30,10 +30,23 @@ class PythonTestGenerationConfig( val coverageMeasureMode: PythonCoverageMode = PythonCoverageMode.Instructions, val sendCoverageContinuously: Boolean = true, val coverageOutputFormat: CoverageOutputFormat = CoverageOutputFormat.Lines, + val usvmConfig: UsvmConfig = UsvmConfig.defaultConfig, ) data class MypyConfig( val mypyStorage: MypyInfoBuild, val mypyReportLine: List, val mypyBuildDirectory: MypyBuildDirectory, -) \ No newline at end of file +) + +data class UsvmConfig( + val javaCmd: String, + val usvmDirectory: String +) { + companion object { + val usvmDirectory = + "/home/vyacheslav/IdeaProjects/NewUTBot/UTBotJava/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/usvm-python" + val usvmJavaCmd = "${System.getProperty("java.home")}/bin/java" + val defaultConfig = UsvmConfig(usvmJavaCmd, usvmDirectory) + } +} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index e3020fbfce..a278963e7c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -11,13 +11,13 @@ import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.engine.fuzzing.FuzzingEngine import org.utbot.python.engine.symbolic.SymbolicEngine import org.utbot.python.engine.symbolic.USVMPythonAnalysisResultReceiverImpl -import org.utbot.python.engine.symbolic.UsvmLoader import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.Visitor import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.mypy.GlobalNamesStorage import org.utbot.python.newtyping.mypy.MypyInfoBuild +import java.io.File import kotlin.concurrent.thread private val logger = KotlinLogging.logger {} @@ -54,10 +54,9 @@ class GlobalPythonEngine( } private fun runSymbolic() { - val javaHome = System.getProperty("java.home") val usvmPythonConfig = USVMPythonConfig( - StandardLayout(UsvmLoader.usvmDirectory), - "$javaHome/bin/java", + StandardLayout(File(configuration.usvmConfig.usvmDirectory)), + configuration.usvmConfig.javaCmd, mypyConfig.mypyBuildDirectory.root.canonicalPath, configuration.sysPathDirectories ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt new file mode 100644 index 0000000000..406142b8c7 --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt @@ -0,0 +1 @@ +package org.utbot.python.engine.symbolic diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt deleted file mode 100644 index e4f5b28c6c..0000000000 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmLoader.kt +++ /dev/null @@ -1,9 +0,0 @@ -package org.utbot.python.engine.symbolic - -import java.io.File - -class UsvmLoader { - companion object { - val usvmDirectory = File("/home/vyacheslav/IdeaProjects/NewUTBot/UTBotJava/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/usvm-python") - } -} \ No newline at end of file From cdce10601bd8d608b2eaaa0907b45371342fba56 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 7 Nov 2023 17:10:50 +0300 Subject: [PATCH 063/144] Add cli processor for sbft --- .../org/utbot/cli/language/python/Application.kt | 10 +++++++--- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../src/main/resources/utbot_executor_version | 2 +- .../org/utbot/python/PythonTestGenerationConfig.kt | 2 +- .../org/utbot/python/PythonTestGenerationProcessor.kt | 10 ++++++++-- 5 files changed, 18 insertions(+), 8 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Application.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Application.kt index 0cad4e6264..3fc8c69113 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Application.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/Application.kt @@ -10,6 +10,7 @@ import mu.KotlinLogging import org.apache.logging.log4j.LogManager import org.apache.logging.log4j.core.config.Configurator import org.slf4j.event.Level +import org.utbot.cli.language.python.sbft.SbftGenerateTestsCommand import java.util.* import kotlin.system.exitProcess @@ -29,10 +30,13 @@ class UtBotPythonCli : CliktCommand(name = "UnitTestBot Python Command Line Inte fun main(args: Array) = try { UtBotPythonCli().subcommands( - PythonGenerateTestsCommand(), - PythonRunTestsCommand(), - PythonTypeInferenceCommand() + SbftGenerateTestsCommand() ).main(args) +// UtBotPythonCli().subcommands( +// PythonGenerateTestsCommand(), +// PythonRunTestsCommand(), +// PythonTypeInferenceCommand() +// ).main(args) } catch (ex: Throwable) { ex.printStackTrace() exitProcess(1) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 6dda38920a..a227e315ac 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.0.dev10" +version = "1.9.0" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 3a15e8b8c7..abb1658232 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.0.dev10 \ No newline at end of file +1.9.0 \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 6f669b7bc3..99264e03a2 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -23,7 +23,7 @@ class PythonTestGenerationConfig( val timeout: Long, val timeoutForRun: Long, val testFramework: TestFramework, - val testSourceRootPath: Path, + val testSourceRootPath: Path?, val withMinimization: Boolean, val isCanceled: () -> Boolean, val runtimeExceptionTestsBehaviour: RuntimeExceptionTestsBehaviour, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 8f8f6b78d6..24a5357bf9 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -98,7 +98,13 @@ abstract class PythonTestGenerationProcessor { return notEmptyTests } - fun testCodeGenerate(testSets: List): String { + fun testCodeGenerateSplitImports(testSets: List): Pair> { + val allImports = collectImports(testSets) + val code = testCodeGenerate(testSets, true) + return code to allImports + } + + fun testCodeGenerate(testSets: List, skipImports: Boolean = false): String { val containingClassName = getContainingClassName(testSets) val classId = PythonClassId(configuration.testFileInformation.moduleName, containingClassName) @@ -123,7 +129,7 @@ abstract class PythonTestGenerationProcessor { methodIds[testSet.method] as ExecutableId to params }.toMutableMap() - val allImports = collectImports(testSets) + val allImports = if (skipImports) emptySet() else collectImports(testSets) val context = UtContext(this::class.java.classLoader) withUtContext(context) { From 4212dd65ee765d07b5cb2adb24a37c855116ad99 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 7 Nov 2023 19:29:52 +0300 Subject: [PATCH 064/144] Update usvm --- utbot-python/build.gradle.kts | 2 +- .../main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt | 4 +++- .../kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt | 2 -- .../engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt | 3 +-- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 5e70e467c7..bf515ab2e7 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:74d8ccc") + api("org.usvm:usvm-python-runner:6313376") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index a278963e7c..f82b3cd1ac 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -5,6 +5,7 @@ import org.usvm.runner.StandardLayout import org.usvm.runner.USVMPythonConfig import org.usvm.runner.USVMPythonFunctionConfig import org.usvm.runner.USVMPythonRunConfig +import org.usvm.runner.venv.extractVenvConfig import org.utbot.python.MypyConfig import org.utbot.python.PythonMethod import org.utbot.python.PythonTestGenerationConfig @@ -58,7 +59,8 @@ class GlobalPythonEngine( StandardLayout(File(configuration.usvmConfig.usvmDirectory)), configuration.usvmConfig.javaCmd, mypyConfig.mypyBuildDirectory.root.canonicalPath, - configuration.sysPathDirectories + configuration.sysPathDirectories, + extractVenvConfig(configuration.pythonPath) ) val receiver = USVMPythonAnalysisResultReceiverImpl( method, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt index 1aa1cabe81..43257811cb 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt @@ -40,9 +40,7 @@ class SymbolicEngine( val symbolicCancellation = { configuration.isCanceled() || System.currentTimeMillis() > endTime } val symbolicRunner = PythonSymbolicAnalysisRunnerImpl(usvmPythonConfig) symbolicRunner.use { - logger.info { "Start symbolic ${System.currentTimeMillis()}" } it.analyze(runConfig, receiver, symbolicCancellation) - logger.info { "Stop symbolic ${System.currentTimeMillis()}" } } } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 6deca9f744..ee53fb259d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -12,7 +12,6 @@ import org.utbot.framework.plugin.api.UtImplicitlyThrownException import org.utbot.python.PythonMethod import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.coverage.CoverageIdGenerator -import org.utbot.python.coverage.PyInstruction import org.utbot.python.coverage.buildCoverage import org.utbot.python.engine.ExecutionFeedback import org.utbot.python.engine.ExecutionStorage @@ -175,7 +174,7 @@ class USVMPythonAnalysisResultReceiverImpl( } override fun receivePickledInputValues(pickledTuple: String) { - logger.info { "SYMBOLIC: $pickledTuple" } + logger.debug { "SYMBOLIC: $pickledTuple" } receivePickledInputValuesWithFeedback(pickledTuple)?.let { executionStorage.saveSymbolicExecution(it) } From 51fb71e73b85a18728d7e3a859bf1b14c117689d Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 7 Nov 2023 19:33:52 +0300 Subject: [PATCH 065/144] add sbft cli --- .../language/python/sbft/SbftCliProcessor.kt | 18 ++ .../python/sbft/SbftGenerateTestsCommand.kt | 191 ++++++++++++++++++ .../utbot/cli/language/python/sbft/Utils.kt | 20 ++ 3 files changed, 229 insertions(+) create mode 100644 utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt create mode 100644 utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt create mode 100644 utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/Utils.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt new file mode 100644 index 0000000000..5543670c9f --- /dev/null +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt @@ -0,0 +1,18 @@ +package org.utbot.cli.language.python.sbft + +import mu.KLogger +import org.utbot.cli.language.python.writeToFileAndSave +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.PythonTestGenerationProcessor +import org.utbot.python.PythonTestSet +import java.io.File + +class SbftCliProcessor( + override val configuration: PythonTestGenerationConfig, +) : PythonTestGenerationProcessor() { + override fun saveTests(testsCode: String) { } + + override fun notGeneratedTestsAction(testedFunctions: List) {} + + override fun processCoverageInfo(testSets: List) {} +} diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt new file mode 100644 index 0000000000..8ec70fc5f7 --- /dev/null +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -0,0 +1,191 @@ +package org.utbot.cli.language.python.sbft + +import com.github.ajalt.clikt.core.CliktCommand +import com.github.ajalt.clikt.parameters.arguments.argument +import com.github.ajalt.clikt.parameters.options.default +import com.github.ajalt.clikt.parameters.options.flag +import com.github.ajalt.clikt.parameters.options.option +import com.github.ajalt.clikt.parameters.options.required +import com.github.ajalt.clikt.parameters.options.split +import com.github.ajalt.clikt.parameters.types.choice +import com.github.ajalt.clikt.parameters.types.long +import mu.KotlinLogging +import org.parsers.python.PythonParser +import org.utbot.cli.language.python.CliRequirementsInstaller +import org.utbot.cli.language.python.findCurrentPythonModule +import org.utbot.cli.language.python.toAbsolutePath +import org.utbot.cli.language.python.writeToFileAndSave +import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour +import org.utbot.python.PythonMethodHeader +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.TestFileInformation +import org.utbot.python.UsvmConfig +import org.utbot.python.code.PythonCode +import org.utbot.python.coverage.CoverageOutputFormat +import org.utbot.python.coverage.PythonCoverageMode +import org.utbot.python.framework.api.python.PythonClassId +import org.utbot.python.framework.codegen.model.Pytest +import org.utbot.python.framework.codegen.model.PythonImport +import org.utbot.python.newtyping.ast.parseClassDefinition +import org.utbot.python.newtyping.ast.parseFunctionDefinition +import org.utbot.python.newtyping.mypy.dropInitFile +import org.utbot.python.utils.Fail +import org.utbot.python.utils.RequirementsInstaller +import org.utbot.python.utils.Success +import java.io.File + +private const val DEFAULT_TIMEOUT_IN_MILLIS = 60000L +private const val DEFAULT_TIMEOUT_FOR_ONE_RUN_IN_MILLIS = 2000L + +private val logger = KotlinLogging.logger {} + +class SbftGenerateTestsCommand : CliktCommand( + name = "generate_python", + help = "Generate tests for specified Python classes or top-level functions from a specified file." +) { + private val sourceFile by argument( + help = "File with Python code to generate tests for." + ) + + private lateinit var absPathToSourceFile: String + private lateinit var sourceFileContent: String + + private val directoriesForSysPath by option( + "-s", "--sys-path", + help = "(required) Directories to add to sys.path. " + + "One of directories must contain the file with the methods under test." + ).split(",").required() + + private val pythonPath by option( + "-p", "--python-path", + help = "(required) Path to Python interpreter." + ).required() + + private val output by option( + "-o", "--output", help = "(required) File for generated tests." + ).required() + + private val doNotMinimize by option( + "--do-not-minimize", + help = "Turn off minimization of the number of generated tests." + ).flag(default = false) + + private val timeout by option( + "-t", "--timeout", + help = "Specify the maximum time in milliseconds to spend on generating tests ($DEFAULT_TIMEOUT_IN_MILLIS by default)." + ).long().default(DEFAULT_TIMEOUT_IN_MILLIS) + + private val timeoutForRun by option( + "--timeout-for-run", + help = "Specify the maximum time in milliseconds to spend on one function run ($DEFAULT_TIMEOUT_FOR_ONE_RUN_IN_MILLIS by default)." + ).long().default(DEFAULT_TIMEOUT_FOR_ONE_RUN_IN_MILLIS) + + private val runtimeExceptionTestsBehaviour by option("--runtime-exception-behaviour", help = "PASS or FAIL") + .choice("PASS", "FAIL") + .default("FAIL") + + private val coverageMeasureMode by option("--coverage-measure-mode", help = "Use LINES or INSTRUCTIONS for coverage measurement.") + .choice("INSTRUCTIONS", "LINES") + .default("INSTRUCTIONS") + + private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "Do not send coverage during execution.") + .flag(default = false) + + private val javaCmd by option( + "--java-cmd", + help = "(required) Path to Java command (ONLY FOR USVM)." + ).required() + + private val usvmDirectory by option( + "--usvm-dir", + help = "(required) Path to usvm directory (ONLY FOR USVM)." + ).required() + + private fun getPythonMethods(): List> { + val parsedModule = PythonParser(sourceFileContent).Module() + + val topLevelFunctions = PythonCode.getTopLevelFunctions(parsedModule) + val topLevelClasses = PythonCode.getTopLevelClasses(parsedModule) + + val functions = topLevelFunctions + .mapNotNull { parseFunctionDefinition(it) } + .map { PythonMethodHeader(it.name.toString(), absPathToSourceFile, null) } + val methods = topLevelClasses + .mapNotNull { parseClassDefinition(it) } + .map { cls -> + PythonCode.getClassMethods(cls.body) + .mapNotNull { parseFunctionDefinition(it) } + .map { function -> + val parsedClassName = PythonClassId(cls.name.toString()) + PythonMethodHeader(function.name.toString(), absPathToSourceFile, parsedClassName) + } + } + return methods + listOf(functions) + } + + override fun run() { + absPathToSourceFile = sourceFile.toAbsolutePath() + sourceFileContent = File(absPathToSourceFile).readText() + val testFramework = Pytest + val currentPythonModuleOpt = findCurrentPythonModule(directoriesForSysPath, absPathToSourceFile) + val currentPythonModule = when (currentPythonModuleOpt) { + is Success -> { currentPythonModuleOpt.value } + is Fail -> { + logger.error(currentPythonModuleOpt.message) + return + } + } + logger.info("Checking requirements...") + val installer = CliRequirementsInstaller(true, logger) + val requirementsAreInstalled = RequirementsInstaller.checkRequirements( + installer, + pythonPath, + if (testFramework.isInstalled) emptyList() else listOf(testFramework.mainPackage) + ) + if (!requirementsAreInstalled) { + return + } + + val pythonMethodGroups = getPythonMethods() + + val globalImportCollection = mutableSetOf() + val globalCodeCollection = mutableListOf() + pythonMethodGroups.map { pythonMethods -> + val config = PythonTestGenerationConfig( + pythonPath = pythonPath, + testFileInformation = TestFileInformation(absPathToSourceFile, sourceFileContent, currentPythonModule.dropInitFile()), + sysPathDirectories = directoriesForSysPath.map { it.toAbsolutePath() } .toSet(), + testedMethods = pythonMethods, + timeout = timeout, + timeoutForRun = timeoutForRun, + testFramework = testFramework, + testSourceRootPath = null, + withMinimization = !doNotMinimize, + isCanceled = { false }, + runtimeExceptionTestsBehaviour = RuntimeExceptionTestsBehaviour.valueOf(runtimeExceptionTestsBehaviour), + coverageMeasureMode = PythonCoverageMode.parse(coverageMeasureMode), + sendCoverageContinuously = !doNotSendCoverageContinuously, + coverageOutputFormat = CoverageOutputFormat.Lines, + usvmConfig = UsvmConfig(javaCmd, usvmDirectory) + ) + + val processor = SbftCliProcessor(config) + + logger.info("Loading information about Python types...") + val mypyConfig = processor.sourceCodeAnalyze() + + logger.info("Generating tests...") + val testSets = processor.testGenerate(mypyConfig) + + val (testCode, imports) = processor.testCodeGenerateSplitImports(testSets) + globalCodeCollection.add(testCode) + globalImportCollection.addAll(imports) + } + logger.info("Saving tests...") + val importCode = globalImportCollection + .sortedBy { it.order } + .map { renderPythonImport(it) } + val testCode = (listOf(importCode.joinToString("\n")) + globalCodeCollection).joinToString("\n\n\n") + writeToFileAndSave(output, testCode) + } +} \ No newline at end of file diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/Utils.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/Utils.kt new file mode 100644 index 0000000000..661eec5332 --- /dev/null +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/Utils.kt @@ -0,0 +1,20 @@ +package org.utbot.cli.language.python.sbft + +import org.utbot.python.framework.codegen.model.PythonImport +import org.utbot.python.framework.codegen.model.PythonSysPathImport +import java.lang.StringBuilder + +fun renderPythonImport(pythonImport: PythonImport) : String { + val importBuilder = StringBuilder() + if (pythonImport is PythonSysPathImport) { + importBuilder.append("sys.path.append(r'${pythonImport.sysPath}')") + } else if (pythonImport.moduleName == null) { + importBuilder.append("import ${pythonImport.importName}") + } else { + importBuilder.append("from ${pythonImport.moduleName} import ${pythonImport.importName}") + } + if (pythonImport.alias != null) { + importBuilder.append(" as ${pythonImport.alias}") + } + return importBuilder.toString() +} From fd237d1daf1913833085084192fb4f1524204389 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 8 Nov 2023 13:47:45 +0300 Subject: [PATCH 066/144] Add exception filter and supported methods in usvm --- .../python/sbft/SbftGenerateTestsCommand.kt | 16 +++++++++++----- .../utbot/python/PythonTestGenerationConfig.kt | 11 ++++++++++- .../utbot/python/engine/GlobalPythonEngine.kt | 17 ++++++++++++----- .../python/engine/fuzzing/FuzzingEngine.kt | 8 +------- .../USVMPythonAnalysisResultReceiverImpl.kt | 8 +------- 5 files changed, 35 insertions(+), 25 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 8ec70fc5f7..a9ce5a5c3c 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -91,6 +91,10 @@ class SbftGenerateTestsCommand : CliktCommand( private val doNotSendCoverageContinuously by option("--do-not-send-coverage-continuously", help = "Do not send coverage during execution.") .flag(default = false) + private val prohibitedExceptions by option("--prohibited-exceptions", help = "Do not generate tests with these exceptions. Set '-' to generate tests for all exceptions.") + .split(",") + .default(PythonTestGenerationConfig.defaultProhibitedExceptions) + private val javaCmd by option( "--java-cmd", help = "(required) Path to Java command (ONLY FOR USVM)." @@ -166,7 +170,8 @@ class SbftGenerateTestsCommand : CliktCommand( coverageMeasureMode = PythonCoverageMode.parse(coverageMeasureMode), sendCoverageContinuously = !doNotSendCoverageContinuously, coverageOutputFormat = CoverageOutputFormat.Lines, - usvmConfig = UsvmConfig(javaCmd, usvmDirectory) + usvmConfig = UsvmConfig(javaCmd, usvmDirectory), + prohibitedExceptions = if (prohibitedExceptions == listOf("-")) emptyList() else prohibitedExceptions, ) val processor = SbftCliProcessor(config) @@ -176,10 +181,11 @@ class SbftGenerateTestsCommand : CliktCommand( logger.info("Generating tests...") val testSets = processor.testGenerate(mypyConfig) - - val (testCode, imports) = processor.testCodeGenerateSplitImports(testSets) - globalCodeCollection.add(testCode) - globalImportCollection.addAll(imports) + if (testSets.isNotEmpty()) { + val (testCode, imports) = processor.testCodeGenerateSplitImports(testSets) + globalCodeCollection.add(testCode) + globalImportCollection.addAll(imports) + } } logger.info("Saving tests...") val importCode = globalImportCollection diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 99264e03a2..e32ce9d6cb 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -31,7 +31,16 @@ class PythonTestGenerationConfig( val sendCoverageContinuously: Boolean = true, val coverageOutputFormat: CoverageOutputFormat = CoverageOutputFormat.Lines, val usvmConfig: UsvmConfig = UsvmConfig.defaultConfig, -) + val prohibitedExceptions: List = defaultProhibitedExceptions, +) { + companion object { + val defaultProhibitedExceptions = listOf( + "builtins.AttributeError", + "builtins.TypeError", + "builtins.NotImplementedError", + ) + } +} data class MypyConfig( val mypyStorage: MypyInfoBuild, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index f82b3cd1ac..b6cf42818a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -4,6 +4,7 @@ import mu.KotlinLogging import org.usvm.runner.StandardLayout import org.usvm.runner.USVMPythonConfig import org.usvm.runner.USVMPythonFunctionConfig +import org.usvm.runner.USVMPythonMethodConfig import org.usvm.runner.USVMPythonRunConfig import org.usvm.runner.venv.extractVenvConfig import org.utbot.python.MypyConfig @@ -18,6 +19,7 @@ import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.mypy.GlobalNamesStorage import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utbot.python.newtyping.pythonName import java.io.File import kotlin.concurrent.thread @@ -68,15 +70,20 @@ class GlobalPythonEngine( executionStorage, System.currentTimeMillis() + configuration.timeout ) + val config = if (method.containingPythonClass == null) { + USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) + } else { + USVMPythonMethodConfig( + configuration.testFileInformation.moduleName, + method.name, + method.containingPythonClass.pythonName() + ) + } SymbolicEngine( usvmPythonConfig, configuration, ).analyze( - USVMPythonRunConfig( - USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name), - configuration.timeout, - configuration.timeoutForRun * 3 - ), + USVMPythonRunConfig(config, configuration.timeout, configuration.timeoutForRun * 3), receiver ) logger.info { "Symbolic: stop receiver" } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 8bf7c464bd..e1c0bce5ad 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -315,12 +315,6 @@ class FuzzingEngine( evaluationResult: PythonEvaluationSuccess, methodUnderTestDescription: PythonMethodDescription, ): ExecutionFeedback { - val prohibitedExceptions = listOf( - "builtins.AttributeError", - "builtins.TypeError", - "builtins.NotImplementedError", - ) - val summary = arguments .zip(method.arguments) .mapNotNull { it.first.summary?.replace("%var%", it.second.name) } @@ -328,7 +322,7 @@ class FuzzingEngine( val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) - if (evaluationResult.isException && (resultModel.type.name in prohibitedExceptions)) { // wrong type (sometimes mypy fails) + if (evaluationResult.isException && (resultModel.type.name in configuration.prohibitedExceptions)) { // wrong type (sometimes mypy fails) val errorMessage = "Evaluation with prohibited exception. Substituted types: ${ types.joinToString { it.pythonTypeRepresentation() } }. Exception type: ${resultModel.type.name}" diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index ee53fb259d..23183ad573 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -132,17 +132,11 @@ class USVMPythonAnalysisResultReceiverImpl( method: PythonMethod, evaluationResult: PythonEvaluationSuccess ): ExecutionFeedback { - val prohibitedExceptions = listOf( - "builtins.AttributeError", - "builtins.TypeError", - "builtins.NotImplementedError", - ) - val summary = emptyList() // TODO: improve val hasThisObject = method.hasThisArgument val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) - if (evaluationResult.isException && (resultModel.type.name in prohibitedExceptions)) { // wrong type (sometimes mypy fails) + if (evaluationResult.isException && (resultModel.type.name in configuration.prohibitedExceptions)) { // wrong type (sometimes mypy fails) val errorMessage = "Evaluation with prohibited exception. Error: $resultModel" logger.debug { errorMessage } return TypeErrorFeedback(errorMessage) From 59f2ec38c4f4ec2c3aeca9c827c048c2baaf9d56 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 9 Nov 2023 13:24:08 +0300 Subject: [PATCH 067/144] Update usvm version --- utbot-python/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index bf515ab2e7..4ef8ece5aa 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:6313376") + api("org.usvm:usvm-python-runner:b7c5189") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") From dfc9ce856635747748c66beaab8217b60aa683e9 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Thu, 9 Nov 2023 17:24:19 +0300 Subject: [PATCH 068/144] updated usvm-python-runner --- utbot-python/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 4ef8ece5aa..7aef0136d7 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:b7c5189") + api("org.usvm:usvm-python-runner:1e2c90f") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") @@ -26,4 +26,4 @@ dependencies { implementation(group = "org.apache.commons", name = "commons-text", version = apacheCommonsTextVersion) implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4j2Version) implementation(group = "org.apache.logging.log4j", name = "log4j-api", version = log4j2Version) -} \ No newline at end of file +} From da90ccc659ecbb3bd6baa248694e651872a577c3 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Thu, 9 Nov 2023 18:14:10 +0300 Subject: [PATCH 069/144] Added System.exit(0) --- .../utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index a9ce5a5c3c..101c2a993e 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -193,5 +193,6 @@ class SbftGenerateTestsCommand : CliktCommand( .map { renderPythonImport(it) } val testCode = (listOf(importCode.joinToString("\n")) + globalCodeCollection).joinToString("\n\n\n") writeToFileAndSave(output, testCode) + System.exit(0) } -} \ No newline at end of file +} From f4d23b47d867c9665c93aa61fc2821c48f7f71e9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 10 Nov 2023 10:28:38 +0300 Subject: [PATCH 070/144] Fix modified method analyze --- .../samples/algorithms/floyd_warshall.py | 42 +++++++++++++++++++ .../python/engine/fuzzing/FuzzingEngine.kt | 2 + 2 files changed, 44 insertions(+) create mode 100644 utbot-python/samples/samples/algorithms/floyd_warshall.py diff --git a/utbot-python/samples/samples/algorithms/floyd_warshall.py b/utbot-python/samples/samples/algorithms/floyd_warshall.py new file mode 100644 index 0000000000..a85e042104 --- /dev/null +++ b/utbot-python/samples/samples/algorithms/floyd_warshall.py @@ -0,0 +1,42 @@ +import math + + +class Graph: + def __init__(self, n=0): # a graph with Node 0,1,...,N-1 + self.n = n + self.w = [ + [math.inf for j in range(0, n)] for i in range(0, n) + ] # adjacency matrix for weight + self.dp = [ + [math.inf for j in range(0, n)] for i in range(0, n) + ] # dp[i][j] stores minimum distance from i to j + + def add_edge(self, u, v, w): + self.dp[u][v] = w + + def floyd_warshall(self): + for k in range(0, self.n): + for i in range(0, self.n): + for j in range(0, self.n): + self.dp[i][j] = min(self.dp[i][j], self.dp[i][k] + self.dp[k][j]) + + def show_min(self, u, v): + return self.dp[u][v] + + +if __name__ == "__main__": + graph = Graph(5) + graph.add_edge(0, 2, 9) + graph.add_edge(0, 4, 10) + graph.add_edge(1, 3, 5) + graph.add_edge(2, 3, 7) + graph.add_edge(3, 0, 10) + graph.add_edge(3, 1, 2) + graph.add_edge(3, 2, 1) + graph.add_edge(3, 4, 6) + graph.add_edge(4, 1, 3) + graph.add_edge(4, 2, 4) + graph.add_edge(4, 3, 9) + graph.floyd_warshall() + graph.show_min(1, 4) + graph.show_min(0, 3) \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index e1c0bce5ad..24fcf6586f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -150,6 +150,7 @@ class FuzzingEngine( val fuzzerCancellation = { configuration.isCanceled() || timeoutLimitManager.isCancelled() } runBlocking { runFuzzing( + method, algo, fuzzerCancellation, until @@ -160,6 +161,7 @@ class FuzzingEngine( } private fun runFuzzing( + method: PythonMethod, typeInferenceAlgorithm: BaselineAlgorithm, isCancelled: () -> Boolean, until: Long From e343606d140669e984e84618d8656f98607caa25 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 14 Nov 2023 10:40:10 +0300 Subject: [PATCH 071/144] Add usvm check param --- .../python/sbft/SbftGenerateTestsCommand.kt | 6 +++- .../utbot/python/PythonTestCaseGenerator.kt | 7 +++-- .../python/PythonTestGenerationConfig.kt | 1 + .../utbot/python/engine/GlobalPythonEngine.kt | 28 +++++++++++++++---- .../python/engine/symbolic/SymbolicEngine.kt | 11 ++++++++ 5 files changed, 45 insertions(+), 8 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 101c2a993e..0ab8ce6ef4 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -105,6 +105,9 @@ class SbftGenerateTestsCommand : CliktCommand( help = "(required) Path to usvm directory (ONLY FOR USVM)." ).required() + private val checkUsvm by option("--check-usvm", help = "Check usvm (ONLY FOR USVM).") + .flag(default = false) + private fun getPythonMethods(): List> { val parsedModule = PythonParser(sourceFileContent).Module() @@ -150,7 +153,7 @@ class SbftGenerateTestsCommand : CliktCommand( return } - val pythonMethodGroups = getPythonMethods() + val pythonMethodGroups = getPythonMethods().let { if (checkUsvm) it.take(1) else it } val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() @@ -172,6 +175,7 @@ class SbftGenerateTestsCommand : CliktCommand( coverageOutputFormat = CoverageOutputFormat.Lines, usvmConfig = UsvmConfig(javaCmd, usvmDirectory), prohibitedExceptions = if (prohibitedExceptions == listOf("-")) emptyList() else prohibitedExceptions, + checkUsvm = checkUsvm, ) val processor = SbftCliProcessor(config) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index 6fd40f4521..4823fc56e8 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -18,7 +18,6 @@ class PythonTestCaseGenerator( private val withMinimization = configuration.withMinimization fun generate(method: PythonMethod, until: Long): List { - logger.info { "Start test generation for ${method.name}" } val engine = GlobalPythonEngine( method = method, @@ -27,7 +26,11 @@ class PythonTestCaseGenerator( until, ) try { - engine.run() + if (configuration.checkUsvm) { + engine.debugUsvmRun() + } else { + engine.run() + } } catch (_: OutOfMemoryError) { logger.debug { "Out of memory error. Stop test generation process" } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index e32ce9d6cb..6be202a5ee 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -32,6 +32,7 @@ class PythonTestGenerationConfig( val coverageOutputFormat: CoverageOutputFormat = CoverageOutputFormat.Lines, val usvmConfig: UsvmConfig = UsvmConfig.defaultConfig, val prohibitedExceptions: List = defaultProhibitedExceptions, + val checkUsvm: Boolean = false, ) { companion object { val defaultProhibitedExceptions = listOf( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index b6cf42818a..ee56215e15 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -56,7 +56,7 @@ class GlobalPythonEngine( ).start() } - private fun runSymbolic() { + private fun runSymbolic(debug: Boolean = false) { val usvmPythonConfig = USVMPythonConfig( StandardLayout(File(configuration.usvmConfig.usvmDirectory)), configuration.usvmConfig.javaCmd, @@ -79,13 +79,19 @@ class GlobalPythonEngine( method.containingPythonClass.pythonName() ) } - SymbolicEngine( + val engine = SymbolicEngine( usvmPythonConfig, configuration, - ).analyze( - USVMPythonRunConfig(config, configuration.timeout, configuration.timeoutForRun * 3), - receiver ) + val usvmConfig = USVMPythonRunConfig(config, configuration.timeout, configuration.timeoutForRun * 3) + if (debug) { + engine.debugRun(usvmConfig) + } else { + engine.analyze( + usvmConfig, + receiver + ) + } logger.info { "Symbolic: stop receiver" } receiver.close() } @@ -113,6 +119,18 @@ class GlobalPythonEngine( symbolic.join() } + fun debugUsvmRun() { + val symbolic = thread( + start = true, + isDaemon = true, + name = "Symbolic" + ) { + logger.info { " ...... Checking symbolic ...... " } + runSymbolic(debug = true) + } + symbolic.join() + } + private fun constructHintCollector( mypyStorage: MypyInfoBuild, typeStorage: PythonTypeHintsStorage, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt index 43257811cb..85b5ad2ee1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt @@ -1,6 +1,7 @@ package org.utbot.python.engine.symbolic import mu.KotlinLogging +import org.usvm.runner.DebugRunner import org.usvm.runner.PythonSymbolicAnalysisRunnerImpl import org.usvm.runner.USVMPythonConfig import org.usvm.runner.USVMPythonRunConfig @@ -43,4 +44,14 @@ class SymbolicEngine( it.analyze(runConfig, receiver, symbolicCancellation) } } + + fun debugRun(runConfig: USVMPythonRunConfig) { + val debugRunner = DebugRunner(usvmPythonConfig) + try { + debugRunner.runProcessAndPrintInfo(runConfig) + } catch (ex: Exception) { + logger.error { ex.message } + logger.error { ex.stackTrace } + } + } } \ No newline at end of file From 2f6695f44a4d9378c53579041aac0687613d0853 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 14 Nov 2023 17:24:02 +0300 Subject: [PATCH 072/144] Add timout scaling --- .../language/python/sbft/SbftCliProcessor.kt | 3 -- .../python/sbft/SbftGenerateTestsCommand.kt | 38 +++++++++++++++---- .../python/PythonTestGenerationProcessor.kt | 29 ++++++++++---- 3 files changed, 52 insertions(+), 18 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt index 5543670c9f..051af36645 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftCliProcessor.kt @@ -1,11 +1,8 @@ package org.utbot.cli.language.python.sbft -import mu.KLogger -import org.utbot.cli.language.python.writeToFileAndSave import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.PythonTestGenerationProcessor import org.utbot.python.PythonTestSet -import java.io.File class SbftCliProcessor( override val configuration: PythonTestGenerationConfig, diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 0ab8ce6ef4..a7effed6f3 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -16,8 +16,10 @@ import org.utbot.cli.language.python.findCurrentPythonModule import org.utbot.cli.language.python.toAbsolutePath import org.utbot.cli.language.python.writeToFileAndSave import org.utbot.framework.codegen.domain.RuntimeExceptionTestsBehaviour +import org.utbot.python.MypyConfig import org.utbot.python.PythonMethodHeader import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.PythonTestGenerationProcessor import org.utbot.python.TestFileInformation import org.utbot.python.UsvmConfig import org.utbot.python.code.PythonCode @@ -33,6 +35,8 @@ import org.utbot.python.utils.Fail import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.utils.Success import java.io.File +import kotlin.math.max +import kotlin.system.measureTimeMillis private const val DEFAULT_TIMEOUT_IN_MILLIS = 60000L private const val DEFAULT_TIMEOUT_FOR_ONE_RUN_IN_MILLIS = 2000L @@ -157,13 +161,29 @@ class SbftGenerateTestsCommand : CliktCommand( val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() - pythonMethodGroups.map { pythonMethods -> + pythonMethodGroups.map { pythonMethods -> + val sysPathDirectories = directoriesForSysPath.map { it.toAbsolutePath() } .toSet() + val testFile = TestFileInformation(absPathToSourceFile, sourceFileContent, currentPythonModule.dropInitFile()) + + val mypyConfig: MypyConfig + val mypyTime = measureTimeMillis { + logger.info("Loading information about Python types...") + mypyConfig = PythonTestGenerationProcessor.sourceCodeAnalyze( + sysPathDirectories, + pythonPath, + testFile, + ) + } + + val localTimeout = separateTimeout(timeout - mypyTime, pythonMethodGroups, pythonMethods) + logger.info { "Timout for current group: ${localTimeout}ms" } + val config = PythonTestGenerationConfig( pythonPath = pythonPath, - testFileInformation = TestFileInformation(absPathToSourceFile, sourceFileContent, currentPythonModule.dropInitFile()), - sysPathDirectories = directoriesForSysPath.map { it.toAbsolutePath() } .toSet(), + testFileInformation = testFile, + sysPathDirectories = sysPathDirectories, testedMethods = pythonMethods, - timeout = timeout, + timeout = localTimeout, timeoutForRun = timeoutForRun, testFramework = testFramework, testSourceRootPath = null, @@ -177,12 +197,8 @@ class SbftGenerateTestsCommand : CliktCommand( prohibitedExceptions = if (prohibitedExceptions == listOf("-")) emptyList() else prohibitedExceptions, checkUsvm = checkUsvm, ) - val processor = SbftCliProcessor(config) - logger.info("Loading information about Python types...") - val mypyConfig = processor.sourceCodeAnalyze() - logger.info("Generating tests...") val testSets = processor.testGenerate(mypyConfig) if (testSets.isNotEmpty()) { @@ -199,4 +215,10 @@ class SbftGenerateTestsCommand : CliktCommand( writeToFileAndSave(output, testCode) System.exit(0) } + + companion object { + fun separateTimeout(timeout: Long, groups: List>, group: List): Long { + return max(timeout, 0) * group.size / groups.sumOf { it.size } + } + } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 24a5357bf9..dcbe6ed76a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -46,17 +46,13 @@ private val logger = KotlinLogging.logger {} // TODO: add asserts that one or less of containing classes and only one file abstract class PythonTestGenerationProcessor { abstract val configuration: PythonTestGenerationConfig - private val mypyBuildRoot = TemporaryFileManager.assignTemporaryFile(tag = "mypyBuildRoot") fun sourceCodeAnalyze(): MypyConfig { - val buildDirectory = MypyBuildDirectory(mypyBuildRoot, configuration.sysPathDirectories) - val (mypyInfoBuild, mypyReportLines) = readMypyAnnotationStorageAndInitialErrors( + return sourceCodeAnalyze( + configuration.sysPathDirectories, configuration.pythonPath, - configuration.testFileInformation.testedFilePath, - configuration.testFileInformation.moduleName, - buildDirectory + configuration.testFileInformation, ) - return MypyConfig(mypyInfoBuild, mypyReportLines, buildDirectory) } fun testGenerate(mypyConfig: MypyConfig): List { @@ -291,6 +287,25 @@ abstract class PythonTestGenerationProcessor { val notCovered = coverageInfo.notCovered.map { it.toJson() } return "{\"covered\": [${covered.joinToString(", ")}], \"notCovered\": [${notCovered.joinToString(", ")}]}" } + + companion object { + fun sourceCodeAnalyze( + sysPathDirectories: Set, + pythonPath: String, + testFileInformation: TestFileInformation, + ): MypyConfig { + val mypyBuildRoot = TemporaryFileManager.assignTemporaryFile(tag = "mypyBuildRoot") + val buildDirectory = MypyBuildDirectory(mypyBuildRoot, sysPathDirectories) + val (mypyInfoBuild, mypyReportLines) = readMypyAnnotationStorageAndInitialErrors( + pythonPath, + testFileInformation.testedFilePath, + testFileInformation.moduleName, + buildDirectory + ) + return MypyConfig(mypyInfoBuild, mypyReportLines, buildDirectory) + } + + } } data class SelectedMethodIsNotAFunctionDefinition(val methodName: String): Exception() \ No newline at end of file From 3245bc09787457f0775a5fe60e8df75b93999848 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 14 Nov 2023 17:34:58 +0300 Subject: [PATCH 073/144] Add timout scaling --- .../cli/language/python/sbft/SbftGenerateTestsCommand.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index a7effed6f3..21ae6af64c 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -175,7 +175,7 @@ class SbftGenerateTestsCommand : CliktCommand( ) } - val localTimeout = separateTimeout(timeout - mypyTime, pythonMethodGroups, pythonMethods) + val localTimeout = max(separateTimeout(timeout, pythonMethodGroups, pythonMethods) - mypyTime, 0) logger.info { "Timout for current group: ${localTimeout}ms" } val config = PythonTestGenerationConfig( @@ -218,7 +218,7 @@ class SbftGenerateTestsCommand : CliktCommand( companion object { fun separateTimeout(timeout: Long, groups: List>, group: List): Long { - return max(timeout, 0) * group.size / groups.sumOf { it.size } + return timeout * group.size / groups.sumOf { it.size } } } } From b705f3757a04673de673ebac00cb366528ee49ff Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 14 Nov 2023 18:03:10 +0300 Subject: [PATCH 074/144] Move mypy running --- .../python/sbft/SbftGenerateTestsCommand.kt | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 21ae6af64c..2e5994bcd4 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -159,24 +159,24 @@ class SbftGenerateTestsCommand : CliktCommand( val pythonMethodGroups = getPythonMethods().let { if (checkUsvm) it.take(1) else it } + val sysPathDirectories = directoriesForSysPath.map { it.toAbsolutePath() } .toSet() + val testFile = TestFileInformation(absPathToSourceFile, sourceFileContent, currentPythonModule.dropInitFile()) + + val mypyConfig: MypyConfig + val mypyTime = measureTimeMillis { + logger.info("Loading information about Python types...") + mypyConfig = PythonTestGenerationProcessor.sourceCodeAnalyze( + sysPathDirectories, + pythonPath, + testFile, + ) + } + val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() pythonMethodGroups.map { pythonMethods -> - val sysPathDirectories = directoriesForSysPath.map { it.toAbsolutePath() } .toSet() - val testFile = TestFileInformation(absPathToSourceFile, sourceFileContent, currentPythonModule.dropInitFile()) - - val mypyConfig: MypyConfig - val mypyTime = measureTimeMillis { - logger.info("Loading information about Python types...") - mypyConfig = PythonTestGenerationProcessor.sourceCodeAnalyze( - sysPathDirectories, - pythonPath, - testFile, - ) - } - - val localTimeout = max(separateTimeout(timeout, pythonMethodGroups, pythonMethods) - mypyTime, 0) - logger.info { "Timout for current group: ${localTimeout}ms" } + val localTimeout = max(separateTimeout(timeout - mypyTime, pythonMethodGroups, pythonMethods), 0) + logger.info { "Timeout for current group: ${localTimeout}ms" } val config = PythonTestGenerationConfig( pythonPath = pythonPath, From f576d11906b55a396dfee07d3034cf8aa726f814 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Tue, 14 Nov 2023 23:53:43 +0300 Subject: [PATCH 075/144] A little more accurate SupportsCall --- .../python/newtyping/PythonTypeComparison.kt | 12 +++++++++++ .../newtyping/PythonSubtypeCheckerTest.kt | 18 +++++++++++++++++ .../src/test/resources/annotation_tests.json | 2 +- .../src/test/resources/boruvka.json | 2 +- .../src/test/resources/import_test.json | 2 +- .../src/test/resources/samples/subtypes.py | 20 ++++++++++++++++++- .../src/test/resources/subtypes.json | 2 +- 7 files changed, 53 insertions(+), 5 deletions(-) diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt index 1742508f17..acf17b1889 100644 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonTypeComparison.kt @@ -406,6 +406,18 @@ class PythonSubtypeChecker( val rightCallAttribute = rightCallAttributeAbstract as? FunctionType ?: return false + // __call__(*args): in this case check only return type + if (leftMeta.argumentKinds.contains(PythonCallableTypeDescription.ArgKind.ARG_STAR)) { + return PythonSubtypeChecker( + left = leftAsFunctionType.returnValue, + right = rightCallAttribute.returnValue, + pythonTypeStorage, + typeParameterCorrespondence, + nextAssumingSubtypePairs, + recursionDepth + 1 + ).rightIsSubtypeOfLeft() + } + if (rightCallAttribute.arguments.size != leftAsFunctionType.arguments.size) return false val leftBounded = leftAsFunctionType.getBoundedParameters() diff --git a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt index 4057c18c35..70022a3f59 100644 --- a/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt +++ b/utbot-python-types/src/test/kotlin/org/utbot/python/newtyping/PythonSubtypeCheckerTest.kt @@ -127,4 +127,22 @@ internal class PythonSubtypeCheckerTest { assertTrue(checkIfRightIsSubtypeOfLeft(abstractSetOfAny, setOfAny, pythonTypeStorage)) } + + @Test + fun testSupportsCall() { + val hasF = storage.definitions["subtypes"]!!["HasF"]!!.getUtBotType() + val classS = storage.definitions["subtypes"]!!["S"]!!.getUtBotType() + + assertTrue(checkIfRightIsSubtypeOfLeft(hasF, classS, pythonTypeStorage)) + } + + @Test + fun testSupportsSpecificCall() { + val hasF = storage.definitions["subtypes"]!!["HasSpecificF"]!!.getUtBotType() + val classS = storage.definitions["subtypes"]!!["S"]!!.getUtBotType() + val classR = storage.definitions["subtypes"]!!["RImpl"]!!.getUtBotType() + + assertFalse(checkIfRightIsSubtypeOfLeft(hasF, classS, pythonTypeStorage)) + assertTrue(checkIfRightIsSubtypeOfLeft(hasF, classR, pythonTypeStorage)) + } } \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/annotation_tests.json b/utbot-python-types/src/test/resources/annotation_tests.json index 5ec97b2cab..087789edb1 100644 --- a/utbot-python-types/src/test/resources/annotation_tests.json +++ b/utbot-python-types/src/test/resources/annotation_tests.json @@ -1 +1 @@ -{"nodeStorage": {"140496956801792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915336208"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990574784"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990575232"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990575680"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990576128"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990576576"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990577024"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990577472"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990578368"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990578816"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990579264"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990579712"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990580160"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990580608"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990581056"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990581504"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990581952"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990582400"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990582848"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990583296"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990583744"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990584192"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990683200"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990683648"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990684096"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990684544"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990684992"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990685440"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990685888"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990686336"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990686784"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990687232"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990687680"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990688128"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990688576"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990689024"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990689472"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990689920"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990690368"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990690816"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990691264"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990691712"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990692160"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990692608"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990693056"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990693504"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990693952"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915336432"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990695744"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990696192"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990696640"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990697088"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990697536"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990697984"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990698432"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990698880"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990847040"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990847488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990847936"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990848384"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990848832"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990849280"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990849728"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}], "isAbstract": false}}, "140496915336208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990573888"}, {"nodeId": "140496990574336"}]}}, "140496990573888": {"type": "Function", "content": {"typeVars": [".0.140496990573888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": ".0.140496990573888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140497028238848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932140784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496914820432"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877409376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002693568"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002694016"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002694464"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002694912"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002695360"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002695808"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002696256"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002696704"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002697152"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002697600"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002698048"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002698496"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002698944"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002699392"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002700736"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497002701184"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877416768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140496932140784": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140496956804256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910441200"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986558912"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986559360"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986559808"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986560256"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986560704"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910441648"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910442432"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910442768"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986563840"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986564288"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986564736"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986565184"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986565632"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986566080"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986566528"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986566976"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986567424"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910443104"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}], "bases": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "isAbstract": false}}, ".1.140496956804256": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956804256", "variance": "INVARIANT"}}, ".2.140496956804256": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956804256", "variance": "INVARIANT"}}, "140496910441200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986555328"}, {"nodeId": "140496986555776"}, {"nodeId": "140496986556224"}, {"nodeId": "140496986556672"}, {"nodeId": "140496986557120"}, {"nodeId": "140496986557568"}, {"nodeId": "140496986558016"}, {"nodeId": "140496986558464"}]}}, "140496986555328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986555776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".2.140496956804256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140496986556224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496931911136": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020185824"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020186272"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140496931911136"}, {"nodeId": ".2.140496931911136"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140496931911136": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931911136", "variance": "INVARIANT"}}, ".2.140496931911136": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931911136", "variance": "COVARIANT"}}, "140497020185824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496931911136"}, {"nodeId": ".2.140496931911136"}]}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496931911136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028243424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906588384"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028243424"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__iter__"]}}, ".1.140497028243424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028243424", "variance": "COVARIANT"}}, "140496906588384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028243424"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028243424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497028243776": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906591968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016125728"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140497028243776"}], "bases": [{"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028243776"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140497028243776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028243776", "variance": "COVARIANT"}}, "140496906591968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028243776"}]}], "returnType": {"nodeId": ".1.140497028243776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497016125728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028243776"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028243776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140497020186272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496931911136"}, {"nodeId": ".2.140496931911136"}]}, {"nodeId": ".1.140496931911136"}], "returnType": {"nodeId": ".2.140496931911136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986556672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".2.140496956804256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140496986557120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496910442096"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496910442096": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}}, "140496986557568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496910442320"}]}, {"nodeId": ".2.140496956804256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140496910442320": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956804256"}]}}, "140496986558016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956803904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910439408"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986410560"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986411008"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986411456"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986411904"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986412352"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986412800"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986413248"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986413696"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910439520"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986415040"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986415488"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910440640"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910440752"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986417728"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910440976"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986419072"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986419520"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986419968"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986420416"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986420864"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986421312"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986421760"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986422208"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986422656"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986554432"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986554880"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496956803904"}], "bases": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140496956803904"}]}], "isAbstract": false}}, ".1.140496956803904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956803904", "variance": "INVARIANT"}}, "140496910439408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986409664"}, {"nodeId": "140496986410112"}]}}, "140496986409664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986410112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986410560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986411008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": ".1.140496956803904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986411456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986411904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".1.140496956803904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496956568704": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496911196320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__index__"]}}, "140496911196320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028250464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915099744"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003472576"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877263936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877263488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877264832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877265280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003474816"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003475264"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003475712"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003477056"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877266176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003478400"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990224448"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990224896"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990225344"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990225792"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990226240"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990226688"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990227136"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990227584"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990228032"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990228480"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990228928"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990229376"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990229824"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915100864"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990232960"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990233408"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990233856"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990234304"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990234752"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990235200"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990235648"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990236096"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990236544"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990236992"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990237440"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990237888"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990238336"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990238784"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990239232"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990239680"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990240128"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990306368"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990306816"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990307264"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990307712"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990308160"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990308608"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990309056"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990309504"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990309952"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990310400"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990310848"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990311296"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990311744"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496915099744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497003471680"}, {"nodeId": "140497003472128"}]}}, "140497003471680": {"type": "Function", "content": {"typeVars": [".0.140497003471680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915101536"}], "returnType": {"nodeId": ".0.140497003471680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140496915101536": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956555328"}, {"nodeId": "140496956568704"}, {"nodeId": "140496931910432"}]}}, "140496956570816": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994334560"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__buffer__"]}}, "140496994334560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956802848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873505056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873505728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873506176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873506400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873506624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873506848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873507296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873504832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873507072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873507520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873507744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873505952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986135616"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986136064"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986136512"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986136960"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910434816"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986138304"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986138752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986139200"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910435824"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986140544"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986141888"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986142336"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986142784"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986143232"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986144128"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986259520"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496873505056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873505728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873506176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496910435488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910435488": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "N"}]}}, "140496956803552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986268928"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986269376"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986269824"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437840"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986271168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986271616"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986272064"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986272512"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986272960"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910439296"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986274304"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986274752"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986275200"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986406976"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986407424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496956803552"}], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140496956803552"}]}], "isAbstract": false}}, ".1.140496956803552": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956803552", "variance": "COVARIANT"}}, "140496986268928": {"type": "Function", "content": {"typeVars": [".0.140496986268928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": ".0.140496986268928"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140496986268928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, "def": "140496986268928", "variance": "INVARIANT"}}, "140496986269376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986269824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028239552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986259968"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910436384"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437168"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437280"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437392"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437504"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437616"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986265792"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140497028250464"}], "isAbstract": false}}, "140496986259968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140496910436384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986260416"}, {"nodeId": "140496986260864"}]}}, "140496986260416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986260864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910437168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986261312"}, {"nodeId": "140496986261760"}]}}, "140496986261312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986261760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910437280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986262208"}, {"nodeId": "140496986262656"}]}}, "140496986262208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986262656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910437392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986263104"}, {"nodeId": "140496986263552"}]}}, "140496986263104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986263552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910437504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986264000"}, {"nodeId": "140496986264448"}]}}, "140496986264000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986264448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910437616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986264896"}, {"nodeId": "140496986265344"}]}}, "140496986264896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986265344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986265792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496910438064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910438064": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}]}}, "140496910437840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986270272"}, {"nodeId": "140496986270720"}]}}, "140496986270272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".1.140496956803552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986270720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956803200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496868972288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496868970720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496868974080"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910437728"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986268480"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496868972288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496868970720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496868974080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910437728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986267584"}, {"nodeId": "140496986268032"}]}}, "140496986267584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986268032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803200"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496986268480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803200"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496910439184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496910439184": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496986271168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956803552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986271616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986272064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986272512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986272960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910439296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986273408"}, {"nodeId": "140496986273856"}]}}, "140496986273408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986273856": {"type": "Function", "content": {"typeVars": [".-1.140496986273856"], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": ".-1.140496986273856"}]}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496910439632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986273856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986273856", "variance": "INVARIANT"}}, "140496910439632": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956803552"}, {"nodeId": ".-1.140496986273856"}]}}, "140496986274304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986274752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986275200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986406976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803552", "args": [{"nodeId": ".1.140496956803552"}]}, {"nodeId": "A"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496986407424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496952679360": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902763040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902763488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902763712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978157728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978158176"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978159520"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902763040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679360"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028249760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877411616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877022432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877021760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877269088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877267968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877266848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877259008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877259456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877260128"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496914820768"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915096160"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003466752"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003467200"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003467648"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003468096"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003468544"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877260576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003469440"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003469888"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496877411616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877022432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877021760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140496952673024", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496952673024": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977680800"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977681248"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977681696"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977682144"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977682592"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977683040"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977683488"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977683936"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977684384"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977684832"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977685280"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977685728"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977686176"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}], "bases": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "isAbstract": false}}, ".1.140496952673024": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952673024", "variance": "INVARIANT"}}, ".2.140496952673024": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952673024", "variance": "COVARIANT"}}, "140496977680800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140496977681248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, {"nodeId": ".1.140496952673024"}], "returnType": {"nodeId": ".2.140496952673024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496977681696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496952673024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496977682144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496977682592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496977683040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977683488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496952673024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956558848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011366304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011366752"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011367200"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011367648"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011368096"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011368544"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011368992"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011369440"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011369888"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011370336"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011370784"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011371232"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140496956558848"}], "bases": [{"nodeId": "140496956558144"}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140496956558848"}]}], "isAbstract": false}}, ".1.140496956558848": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956558848", "variance": "COVARIANT"}}, "140497011366304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".1.140496956558848"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140497028248704": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906925248"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927764576"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011374816"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011375264"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011375712"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011491104"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011491552"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}], "bases": [{"nodeId": "140497028246944", "args": [{"nodeId": ".1.140497028248704"}]}], "isAbstract": true}}, ".1.140497028248704": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028248704", "variance": "INVARIANT"}}, ".2.140497028248704": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028248704", "variance": "COVARIANT"}}, "140496906925248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}, {"nodeId": ".1.140497028248704"}], "returnType": {"nodeId": ".2.140497028248704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496927764576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011373920"}, {"nodeId": "140497011374368"}]}}, "140497011373920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}, {"nodeId": ".1.140497028248704"}], "returnType": {"nodeId": "140496927999472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496927999472": {"type": "Union", "content": {"items": [{"nodeId": ".2.140497028248704"}, {"nodeId": "N"}]}}, "140497011374368": {"type": "Function", "content": {"typeVars": [".-1.140497011374368"], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}, {"nodeId": ".1.140497028248704"}, {"nodeId": "140496927999584"}], "returnType": {"nodeId": "140496927999696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140496927999584": {"type": "Union", "content": {"items": [{"nodeId": ".2.140497028248704"}, {"nodeId": ".-1.140497011374368"}]}}, ".-1.140497011374368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011374368", "variance": "INVARIANT"}}, "140496927999696": {"type": "Union", "content": {"items": [{"nodeId": ".2.140497028248704"}, {"nodeId": ".-1.140497011374368"}]}}, "140497011374816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}], "returnType": {"nodeId": "140496956558496", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956558496": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011360928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011361376"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011361824"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011362272"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011362720"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011363168"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011363616"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011364064"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011364512"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011364960"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011365408"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011365856"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}], "bases": [{"nodeId": "140496956558144"}, {"nodeId": "140497028248000", "args": [{"nodeId": "140496948406624"}]}], "isAbstract": false}}, ".1.140496956558496": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956558496", "variance": "COVARIANT"}}, ".2.140496956558496": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956558496", "variance": "COVARIANT"}}, "140497011360928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140497011361376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927766704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956562368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910443552"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986569664"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986570112"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986701888"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986702336"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986702784"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986703232"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986703680"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986704128"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986704576"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986705024"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986705472"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986705920"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986706368"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986706816"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986707264"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986707712"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986708160"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986708608"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986709056"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986709504"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986709952"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986710400"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986710848"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986711296"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986711744"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986712192"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986712640"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986713088"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986713536"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986713984"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986714432"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496956562368"}], "bases": [{"nodeId": "140497028248352", "args": [{"nodeId": ".1.140496956562368"}]}], "isAbstract": false}}, ".1.140496956562368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956562368", "variance": "INVARIANT"}}, "140496910443552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986568768"}, {"nodeId": "140496986569216"}]}}, "140496986568768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986569216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986569664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": ".1.140496956562368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986570112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986701888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986702336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986702784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": ".1.140496956562368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986703232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986703680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986704128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986704576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986705024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986705472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": ".1.140496956562368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986705920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986706368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986706816": {"type": "Function", "content": {"typeVars": [".-1.140496986706816"], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496986706816"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496910445680"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140496986706816": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986706816", "variance": "INVARIANT"}}, "140496910445680": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562368"}, {"nodeId": ".-1.140496986706816"}]}}, "140496986707264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986707712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986708160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986708608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986709056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028248000": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906725056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011236576"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011237024"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011237472"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011237920"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011238368"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011238816"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011239264"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011239712"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011240160"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011240608"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140497028248000"}], "bases": [{"nodeId": "140497028246944", "args": [{"nodeId": ".1.140497028248000"}]}], "isAbstract": true}}, ".1.140497028248000": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028248000", "variance": "COVARIANT"}}, "140496906725056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011236576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011237024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011237472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011237920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011238368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011238816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011239264": {"type": "Function", "content": {"typeVars": [".-1.140497011239264"], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".-1.140497011239264"}]}], "returnType": {"nodeId": "140497028248000", "args": [{"nodeId": "140496927765472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011239264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011239264", "variance": "INVARIANT"}}, "140496927765472": {"type": "Union", "content": {"items": [{"nodeId": ".1.140497028248000"}, {"nodeId": ".-1.140497011239264"}]}}, "140497011239712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011240160": {"type": "Function", "content": {"typeVars": [".-1.140497011240160"], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".-1.140497011240160"}]}], "returnType": {"nodeId": "140497028248000", "args": [{"nodeId": "140496927765696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011240160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011240160", "variance": "INVARIANT"}}, "140496927765696": {"type": "Union", "content": {"items": [{"nodeId": ".1.140497028248000"}, {"nodeId": ".-1.140497011240160"}]}}, "140497011240608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248000"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140497028246944": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906718112"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028246944"}], "bases": [{"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028246944"}]}, {"nodeId": "140497028246592", "args": [{"nodeId": ".1.140497028246944"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140497028246944": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028246944", "variance": "COVARIANT"}}, "140496906718112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246944", "args": [{"nodeId": ".1.140497028246944"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497028246592": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906665344"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028246592"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__contains__"]}}, ".1.140497028246592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028246592", "variance": "COVARIANT"}}, "140496906665344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246592", "args": [{"nodeId": ".1.140497028246592"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986709504": {"type": "Function", "content": {"typeVars": [".0.140496986709504"], "argTypes": [{"nodeId": ".0.140496986709504"}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": ".0.140496986709504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986709504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "def": "140496986709504", "variance": "INVARIANT"}}, "140496986709952": {"type": "Function", "content": {"typeVars": [".-1.140496986709952"], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".-1.140496986709952"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496910445904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986709952": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986709952", "variance": "INVARIANT"}}, "140496910445904": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562368"}, {"nodeId": ".-1.140496986709952"}]}}, "140496986710400": {"type": "Function", "content": {"typeVars": [".0.140496986710400"], "argTypes": [{"nodeId": ".0.140496986710400"}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": ".0.140496986710400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986710400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "def": "140496986710400", "variance": "INVARIANT"}}, "140496986710848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140496910446016"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910446016": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562368"}, {"nodeId": "N"}]}}, "140496986711296": {"type": "Function", "content": {"typeVars": [".0.140496986711296"], "argTypes": [{"nodeId": ".0.140496986711296"}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": ".0.140496986711296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986711296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "def": "140496986711296", "variance": "INVARIANT"}}, "140496986711744": {"type": "Function", "content": {"typeVars": [".-1.140496986711744"], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".-1.140496986711744"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496910446128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986711744": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986711744", "variance": "INVARIANT"}}, "140496910446128": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562368"}, {"nodeId": ".-1.140496986711744"}]}}, "140496986712192": {"type": "Function", "content": {"typeVars": [".0.140496986712192"], "argTypes": [{"nodeId": ".0.140496986712192"}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140496956562368"}]}], "returnType": {"nodeId": ".0.140496986712192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986712192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, "def": "140496986712192", "variance": "INVARIANT"}}, "140496986712640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986713088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986713536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986713984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956562368"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986714432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140497028248352": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906726624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906833920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011241952"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011242400"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011242848"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011243296"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011243744"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011244192"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011244640"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140497028248352"}], "bases": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248352"}]}], "isAbstract": true}}, ".1.140497028248352": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028248352", "variance": "INVARIANT"}}, "140496906726624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, {"nodeId": ".1.140497028248352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140496906833920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, {"nodeId": ".1.140497028248352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140497011241952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011242400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}], "returnType": {"nodeId": ".1.140497028248352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011242848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, {"nodeId": ".1.140497028248352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140497011243296": {"type": "Function", "content": {"typeVars": [".0.140497011243296"], "argTypes": [{"nodeId": ".0.140497011243296"}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248352"}]}], "returnType": {"nodeId": ".0.140497011243296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011243296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, "def": "140497011243296", "variance": "INVARIANT"}}, "140497011243744": {"type": "Function", "content": {"typeVars": [".0.140497011243744"], "argTypes": [{"nodeId": ".0.140497011243744"}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140497011243744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011243744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, "def": "140497011243744", "variance": "INVARIANT"}}, "140497011244192": {"type": "Function", "content": {"typeVars": [".0.140497011244192"], "argTypes": [{"nodeId": ".0.140497011244192"}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140497028248352"}]}], "returnType": {"nodeId": ".0.140497011244192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011244192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, "def": "140497011244192", "variance": "INVARIANT"}}, "140497011244640": {"type": "Function", "content": {"typeVars": [".0.140497011244640"], "argTypes": [{"nodeId": ".0.140497011244640"}, {"nodeId": "140497028248000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140497011244640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011244640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028248352", "args": [{"nodeId": ".1.140497028248352"}]}, "def": "140497011244640", "variance": "INVARIANT"}}, "140496927766704": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011361824": {"type": "Function", "content": {"typeVars": [".-1.140497011361824"], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011361824"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".-1.140497011361824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011361824": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011361824", "variance": "INVARIANT"}}, "140497011362272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011362720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496927766928"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496927766928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011363168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496927767152"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496927767152": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011363616": {"type": "Function", "content": {"typeVars": [".-1.140497011363616"], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011363616"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927767488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011363616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011363616", "variance": "INVARIANT"}}, "140496927767488": {"type": "Union", "content": {"items": [{"nodeId": "140496927767376"}, {"nodeId": ".-1.140497011363616"}]}}, "140496927767376": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011364064": {"type": "Function", "content": {"typeVars": [".-1.140497011364064"], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011364064"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927767824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011364064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011364064", "variance": "INVARIANT"}}, "140496927767824": {"type": "Union", "content": {"items": [{"nodeId": "140496927767712"}, {"nodeId": ".-1.140497011364064"}]}}, "140496927767712": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011364512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927768160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496927768160": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011364960": {"type": "Function", "content": {"typeVars": [".-1.140497011364960"], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011364960"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".-1.140497011364960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011364960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011364960", "variance": "INVARIANT"}}, "140497011365408": {"type": "Function", "content": {"typeVars": [".-1.140497011365408"], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011365408"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927998016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011365408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011365408", "variance": "INVARIANT"}}, "140496927998016": {"type": "Union", "content": {"items": [{"nodeId": "140496927768384"}, {"nodeId": ".-1.140497011365408"}]}}, "140496927768384": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011365856": {"type": "Function", "content": {"typeVars": [".-1.140497011365856"], "argTypes": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011365856"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927998352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011365856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011365856", "variance": "INVARIANT"}}, "140496927998352": {"type": "Union", "content": {"items": [{"nodeId": "140496927998240"}, {"nodeId": ".-1.140497011365856"}]}}, "140496927998240": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140496956558144": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011360032"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011360480"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140496956557088"}], "isAbstract": false}}, "140497011360032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558144"}, {"nodeId": "140497028248704", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140497011360480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558144"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956557088": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906586144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__len__"]}}, "140496906586144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956557088"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496948406624": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956558496"}, {"nodeId": ".2.140496956558496"}]}}, "140497011375264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}], "returnType": {"nodeId": "140496956558848", "args": [{"nodeId": ".1.140497028248704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011375712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}], "returnType": {"nodeId": "140496956559200", "args": [{"nodeId": ".2.140497028248704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956559200": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011371680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011372128"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011372576"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011373024"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496956559200"}], "bases": [{"nodeId": "140496956558144"}, {"nodeId": "140497028246944", "args": [{"nodeId": ".1.140496956559200"}]}], "isAbstract": false}}, ".1.140496956559200": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956559200", "variance": "COVARIANT"}}, "140497011371680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559200", "args": [{"nodeId": ".1.140496956559200"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": "A"}, {"nodeId": ".1.140496956559200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140497011372128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559200", "args": [{"nodeId": ".1.140496956559200"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011372576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559200", "args": [{"nodeId": ".1.140496956559200"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956559200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497011373024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559200", "args": [{"nodeId": ".1.140496956559200"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956559200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497011491104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011491552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028248704"}, {"nodeId": ".2.140497028248704"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011366752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956558848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011367200": {"type": "Function", "content": {"typeVars": [".-1.140497011367200"], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011367200"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".-1.140497011367200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011367200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011367200", "variance": "INVARIANT"}}, "140497011367648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011368096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956558848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497011368544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956558848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497011368992": {"type": "Function", "content": {"typeVars": [".-1.140497011368992"], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011368992"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927998688"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011368992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011368992", "variance": "INVARIANT"}}, "140496927998688": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956558848"}, {"nodeId": ".-1.140497011368992"}]}}, "140497011369440": {"type": "Function", "content": {"typeVars": [".-1.140497011369440"], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011369440"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927998800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011369440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011369440", "variance": "INVARIANT"}}, "140496927998800": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956558848"}, {"nodeId": ".-1.140497011369440"}]}}, "140497011369888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".1.140496956558848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011370336": {"type": "Function", "content": {"typeVars": [".-1.140497011370336"], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011370336"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": ".-1.140497011370336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011370336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011370336", "variance": "INVARIANT"}}, "140497011370784": {"type": "Function", "content": {"typeVars": [".-1.140497011370784"], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011370784"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927999024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011370784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011370784", "variance": "INVARIANT"}}, "140496927999024": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956558848"}, {"nodeId": ".-1.140497011370784"}]}}, "140497011371232": {"type": "Function", "content": {"typeVars": [".-1.140497011371232"], "argTypes": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956558848"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497011371232"}]}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496927999136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497011371232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011371232", "variance": "INVARIANT"}}, "140496927999136": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956558848"}, {"nodeId": ".-1.140497011371232"}]}}, "140496977683936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140496956559200", "args": [{"nodeId": ".2.140496952673024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977684384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977684832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496977685280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496952673024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496977685728": {"type": "Function", "content": {"typeVars": [".-1.140496977685728", ".-2.140496977685728"], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140496977685728"}, {"nodeId": ".-2.140496977685728"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496928007984"}, {"nodeId": "140496928008096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496977685728": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496977685728", "variance": "INVARIANT"}}, ".-2.140496977685728": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496977685728", "variance": "INVARIANT"}}, "140496928007984": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".-1.140496977685728"}]}}, "140496928008096": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496952673024"}, {"nodeId": ".-2.140496977685728"}]}}, "140496977686176": {"type": "Function", "content": {"typeVars": [".-1.140496977686176", ".-2.140496977686176"], "argTypes": [{"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".2.140496952673024"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140496977686176"}, {"nodeId": ".-2.140496977686176"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496928008208"}, {"nodeId": "140496928008320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496977686176": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496977686176", "variance": "INVARIANT"}}, ".-2.140496977686176": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496977686176", "variance": "INVARIANT"}}, "140496928008208": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952673024"}, {"nodeId": ".-1.140496977686176"}]}}, "140496928008320": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496952673024"}, {"nodeId": ".-2.140496977686176"}]}}, "140496877269088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877267968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877266848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877259008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877259456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140496915099296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915099296": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496877260128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914820768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497003464960"}, {"nodeId": "140497003465408"}]}}, "140497003464960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497003465408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140496915096160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497003465856"}, {"nodeId": "140497003466304"}]}}, "140497003465856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140497003466304": {"type": "Function", "content": {"typeVars": [".-1.140497003466304"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140497003466304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140497003466304": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497003466304", "variance": "INVARIANT"}}, "140497003466752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140497003467200": {"type": "Function", "content": {"typeVars": [".-1.140497003467200"], "argTypes": [{"nodeId": ".-1.140497003467200"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".-1.140497003467200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140497003467200": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497003467200", "variance": "INVARIANT"}}, "140497003467648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140497028249760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003468096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497003468544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496877260576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140497003469440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952680064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496952680064": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902848800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978160864"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978161312"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902848800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952680064"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978160864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952680064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952680064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496978161312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952680064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952680064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497003469888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249760"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952680064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496902763488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679360"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902763712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679360"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978157728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679360"}, {"nodeId": "140497028249760"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140496978158176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679360"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496978159520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679360"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028247296": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927763120"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016306400"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016306848"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016307296"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011228960"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011229408"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140497028247296"}], "bases": [{"nodeId": "140497028246944", "args": [{"nodeId": ".1.140497028247296"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".1.140497028247296"}]}], "isAbstract": true}}, ".1.140497028247296": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028247296", "variance": "COVARIANT"}}, "140496927763120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497016305504"}, {"nodeId": "140497016305952"}]}}, "140497016305504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140497028247296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497016305952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497016306400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}, {"nodeId": "A"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140497016306848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140497016307296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011228960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028247296"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497011229408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247296"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028247296"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497028244128": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906594656"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028244128"}], "bases": [{"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028244128"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140497028244128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028244128", "variance": "COVARIANT"}}, "140496906594656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244128", "args": [{"nodeId": ".1.140497028244128"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028244128"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496873506400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496910435600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910435600": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "N"}]}}, "140496873506624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496910435712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910435712": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "N"}]}}, "140496873506848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873507296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873504832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496956570816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873507072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873507520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873507744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873505952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986135616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140496986136064": {"type": "Function", "content": {"typeVars": [".0.140496986136064"], "argTypes": [{"nodeId": ".0.140496986136064"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496986136064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802848"}, "def": "140496986136064", "variance": "INVARIANT"}}, "140496986136512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496910435936"}, {"nodeId": "140496910436048"}, {"nodeId": "140496910436160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496910435936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496910436048": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496956808480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948406736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948411104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948410320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982435968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982436416"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982436864"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496948406736": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496948411104": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496948410320": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496952677952": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978028000"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952708000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902752512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902752736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902752960"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496978028000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677952"}, {"nodeId": "140496923035792"}, {"nodeId": "140496952678304"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140496923035792": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496952678304": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902754528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902754976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902755200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902755424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902755648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902755872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902756096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952709232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978032928"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902754528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140496923035904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923035904": {"type": "Union", "content": {"items": [{"nodeId": "140496952678304"}, {"nodeId": "N"}]}}, "140496902754976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902755200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140496952672672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496952672672": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902337056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902338176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902337728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902338400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902338624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902338848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902339072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902339296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902339520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902339744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902339968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902340192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902438976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902439200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902439424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902439648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902440320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977675872"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977678112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977679904"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902337056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902338176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902337728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902338400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902338624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902338848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902339072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956802144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915337216"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990851520"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990851968"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990852416"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990852864"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990853312"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990853760"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990854656"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990855104"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990856000"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990856448"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990856896"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990857344"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990857792"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990858240"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990858688"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990859136"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990859584"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990860032"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990860480"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990860928"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990861376"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990861824"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990862272"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990862720"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990994496"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990994944"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990995392"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990995840"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990996288"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990996736"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990997184"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990997632"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990998080"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990998528"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990998976"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990999424"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990999872"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991000320"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991000768"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991001216"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872825888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872967520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991002560"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991003008"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915340128"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991004352"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991004800"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991005248"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991005696"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991006144"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991006592"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991007040"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991007488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991007936"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991008384"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991008832"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991009280"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991010176"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496915337216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990850176"}, {"nodeId": "140496990850624"}, {"nodeId": "140496990851072"}]}}, "140496990850176": {"type": "Function", "content": {"typeVars": [".0.140496990850176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915341248"}], "returnType": {"nodeId": ".0.140496990850176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496915341248": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496956568704"}]}, {"nodeId": "140496956568704"}, {"nodeId": "140496956556384"}, {"nodeId": "140496956570816"}]}}, "140496956556384": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906478176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__bytes__"]}}, "140496906478176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956556384"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496990850176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802144"}, "def": "140496990850176", "variance": "INVARIANT"}}, "140496990850624": {"type": "Function", "content": {"typeVars": [".0.140496990850624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496990850624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140496990850624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802144"}, "def": "140496990850624", "variance": "INVARIANT"}}, "140496990851072": {"type": "Function", "content": {"typeVars": [".0.140496990851072"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140496990851072"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140496990851072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802144"}, "def": "140496990851072", "variance": "INVARIANT"}}, "140496990851520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990851968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496990852416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915341360"}, {"nodeId": "140496915341472"}, {"nodeId": "140496915341584"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915341360": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915341472": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915341584": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990852864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140496990853312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915341696"}, {"nodeId": "140496915341808"}, {"nodeId": "140496915341920"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915341696": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956570816"}]}]}}, "140496915341808": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915341920": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990853760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140496990854656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915342032"}, {"nodeId": "140496915342144"}, {"nodeId": "140496915342256"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915342032": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915342144": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915342256": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990855104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915342368"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140496915342368": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}]}}, "140496990856000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915342480"}, {"nodeId": "140496915342592"}, {"nodeId": "140496915342704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915342480": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915342592": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915342704": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990856448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990856896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990857344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990857792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990858240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990858688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990859136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990859584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990860032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956570816"}]}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990860480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}, {"nodeId": "140496915342816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496915342816": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}]}}, "140496956802496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915341136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991094144"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991094592"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991095040"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991095488"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991095936"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991096384"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991096832"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991097280"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991098176"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991098624"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991099072"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991099968"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991100416"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991100864"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991101312"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991101760"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991102208"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991102656"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991103104"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991103552"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991104000"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991104448"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991104896"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991105344"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991105792"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991106240"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991106688"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991107136"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991107584"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991108032"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496991108480"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985980992"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985981440"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985981888"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985982336"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985982784"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985983232"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985983680"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985984128"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985984576"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985985024"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985985472"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985985920"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985986368"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985986816"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985987264"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873082656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868641472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985988608"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985989056"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915345168"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910434704"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985991296"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985991744"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985992192"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985992640"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985993088"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985993536"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985993984"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985994432"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985994880"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985995328"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985995776"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985996224"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496985996672"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986128448"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986128896"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986129344"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986129792"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140497028247648", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496915341136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496991092800"}, {"nodeId": "140496991093248"}, {"nodeId": "140496991093696"}]}}, "140496991092800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991093248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915345840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915345840": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496956568704"}]}, {"nodeId": "140496956568704"}, {"nodeId": "140496956570816"}]}}, "140496991093696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140496991094144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496991094592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991095040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496991095488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915345952"}, {"nodeId": "140496915346064"}, {"nodeId": "140496915346176"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915345952": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915346064": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915346176": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496991095936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991096384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140496991096832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915346288"}, {"nodeId": "140496915346400"}, {"nodeId": "140496915346512"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915346288": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956570816"}]}]}}, "140496915346400": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915346512": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496991097280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140496991098176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956568704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496991098624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915346624"}, {"nodeId": "140496915346736"}, {"nodeId": "140496915346848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915346624": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915346736": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915346848": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496991099072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915346960"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140496915346960": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}]}}, "140496991099968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915347072"}, {"nodeId": "140496915347184"}, {"nodeId": "140496915347296"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915347072": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915347184": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915347296": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496991100416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496991100864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991101312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991101760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991102208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991102656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991103104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991103552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991104000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991104448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956570816"}]}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496991104896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}, {"nodeId": "140496915347408"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496915347408": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}]}}, "140496991105344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991105792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915347520"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915347520": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496991106240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496915347744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915347744": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802496"}, {"nodeId": "140496956802496"}, {"nodeId": "140496956802496"}]}}, "140496991106688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496991107136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496991107584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496991108032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496991108480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496985980992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915347856"}, {"nodeId": "140496915347968"}, {"nodeId": "140496915348080"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915347856": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915347968": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915348080": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496985981440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915348192"}, {"nodeId": "140496915348304"}, {"nodeId": "140496915348416"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915348192": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915348304": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915348416": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496985981888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}, {"nodeId": "140496915348528"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496915348528": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}]}}, "140496985982336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496915348752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915348752": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802496"}, {"nodeId": "140496956802496"}, {"nodeId": "140496956802496"}]}}, "140496985982784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915348864"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802496"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496915348864": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496985983232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915348976"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915348976": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496985983680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915349088"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802496"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496915349088": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496985984128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802496"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140496985984576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496915349200"}, {"nodeId": "140496915349312"}, {"nodeId": "140496910434368"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915349200": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956570816"}]}]}}, "140496915349312": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496910434368": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496985985024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496910434480"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496910434480": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496985985472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496985985920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496985986368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496910434592"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140496910434592": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496985986816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496985987264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496873082656": {"type": "Function", "content": {"typeVars": [".0.140496873082656"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496873082656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496873082656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802496"}, "def": "140496873082656", "variance": "INVARIANT"}}, "140496868641472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570816"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985988608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496985989056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496915345168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496985989504"}, {"nodeId": "140496985989952"}]}}, "140496985989504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985989952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910434704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496985990400"}, {"nodeId": "140496985990848"}]}}, "140496985990400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496985990848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956803200"}, {"nodeId": "140496910435040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496910435040": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496956568704"}]}, {"nodeId": "140496956802144"}]}}, "140496985991296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496910435152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910435152": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956803200"}]}}, "140496985991744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985992192": {"type": "Function", "content": {"typeVars": [".0.140496985992192"], "argTypes": [{"nodeId": ".0.140496985992192"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": ".0.140496985992192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496985992192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802496"}, "def": "140496985992192", "variance": "INVARIANT"}}, "140496985992640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985993088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985993536": {"type": "Function", "content": {"typeVars": [".0.140496985993536"], "argTypes": [{"nodeId": ".0.140496985993536"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".0.140496985993536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496985993536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802496"}, "def": "140496985993536", "variance": "INVARIANT"}}, "140496985993984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985994432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496910435376"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910435376": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956570816"}]}}, "140496985994880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985995328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985995776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985996224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496985996672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986128448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986128896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986129344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986129792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802496"}, {"nodeId": "140496956802848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497028247648": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906722368"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927763568"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927764128"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927764464"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011232992"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011233440"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011233888"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011234336"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011234784"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011235232"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011235680"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140497028247648"}], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": ".1.140497028247648"}]}], "isAbstract": true}}, ".1.140497028247648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028247648", "variance": "INVARIANT"}}, "140496906722368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140497028250464"}, {"nodeId": ".1.140497028247648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140496927763568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011230304"}, {"nodeId": "140497011230752"}]}}, "140497011230304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140497028247648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011230752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496927764128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011231200"}, {"nodeId": "140497011231648"}]}}, "140497011231200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140497028250464"}, {"nodeId": ".1.140497028247648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497011231648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140496956803200"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028247648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496927764464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011232096"}, {"nodeId": "140497011232544"}]}}, "140497011232096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011232544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011232992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": ".1.140497028247648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140497011233440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011233888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028247648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140497011234336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011234784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140497028247648"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140497011235232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, {"nodeId": ".1.140497028247648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140497011235680": {"type": "Function", "content": {"typeVars": [".0.140497011235680"], "argTypes": [{"nodeId": ".0.140497011235680"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140497028247648"}]}], "returnType": {"nodeId": ".0.140497011235680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011235680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028247648", "args": [{"nodeId": ".1.140497028247648"}]}, "def": "140497011235680", "variance": "INVARIANT"}}, "140496990860928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990861376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915342928"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915342928": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496990861824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496915343152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915343152": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}]}}, "140496990862272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496990862720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990994496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990994944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915343264"}, {"nodeId": "140496915343376"}, {"nodeId": "140496915343488"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915343264": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915343376": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915343488": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990995392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915343600"}, {"nodeId": "140496915343712"}, {"nodeId": "140496915343824"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915343600": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956568704"}]}}, "140496915343712": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915343824": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990995840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}, {"nodeId": "140496915343936"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496915343936": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}]}}, "140496990996288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496915344160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915344160": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}]}}, "140496990996736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915344272"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496915344272": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496990997184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915344384"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915344384": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496990997632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915344496"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496915344496": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496990998080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140496990998528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915344608"}, {"nodeId": "140496915344720"}, {"nodeId": "140496915344832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915344608": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956570816"}]}]}}, "140496915344720": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915344832": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990998976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915344944"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915344944": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496990999424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990999872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991000320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915345056"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140496915345056": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "N"}]}}, "140496991000768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496991001216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496872825888": {"type": "Function", "content": {"typeVars": [".0.140496872825888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496872825888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496872825888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956802144"}, "def": "140496872825888", "variance": "INVARIANT"}}, "140496872967520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570816"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991002560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496991003008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496915340128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496991003456"}, {"nodeId": "140496991003904"}]}}, "140496991003456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991003904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991004352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991004800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991005248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991005696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991006144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496915345392"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496915345392": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956570816"}]}}, "140496991006592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991007040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991007488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991007936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991008384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991008832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496991009280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496915345616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915345616": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}]}}, "140496991010176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496902339296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902339520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902339744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902339968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902340192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902438976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902439200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902439424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902439648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902440320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977675872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496928007760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928007760": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496928007536"}]}}, "140496928007536": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496977678112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140496977679904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672672"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140496952672672"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140496902755424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902755648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902755872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140496923036352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923036352": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "A"}]}}, "140496902756096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496952709232": {"type": "Union", "content": {"items": [{"nodeId": "140496931848704"}, {"nodeId": "N"}]}}, "140496931848704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496978032928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496952708000": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496902752512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677952"}], "returnType": {"nodeId": "140496952678304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902752736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677952"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902752960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677952"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496982435968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140496982436416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956808480"}, {"nodeId": "140496910997920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496910997920": {"type": "Union", "content": {"items": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496982436864": {"type": "Function", "content": {"typeVars": [".0.140496982436864"], "argTypes": [{"nodeId": ".0.140496982436864"}, {"nodeId": "140496910998144"}], "returnType": {"nodeId": ".0.140496982436864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140496982436864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956808480"}, "def": "140496982436864", "variance": "INVARIANT"}}, "140496910998144": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496910436160": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496986136960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956801792"}, {"nodeId": "140496910436272"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140496910436272": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}]}}, "140496910434816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986137408"}, {"nodeId": "140496986137856"}]}}, "140496986137408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986137856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986138304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986138752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986139200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496910435824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986139648"}, {"nodeId": "140496986140096"}]}}, "140496986139648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956803200"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496986140096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496986140544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496910437056"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140496910437056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140496986141888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986142336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986142784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986143232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496910436944"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140496910436944": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}]}}, "140496986144128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986259520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956802848"}, {"nodeId": "140496956802848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956555328": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906473248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__int__"]}}, "140496906473248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956555328"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496931910432": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020184928"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__trunc__"]}}, "140497020184928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931910432"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497003471680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028250464"}, "def": "140497003471680", "variance": "INVARIANT"}}, "140497003472128": {"type": "Function", "content": {"typeVars": [".0.140497003472128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915101648"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".0.140497003472128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140496915101648": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}]}}, ".0.140497003472128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028250464"}, "def": "140497003472128", "variance": "INVARIANT"}}, "140497003472576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496915101984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915101984": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "0"}]}}, "140496877263936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877263488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877264832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877265280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003474816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003475264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003475712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003477056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140496956568704"}, {"nodeId": "140496915102544"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140496915102544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496877266176": {"type": "Function", "content": {"typeVars": [".0.140496877266176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915102656"}, {"nodeId": "140496915102992"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": ".0.140496877266176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140496915102656": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496956568704"}]}, {"nodeId": "140496956556384"}, {"nodeId": "140496956570816"}]}}, "140496915102992": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140496877266176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028250464"}, "def": "140496877266176", "variance": "INVARIANT"}}, "140497003478400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990224448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990224896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990225344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990225792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028250816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990312192"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990312640"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990313088"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990313536"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877102112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877103456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877099872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990315328"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990315776"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990316224"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990316672"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990317120"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990317568"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990318016"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990318464"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915101424"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990319808"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990320256"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990320704"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990321152"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990321600"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990322048"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990437440"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915334416"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990439232"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990439680"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990440128"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990440576"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915335088"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990441920"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990442368"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990442816"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990443264"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990443712"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990444160"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990444608"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990445056"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990445504"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990445952"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990446400"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990446848"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496990312192": {"type": "Function", "content": {"typeVars": [".0.140496990312192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915334528"}], "returnType": {"nodeId": ".0.140496990312192"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140496915334528": {"type": "Union", "content": {"items": [{"nodeId": "140496956555680"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956570816"}]}}, "140496956555680": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906475040"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__float__"]}}, "140496906475040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956555680"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496990312192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028250816"}, "def": "140496990312192", "variance": "INVARIANT"}}, "140496990312640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496915334752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915334752": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496990313088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990313536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877102112": {"type": "Function", "content": {"typeVars": [".0.140496877102112"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496877102112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496877102112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028250816"}, "def": "140496877102112", "variance": "INVARIANT"}}, "140496877103456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877099872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990315328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990315776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990316224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990316672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990317120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990317568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990318016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990318464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496915334976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496915334976": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496915101424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990318912"}, {"nodeId": "140496990319360"}]}}, "140496990318912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496990319360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496990319808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990320256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990320704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990321152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990321600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990322048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990437440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496915335424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915335424": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496915334416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990437888"}, {"nodeId": "140496990438336"}, {"nodeId": "140496990438784"}]}}, "140496990437888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140496915335648"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496915335648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932136752"}}}, "140496932136752": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496990438336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140496915335760"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496915335760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932138880"}}}, "140496932138880": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140497028251168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915335536"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877451328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877669056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990449984"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990450432"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990450880"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990451328"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990451776"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990452224"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990452672"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990453120"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990568512"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990568960"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990569408"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990569856"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990570304"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990570752"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990571200"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990571648"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990572096"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496915335536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990447296"}, {"nodeId": "140496990447744"}]}}, "140496990447296": {"type": "Function", "content": {"typeVars": [".0.140496990447296"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915336544"}, {"nodeId": "140496915336656"}], "returnType": {"nodeId": ".0.140496990447296"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140496915336544": {"type": "Union", "content": {"items": [{"nodeId": "140497028251168"}, {"nodeId": "140496956556032"}, {"nodeId": "140496956555680"}, {"nodeId": "140496956568704"}]}}, "140496956556032": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906476608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__complex__"]}}, "140496906476608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956556032"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496915336656": {"type": "Union", "content": {"items": [{"nodeId": "140497028251168"}, {"nodeId": "140496956555680"}, {"nodeId": "140496956568704"}]}}, ".0.140496990447296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028251168"}, "def": "140496990447296", "variance": "INVARIANT"}}, "140496990447744": {"type": "Function", "content": {"typeVars": [".0.140496990447744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496915336768"}], "returnType": {"nodeId": ".0.140496990447744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140496915336768": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956556032"}, {"nodeId": "140496956555680"}, {"nodeId": "140496956568704"}, {"nodeId": "140497028251168"}]}}, ".0.140496990447744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028251168"}, "def": "140496990447744", "variance": "INVARIANT"}}, "140496877451328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877669056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990449984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990450432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990450880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990451328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990451776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496990452224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990452672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990453120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990568512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990568960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496990569408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990569856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990570304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990570752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990571200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990571648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990572096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028251168"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990438784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496990439232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496915336096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915336096": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}]}}, "140496990439680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990440128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990440576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915335088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990441024"}, {"nodeId": "140496990441472"}]}}, "140496990441024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496990441472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990441920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990442368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990442816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990443264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990443712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990444160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990444608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990445056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990445504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990445952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990446400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990446848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250816"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990226240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990226688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496915103216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496915103216": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496990227136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990227584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990228032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990228480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990228928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990229376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990229824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496915103440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915103440": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496915100864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990230272"}, {"nodeId": "140496990230720"}, {"nodeId": "140496990231168"}, {"nodeId": "140496990231616"}, {"nodeId": "140496990232064"}, {"nodeId": "140496990232512"}]}}, "140496990230272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990230720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496990231168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140496915333632"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496915333632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932136752"}}}, "140496990231616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140496915333744"}, {"nodeId": "N"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496915333744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932138880"}}}, "140496990232064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496990232512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496990232960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496915333968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496915333968": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496990233408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990233856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990234304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990234752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990235200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990235648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990236096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990236544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990236992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990237440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990237888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990238336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990238784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990239232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990239680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990240128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990306368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496990306816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496915334304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915334304": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}]}}, "140496990307264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990307712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990308160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990308608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990309056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990309504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990309952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990310400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990310848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990311296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990311744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986412352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": ".1.140496956803904"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496986412800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": ".1.140496956803904"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986413248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956568704"}, {"nodeId": ".1.140496956803904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496986413696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": ".1.140496956803904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496910439520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986414144"}, {"nodeId": "140496986414592"}]}}, "140496986414144": {"type": "Function", "content": {"typeVars": [".-1.140496986414144"], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".-1.140496986414144"}]}, {"nodeId": "N"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140496986414144": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140496927636528"}, "def": "140496986414144", "variance": "INVARIANT"}}, "140496927636528": {"type": "Union", "content": {"items": [{"nodeId": "140496931905504", "args": [{"nodeId": "A"}]}, {"nodeId": "140496931905856", "args": [{"nodeId": "A"}]}]}}, "140496931905504": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020178656"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140496931905504"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__lt__"]}}, ".1.140496931905504": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931905504", "variance": "CONTRAVARIANT"}}, "140497020178656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931905504", "args": [{"nodeId": ".1.140496931905504"}]}, {"nodeId": ".1.140496931905504"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931905856": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020179104"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140496931905856"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__gt__"]}}, ".1.140496931905856": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931905856", "variance": "CONTRAVARIANT"}}, "140497020179104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931905856", "args": [{"nodeId": ".1.140496931905856"}]}, {"nodeId": ".1.140496931905856"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986414592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496915541888"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140496915541888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140496956803904"}], "returnType": {"nodeId": "140496910441088"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496910441088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996384"}}}, "140496931996384": {"type": "Union", "content": {"items": [{"nodeId": "140496931905504", "args": [{"nodeId": "A"}]}, {"nodeId": "140496931905856", "args": [{"nodeId": "A"}]}]}}, "140496986415040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986415488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496910440640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986415936"}, {"nodeId": "140496986416384"}]}}, "140496986415936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".1.140496956803904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986416384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910440752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986416832"}, {"nodeId": "140496986417280"}]}}, "140496986416832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956568704"}, {"nodeId": ".1.140496956803904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496986417280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803200"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496986417728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496910441312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910441312": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956803200"}]}}, "140496910440976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986418176"}, {"nodeId": "140496986418624"}]}}, "140496986418176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986418624": {"type": "Function", "content": {"typeVars": [".-1.140496986418624"], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": ".-1.140496986418624"}]}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496910441536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986418624": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986418624", "variance": "INVARIANT"}}, "140496910441536": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140496986418624"}, {"nodeId": ".1.140496956803904"}]}}, "140496986419072": {"type": "Function", "content": {"typeVars": [".0.140496986419072"], "argTypes": [{"nodeId": ".0.140496986419072"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": ".0.140496986419072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986419072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "def": "140496986419072", "variance": "INVARIANT"}}, "140496986419520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986419968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986420416": {"type": "Function", "content": {"typeVars": [".0.140496986420416"], "argTypes": [{"nodeId": ".0.140496986420416"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".0.140496986420416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986420416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, "def": "140496986420416", "variance": "INVARIANT"}}, "140496986420864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986421312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956803904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986421760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986422208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986422656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986554432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956803904"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986554880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496986558464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986558912": {"type": "Function", "content": {"typeVars": [".0.140496986558912"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140496986558912"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140496986558912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "def": "140496986558912", "variance": "INVARIANT"}}, "140496986559360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986559808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140496956561312", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956561312": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496864744320"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496956561312"}, {"nodeId": ".2.140496956561312"}], "bases": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496956561312"}]}], "isAbstract": false}}, ".1.140496956561312": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956561312", "variance": "COVARIANT"}}, ".2.140496956561312": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956561312", "variance": "COVARIANT"}}, "140496864744320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956561312", "args": [{"nodeId": ".1.140496956561312"}, {"nodeId": ".2.140496956561312"}]}], "returnType": {"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496956561312"}, {"nodeId": ".2.140496956561312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986560256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140496956561664", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956561664": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496864747456"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496956561664"}, {"nodeId": ".2.140496956561664"}], "bases": [{"nodeId": "140496956559200", "args": [{"nodeId": ".2.140496956561664"}]}], "isAbstract": false}}, ".1.140496956561664": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956561664", "variance": "COVARIANT"}}, ".2.140496956561664": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956561664", "variance": "COVARIANT"}}, "140496864747456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956561664", "args": [{"nodeId": ".1.140496956561664"}, {"nodeId": ".2.140496956561664"}]}], "returnType": {"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496956561664"}, {"nodeId": ".2.140496956561664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986560704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140496956562016", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956562016": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496864478816"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496956562016"}, {"nodeId": ".2.140496956562016"}], "bases": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496956562016"}, {"nodeId": ".2.140496956562016"}]}], "isAbstract": false}}, ".1.140496956562016": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956562016", "variance": "COVARIANT"}}, ".2.140496956562016": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956562016", "variance": "COVARIANT"}}, "140496864478816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562016", "args": [{"nodeId": ".1.140496956562016"}, {"nodeId": ".2.140496956562016"}]}], "returnType": {"nodeId": "140496952673024", "args": [{"nodeId": ".1.140496956562016"}, {"nodeId": ".2.140496956562016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910441648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986561152"}, {"nodeId": "140496986561600"}]}}, "140496986561152": {"type": "Function", "content": {"typeVars": [".-1.140496986561152"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496986561152"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": ".-1.140496986561152"}, {"nodeId": "140496910442992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140496986561152": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986561152", "variance": "INVARIANT"}}, "140496910442992": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496986561600": {"type": "Function", "content": {"typeVars": [".-1.140496986561600", ".-2.140496986561600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496986561600"}]}, {"nodeId": ".-2.140496986561600"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": ".-1.140496986561600"}, {"nodeId": ".-2.140496986561600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140496986561600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986561600", "variance": "INVARIANT"}}, ".-2.140496986561600": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986561600", "variance": "INVARIANT"}}, "140496910442432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986562048"}, {"nodeId": "140496986562496"}]}}, "140496986562048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}], "returnType": {"nodeId": "140496910443216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496910443216": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": "N"}]}}, "140496986562496": {"type": "Function", "content": {"typeVars": [".-1.140496986562496"], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}, {"nodeId": "140496910443328"}], "returnType": {"nodeId": "140496910443440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496910443328": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": ".-1.140496986562496"}]}}, ".-1.140496986562496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986562496", "variance": "INVARIANT"}}, "140496910443440": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": ".-1.140496986562496"}]}}, "140496910442768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986562944"}, {"nodeId": "140496986563392"}]}}, "140496986562944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}], "returnType": {"nodeId": ".2.140496956804256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986563392": {"type": "Function", "content": {"typeVars": [".-1.140496986563392"], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}, {"nodeId": "140496910443664"}], "returnType": {"nodeId": "140496910443776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496910443664": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": ".-1.140496986563392"}]}}, ".-1.140496986563392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986563392", "variance": "INVARIANT"}}, "140496910443776": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": ".-1.140496986563392"}]}}, "140496986563840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986564288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}], "returnType": {"nodeId": ".2.140496956804256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986564736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496986565184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": ".1.140496956804256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986565632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956804256"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986566080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956804256"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986566528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496986566976": {"type": "Function", "content": {"typeVars": [".-1.140496986566976", ".-2.140496986566976"], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140496986566976"}, {"nodeId": ".-2.140496986566976"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496910444000"}, {"nodeId": "140496910444112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986566976": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986566976", "variance": "INVARIANT"}}, ".-2.140496986566976": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986566976", "variance": "INVARIANT"}}, "140496910444000": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".-1.140496986566976"}]}}, "140496910444112": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": ".-2.140496986566976"}]}}, "140496986567424": {"type": "Function", "content": {"typeVars": [".-1.140496986567424", ".-2.140496986567424"], "argTypes": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140496986567424"}, {"nodeId": ".-2.140496986567424"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496910444224"}, {"nodeId": "140496910444336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986567424": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986567424", "variance": "INVARIANT"}}, ".-2.140496986567424": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986567424", "variance": "INVARIANT"}}, "140496910444224": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".-1.140496986567424"}]}}, "140496910444336": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956804256"}, {"nodeId": ".-2.140496986567424"}]}}, "140496910443104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986567872"}, {"nodeId": "140496986568320"}]}}, "140496986567872": {"type": "Function", "content": {"typeVars": [".0.140496986567872"], "argTypes": [{"nodeId": ".0.140496986567872"}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}], "returnType": {"nodeId": ".0.140496986567872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986567872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "def": "140496986567872", "variance": "INVARIANT"}}, "140496986568320": {"type": "Function", "content": {"typeVars": [".0.140496986568320"], "argTypes": [{"nodeId": ".0.140496986568320"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496910444672"}]}], "returnType": {"nodeId": ".0.140496986568320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496986568320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}, "def": "140496986568320", "variance": "INVARIANT"}}, "140496910444672": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956804256"}, {"nodeId": ".2.140496956804256"}]}}, "140497028249056": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906927264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906927712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011492896"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927765920"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011494240"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927999360"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927999808"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}], "bases": [{"nodeId": "140497028248704", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}], "isAbstract": true}}, ".1.140497028249056": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028249056", "variance": "INVARIANT"}}, ".2.140497028249056": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028249056", "variance": "INVARIANT"}}, "140496906927264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496906927712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".1.140497028249056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011492896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927765920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011493344"}, {"nodeId": "140497011493792"}]}}, "140497011493344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".1.140497028249056"}], "returnType": {"nodeId": ".2.140497028249056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497011493792": {"type": "Function", "content": {"typeVars": [".-1.140497011493792"], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".1.140497028249056"}, {"nodeId": "140496927999920"}], "returnType": {"nodeId": "140496928000032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140496927999920": {"type": "Union", "content": {"items": [{"nodeId": ".2.140497028249056"}, {"nodeId": ".-1.140497011493792"}]}}, ".-1.140497011493792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011493792", "variance": "INVARIANT"}}, "140496928000032": {"type": "Union", "content": {"items": [{"nodeId": ".2.140497028249056"}, {"nodeId": ".-1.140497011493792"}]}}, "140497011494240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}], "returnType": {"nodeId": "140496928000256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928000256": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}}, "140496927999360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011494688"}, {"nodeId": "140497011495136"}]}}, "140497011494688": {"type": "Function", "content": {"typeVars": [".-1.140497011494688"], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": "140496928000480"}]}, {"nodeId": ".1.140497028249056"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496928000592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496928000480": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140497011494688"}, {"nodeId": "N"}]}}, ".-1.140497011494688": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011494688", "variance": "INVARIANT"}}, "140496928000592": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140497011494688"}, {"nodeId": "N"}]}}, "140497011495136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}], "returnType": {"nodeId": ".2.140497028249056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496927999808": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011495584"}, {"nodeId": "140497011496032"}, {"nodeId": "140497011496480"}]}}, "140497011495584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".2.140497028249056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497011496032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496928000928"}]}, {"nodeId": ".2.140497028249056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140496928000928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}}, "140497011496480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140497028249056"}, {"nodeId": ".2.140497028249056"}]}, {"nodeId": ".2.140497028249056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140496914820432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497002692672"}]}}, "140497002692672": {"type": "Function", "content": {"typeVars": [".0.140497002692672"], "argTypes": [{"nodeId": ".0.140497002692672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497002692672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497002692672", "variance": "INVARIANT"}}, "140496877409376": {"type": "Function", "content": {"typeVars": [".0.140496877409376"], "argTypes": [{"nodeId": ".0.140496877409376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496877409376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496877409376", "variance": "INVARIANT"}}, "140497002693568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497002694016": {"type": "Function", "content": {"typeVars": [".0.140497002694016"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140497002694016"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140497002694016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497002694016", "variance": "INVARIANT"}}, "140497002694464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140497002694912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497002695360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497002695808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497002696256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497002696704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497002697152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497002697600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497002698048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497002698496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497002698944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140496915096608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915096608": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}]}}, "140497002699392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496915096832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915096832": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}]}}, "140497002700736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497002701184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140496877416768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496990573888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956801792"}, "def": "140496990573888", "variance": "INVARIANT"}}, "140496990574336": {"type": "Function", "content": {"typeVars": [".0.140496990574336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496990574336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140496990574336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956801792"}, "def": "140496990574336", "variance": "INVARIANT"}}, "140496990574784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990575232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990575680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496990576128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496915337328"}, {"nodeId": "140496915337440"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140496915337328": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915337440": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990576576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140496990577024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915337552"}, {"nodeId": "140496915337664"}, {"nodeId": "140496915337776"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915337552": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}]}}, "140496915337664": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915337776": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990577472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140496990578368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496915337888"}, {"nodeId": "140496915338000"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915337888": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915338000": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990578816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496990579264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801088"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140496956801088": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990572992"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__getitem__"]}}, "140496990572992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801088"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990579712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496915338112"}, {"nodeId": "140496915338224"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915338112": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915338224": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990580160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990580608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990581056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990581504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990581952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990582400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990582848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990583296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990583744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990584192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990683200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990683648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990684096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990684544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496990684992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990685440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915338336"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915338336": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496990685888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496915338560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915338560": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496990686336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496990686784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990687232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496990687680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496915338672"}, {"nodeId": "140496915338784"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915338672": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915338784": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990688128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496915338896"}, {"nodeId": "140496915339008"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915338896": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915339008": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990688576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496990689024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496915339232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915339232": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496990689472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915339344"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496915339344": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496990689920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915339456"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915339456": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496990690368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915339568"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496915339568": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496990690816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140496990691264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915339680"}, {"nodeId": "140496915339792"}, {"nodeId": "140496915339904"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496915339680": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}]}}, "140496915339792": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496915339904": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "N"}]}}, "140496990691712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915340016"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496915340016": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496990692160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990692608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990693056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801440"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956801440": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496990573440"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__getitem__"]}}, "140496990573440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801440"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496915336992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496915336992": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496990693504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496990693952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915336432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496990694400"}, {"nodeId": "140496990694848"}, {"nodeId": "140496990695296"}]}}, "140496990694400": {"type": "Function", "content": {"typeVars": [".-1.140496990694400"], "argTypes": [{"nodeId": "140496915340352"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": ".-1.140496990694400"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496915340352": {"type": "Union", "content": {"items": [{"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": ".-1.140496990694400"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496990694400"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496915340240"}, {"nodeId": ".-1.140496990694400"}]}]}}, ".-1.140496990694400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496990694400", "variance": "INVARIANT"}}, "140496915340240": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496990694848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990695296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": "140496915340464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496915340464": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496990695744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990696192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990696640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990697088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990697536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496915340576"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496915340576": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956803200"}]}}, "140496990697984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990698432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990698880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990847040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496990847488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990847936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990848384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990848832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990849280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496990849728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496915340912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496915340912": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496860610976": {"type": "Concrete", "content": {"module": "annotation_tests", "simpleName": "A", "members": [{"kind": "Variable", "content": {"name": "self_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140496860610976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497023920256"}, "name": "f"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497067948992"}, "name": "g"}}, {"kind": "Variable", "content": {"name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860610976", "args": [{"nodeId": "140497028250464"}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": false}}], "typeVars": [{"nodeId": ".1.140496860610976"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496860610976": {"type": "TypeVar", "content": {"varName": "XXX", "values": [{"nodeId": "140496860610976", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028250464"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496860610976", "variance": "INVARIANT"}}, "140497023920256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610976", "args": [{"nodeId": ".1.140496860610976"}]}, {"nodeId": "A"}, {"nodeId": "140496860610976", "args": [{"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "140497067948992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906587264": {"type": "Function", "content": {"typeVars": [".-1.140496906587264"], "argTypes": [{"nodeId": "140497028243424", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": ".-1.140496906587264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["collection", "x"]}}, ".-1.140496906587264": {"type": "TypeVar", "content": {"varName": "XXX", "values": [{"nodeId": "140496860610976", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028250464"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496906587264", "variance": "INVARIANT"}}, "140497067949808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140496906913376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956803904", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956803904", "args": [{"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["x", "y", "a", "b", "c"]}}, "140496877106144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860541472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140496860541472": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496995268448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860541808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140496860541808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496860611328": {"type": "Concrete", "content": {"module": "annotation_tests", "simpleName": "Color", "members": [{"kind": "Variable", "content": {"name": "RED", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "GREEN", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "BLUE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931434240"}], "isAbstract": false}}, "140496931434240": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877104128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877104800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953080992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877105024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877105248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012053088"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012053536"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012053984"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012054432"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496877104128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434240"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496877104800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496953080992": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}]}}, "140496877105024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140496877105248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956803904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140497012053088": {"type": "Function", "content": {"typeVars": [".0.140497012053088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": ".0.140497012053088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140497012053088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434240"}, "def": "140497012053088", "variance": "INVARIANT"}}, "140497012053536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434240"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497012053984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434240"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140497012054432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434240"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140496877104576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860542144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140496860542144": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496995267552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248000", "args": [{"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140496995268000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028248704", "args": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140497023925408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028247296", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140497020027616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242720", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140497028242720": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906481536"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028242720"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__abs__"]}}, ".1.140497028242720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028242720", "variance": "COVARIANT"}}, "140496906481536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242720", "args": [{"nodeId": ".1.140497028242720"}]}], "returnType": {"nodeId": ".1.140497028242720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497023924512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860542480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140496860542480": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496956569760": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911203040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911384864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911385088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911385312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911385536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911385760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994326048"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911385984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911386208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496911203040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911384864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140496927755952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927755952": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496911385088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911385312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911385536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911385760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140496927756176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927756176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496994326048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}, {"nodeId": "140496956801792"}, {"nodeId": "140496927756400"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496927756624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140496927756400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140496956801792"}]}}, "140496927756624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496911385984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140497028240960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028240960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906316576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020041056"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496906316576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240960"}], "returnType": {"nodeId": "140497028241664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028241664": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906319488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906320608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906320832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906321056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016113184"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906321280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906469440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016115424"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016115872"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496906319488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906320608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}], "returnType": {"nodeId": "140496927760208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927760208": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496906320832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906321056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497016113184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}, {"nodeId": "140496956801792"}, {"nodeId": "140496927760432"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140496927760432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496906321280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}], "returnType": {"nodeId": "140497028240960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906469440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}], "returnType": {"nodeId": "140497028241312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028241312": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906317696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020041952"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496906317696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241312"}], "returnType": {"nodeId": "140497028241664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497020041952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241312"}, {"nodeId": "140497028241664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140497016115424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028240608": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020036128"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020036576"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020037024"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140497020036128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240608"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497020036576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240608"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497020037024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240608"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497016115872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028241664"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497020041056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240960"}, {"nodeId": "140497028241664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140496911386208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569760"}], "returnType": {"nodeId": "140497028241312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028240256": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906310304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906310752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906310976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906311200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906311424"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020034336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020034784"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020035232"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496906310304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906310752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}], "returnType": {"nodeId": "140496927758976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927758976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496906310976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906311200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906311424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497020034336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}, {"nodeId": "140496927759424"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140496927759424": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497020034784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497020035232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028240256"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028242016": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016116320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016116768"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016117216"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016117664"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028249760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140497016116320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242016"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140497016116768": {"type": "Function", "content": {"typeVars": [".-1.140497016116768"], "argTypes": [{"nodeId": "140497028242016"}, {"nodeId": ".-1.140497016116768"}], "returnType": {"nodeId": ".-1.140497016116768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140497016116768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497016116768", "variance": "INVARIANT"}}, "140497016117216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242016"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497016117664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242016"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497028242368": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016119456"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140497016119456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956636704": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956634944"}], "isAbstract": false}}, "140496956634944": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956562720", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994603680"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994604128"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994604576"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994605024"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994605472"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140497028249760"}], "isAbstract": false}}, "140496956562720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910444448"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986715776"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986716224"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986716672"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986717120"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986717568"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986849344"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986849792"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986850240"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986850688"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986851136"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986851584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986852032"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986852480"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986852928"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986853376"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986853824"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986854272"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986854720"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986855168"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986855616"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496956562720"}], "bases": [{"nodeId": "140497028248000", "args": [{"nodeId": ".1.140496956562720"}]}], "isAbstract": false}}, ".1.140496956562720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956562720", "variance": "COVARIANT"}}, "140496910444448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986714880"}, {"nodeId": "140496986715328"}]}}, "140496986714880": {"type": "Function", "content": {"typeVars": [".0.140496986714880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140496986714880"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140496986714880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "def": "140496986714880", "variance": "INVARIANT"}}, "140496986715328": {"type": "Function", "content": {"typeVars": [".0.140496986715328"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": ".0.140496986715328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496986715328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "def": "140496986715328", "variance": "INVARIANT"}}, "140496986715776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986716224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986716672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140496986717120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986717568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986849344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986849792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986850240": {"type": "Function", "content": {"typeVars": [".-1.140496986850240"], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496986850240"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": "140496910446576"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140496986850240": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986850240", "variance": "INVARIANT"}}, "140496910446576": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562720"}, {"nodeId": ".-1.140496986850240"}]}}, "140496986850688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986851136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986851584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986852032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986852480": {"type": "Function", "content": {"typeVars": [".-1.140496986852480"], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".-1.140496986852480"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": "140496910446688"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986852480": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986852480", "variance": "INVARIANT"}}, "140496910446688": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562720"}, {"nodeId": ".-1.140496986852480"}]}}, "140496986852928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".1.140496956562720"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986853376": {"type": "Function", "content": {"typeVars": [".-1.140496986853376"], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": ".-1.140496986853376"}]}], "returnType": {"nodeId": "140496956562720", "args": [{"nodeId": "140496910446800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496986853376": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496986853376", "variance": "INVARIANT"}}, "140496910446800": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956562720"}, {"nodeId": ".-1.140496986853376"}]}}, "140496986853824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986854272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986854720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986855168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956562720", "args": [{"nodeId": ".1.140496956562720"}]}, {"nodeId": "140497028248000", "args": [{"nodeId": "140497028238848"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986855616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496994603680": {"type": "Function", "content": {"typeVars": [".-1.140496994603680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140496994603680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140496994603680": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496994603680", "variance": "INVARIANT"}}, "140496994604128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956634944"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140496994604576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956634944"}, {"nodeId": "140497028249760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140496994605024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956634944"}, {"nodeId": "140496914818752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140496914818752": {"type": "Union", "content": {"items": [{"nodeId": "140496932077632", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496932077632": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020190304"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140496932077632"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["write"]}}, ".1.140496932077632": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496932077632", "variance": "CONTRAVARIANT"}}, "140497020190304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932077632", "args": [{"nodeId": ".1.140496932077632"}]}, {"nodeId": ".1.140496932077632"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496994605472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956634944"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140496956556736": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906479520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__index__"]}}, "140496906479520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956556736"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028243072": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927559904"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140497028243072"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__round__"]}}, ".1.140497028243072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028243072", "variance": "COVARIANT"}}, "140496927559904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497016123040"}, {"nodeId": "140497016123488"}]}}, "140497016123040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028243072", "args": [{"nodeId": ".1.140497028243072"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497016123488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028243072", "args": [{"nodeId": ".1.140497028243072"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140497028243072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956557440": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906586592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__hash__"]}}, "140496906586592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956557440"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028244480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016126624"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906597792"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927755728"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016292512"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016292960"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906598016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906598464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906599136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906599360"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140497028244480"}]}], "isAbstract": true}}, ".1.140497028244480": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028244480", "variance": "COVARIANT"}}, ".2.140497028244480": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028244480", "variance": "CONTRAVARIANT"}}, ".3.140497028244480": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028244480", "variance": "COVARIANT"}}, "140497016126624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": ".1.140497028244480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906597792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}, {"nodeId": ".2.140497028244480"}], "returnType": {"nodeId": ".1.140497028244480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496927755728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497016291616"}, {"nodeId": "140497016292064"}]}}, "140497016291616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}, {"nodeId": "0"}, {"nodeId": "140496927762000"}, {"nodeId": "140496927762112"}], "returnType": {"nodeId": ".1.140497028244480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496927762000": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}]}}, "140496927762112": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140497016292064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}, {"nodeId": "140496956808480"}, {"nodeId": "N"}, {"nodeId": "140496927762224"}], "returnType": {"nodeId": ".1.140497028244480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496927762224": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140497016292512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497016292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496906598016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": "140496952672672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906598464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": "140496952678304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906599136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906599360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140497028244480"}, {"nodeId": ".2.140497028244480"}, {"nodeId": ".3.140497028244480"}]}], "returnType": {"nodeId": "140496927762672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927762672": {"type": "Union", "content": {"items": [{"nodeId": "140497028244480", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140497028244832": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906600032"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028244832"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__await__"]}}, ".1.140497028244832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028244832", "variance": "COVARIANT"}}, "140496906600032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028244832", "args": [{"nodeId": ".1.140497028244832"}]}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140497028244832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028245184": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906652352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906652576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906652800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906653024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906653248"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927761776"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906653472"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}], "bases": [{"nodeId": "140497028244832", "args": [{"nodeId": ".3.140497028245184"}]}], "isAbstract": true}}, ".1.140497028245184": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028245184", "variance": "COVARIANT"}}, ".2.140497028245184": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028245184", "variance": "CONTRAVARIANT"}}, ".3.140497028245184": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028245184", "variance": "COVARIANT"}}, "140496906652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}], "returnType": {"nodeId": "140496927763008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927763008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496906652576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}], "returnType": {"nodeId": "140496952672672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}], "returnType": {"nodeId": "140496952678304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906653024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906653248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}, {"nodeId": ".2.140497028245184"}], "returnType": {"nodeId": ".1.140497028245184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496927761776": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497016297888"}, {"nodeId": "140497016298336"}]}}, "140497016297888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}, {"nodeId": "0"}, {"nodeId": "140496927763232"}, {"nodeId": "140496927763344"}], "returnType": {"nodeId": ".1.140497028245184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496927763232": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}]}}, "140496927763344": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140497016298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}, {"nodeId": "140496956808480"}, {"nodeId": "N"}, {"nodeId": "140496927763456"}], "returnType": {"nodeId": ".1.140497028245184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496927763456": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496906653472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140497028245184"}, {"nodeId": ".2.140497028245184"}, {"nodeId": ".3.140497028245184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956557792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140496956557792"}, {"nodeId": ".2.140496956557792"}, {"nodeId": ".3.140496956557792"}, {"nodeId": ".4.140496956557792"}], "bases": [{"nodeId": "140497028244832", "args": [{"nodeId": ".3.140496956557792"}]}, {"nodeId": "140497028244480", "args": [{"nodeId": ".1.140496956557792"}, {"nodeId": ".2.140496956557792"}, {"nodeId": ".3.140496956557792"}]}], "isAbstract": true}}, ".1.140496956557792": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956557792", "variance": "COVARIANT"}}, ".2.140496956557792": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956557792", "variance": "CONTRAVARIANT"}}, ".3.140496956557792": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956557792", "variance": "COVARIANT"}}, ".4.140496956557792": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956557792", "variance": "INVARIANT"}}, "140497028245536": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906654816"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028245536"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__aiter__"]}}, ".1.140497028245536": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028245536", "variance": "COVARIANT"}}, "140496906654816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245536", "args": [{"nodeId": ".1.140497028245536"}]}], "returnType": {"nodeId": "140497028245888", "args": [{"nodeId": ".1.140497028245536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028245888": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906660640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016300128"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140497028245888"}], "bases": [{"nodeId": "140497028245536", "args": [{"nodeId": ".1.140497028245888"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140497028245888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028245888", "variance": "COVARIANT"}}, "140496906660640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245888", "args": [{"nodeId": ".1.140497028245888"}]}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".1.140497028245888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497016300128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028245888", "args": [{"nodeId": ".1.140497028245888"}]}], "returnType": {"nodeId": "140497028245888", "args": [{"nodeId": ".1.140497028245888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497028246240": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016300576"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496906663328"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927761888"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497016302368"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906662432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906664224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906664448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496906664672"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}], "bases": [{"nodeId": "140497028245888", "args": [{"nodeId": ".1.140497028246240"}]}], "isAbstract": true}}, ".1.140497028246240": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028246240", "variance": "COVARIANT"}}, ".2.140497028246240": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497028246240", "variance": "CONTRAVARIANT"}}, "140497016300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".1.140497028246240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906663328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}, {"nodeId": ".2.140497028246240"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".1.140497028246240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496927761888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497016301472"}, {"nodeId": "140497016301920"}]}}, "140497016301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}, {"nodeId": "0"}, {"nodeId": "140496927763680"}, {"nodeId": "140496927763792"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".1.140497028246240"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496927763680": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}]}}, "140496927763792": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140497016301920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}, {"nodeId": "140496956808480"}, {"nodeId": "N"}, {"nodeId": "140496927763904"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".1.140497028246240"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496927763904": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140497016302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906662432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906664224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}], "returnType": {"nodeId": "140496952672672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906664448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}], "returnType": {"nodeId": "140496952678304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496906664672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140497028246240"}, {"nodeId": ".2.140497028246240"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956559552": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907011904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907013024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907013920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907014592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907015264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907015936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907016608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907017280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907017952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907018848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907019520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907020416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907021312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907021984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907022656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907023328"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928000368"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928000704"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907190784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907191456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907192352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907193472"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496956559552"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956559552"}]}], "isAbstract": true}}, ".1.140496956559552": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956559552", "variance": "INVARIANT"}}, "140496907011904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907013024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907013920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907014592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907015264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907015936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907016608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907017280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496956559552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496907017952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907018848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496956559552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496907019520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956559552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496907020416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496907021312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907021984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907022656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140496928001040"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496928001040": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496907023328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928000368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011504096"}, {"nodeId": "140496931857888"}, {"nodeId": "140497011504992"}]}}, "140497011504096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496931857888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497011504992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": ".1.140496956559552"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496928000704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011505440"}, {"nodeId": "140496931859008"}, {"nodeId": "140497011506336"}]}}, "140497011505440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496931859008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956570816"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497011506336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496907190784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": ".1.140496956559552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907191456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956559552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496907192352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}], "returnType": {"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496907193472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496956559552"}]}, {"nodeId": "140496928001376"}, {"nodeId": "140496928001488"}, {"nodeId": "140496928001600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496928001376": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496928001488": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496928001600": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496956559904": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907194368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956802144"}]}], "isAbstract": true}}, "140496907194368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956559904"}], "returnType": {"nodeId": "140496956559904"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956560256": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907195936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907196384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907196608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907196832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496907197056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907197280"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956801792"}]}], "isAbstract": true}}, "140496907195936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560256"}], "returnType": {"nodeId": "140496956559904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907196384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560256"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907196608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560256"}], "returnType": {"nodeId": "140496928001712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928001712": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496907196832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560256"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907197056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560256"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496907197280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560256"}], "returnType": {"nodeId": "140496956560256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956560608": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928002832"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496907199968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011652000"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011652896"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140496928002832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011650656"}, {"nodeId": "140497011651104"}]}}, "140497011650656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560608"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496928004400"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496928004400": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}}, "140497011651104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560608"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140496907199968": {"type": "Function", "content": {"typeVars": [".0.140496907199968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140496907199968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140496907199968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956560608"}, "def": "140496907199968", "variance": "INVARIANT"}}, "140497011652000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560608"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011652896": {"type": "Function", "content": {"typeVars": [".0.140497011652896"], "argTypes": [{"nodeId": ".0.140497011652896"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497011652896"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140497011652896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956560608"}, "def": "140497011652896", "variance": "INVARIANT"}}, "140496956560960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956562720", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956562720", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011653344"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011653792"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011654240"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011835168"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011835616"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011836064"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011836512"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011836960"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011837408"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011837856"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}], "isAbstract": true}}, "140497011653344": {"type": "Function", "content": {"typeVars": [".0.140497011653344"], "argTypes": [{"nodeId": ".0.140497011653344"}], "returnType": {"nodeId": ".0.140497011653344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497011653344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956560960"}, "def": "140497011653344", "variance": "INVARIANT"}}, "140497011653792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560960"}, {"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140497011654240": {"type": "Function", "content": {"typeVars": [".-1.140497011654240"], "argTypes": [{"nodeId": "140496956560960"}, {"nodeId": "0"}, {"nodeId": ".-1.140497011654240"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140497011654240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011654240", "variance": "INVARIANT"}}, "140497011835168": {"type": "Function", "content": {"typeVars": [".-1.140497011835168"], "argTypes": [{"nodeId": ".-1.140497011835168"}, {"nodeId": ".-1.140497011835168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140497011835168": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497011835168", "variance": "INVARIANT"}}, "140497011835616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560960"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497011836064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560960"}], "returnType": {"nodeId": "140496956562016", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011836512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560960"}], "returnType": {"nodeId": "140496956561312", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011836960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956560960"}], "returnType": {"nodeId": "140496956561664", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497011837408": {"type": "Function", "content": {"typeVars": [".0.140497011837408"], "argTypes": [{"nodeId": ".0.140497011837408"}, {"nodeId": ".0.140497011837408"}], "returnType": {"nodeId": ".0.140497011837408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011837408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956560960"}, "def": "140497011837408", "variance": "INVARIANT"}}, "140497011837856": {"type": "Function", "content": {"typeVars": [".0.140497011837856"], "argTypes": [{"nodeId": ".0.140497011837856"}, {"nodeId": ".0.140497011837856"}], "returnType": {"nodeId": ".0.140497011837856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497011837856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956560960"}, "def": "140497011837856", "variance": "INVARIANT"}}, "140497028249408": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952672672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948406848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948405056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011838304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011839200"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497011840096"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496948406848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496948405056": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497011838304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249408"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}, {"nodeId": "140496928005296"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140496928005296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497011839200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249408"}, {"nodeId": "140496928005520"}, {"nodeId": "140496928005744"}, {"nodeId": "140496956562720", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496928005968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140496928005520": {"type": "Union", "content": {"items": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496928005744": {"type": "Union", "content": {"items": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496928005968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497011840096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028249408"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956564832": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919724096"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015621440"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015621888"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015622336"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015622784"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015623232"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015623680"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015624128"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015624576"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919724208"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015625920"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015626368"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919725440"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}], "bases": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}], "isAbstract": false}}, ".1.140496956564832": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956564832", "variance": "INVARIANT"}}, ".2.140496956564832": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956564832", "variance": "INVARIANT"}}, "140496919724096": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497011849280"}, {"nodeId": "140496994990816"}, {"nodeId": "140497011850176"}, {"nodeId": "140497011849728"}, {"nodeId": "140497015619648"}, {"nodeId": "140497011850624"}, {"nodeId": "140497015620096"}, {"nodeId": "140497015620544"}]}}, "140497011849280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496994990816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "N"}, {"nodeId": ".2.140496956564832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497011850176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497011849728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": ".2.140496956564832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497015619648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496919725104"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496919725104": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}}, "140497011850624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496919725328"}]}, {"nodeId": ".2.140496956564832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140496919725328": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956564832"}]}}, "140497015620096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497015620544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802144"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497015621440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497015621888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": ".1.140496956564832"}], "returnType": {"nodeId": ".2.140496956564832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015622336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497015622784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": ".1.140496956564832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015623232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956564832"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497015623680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015624128": {"type": "Function", "content": {"typeVars": [".0.140497015624128"], "argTypes": [{"nodeId": ".0.140497015624128"}], "returnType": {"nodeId": ".0.140497015624128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015624128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, "def": "140497015624128", "variance": "INVARIANT"}}, "140497015624576": {"type": "Function", "content": {"typeVars": [".0.140497015624576"], "argTypes": [{"nodeId": ".0.140497015624576"}], "returnType": {"nodeId": ".0.140497015624576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015624576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, "def": "140497015624576", "variance": "INVARIANT"}}, "140496919724208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497015625024"}, {"nodeId": "140497015625472"}]}}, "140497015625024": {"type": "Function", "content": {"typeVars": [".-1.140497015625024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497015625024"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956564832", "args": [{"nodeId": ".-1.140497015625024"}, {"nodeId": "140496919725776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140497015625024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015625024", "variance": "INVARIANT"}}, "140496919725776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497015625472": {"type": "Function", "content": {"typeVars": [".-1.140497015625472", ".-2.140497015625472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497015625472"}]}, {"nodeId": ".-2.140497015625472"}], "returnType": {"nodeId": "140496956564832", "args": [{"nodeId": ".-1.140497015625472"}, {"nodeId": ".-2.140497015625472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140497015625472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015625472", "variance": "INVARIANT"}}, ".-2.140497015625472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015625472", "variance": "INVARIANT"}}, "140497015625920": {"type": "Function", "content": {"typeVars": [".-1.140497015625920", ".-2.140497015625920"], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140496919725888"}], "returnType": {"nodeId": "140496956564832", "args": [{"nodeId": "140496919726000"}, {"nodeId": "140496919726112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919725888": {"type": "Union", "content": {"items": [{"nodeId": "140496956564832", "args": [{"nodeId": ".-1.140497015625920"}, {"nodeId": ".-2.140497015625920"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": ".-1.140497015625920"}, {"nodeId": ".-2.140497015625920"}]}]}}, ".-1.140497015625920": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015625920", "variance": "INVARIANT"}}, ".-2.140497015625920": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015625920", "variance": "INVARIANT"}}, "140496919726000": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".-1.140497015625920"}]}}, "140496919726112": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956564832"}, {"nodeId": ".-2.140497015625920"}]}}, "140497015626368": {"type": "Function", "content": {"typeVars": [".-1.140497015626368", ".-2.140497015626368"], "argTypes": [{"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, {"nodeId": "140496919726224"}], "returnType": {"nodeId": "140496956564832", "args": [{"nodeId": "140496919726336"}, {"nodeId": "140496919726448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919726224": {"type": "Union", "content": {"items": [{"nodeId": "140496956564832", "args": [{"nodeId": ".-1.140497015626368"}, {"nodeId": ".-2.140497015626368"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": ".-1.140497015626368"}, {"nodeId": ".-2.140497015626368"}]}]}}, ".-1.140497015626368": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015626368", "variance": "INVARIANT"}}, ".-2.140497015626368": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497015626368", "variance": "INVARIANT"}}, "140496919726336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".-1.140497015626368"}]}}, "140496919726448": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956564832"}, {"nodeId": ".-2.140497015626368"}]}}, "140496919725440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497015626816"}, {"nodeId": "140497015627264"}]}}, "140497015626816": {"type": "Function", "content": {"typeVars": [".0.140497015626816"], "argTypes": [{"nodeId": ".0.140497015626816"}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}], "returnType": {"nodeId": ".0.140497015626816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015626816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, "def": "140497015626816", "variance": "INVARIANT"}}, "140497015627264": {"type": "Function", "content": {"typeVars": [".0.140497015627264"], "argTypes": [{"nodeId": ".0.140497015627264"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496919726784"}]}], "returnType": {"nodeId": ".0.140497015627264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015627264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956564832", "args": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}, "def": "140497015627264", "variance": "INVARIANT"}}, "140496919726784": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956564832"}, {"nodeId": ".2.140496956564832"}]}}, "140496956565184": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956565184"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919725552"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015628608"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015629056"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015629504"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015629952"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015630400"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015630848"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015631296"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919726560"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919726896"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015633536"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015633984"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015634432"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015634880"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015635328"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015799872"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015800320"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015800768"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015801216"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015801664"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015802112"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015802560"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015803008"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015803456"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015803904"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919727568"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015805248"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140496956565184"}], "bases": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140496956565184"}]}], "isAbstract": false}}, ".1.140496956565184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956565184", "variance": "INVARIANT"}}, "140496919725552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497015627712"}, {"nodeId": "140497015628160"}]}}, "140497015627712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140497015628160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140497015628608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496919727008"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919727008": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}]}}, "140497015629056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496919727120"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919727120": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}]}}, "140497015629504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496919727232"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919727232": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}]}}, "140497015629952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496919727344"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919727344": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}]}}, "140497015630400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015630848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015631296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496919726560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497015631744"}, {"nodeId": "140497015632192"}]}}, "140497015631744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".1.140496956565184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015632192": {"type": "Function", "content": {"typeVars": [".0.140497015632192"], "argTypes": [{"nodeId": ".0.140497015632192"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": ".0.140497015632192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015632192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015632192", "variance": "INVARIANT"}}, "140496919726896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497015632640"}, {"nodeId": "140497015633088"}]}}, "140497015632640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956568704"}, {"nodeId": ".1.140496956565184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497015633088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496956803200"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497015633536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496919727792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919727792": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956803200"}]}}, "140497015633984": {"type": "Function", "content": {"typeVars": [".0.140497015633984"], "argTypes": [{"nodeId": ".0.140497015633984"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": ".0.140497015633984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015633984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015633984", "variance": "INVARIANT"}}, "140497015634432": {"type": "Function", "content": {"typeVars": [".0.140497015634432"], "argTypes": [{"nodeId": ".0.140497015634432"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": ".0.140497015634432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015634432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015634432", "variance": "INVARIANT"}}, "140497015634880": {"type": "Function", "content": {"typeVars": [".0.140497015634880"], "argTypes": [{"nodeId": ".0.140497015634880"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": ".0.140497015634880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015634880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015634880", "variance": "INVARIANT"}}, "140497015635328": {"type": "Function", "content": {"typeVars": [".0.140497015635328"], "argTypes": [{"nodeId": ".0.140497015635328"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015635328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015635328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015635328", "variance": "INVARIANT"}}, "140497015799872": {"type": "Function", "content": {"typeVars": [".0.140497015799872"], "argTypes": [{"nodeId": ".0.140497015799872"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015799872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015799872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015799872", "variance": "INVARIANT"}}, "140497015800320": {"type": "Function", "content": {"typeVars": [".0.140497015800320"], "argTypes": [{"nodeId": ".0.140497015800320"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015800320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015800320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015800320", "variance": "INVARIANT"}}, "140497015800768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": ".1.140496956565184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140497015801216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140497028250464"}, {"nodeId": ".1.140496956565184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140497015801664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496956565184"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140497015802112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": ".1.140496956565184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140497015802560": {"type": "Function", "content": {"typeVars": [".0.140497015802560"], "argTypes": [{"nodeId": ".0.140497015802560"}], "returnType": {"nodeId": ".0.140497015802560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015802560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015802560", "variance": "INVARIANT"}}, "140497015803008": {"type": "Function", "content": {"typeVars": [".0.140497015803008"], "argTypes": [{"nodeId": ".0.140497015803008"}], "returnType": {"nodeId": ".0.140497015803008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015803008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, "def": "140497015803008", "variance": "INVARIANT"}}, "140497015803456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": ".1.140496956565184"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140497015803904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": ".1.140496956565184"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140496919727568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497015620992"}, {"nodeId": "140497015804800"}]}}, "140497015620992": {"type": "Function", "content": {"typeVars": [".-1.140497015620992"], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".-1.140497015620992"}]}, {"nodeId": "N"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140497015620992": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140496927636528"}, "def": "140497015620992", "variance": "INVARIANT"}}, "140497015804800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140496919596832"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140496919596832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140496956565184"}], "returnType": {"nodeId": "140496919728240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496919728240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996384"}}}, "140497015805248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565184", "args": [{"nodeId": ".1.140496956565184"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565184"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140496956565536": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015805696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015806144"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015806592"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015807040"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015807488"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015807936"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015808384"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015808832"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015809280"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015809728"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015810176"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015810624"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015811072"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015811520"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015811968"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015812416"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015812864"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015813312"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015813760"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015814208"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015814656"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015815552"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015930944"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015931392"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015931840"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015932288"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015933184"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015933632"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015934080"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015934528"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015934976"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015935424"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015935872"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015936320"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015936768"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015937216"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015937664"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015938112"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015938560"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015939008"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015939456"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015939904"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015940352"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015940800"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015941248"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015941696"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015942144"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015942592"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873438592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015943040"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015943488"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015943936"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015944384"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015944832"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015945280"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015945728"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015946176"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497015946624"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006952512"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006952960"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006953408"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006953856"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006954304"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006954752"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006955200"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006955648"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006956096"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006956544"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956565536"}]}], "isAbstract": false}}, "140497015805696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140497015806144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497015806592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497015807040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028251168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497015807488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140496919728352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919728352": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140497015807936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919728464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919728464": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015808384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919728576"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919728576": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015808832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919728688"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919728688": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015809280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919728800"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919728800": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015809728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015810176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497015810624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497015811072": {"type": "Function", "content": {"typeVars": [".0.140497015811072"], "argTypes": [{"nodeId": ".0.140497015811072"}, {"nodeId": "140496919729024"}], "returnType": {"nodeId": ".0.140497015811072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015811072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015811072", "variance": "INVARIANT"}}, "140496919729024": {"type": "Union", "content": {"items": [{"nodeId": "140496956568704"}, {"nodeId": "140496956803200"}]}}, "140497015811520": {"type": "Function", "content": {"typeVars": [".0.140497015811520"], "argTypes": [{"nodeId": ".0.140497015811520"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".0.140497015811520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140497015811520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015811520", "variance": "INVARIANT"}}, "140497015811968": {"type": "Function", "content": {"typeVars": [".0.140497015811968"], "argTypes": [{"nodeId": ".0.140497015811968"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".0.140497015811968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140497015811968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015811968", "variance": "INVARIANT"}}, "140497015812416": {"type": "Function", "content": {"typeVars": [".0.140497015812416"], "argTypes": [{"nodeId": ".0.140497015812416"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": ".0.140497015812416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015812416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015812416", "variance": "INVARIANT"}}, "140497015812864": {"type": "Function", "content": {"typeVars": [".0.140497015812864"], "argTypes": [{"nodeId": ".0.140497015812864"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": ".0.140497015812864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015812864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015812864", "variance": "INVARIANT"}}, "140497015813312": {"type": "Function", "content": {"typeVars": [".0.140497015813312"], "argTypes": [{"nodeId": ".0.140497015813312"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015813312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015813312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015813312", "variance": "INVARIANT"}}, "140497015813760": {"type": "Function", "content": {"typeVars": [".0.140497015813760"], "argTypes": [{"nodeId": ".0.140497015813760"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015813760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015813760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015813760", "variance": "INVARIANT"}}, "140497015814208": {"type": "Function", "content": {"typeVars": [".0.140497015814208"], "argTypes": [{"nodeId": ".0.140497015814208"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497015814208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015814208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015814208", "variance": "INVARIANT"}}, "140497015814656": {"type": "Function", "content": {"typeVars": [".0.140497015814656"], "argTypes": [{"nodeId": ".0.140497015814656"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": ".0.140497015814656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497015814656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015814656", "variance": "INVARIANT"}}, "140497015815552": {"type": "Function", "content": {"typeVars": [".0.140497015815552"], "argTypes": [{"nodeId": ".0.140497015815552"}], "returnType": {"nodeId": ".0.140497015815552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015815552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015815552", "variance": "INVARIANT"}}, "140497015930944": {"type": "Function", "content": {"typeVars": [".0.140497015930944"], "argTypes": [{"nodeId": ".0.140497015930944"}], "returnType": {"nodeId": ".0.140497015930944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015930944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015930944", "variance": "INVARIANT"}}, "140497015931392": {"type": "Function", "content": {"typeVars": [".0.140497015931392"], "argTypes": [{"nodeId": ".0.140497015931392"}, {"nodeId": "140497028250464"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497015931392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140497015931392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015931392", "variance": "INVARIANT"}}, "140497015931840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919729360"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140496919729360": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015932288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919729472"}, {"nodeId": "140496919729584"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140496919729472": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919729584": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497015933184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919729696"}, {"nodeId": "140496919729808"}, {"nodeId": "140496919729920"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140496919729696": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}]}}, "140496919729808": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919729920": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140497015933632": {"type": "Function", "content": {"typeVars": [".0.140497015933632"], "argTypes": [{"nodeId": ".0.140497015933632"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015933632"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140497015933632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015933632", "variance": "INVARIANT"}}, "140497015934080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919730032"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140496919730032": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015934528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140497015934976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140497015935424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140497015935872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015936320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015936768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015937216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015937664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015938112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015938560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015939008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015939456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015939904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015940352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015940800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497015941248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140497015941696": {"type": "Function", "content": {"typeVars": [".0.140497015941696"], "argTypes": [{"nodeId": ".0.140497015941696"}, {"nodeId": "140497028250464"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497015941696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140497015941696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015941696", "variance": "INVARIANT"}}, "140497015942144": {"type": "Function", "content": {"typeVars": [".0.140497015942144"], "argTypes": [{"nodeId": ".0.140497015942144"}], "returnType": {"nodeId": ".0.140497015942144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497015942144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015942144", "variance": "INVARIANT"}}, "140497015942592": {"type": "Function", "content": {"typeVars": [".0.140497015942592"], "argTypes": [{"nodeId": ".0.140497015942592"}, {"nodeId": "140496919730592"}], "returnType": {"nodeId": ".0.140497015942592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140497015942592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015942592", "variance": "INVARIANT"}}, "140496919730592": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496873438592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496873520064"}, {"nodeId": "140496873520288"}, {"nodeId": "140496873520512"}]}}, "140496873520064": {"type": "Function", "content": {"typeVars": [".-1.140496873520064"], "argTypes": [{"nodeId": "140496873438256"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": ".-1.140496873520064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496873438256": {"type": "Union", "content": {"items": [{"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": ".-1.140496873520064"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496873520064"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496873437920"}, {"nodeId": ".-1.140496873520064"}]}]}}, ".-1.140496873520064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496873520064", "variance": "INVARIANT"}}, "140496873437920": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496873520288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496873520512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140497028250464"}, {"nodeId": "140496873438368"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496873438368": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140497015943040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919730816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140496919730816": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140497015943488": {"type": "Function", "content": {"typeVars": [".0.140497015943488"], "argTypes": [{"nodeId": ".0.140497015943488"}, {"nodeId": "140496919730928"}], "returnType": {"nodeId": ".0.140497015943488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140497015943488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015943488", "variance": "INVARIANT"}}, "140496919730928": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015943936": {"type": "Function", "content": {"typeVars": [".0.140497015943936"], "argTypes": [{"nodeId": ".0.140497015943936"}, {"nodeId": "140496919731040"}], "returnType": {"nodeId": ".0.140497015943936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140497015943936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015943936", "variance": "INVARIANT"}}, "140496919731040": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015944384": {"type": "Function", "content": {"typeVars": [".0.140497015944384"], "argTypes": [{"nodeId": ".0.140497015944384"}, {"nodeId": "140496919731152"}, {"nodeId": "140496919731264"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497015944384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140497015944384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015944384", "variance": "INVARIANT"}}, "140496919731152": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140496919731264": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015944832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919731376"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140496919731376": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015945280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919731488"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140496919731488": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956565536"}]}}, "140497015945728": {"type": "Function", "content": {"typeVars": [".0.140497015945728"], "argTypes": [{"nodeId": ".0.140497015945728"}, {"nodeId": "140497028250464"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497015945728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140497015945728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015945728", "variance": "INVARIANT"}}, "140497015946176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919731824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140496919731824": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140497015946624": {"type": "Function", "content": {"typeVars": [".0.140497015946624"], "argTypes": [{"nodeId": ".0.140497015946624"}, {"nodeId": "140496919731936"}], "returnType": {"nodeId": ".0.140497015946624"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140497015946624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497015946624", "variance": "INVARIANT"}}, "140496919731936": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497006952512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919732048"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496919732048": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497006952960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919732160"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140496919732160": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497006953408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140497006953856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565536"}, {"nodeId": "140496919732272"}, {"nodeId": "140496919732384"}, {"nodeId": "140496919732496"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140496919732272": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}]}}, "140496919732384": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919732496": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140497006954304": {"type": "Function", "content": {"typeVars": [".0.140497006954304"], "argTypes": [{"nodeId": ".0.140497006954304"}, {"nodeId": "140496919732608"}], "returnType": {"nodeId": ".0.140497006954304"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140497006954304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497006954304", "variance": "INVARIANT"}}, "140496919732608": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497006954752": {"type": "Function", "content": {"typeVars": [".0.140497006954752"], "argTypes": [{"nodeId": ".0.140497006954752"}], "returnType": {"nodeId": ".0.140497006954752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497006954752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497006954752", "variance": "INVARIANT"}}, "140497006955200": {"type": "Function", "content": {"typeVars": [".0.140497006955200"], "argTypes": [{"nodeId": ".0.140497006955200"}], "returnType": {"nodeId": ".0.140497006955200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497006955200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497006955200", "variance": "INVARIANT"}}, "140497006955648": {"type": "Function", "content": {"typeVars": [".0.140497006955648"], "argTypes": [{"nodeId": ".0.140497006955648"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497006955648"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140497006955648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497006955648", "variance": "INVARIANT"}}, "140497006956096": {"type": "Function", "content": {"typeVars": [".0.140497006956096"], "argTypes": [{"nodeId": ".0.140497006956096"}], "returnType": {"nodeId": ".0.140497006956096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497006956096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497006956096", "variance": "INVARIANT"}}, "140497006956544": {"type": "Function", "content": {"typeVars": [".0.140497006956544"], "argTypes": [{"nodeId": ".0.140497006956544"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497006956544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140497006956544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565536"}, "def": "140497006956544", "variance": "INVARIANT"}}, "140496956565888": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873636576"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919727680"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006958336"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006958784"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006959232"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006959680"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006960128"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006960576"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006961024"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006961472"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006961920"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006962368"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006962816"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006963264"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006963712"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006964160"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006964608"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006965056"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006965504"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006965952"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006966400"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006966848"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006967296"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006967744"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497006968192"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007067200"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007067648"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007068096"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007068544"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007068992"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496956565888"}], "bases": [{"nodeId": "140497028247648", "args": [{"nodeId": ".1.140496956565888"}]}], "isAbstract": false}}, ".1.140496956565888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956565888", "variance": "INVARIANT"}}, "140496873636576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "140496919732832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919732832": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919727680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497006957440"}, {"nodeId": "140497006957888"}]}}, "140497006957440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496919733056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140496919733056": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140497006957888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496919733168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140496919733168": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140497006958336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": ".1.140496956565888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497006958784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": ".1.140496956565888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497006959232": {"type": "Function", "content": {"typeVars": [".0.140497006959232"], "argTypes": [{"nodeId": ".0.140497006959232"}], "returnType": {"nodeId": ".0.140497006959232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497006959232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006959232", "variance": "INVARIANT"}}, "140497006959680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": ".1.140496956565888"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497006960128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497006960576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497006961024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140497028250464"}, {"nodeId": ".1.140496956565888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140497006961472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": ".1.140496956565888"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140497006961920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": ".1.140496956565888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497006962368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": ".1.140496956565888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497006962816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": ".1.140496956565888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497006963264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140497006963712": {"type": "Function", "content": {"typeVars": [".0.140497006963712"], "argTypes": [{"nodeId": ".0.140497006963712"}], "returnType": {"nodeId": ".0.140497006963712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497006963712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006963712", "variance": "INVARIANT"}}, "140497006964160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497006964608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".1.140496956565888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497006965056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956568704"}, {"nodeId": ".1.140496956565888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497006965504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497006965952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497006966400": {"type": "Function", "content": {"typeVars": [".0.140497006966400"], "argTypes": [{"nodeId": ".0.140497006966400"}], "returnType": {"nodeId": "140496919733728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497006966400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006966400", "variance": "INVARIANT"}}, "140496919733728": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140496919733504"}, {"nodeId": "N"}, {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956565888"}]}]}}, "140496919733504": {"type": "Tuple", "content": {"items": []}}, "140497006966848": {"type": "Function", "content": {"typeVars": [".0.140497006966848"], "argTypes": [{"nodeId": ".0.140497006966848"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": ".0.140497006966848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497006966848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006966848", "variance": "INVARIANT"}}, "140497006967296": {"type": "Function", "content": {"typeVars": [".0.140497006967296"], "argTypes": [{"nodeId": ".0.140497006967296"}, {"nodeId": ".0.140497006967296"}], "returnType": {"nodeId": ".0.140497006967296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497006967296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006967296", "variance": "INVARIANT"}}, "140497006967744": {"type": "Function", "content": {"typeVars": [".0.140497006967744"], "argTypes": [{"nodeId": ".0.140497006967744"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497006967744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497006967744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006967744", "variance": "INVARIANT"}}, "140497006968192": {"type": "Function", "content": {"typeVars": [".0.140497006968192"], "argTypes": [{"nodeId": ".0.140497006968192"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497006968192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497006968192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, "def": "140497006968192", "variance": "INVARIANT"}}, "140497007067200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007067648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007068096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007068544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}, {"nodeId": "140496956565888", "args": [{"nodeId": ".1.140496956565888"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007068992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496956636000": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919728912"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007071232"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007071680"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007072128"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868527008"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919733280"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919734064"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007075712"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007076160"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007076608"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007077056"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007077504"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007077952"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007078400"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007078848"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007079296"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007079744"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007080192"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007080640"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007081088"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007081536"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007081984"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007082432"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007082880"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007231040"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007231488"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140496956636000"}], "bases": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "isAbstract": false}}, ".1.140496956636000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956636000", "variance": "INVARIANT"}}, "140496919728912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007069440"}, {"nodeId": "140497007069888"}, {"nodeId": "140497007070336"}, {"nodeId": "140497007070784"}]}}, "140497007069440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140497007069888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497007070336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007070784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007071232": {"type": "Function", "content": {"typeVars": [".0.140497007071232"], "argTypes": [{"nodeId": ".0.140497007071232"}], "returnType": {"nodeId": ".0.140497007071232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497007071232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "def": "140497007071232", "variance": "INVARIANT"}}, "140497007071680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956636000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007072128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496919734176"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496919734400"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140496919734176": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919734400": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}}, "140496868527008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140496919734624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140496919734624": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919733280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007073024"}, {"nodeId": "140497007073472"}, {"nodeId": "140497007073920"}]}}, "140497007073024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140497007073472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007073920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496919734064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007074368"}, {"nodeId": "140497007074816"}, {"nodeId": "140497007075264"}]}}, "140497007074368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497007074816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497007075264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "N"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140497007075712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": ".1.140496956636000"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140497007076160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007076608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007077056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007077504": {"type": "Function", "content": {"typeVars": [".-1.140497007077504"], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": ".-1.140497007077504"}]}], "returnType": {"nodeId": "140496956636000", "args": [{"nodeId": "140496919734960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497007077504": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007077504", "variance": "INVARIANT"}}, "140496919734960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956636000"}, {"nodeId": ".-1.140497007077504"}]}}, "140497007077952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007078400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007078848": {"type": "Function", "content": {"typeVars": [".-1.140497007078848"], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": ".-1.140497007078848"}]}], "returnType": {"nodeId": "140496956636000", "args": [{"nodeId": "140496919735072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497007078848": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007078848", "variance": "INVARIANT"}}, "140496919735072": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956636000"}, {"nodeId": ".-1.140497007078848"}]}}, "140497007079296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007079744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007080192": {"type": "Function", "content": {"typeVars": [".0.140497007080192"], "argTypes": [{"nodeId": ".0.140497007080192"}, {"nodeId": "140496931910784", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": ".0.140497007080192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007080192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "def": "140497007080192", "variance": "INVARIANT"}}, "140496931910784": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020185376"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140496931910784"}, {"nodeId": ".2.140496931910784"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["items"]}}, ".1.140496931910784": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931910784", "variance": "COVARIANT"}}, ".2.140496931910784": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931910784", "variance": "COVARIANT"}}, "140497020185376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931910784", "args": [{"nodeId": ".1.140496931910784"}, {"nodeId": ".2.140496931910784"}]}], "returnType": {"nodeId": "140497028248000", "args": [{"nodeId": "140496914819424"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914819424": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496931910784"}, {"nodeId": ".2.140496931910784"}]}}, "140497007080640": {"type": "Function", "content": {"typeVars": [".0.140497007080640"], "argTypes": [{"nodeId": ".0.140497007080640"}, {"nodeId": "140496931910784", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": ".0.140497007080640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007080640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "def": "140497007080640", "variance": "INVARIANT"}}, "140497007081088": {"type": "Function", "content": {"typeVars": [".0.140497007081088"], "argTypes": [{"nodeId": ".0.140497007081088"}, {"nodeId": "140496931910784", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": ".0.140497007081088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007081088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "def": "140497007081088", "variance": "INVARIANT"}}, "140497007081536": {"type": "Function", "content": {"typeVars": [".0.140497007081536"], "argTypes": [{"nodeId": ".0.140497007081536"}, {"nodeId": "140496931910784", "args": [{"nodeId": ".1.140496956636000"}, {"nodeId": "140497028250464"}]}], "returnType": {"nodeId": ".0.140497007081536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007081536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, "def": "140497007081536", "variance": "INVARIANT"}}, "140497007081984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007082432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007082880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007231040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007231488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636000", "args": [{"nodeId": ".1.140496956636000"}]}, {"nodeId": "140496956636000", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931899168": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007231936"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496931899168"}], "bases": [{"nodeId": "140496956558848", "args": [{"nodeId": ".1.140496931899168"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".1.140496931899168"}]}], "isAbstract": false}}, ".1.140496931899168": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931899168", "variance": "COVARIANT"}}, "140497007231936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931899168", "args": [{"nodeId": ".1.140496931899168"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496931899168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496931899520": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007232384"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496931899520"}, {"nodeId": ".2.140496931899520"}], "bases": [{"nodeId": "140496956558496", "args": [{"nodeId": ".1.140496931899520"}, {"nodeId": ".2.140496931899520"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": "140496948411440"}]}], "isAbstract": false}}, ".1.140496931899520": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931899520", "variance": "COVARIANT"}}, ".2.140496931899520": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931899520", "variance": "COVARIANT"}}, "140497007232384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931899520", "args": [{"nodeId": ".1.140496931899520"}, {"nodeId": ".2.140496931899520"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496919735744"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496919735744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496931899520"}, {"nodeId": ".2.140496931899520"}]}}, "140496948411440": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496931899520"}, {"nodeId": ".2.140496931899520"}]}}, "140496931899872": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007232832"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496931899872"}], "bases": [{"nodeId": "140496956559200", "args": [{"nodeId": ".1.140496931899872"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".1.140496931899872"}]}], "isAbstract": false}}, ".1.140496931899872": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931899872", "variance": "COVARIANT"}}, "140497007232832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931899872", "args": [{"nodeId": ".1.140496931899872"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496931899872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956566240": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007233280"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496956566240"}, {"nodeId": ".2.140496956566240"}], "bases": [{"nodeId": "140496956561312", "args": [{"nodeId": ".1.140496956566240"}, {"nodeId": ".2.140496956566240"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".1.140496956566240"}]}], "isAbstract": false}}, ".1.140496956566240": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956566240", "variance": "COVARIANT"}}, ".2.140496956566240": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956566240", "variance": "COVARIANT"}}, "140497007233280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956566240", "args": [{"nodeId": ".1.140496956566240"}, {"nodeId": ".2.140496956566240"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956566240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956566592": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007233728"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496956566592"}, {"nodeId": ".2.140496956566592"}], "bases": [{"nodeId": "140496956562016", "args": [{"nodeId": ".1.140496956566592"}, {"nodeId": ".2.140496956566592"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": "140496931632320"}]}], "isAbstract": false}}, ".1.140496956566592": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956566592", "variance": "COVARIANT"}}, ".2.140496956566592": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956566592", "variance": "COVARIANT"}}, "140497007233728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956566592", "args": [{"nodeId": ".1.140496956566592"}, {"nodeId": ".2.140496956566592"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496919735968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496919735968": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956566592"}, {"nodeId": ".2.140496956566592"}]}}, "140496931632320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956566592"}, {"nodeId": ".2.140496956566592"}]}}, "140496956566944": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007234176"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140496956566944"}, {"nodeId": ".2.140496956566944"}], "bases": [{"nodeId": "140496956561664", "args": [{"nodeId": ".1.140496956566944"}, {"nodeId": ".2.140496956566944"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".2.140496956566944"}]}], "isAbstract": false}}, ".1.140496956566944": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956566944", "variance": "COVARIANT"}}, ".2.140496956566944": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956566944", "variance": "COVARIANT"}}, "140497007234176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956566944", "args": [{"nodeId": ".1.140496956566944"}, {"nodeId": ".2.140496956566944"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".2.140496956566944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956567296": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007234624"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007235072"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007235520"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007235968"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007236416"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007236864"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007237312"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919734736"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919736304"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}], "bases": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".1.140496956567296"}]}], "isAbstract": false}}, ".1.140496956567296": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956567296", "variance": "INVARIANT"}}, ".2.140496956567296": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956567296", "variance": "INVARIANT"}}, "140497007234624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496919736192"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140496919736192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}}, "140497007235072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, {"nodeId": ".1.140496956567296"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140497007235520": {"type": "Function", "content": {"typeVars": [".0.140497007235520"], "argTypes": [{"nodeId": ".0.140497007235520"}], "returnType": {"nodeId": ".0.140497007235520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497007235520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, "def": "140497007235520", "variance": "INVARIANT"}}, "140497007235968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956567296"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007236416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}], "returnType": {"nodeId": "140496956566240", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007236864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}], "returnType": {"nodeId": "140496956566592", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007237312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}], "returnType": {"nodeId": "140496956566944", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919734736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007237760"}, {"nodeId": "140497007238208"}]}}, "140497007237760": {"type": "Function", "content": {"typeVars": [".-1.140497007237760"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497007237760"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956567296", "args": [{"nodeId": ".-1.140497007237760"}, {"nodeId": "140496919736640"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140497007237760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007237760", "variance": "INVARIANT"}}, "140496919736640": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497007238208": {"type": "Function", "content": {"typeVars": [".-1.140497007238208", ".-2.140497007238208"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497007238208"}]}, {"nodeId": ".-2.140497007238208"}], "returnType": {"nodeId": "140496956567296", "args": [{"nodeId": ".-1.140497007238208"}, {"nodeId": ".-2.140497007238208"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140497007238208": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007238208", "variance": "INVARIANT"}}, ".-2.140497007238208": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007238208", "variance": "INVARIANT"}}, "140496919736304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007238656"}, {"nodeId": "140497007239104"}]}}, "140497007238656": {"type": "Function", "content": {"typeVars": [".-1.140497007238656"], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": "140496919736864"}]}, {"nodeId": ".1.140496956567296"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496919736976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140496919736864": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140497007238656"}, {"nodeId": "N"}]}}, ".-1.140497007238656": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007238656", "variance": "INVARIANT"}}, "140496919736976": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140497007238656"}, {"nodeId": "N"}]}}, "140497007239104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567296", "args": [{"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}]}, {"nodeId": ".1.140496956567296"}, {"nodeId": ".2.140496956567296"}], "returnType": {"nodeId": ".2.140496956567296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140496956636352": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931631760"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919736416"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007243136"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007243584"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007244032"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}], "bases": [{"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}], "isAbstract": false}}, ".1.140496956636352": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956636352", "variance": "INVARIANT"}}, ".2.140496956636352": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956636352", "variance": "INVARIANT"}}, "140496931631760": {"type": "Union", "content": {"items": [{"nodeId": "140496931848480"}, {"nodeId": "N"}]}}, "140496931848480": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140496919736416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007239552"}, {"nodeId": "140497007240000"}, {"nodeId": "140497007240448"}, {"nodeId": "140497007240896"}, {"nodeId": "140497007241344"}, {"nodeId": "140497007241792"}, {"nodeId": "140497007242240"}, {"nodeId": "140497007242688"}]}}, "140497007239552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007240000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": ".2.140496956636352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140497007240448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": "140496919737200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496919737200": {"type": "Union", "content": {"items": [{"nodeId": "140496919597504"}, {"nodeId": "N"}]}}, "140496919597504": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140497007240896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": "140496919737312"}, {"nodeId": ".2.140496956636352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140496919737312": {"type": "Union", "content": {"items": [{"nodeId": "140496919597728"}, {"nodeId": "N"}]}}, "140496919597728": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140497007241344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": "140496919737424"}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496919737424": {"type": "Union", "content": {"items": [{"nodeId": "140496919597056"}, {"nodeId": "N"}]}}, "140496919597056": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140497007241792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": "140496919737536"}, {"nodeId": "140496931911136", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": ".2.140496956636352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140496919737536": {"type": "Union", "content": {"items": [{"nodeId": "140496919597952"}, {"nodeId": "N"}]}}, "140496919597952": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140497007242240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": "140496919737648"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496919737872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496919737648": {"type": "Union", "content": {"items": [{"nodeId": "140496919598176"}, {"nodeId": "N"}]}}, "140496919598176": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140496919737872": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}}, "140497007242688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": "140496919737984"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496919738208"}]}, {"nodeId": ".2.140496956636352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140496919737984": {"type": "Union", "content": {"items": [{"nodeId": "140496919598400"}, {"nodeId": "N"}]}}, "140496919598400": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": [], "argNames": []}}, "140496919738208": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".2.140496956636352"}]}}, "140497007243136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}, {"nodeId": ".1.140496956636352"}], "returnType": {"nodeId": ".2.140496956636352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007243584": {"type": "Function", "content": {"typeVars": [".0.140497007243584"], "argTypes": [{"nodeId": ".0.140497007243584"}], "returnType": {"nodeId": ".0.140497007243584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497007243584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}, "def": "140497007243584", "variance": "INVARIANT"}}, "140497007244032": {"type": "Function", "content": {"typeVars": [".0.140497007244032"], "argTypes": [{"nodeId": ".0.140497007244032"}], "returnType": {"nodeId": ".0.140497007244032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497007244032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956636352", "args": [{"nodeId": ".1.140496956636352"}, {"nodeId": ".2.140496956636352"}]}, "def": "140497007244032", "variance": "INVARIANT"}}, "140496956567648": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007244480"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007244928"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496868967136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007245824"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007246272"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007246720"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007362112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007362560"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007363008"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007363456"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007363904"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919736752"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919738432"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007366144"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868969824"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919738656"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007367488"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007367936"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919738992"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}], "bases": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}], "isAbstract": false}}, ".1.140496956567648": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956567648", "variance": "INVARIANT"}}, ".2.140496956567648": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956567648", "variance": "INVARIANT"}}, "140497007244480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140497007244928": {"type": "Function", "content": {"typeVars": [".0.140497007244928"], "argTypes": [{"nodeId": ".0.140497007244928"}, {"nodeId": "140496919738544"}], "returnType": {"nodeId": ".0.140497007244928"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140497007244928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, "def": "140497007244928", "variance": "INVARIANT"}}, "140496919738544": {"type": "Union", "content": {"items": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": "N"}]}}, "140496868967136": {"type": "Function", "content": {"typeVars": [".0.140496868967136"], "argTypes": [{"nodeId": ".0.140496868967136"}], "returnType": {"nodeId": ".0.140496868967136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496868967136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, "def": "140496868967136", "variance": "INVARIANT"}}, "140497007245824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497007246272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007246720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}], "returnType": {"nodeId": ".2.140496956567648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007362112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956567648"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007362560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007363008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007363456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}], "returnType": {"nodeId": ".2.140496956567648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140497007363904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919736752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007364352"}, {"nodeId": "140497007364800"}]}}, "140497007364352": {"type": "Function", "content": {"typeVars": [".-1.140497007364352"], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": "140496919738768"}]}, {"nodeId": ".1.140496956567648"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496919738880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140496919738768": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140497007364352"}, {"nodeId": "N"}]}}, ".-1.140497007364352": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007364352", "variance": "INVARIANT"}}, "140496919738880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140497007364352"}, {"nodeId": "N"}]}}, "140497007364800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}], "returnType": {"nodeId": ".2.140496956567648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140496919738432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007365248"}, {"nodeId": "140497007365696"}]}}, "140497007365248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}], "returnType": {"nodeId": ".2.140496956567648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140497007365696": {"type": "Function", "content": {"typeVars": [".-1.140497007365696"], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": ".1.140496956567648"}, {"nodeId": "140496919739104"}], "returnType": {"nodeId": "140496919739216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140496919739104": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956567648"}, {"nodeId": ".-1.140497007365696"}]}}, ".-1.140497007365696": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007365696", "variance": "INVARIANT"}}, "140496919739216": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956567648"}, {"nodeId": ".-1.140497007365696"}]}}, "140497007366144": {"type": "Function", "content": {"typeVars": [".0.140497007366144"], "argTypes": [{"nodeId": ".0.140497007366144"}], "returnType": {"nodeId": ".0.140497007366144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497007366144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, "def": "140497007366144", "variance": "INVARIANT"}}, "140496868969824": {"type": "Function", "content": {"typeVars": [".0.140496868969824"], "argTypes": [{"nodeId": ".0.140496868969824"}], "returnType": {"nodeId": ".0.140496868969824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496868969824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, "def": "140496868969824", "variance": "INVARIANT"}}, "140496919738656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007366592"}, {"nodeId": "140497007367040"}]}}, "140497007366592": {"type": "Function", "content": {"typeVars": [".-1.140497007366592"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497007366592"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956567648", "args": [{"nodeId": ".-1.140497007366592"}, {"nodeId": "140496919739552"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140497007366592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007366592", "variance": "INVARIANT"}}, "140496919739552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140497007367040": {"type": "Function", "content": {"typeVars": [".-1.140497007367040", ".-2.140497007367040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140497007367040"}]}, {"nodeId": ".-2.140497007367040"}], "returnType": {"nodeId": "140496956567648", "args": [{"nodeId": ".-1.140497007367040"}, {"nodeId": ".-2.140497007367040"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140497007367040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007367040", "variance": "INVARIANT"}}, ".-2.140497007367040": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007367040", "variance": "INVARIANT"}}, "140497007367488": {"type": "Function", "content": {"typeVars": [".-1.140497007367488", ".-2.140497007367488"], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140497007367488"}, {"nodeId": ".-2.140497007367488"}]}], "returnType": {"nodeId": "140496956567648", "args": [{"nodeId": "140496919739664"}, {"nodeId": "140496919739776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497007367488": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007367488", "variance": "INVARIANT"}}, ".-2.140497007367488": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007367488", "variance": "INVARIANT"}}, "140496919739664": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".-1.140497007367488"}]}}, "140496919739776": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956567648"}, {"nodeId": ".-2.140497007367488"}]}}, "140497007367936": {"type": "Function", "content": {"typeVars": [".-1.140497007367936", ".-2.140497007367936"], "argTypes": [{"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140497007367936"}, {"nodeId": ".-2.140497007367936"}]}], "returnType": {"nodeId": "140496956567648", "args": [{"nodeId": "140496919739888"}, {"nodeId": "140496919740000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497007367936": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007367936", "variance": "INVARIANT"}}, ".-2.140497007367936": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007367936", "variance": "INVARIANT"}}, "140496919739888": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".-1.140497007367936"}]}}, "140496919740000": {"type": "Union", "content": {"items": [{"nodeId": ".2.140496956567648"}, {"nodeId": ".-2.140497007367936"}]}}, "140496919738992": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007368384"}, {"nodeId": "140497007368832"}]}}, "140497007368384": {"type": "Function", "content": {"typeVars": [".0.140497007368384"], "argTypes": [{"nodeId": ".0.140497007368384"}, {"nodeId": "140496931911136", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}], "returnType": {"nodeId": ".0.140497007368384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007368384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, "def": "140497007368384", "variance": "INVARIANT"}}, "140497007368832": {"type": "Function", "content": {"typeVars": [".0.140497007368832"], "argTypes": [{"nodeId": ".0.140497007368832"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496914808896"}]}], "returnType": {"nodeId": ".0.140497007368832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007368832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956567648", "args": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}, "def": "140497007368832", "variance": "INVARIANT"}}, "140496914808896": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496956567648"}, {"nodeId": ".2.140496956567648"}]}}, "140496931433536": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007370848"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007371296"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140497007370848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007371296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433536"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496931433888": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007373088"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877098528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007374880"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007375328"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007376672"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007377568"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877102784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012048160"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012048608"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012049056"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919080384"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496931434240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "A"}, {"nodeId": "140496931434240"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956634944"}], "isAbstract": false}}, "140497007373088": {"type": "Function", "content": {"typeVars": [".-1.140497007373088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, {"nodeId": "140496931433536"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140497007373088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140497007373088": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007373088", "variance": "INVARIANT"}}, "140496877098528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028249760"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140496931433536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140497007374880": {"type": "Function", "content": {"typeVars": [".-1.140497007374880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".-1.140497007374880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140497007374880": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007374880", "variance": "INVARIANT"}}, "140497007375328": {"type": "Function", "content": {"typeVars": [".-1.140497007375328"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".-1.140497007375328"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140497007375328": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007375328", "variance": "INVARIANT"}}, "140497007376672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007377568": {"type": "Function", "content": {"typeVars": [".-1.140497007377568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".-1.140497007377568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497007377568": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497007377568", "variance": "INVARIANT"}}, "140496877102784": {"type": "Function", "content": {"typeVars": [".-1.140496877102784"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140496952673024", "args": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496877102784"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140496877102784": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496877102784", "variance": "INVARIANT"}}, "140497012048160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433888"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497012048608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497012049056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433888"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919080384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497012049504"}, {"nodeId": "140497012050400"}]}}, "140497012049504": {"type": "Function", "content": {"typeVars": [".-1.140497012049504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140497012049504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140497012049504": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497012049504", "variance": "INVARIANT"}}, "140497012050400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433888"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919299232"}, {"nodeId": "140496919299344"}, {"nodeId": "140496919299456"}, {"nodeId": "140496919299568"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140496919299232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496953081216"}}}, "140496953081216": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496953079424"}]}]}, {"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}]}}, "140496953079424": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}}, "140496919299344": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919299456": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919299568": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496931434592": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877107488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012055328"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140497028250464"}, {"nodeId": "140496931434240"}], "isAbstract": false}}, "140496877107488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434592"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497012055328": {"type": "Function", "content": {"typeVars": [".0.140497012055328"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497012055328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140497012055328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434592"}, "def": "140497012055328", "variance": "INVARIANT"}}, "140496931434944": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953081552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877108608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877257664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012057120"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012057568"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012058016"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012058464"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012058912"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497012059360"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140496931434240"}], "isAbstract": false}}, "140496953081552": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496877108608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434944"}], "returnType": {"nodeId": "140496919300464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919300464": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496877257664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434944"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497012057120": {"type": "Function", "content": {"typeVars": [".0.140497012057120"], "argTypes": [{"nodeId": ".0.140497012057120"}, {"nodeId": ".0.140497012057120"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497012057120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434944"}, "def": "140497012057120", "variance": "INVARIANT"}}, "140497012057568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931434944"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497012058016": {"type": "Function", "content": {"typeVars": [".0.140497012058016"], "argTypes": [{"nodeId": ".0.140497012058016"}, {"nodeId": ".0.140497012058016"}], "returnType": {"nodeId": ".0.140497012058016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497012058016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434944"}, "def": "140497012058016", "variance": "INVARIANT"}}, "140497012058464": {"type": "Function", "content": {"typeVars": [".0.140497012058464"], "argTypes": [{"nodeId": ".0.140497012058464"}, {"nodeId": ".0.140497012058464"}], "returnType": {"nodeId": ".0.140497012058464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497012058464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434944"}, "def": "140497012058464", "variance": "INVARIANT"}}, "140497012058912": {"type": "Function", "content": {"typeVars": [".0.140497012058912"], "argTypes": [{"nodeId": ".0.140497012058912"}, {"nodeId": ".0.140497012058912"}], "returnType": {"nodeId": ".0.140497012058912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497012058912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434944"}, "def": "140497012058912", "variance": "INVARIANT"}}, "140497012059360": {"type": "Function", "content": {"typeVars": [".0.140497012059360"], "argTypes": [{"nodeId": ".0.140497012059360"}], "returnType": {"nodeId": ".0.140497012059360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140497012059360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931434944"}, "def": "140497012059360", "variance": "INVARIANT"}}, "140496931435296": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020406240"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020406688"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020407136"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020407584"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877264384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877267072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877268192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028250464"}, {"nodeId": "140496931434944"}], "isAbstract": false}}, "140497020406240": {"type": "Function", "content": {"typeVars": [".0.140497020406240"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497020406240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140497020406240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140497020406240", "variance": "INVARIANT"}}, "140497020406688": {"type": "Function", "content": {"typeVars": [".0.140497020406688"], "argTypes": [{"nodeId": ".0.140497020406688"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497020406688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497020406688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140497020406688", "variance": "INVARIANT"}}, "140497020407136": {"type": "Function", "content": {"typeVars": [".0.140497020407136"], "argTypes": [{"nodeId": ".0.140497020407136"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497020407136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497020407136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140497020407136", "variance": "INVARIANT"}}, "140497020407584": {"type": "Function", "content": {"typeVars": [".0.140497020407584"], "argTypes": [{"nodeId": ".0.140497020407584"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497020407584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497020407584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140497020407584", "variance": "INVARIANT"}}, "140496877264384": {"type": "Function", "content": {"typeVars": [".0.140496877264384"], "argTypes": [{"nodeId": ".0.140496877264384"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140496877264384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496877264384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140496877264384", "variance": "INVARIANT"}}, "140496877267072": {"type": "Function", "content": {"typeVars": [".0.140496877267072"], "argTypes": [{"nodeId": ".0.140496877267072"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140496877267072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496877267072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140496877267072", "variance": "INVARIANT"}}, "140496877268192": {"type": "Function", "content": {"typeVars": [".0.140496877268192"], "argTypes": [{"nodeId": ".0.140496877268192"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140496877268192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496877268192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435296"}, "def": "140496877268192", "variance": "INVARIANT"}}, "140496931435648": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877269760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020408480"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140496931435296"}], "isAbstract": false}}, "140496877269760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931435648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497020408480": {"type": "Function", "content": {"typeVars": [".0.140497020408480"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140497020408480"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140497020408480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931435648"}, "def": "140497020408480", "variance": "INVARIANT"}}, "140496927340352": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "content": {"name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860915168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860915616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860915840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020412512"}, "name": "fromutc"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": true}}, "140496860915168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340352"}, {"nodeId": "140496860646304"}], "returnType": {"nodeId": "140496860646416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496860646304": {"type": "Union", "content": {"items": [{"nodeId": "140496860610624"}, {"nodeId": "N"}]}}, "140496860610624": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860610624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860610624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007655200"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861040640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861041536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861041760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861041984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861042208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861042432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861043104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861043552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861045568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861045120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861045792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007760480"}, "name": "timestamp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007760928"}, "name": "utctimetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007761376"}, "name": "date"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007761824"}, "name": "time"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007762272"}, "name": "timetz"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007762720"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007763168"}, "name": "astimezone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007764064"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861047584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007764960"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007765408"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007765856"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007766304"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007766752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007767200"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007767648"}, "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496860648768"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}], "typeVars": [], "bases": [{"nodeId": "140496927341408"}], "isAbstract": false}}, "140497007655200": {"type": "Function", "content": {"typeVars": [".0.140497007655200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496860649216"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497007655200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140496860649216": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, ".0.140497007655200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140497007655200", "variance": "INVARIANT"}}, "140496861040640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861041536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861041760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861041984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861042208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496860649328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860649328": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, "140496861042432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861043104": {"type": "Function", "content": {"typeVars": [".0.140496861043104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250816"}, {"nodeId": "140496860649440"}], "returnType": {"nodeId": ".0.140496861043104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}}, "140496860649440": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, ".0.140496861043104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140496861043104", "variance": "INVARIANT"}}, "140496861043552": {"type": "Function", "content": {"typeVars": [".0.140496861043552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": ".0.140496861043552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496861043552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140496861043552", "variance": "INVARIANT"}}, "140496861045568": {"type": "Function", "content": {"typeVars": [".0.140496861045568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496860649552"}], "returnType": {"nodeId": ".0.140496861045568"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}}, "140496860649552": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, ".0.140496861045568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140496861045568", "variance": "INVARIANT"}}, "140496861045120": {"type": "Function", "content": {"typeVars": [".0.140496861045120"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140496861045120"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140496861045120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140496861045120", "variance": "INVARIANT"}}, "140496861045792": {"type": "Function", "content": {"typeVars": [".0.140496861045792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496927341408"}, {"nodeId": "140496927341760"}, {"nodeId": "140496860649664"}], "returnType": {"nodeId": ".0.140496861045792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}}, "140496927341408": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927341408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927341408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927342112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020414752"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860919648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860920992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860921216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496860921440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861053440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861052992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861053664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861053888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020418784"}, "name": "ctime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020419680"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007526176"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007526624"}, "name": "isoformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007527072"}, "name": "timetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007527520"}, "name": "toordinal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007527968"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007528416"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007528864"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007529312"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007529760"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007530208"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007530656"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496860646080"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007534688"}, "name": "weekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007535136"}, "name": "isoweekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007535584"}, "name": "isocalendar"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496927342112": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927342112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927342112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927342112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007644000"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861066432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861067552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861068448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007645792"}, "name": "total_seconds"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007646240"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007646688"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007647136"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007647584"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007648032"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007648480"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007648928"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007649376"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007649824"}, "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496860646192"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496860647872"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007652064"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007652512"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007652960"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007653408"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007653856"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007654304"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007654752"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140497007644000": {"type": "Function", "content": {"typeVars": [".0.140497007644000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": ".0.140497007644000"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks"]}}, ".0.140497007644000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927342112"}, "def": "140497007644000", "variance": "INVARIANT"}}, "140496861066432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861067552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861068448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007645792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007646240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007646688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007647136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007647584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007648032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007648480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007648928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497007649376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007649824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496860646192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007650272"}, {"nodeId": "140497007650720"}]}}, "140497007650272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007650720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496860647872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007651168"}, {"nodeId": "140497007651616"}]}}, "140497007651168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007651616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007652064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007652512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140496860649104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496860649104": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496927342112"}]}}, "140497007652960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007653408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007653856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007654304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007654752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927342112"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497020414752": {"type": "Function", "content": {"typeVars": [".0.140497020414752"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".0.140497020414752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}}, ".0.140497020414752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140497020414752", "variance": "INVARIANT"}}, "140496860919648": {"type": "Function", "content": {"typeVars": [".0.140496860919648"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250816"}], "returnType": {"nodeId": ".0.140496860919648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496860919648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140496860919648", "variance": "INVARIANT"}}, "140496860920992": {"type": "Function", "content": {"typeVars": [".0.140496860920992"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140496860920992"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140496860920992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140496860920992", "variance": "INVARIANT"}}, "140496860921216": {"type": "Function", "content": {"typeVars": [".0.140496860921216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140496860921216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496860921216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140496860921216", "variance": "INVARIANT"}}, "140496860921440": {"type": "Function", "content": {"typeVars": [".0.140496860921440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496860921440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496860921440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140496860921440", "variance": "INVARIANT"}}, "140496861053440": {"type": "Function", "content": {"typeVars": [".0.140496861053440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140496861053440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}}, ".0.140496861053440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140496861053440", "variance": "INVARIANT"}}, "140496861052992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861053664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861053888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497020418784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497020419680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007526176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007526624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007527072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140496860647760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860647760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496865202736"}}}, "140496865202736": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140497007527520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007527968": {"type": "Function", "content": {"typeVars": [".0.140497007527968"], "argTypes": [{"nodeId": ".0.140497007527968"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": ".0.140497007527968"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}}, ".0.140497007527968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140497007527968", "variance": "INVARIANT"}}, "140497007528416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007528864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007529312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007529760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007530208": {"type": "Function", "content": {"typeVars": [".0.140497007530208"], "argTypes": [{"nodeId": ".0.140497007530208"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": ".0.140497007530208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007530208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140497007530208", "variance": "INVARIANT"}}, "140497007530656": {"type": "Function", "content": {"typeVars": [".0.140497007530656"], "argTypes": [{"nodeId": ".0.140497007530656"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": ".0.140497007530656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007530656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140497007530656", "variance": "INVARIANT"}}, "140496860646080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007531104"}, {"nodeId": "140497007531552"}, {"nodeId": "140497007532000"}]}}, "140497007531104": {"type": "Function", "content": {"typeVars": [".0.140497007531104"], "argTypes": [{"nodeId": ".0.140497007531104"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": ".0.140497007531104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007531104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140497007531104", "variance": "INVARIANT"}}, "140497007531552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}, {"nodeId": "140496860610624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007532000": {"type": "Function", "content": {"typeVars": [".-1.140497007532000"], "argTypes": [{"nodeId": ".-1.140497007532000"}, {"nodeId": ".-1.140497007532000"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140497007532000": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140497007532000", "variance": "INVARIANT"}}, "140497007534688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007535136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007535584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341408"}], "returnType": {"nodeId": "140496860647984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860647984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496860644512"}}}, "140496860644512": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496927341760": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927341760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927341760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927342112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007536480"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861057024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861062400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861062848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861063072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861063296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496861063520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007539616"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007540064"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007540512"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007540960"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007541408"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496861063744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007641312"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007641760"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007642208"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007642656"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007643104"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497007643552"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140497007536480": {"type": "Function", "content": {"typeVars": [".0.140497007536480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496860648096"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497007536480"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140496860648096": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, ".0.140497007536480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341760"}, "def": "140497007536480", "variance": "INVARIANT"}}, "140496861057024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861062400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861062848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861063072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496861063296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140496860648208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860648208": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, "140496861063520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007539616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007540064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007540512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007540960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496927341760"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007541408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}}, "140496861063744": {"type": "Function", "content": {"typeVars": [".0.140496861063744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496861063744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140496861063744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341760"}, "def": "140496861063744", "variance": "INVARIANT"}}, "140497007641312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007641760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497007642208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140496860648320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860648320": {"type": "Union", "content": {"items": [{"nodeId": "140496927342112"}, {"nodeId": "N"}]}}, "140497007642656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140496860648432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860648432": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497007643104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927341760"}], "returnType": {"nodeId": "140496860648544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860648544": {"type": "Union", "content": {"items": [{"nodeId": "140496927342112"}, {"nodeId": "N"}]}}, "140497007643552": {"type": "Function", "content": {"typeVars": [".0.140497007643552"], "argTypes": [{"nodeId": ".0.140497007643552"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496860648656"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497007643552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140497007643552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927341760"}, "def": "140497007643552", "variance": "INVARIANT"}}, "140496860648656": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, "140496860649664": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, ".0.140496861045792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140496861045792", "variance": "INVARIANT"}}, "140497007760480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007760928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496860649776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860649776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496865202736"}}}, "140497007761376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496927341408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007761824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496927341760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007762272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496927341760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497007762720": {"type": "Function", "content": {"typeVars": [".0.140497007762720"], "argTypes": [{"nodeId": ".0.140497007762720"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496860649888"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".0.140497007762720"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140497007762720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140497007762720", "variance": "INVARIANT"}}, "140496860649888": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, "140497007763168": {"type": "Function", "content": {"typeVars": [".0.140497007763168"], "argTypes": [{"nodeId": ".0.140497007763168"}, {"nodeId": "140496860650000"}], "returnType": {"nodeId": ".0.140497007763168"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}}, ".0.140497007763168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140497007763168", "variance": "INVARIANT"}}, "140496860650000": {"type": "Union", "content": {"items": [{"nodeId": "140496927340352"}, {"nodeId": "N"}]}}, "140497007764064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}}, "140496861047584": {"type": "Function", "content": {"typeVars": [".0.140496861047584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496861047584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".0.140496861047584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140496861047584", "variance": "INVARIANT"}}, "140497007764960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496860650112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860650112": {"type": "Union", "content": {"items": [{"nodeId": "140496927342112"}, {"nodeId": "N"}]}}, "140497007765408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496860650224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860650224": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140497007765856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496860650336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496860650336": {"type": "Union", "content": {"items": [{"nodeId": "140496927342112"}, {"nodeId": "N"}]}}, "140497007766304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}, {"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007766752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}, {"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007767200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}, {"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497007767648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496860610624"}, {"nodeId": "140496860610624"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496860648768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497007768096"}, {"nodeId": "140496906922336"}]}}, "140497007768096": {"type": "Function", "content": {"typeVars": [".0.140497007768096"], "argTypes": [{"nodeId": ".0.140497007768096"}, {"nodeId": "140496927342112"}], "returnType": {"nodeId": ".0.140497007768096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497007768096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496860610624"}, "def": "140497007768096", "variance": "INVARIANT"}}, "140496906922336": {"type": "Function", "content": {"typeVars": [".-1.140496906922336"], "argTypes": [{"nodeId": ".-1.140496906922336"}, {"nodeId": ".-1.140496906922336"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496906922336": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140496927341408"}, "def": "140496906922336", "variance": "INVARIANT"}}, "140496860646416": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496860915616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340352"}, {"nodeId": "140496860646528"}], "returnType": {"nodeId": "140496860646640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496860646528": {"type": "Union", "content": {"items": [{"nodeId": "140496860610624"}, {"nodeId": "N"}]}}, "140496860646640": {"type": "Union", "content": {"items": [{"nodeId": "140496927342112"}, {"nodeId": "N"}]}}, "140496860915840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340352"}, {"nodeId": "140496860646752"}], "returnType": {"nodeId": "140496860646864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496860646752": {"type": "Union", "content": {"items": [{"nodeId": "140496860610624"}, {"nodeId": "N"}]}}, "140496860646864": {"type": "Union", "content": {"items": [{"nodeId": "140496927342112"}, {"nodeId": "N"}]}}, "140497020412512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340352"}, {"nodeId": "140496860610624"}], "returnType": {"nodeId": "140496860610624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496927340704": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "content": {"name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927340704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927340704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927340704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020412960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020413408"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020413856"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020414304"}, "name": "dst"}}], "typeVars": [], "bases": [{"nodeId": "140496927340352"}], "isAbstract": false}}, "140497020412960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340704"}, {"nodeId": "140496927342112"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}}, "140497020413408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340704"}, {"nodeId": "140496860646976"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496860646976": {"type": "Union", "content": {"items": [{"nodeId": "140496860610624"}, {"nodeId": "N"}]}}, "140497020413856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340704"}, {"nodeId": "140496860647088"}], "returnType": {"nodeId": "140496927342112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496860647088": {"type": "Union", "content": {"items": [{"nodeId": "140496860610624"}, {"nodeId": "N"}]}}, "140497020414304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927340704"}, {"nodeId": "140496860647200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496860647200": {"type": "Union", "content": {"items": [{"nodeId": "140496860610624"}, {"nodeId": "N"}]}}, "140497028239904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873055488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952672672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927251520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873054816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873053472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986409216"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496873055488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239904"}], "returnType": {"nodeId": "140496910440080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910440080": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140496956571168"}]}, {"nodeId": "N"}]}}, "140496956571168": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998734240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496998734240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956571168"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496927251520": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496873054816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239904"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496873053472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239904"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496986409216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028239904"}, {"nodeId": "140497028238848"}, {"nodeId": "140496910440416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496910440416": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140497028250112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496915099408"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496915099408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497003470336"}, {"nodeId": "140497003470784"}, {"nodeId": "140497003471232"}]}}, "140497003470336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250112"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140497003470784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250112"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140497003471232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028250112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956563072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986856064"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986856512"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986856960"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986857408"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496956563072"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": "140496927252976"}]}], "isAbstract": false}}, ".1.140496956563072": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956563072", "variance": "INVARIANT"}}, "140496986856064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563072", "args": [{"nodeId": ".1.140496956563072"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956563072"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140496986856512": {"type": "Function", "content": {"typeVars": [".0.140496986856512"], "argTypes": [{"nodeId": ".0.140496986856512"}], "returnType": {"nodeId": ".0.140496986856512"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496986856512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956563072", "args": [{"nodeId": ".1.140496956563072"}]}, "def": "140496986856512", "variance": "INVARIANT"}}, "140496986856960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563072", "args": [{"nodeId": ".1.140496956563072"}]}], "returnType": {"nodeId": "140496910447248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910447248": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": ".1.140496956563072"}]}}, "140496986857408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496927252976": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": ".1.140496956563072"}]}}, "140496956804608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902680448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902680000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902678432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910445792"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986860096"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986860544"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986860992"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986861440"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986861888"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910447024"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986863232"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140497028247296", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496902680448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902680000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902678432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496910445792": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986859200"}, {"nodeId": "140496986859648"}]}}, "140496986859200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986859648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496986860096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986860544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496986860992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986861440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986861888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496910447024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496986862336"}, {"nodeId": "140496986862784"}]}}, "140496986862336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140496956568704"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986862784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140496956804608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986863232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804608"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956804960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927571216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927249056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927249168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986863680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986864128"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986864576"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496986865024"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981721152"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981721600"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981722048"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496927571216": {"type": "Union", "content": {"items": [{"nodeId": "140496931855200"}, {"nodeId": "N"}]}}, "140496931855200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496927249056": {"type": "Union", "content": {"items": [{"nodeId": "140496931849152"}, {"nodeId": "N"}]}}, "140496931849152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496927249168": {"type": "Union", "content": {"items": [{"nodeId": "140496931851840"}, {"nodeId": "N"}]}}, "140496931851840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986863680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "140496910447696"}, {"nodeId": "140496910448032"}, {"nodeId": "140496910448368"}, {"nodeId": "140496910448592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140496910447696": {"type": "Union", "content": {"items": [{"nodeId": "140496915542784"}, {"nodeId": "N"}]}}, "140496915542784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496910448032": {"type": "Union", "content": {"items": [{"nodeId": "140496915543008"}, {"nodeId": "N"}]}}, "140496915543008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496910448368": {"type": "Union", "content": {"items": [{"nodeId": "140496915543232"}, {"nodeId": "N"}]}}, "140496915543232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496910448592": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496986864128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "140496915542112"}], "returnType": {"nodeId": "140496956804960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915542112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496986864576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "140496915542560"}], "returnType": {"nodeId": "140496956804960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915542560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496986865024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "140496915543456"}], "returnType": {"nodeId": "140496956804960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496915543456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496981721152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "A"}, {"nodeId": "140496910449376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496910449376": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496981721600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496981722048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956804960"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956805312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496932385216": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981726080"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140496932385216"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__fspath__"]}}, ".1.140496932385216": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496932385216", "variance": "COVARIANT"}}, "140496981726080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932385216", "args": [{"nodeId": ".1.140496932385216"}]}], "returnType": {"nodeId": ".1.140496932385216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956805664": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981726976"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140496956805664"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__anext__"]}}, ".1.140496956805664": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140497028244832", "args": [{"nodeId": "A"}]}, "def": "140496956805664", "variance": "COVARIANT"}}, "140496981726976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956805664", "args": [{"nodeId": ".1.140496956805664"}]}], "returnType": {"nodeId": ".1.140496956805664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956563424": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910811312"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981885440"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981885888"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140496956563424"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956563424"}]}], "isAbstract": false}}, ".1.140496956563424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956563424", "variance": "INVARIANT"}}, "140496910811312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496981736384"}, {"nodeId": "140496981736832"}, {"nodeId": "140496981884992"}]}}, "140496981736384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563424", "args": [{"nodeId": ".1.140496956563424"}]}, {"nodeId": "N"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496910814448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496910814448": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496956563424"}, {"nodeId": "N"}]}}, "140496981736832": {"type": "Function", "content": {"typeVars": [".-1.140496981736832"], "argTypes": [{"nodeId": "140496956563424", "args": [{"nodeId": ".1.140496956563424"}]}, {"nodeId": "140496915544352"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496981736832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496915544352": {"type": "Function", "content": {"typeVars": [".-1.140496915544352"], "argTypes": [{"nodeId": ".-1.140496915544352"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140496915544352": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496915544352", "variance": "INVARIANT"}}, ".-1.140496981736832": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981736832", "variance": "INVARIANT"}}, "140496981884992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563424", "args": [{"nodeId": ".1.140496956563424"}]}, {"nodeId": "140496915544128"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496956563424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496915544128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140496956563424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496981885440": {"type": "Function", "content": {"typeVars": [".0.140496981885440"], "argTypes": [{"nodeId": ".0.140496981885440"}], "returnType": {"nodeId": ".0.140496981885440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496981885440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956563424", "args": [{"nodeId": ".1.140496956563424"}]}, "def": "140496981885440", "variance": "INVARIANT"}}, "140496981885888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563424", "args": [{"nodeId": ".1.140496956563424"}]}], "returnType": {"nodeId": ".1.140496956563424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956806016": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981892608"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140496956806016"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__getitem__"]}}, ".1.140496956806016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956806016", "variance": "COVARIANT"}}, "140496981892608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956806016", "args": [{"nodeId": ".1.140496956806016"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496956806016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956563776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910814784"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981899776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496981900224"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140496956563776"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956563776"}]}], "isAbstract": false}}, ".1.140496956563776": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956563776", "variance": "INVARIANT"}}, "140496910814784": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496981897088"}, {"nodeId": "140496981897536"}, {"nodeId": "140496981897984"}, {"nodeId": "140496981898432"}, {"nodeId": "140496981898880"}, {"nodeId": "140496981899328"}]}}, "140496981897088": {"type": "Function", "content": {"typeVars": [".-1.140496981897088"], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, {"nodeId": "140496910893792"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496981897088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496910893792": {"type": "Function", "content": {"typeVars": [".-1.140496910893792"], "argTypes": [{"nodeId": ".-1.140496910893792"}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140496910893792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910893792", "variance": "INVARIANT"}}, ".-1.140496981897088": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981897088", "variance": "INVARIANT"}}, "140496981897536": {"type": "Function", "content": {"typeVars": [".-1.140496981897536", ".-2.140496981897536"], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, {"nodeId": "140496910893120"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496981897536"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496981897536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140496910893120": {"type": "Function", "content": {"typeVars": [".-1.140496910893120", ".-2.140496910893120"], "argTypes": [{"nodeId": ".-1.140496910893120"}, {"nodeId": ".-2.140496910893120"}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496910893120": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910893120", "variance": "INVARIANT"}}, ".-2.140496910893120": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910893120", "variance": "INVARIANT"}}, ".-1.140496981897536": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981897536", "variance": "INVARIANT"}}, ".-2.140496981897536": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981897536", "variance": "INVARIANT"}}, "140496981897984": {"type": "Function", "content": {"typeVars": [".-1.140496981897984", ".-2.140496981897984", ".-3.140496981897984"], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, {"nodeId": "140496910893344"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496981897984"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496981897984"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-3.140496981897984"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140496910893344": {"type": "Function", "content": {"typeVars": [".-1.140496910893344", ".-2.140496910893344", ".-3.140496910893344"], "argTypes": [{"nodeId": ".-1.140496910893344"}, {"nodeId": ".-2.140496910893344"}, {"nodeId": ".-3.140496910893344"}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140496910893344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910893344", "variance": "INVARIANT"}}, ".-2.140496910893344": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910893344", "variance": "INVARIANT"}}, ".-3.140496910893344": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910893344", "variance": "INVARIANT"}}, ".-1.140496981897984": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981897984", "variance": "INVARIANT"}}, ".-2.140496981897984": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981897984", "variance": "INVARIANT"}}, ".-3.140496981897984": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981897984", "variance": "INVARIANT"}}, "140496981898432": {"type": "Function", "content": {"typeVars": [".-1.140496981898432", ".-2.140496981898432", ".-3.140496981898432", ".-4.140496981898432"], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, {"nodeId": "140496910894016"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496981898432"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496981898432"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-3.140496981898432"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-4.140496981898432"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140496910894016": {"type": "Function", "content": {"typeVars": [".-1.140496910894016", ".-2.140496910894016", ".-3.140496910894016", ".-4.140496910894016"], "argTypes": [{"nodeId": ".-1.140496910894016"}, {"nodeId": ".-2.140496910894016"}, {"nodeId": ".-3.140496910894016"}, {"nodeId": ".-4.140496910894016"}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140496910894016": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894016", "variance": "INVARIANT"}}, ".-2.140496910894016": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894016", "variance": "INVARIANT"}}, ".-3.140496910894016": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894016", "variance": "INVARIANT"}}, ".-4.140496910894016": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894016", "variance": "INVARIANT"}}, ".-1.140496981898432": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898432", "variance": "INVARIANT"}}, ".-2.140496981898432": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898432", "variance": "INVARIANT"}}, ".-3.140496981898432": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898432", "variance": "INVARIANT"}}, ".-4.140496981898432": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898432", "variance": "INVARIANT"}}, "140496981898880": {"type": "Function", "content": {"typeVars": [".-1.140496981898880", ".-2.140496981898880", ".-3.140496981898880", ".-4.140496981898880", ".-5.140496981898880"], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, {"nodeId": "140496910894240"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496981898880"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496981898880"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-3.140496981898880"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-4.140496981898880"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-5.140496981898880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140496910894240": {"type": "Function", "content": {"typeVars": [".-1.140496910894240", ".-2.140496910894240", ".-3.140496910894240", ".-4.140496910894240", ".-5.140496910894240"], "argTypes": [{"nodeId": ".-1.140496910894240"}, {"nodeId": ".-2.140496910894240"}, {"nodeId": ".-3.140496910894240"}, {"nodeId": ".-4.140496910894240"}, {"nodeId": ".-5.140496910894240"}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140496910894240": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894240", "variance": "INVARIANT"}}, ".-2.140496910894240": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894240", "variance": "INVARIANT"}}, ".-3.140496910894240": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894240", "variance": "INVARIANT"}}, ".-4.140496910894240": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894240", "variance": "INVARIANT"}}, ".-5.140496910894240": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496910894240", "variance": "INVARIANT"}}, ".-1.140496981898880": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898880", "variance": "INVARIANT"}}, ".-2.140496981898880": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898880", "variance": "INVARIANT"}}, ".-3.140496981898880": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898880", "variance": "INVARIANT"}}, ".-4.140496981898880": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898880", "variance": "INVARIANT"}}, ".-5.140496981898880": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496981898880", "variance": "INVARIANT"}}, "140496981899328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, {"nodeId": "140496910894464"}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140496910894464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496981899776": {"type": "Function", "content": {"typeVars": [".0.140496981899776"], "argTypes": [{"nodeId": ".0.140496981899776"}], "returnType": {"nodeId": ".0.140496981899776"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496981899776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}, "def": "140496981899776", "variance": "INVARIANT"}}, "140496981900224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956563776", "args": [{"nodeId": ".1.140496956563776"}]}], "returnType": {"nodeId": ".1.140496956563776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496932385568": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982058688"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140496932385568"}], "bases": [{"nodeId": "140496932077632", "args": [{"nodeId": ".1.140496932385568"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140496932385568": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496932385568", "variance": "CONTRAVARIANT"}}, "140496982058688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932385568", "args": [{"nodeId": ".1.140496932385568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956806368": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982060032"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140496956806368"}, {"nodeId": ".2.140496956806368"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__pow__"]}}, ".1.140496956806368": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956806368", "variance": "CONTRAVARIANT"}}, ".2.140496956806368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956806368", "variance": "COVARIANT"}}, "140496982060032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956806368", "args": [{"nodeId": ".1.140496956806368"}, {"nodeId": ".2.140496956806368"}]}, {"nodeId": ".1.140496956806368"}], "returnType": {"nodeId": ".2.140496956806368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956806720": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982060480"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140496956806720"}, {"nodeId": ".2.140496956806720"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__pow__"]}}, ".1.140496956806720": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956806720", "variance": "CONTRAVARIANT"}}, ".2.140496956806720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956806720", "variance": "COVARIANT"}}, "140496982060480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956806720", "args": [{"nodeId": ".1.140496956806720"}, {"nodeId": ".2.140496956806720"}]}, {"nodeId": ".1.140496956806720"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140496956806720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496956807072": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982060928"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140496956807072"}, {"nodeId": ".2.140496956807072"}, {"nodeId": ".3.140496956807072"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__pow__"]}}, ".1.140496956807072": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956807072", "variance": "CONTRAVARIANT"}}, ".2.140496956807072": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956807072", "variance": "CONTRAVARIANT"}}, ".3.140496956807072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956807072", "variance": "COVARIANT"}}, "140496982060928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956807072", "args": [{"nodeId": ".1.140496956807072"}, {"nodeId": ".2.140496956807072"}, {"nodeId": ".3.140496956807072"}]}, {"nodeId": ".1.140496956807072"}, {"nodeId": ".2.140496956807072"}], "returnType": {"nodeId": ".3.140496956807072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496956564128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910826208"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982289408"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982289856"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982290304"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140496956564128"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956564128"}]}], "isAbstract": false}}, ".1.140496956564128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956564128", "variance": "INVARIANT"}}, "140496910826208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496982288512"}, {"nodeId": "140496982288960"}]}}, "140496982288512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564128", "args": [{"nodeId": ".1.140496956564128"}]}, {"nodeId": "140497028244128", "args": [{"nodeId": ".1.140496956564128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496982288960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564128", "args": [{"nodeId": ".1.140496956564128"}]}, {"nodeId": "140496931910080", "args": [{"nodeId": ".1.140496956564128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496931910080": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020184032"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020184480"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140496931910080"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140496931910080": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931910080", "variance": "COVARIANT"}}, "140497020184032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931910080", "args": [{"nodeId": ".1.140496931910080"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140497020184480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931910080", "args": [{"nodeId": ".1.140496931910080"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496931910080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496982289408": {"type": "Function", "content": {"typeVars": [".0.140496982289408"], "argTypes": [{"nodeId": ".0.140496982289408"}], "returnType": {"nodeId": ".0.140496982289408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496982289408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956564128", "args": [{"nodeId": ".1.140496956564128"}]}, "def": "140496982289408", "variance": "INVARIANT"}}, "140496982289856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564128", "args": [{"nodeId": ".1.140496956564128"}]}], "returnType": {"nodeId": ".1.140496956564128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496982290304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564128", "args": [{"nodeId": ".1.140496956564128"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956807424": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982291200"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140496956807424"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__round__"]}}, ".1.140496956807424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956807424", "variance": "COVARIANT"}}, "140496982291200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956807424", "args": [{"nodeId": ".1.140496956807424"}]}], "returnType": {"nodeId": ".1.140496956807424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956807776": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982291648"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140496956807776"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__round__"]}}, ".1.140496956807776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956807776", "variance": "COVARIANT"}}, "140496982291648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956807776", "args": [{"nodeId": ".1.140496956807776"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496956807776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496932385920": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931907264", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140496931907616", "args": [{"nodeId": "140497028250464"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140496931907264": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020180448"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140496931907264"}, {"nodeId": ".2.140496931907264"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__add__"]}}, ".1.140496931907264": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931907264", "variance": "CONTRAVARIANT"}}, ".2.140496931907264": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931907264", "variance": "COVARIANT"}}, "140497020180448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931907264", "args": [{"nodeId": ".1.140496931907264"}, {"nodeId": ".2.140496931907264"}]}, {"nodeId": ".1.140496931907264"}], "returnType": {"nodeId": ".2.140496931907264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931907616": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020180896"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140496931907616"}, {"nodeId": ".2.140496931907616"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__radd__"]}}, ".1.140496931907616": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931907616", "variance": "CONTRAVARIANT"}}, ".2.140496931907616": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931907616", "variance": "COVARIANT"}}, "140497020180896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931907616", "args": [{"nodeId": ".1.140496931907616"}, {"nodeId": ".2.140496931907616"}]}, {"nodeId": ".1.140496931907616"}], "returnType": {"nodeId": ".2.140496931907616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956564480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496910993664"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982434176"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982434624"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140496956564480"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496956564480"}]}], "isAbstract": false}}, ".1.140496956564480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496956564480", "variance": "COVARIANT"}}, "140496910993664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496982428800"}, {"nodeId": "140496982429248"}, {"nodeId": "140496982429696"}, {"nodeId": "140496982430144"}, {"nodeId": "140496982430592"}, {"nodeId": "140496982431040"}]}}, "140496982428800": {"type": "Function", "content": {"typeVars": [".-1.140496982428800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496982428800"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956564480", "args": [{"nodeId": "140496910994896"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140496982428800": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982428800", "variance": "INVARIANT"}}, "140496910994896": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140496982428800"}]}}, "140496982429248": {"type": "Function", "content": {"typeVars": [".-1.140496982429248", ".-2.140496982429248"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496982429248"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496982429248"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956564480", "args": [{"nodeId": "140496910995120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140496982429248": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982429248", "variance": "INVARIANT"}}, ".-2.140496982429248": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982429248", "variance": "INVARIANT"}}, "140496910995120": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140496982429248"}, {"nodeId": ".-2.140496982429248"}]}}, "140496982429696": {"type": "Function", "content": {"typeVars": [".-1.140496982429696", ".-2.140496982429696", ".-3.140496982429696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496982429696"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496982429696"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-3.140496982429696"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956564480", "args": [{"nodeId": "140496910995344"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140496982429696": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982429696", "variance": "INVARIANT"}}, ".-2.140496982429696": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982429696", "variance": "INVARIANT"}}, ".-3.140496982429696": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982429696", "variance": "INVARIANT"}}, "140496910995344": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140496982429696"}, {"nodeId": ".-2.140496982429696"}, {"nodeId": ".-3.140496982429696"}]}}, "140496982430144": {"type": "Function", "content": {"typeVars": [".-1.140496982430144", ".-2.140496982430144", ".-3.140496982430144", ".-4.140496982430144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496982430144"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496982430144"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-3.140496982430144"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-4.140496982430144"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956564480", "args": [{"nodeId": "140496910995568"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140496982430144": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430144", "variance": "INVARIANT"}}, ".-2.140496982430144": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430144", "variance": "INVARIANT"}}, ".-3.140496982430144": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430144", "variance": "INVARIANT"}}, ".-4.140496982430144": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430144", "variance": "INVARIANT"}}, "140496910995568": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140496982430144"}, {"nodeId": ".-2.140496982430144"}, {"nodeId": ".-3.140496982430144"}, {"nodeId": ".-4.140496982430144"}]}}, "140496982430592": {"type": "Function", "content": {"typeVars": [".-1.140496982430592", ".-2.140496982430592", ".-3.140496982430592", ".-4.140496982430592", ".-5.140496982430592"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-1.140496982430592"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-2.140496982430592"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-3.140496982430592"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-4.140496982430592"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": ".-5.140496982430592"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956564480", "args": [{"nodeId": "140496910995792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140496982430592": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430592", "variance": "INVARIANT"}}, ".-2.140496982430592": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430592", "variance": "INVARIANT"}}, ".-3.140496982430592": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430592", "variance": "INVARIANT"}}, ".-4.140496982430592": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430592", "variance": "INVARIANT"}}, ".-5.140496982430592": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496982430592", "variance": "INVARIANT"}}, "140496910995792": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140496982430592"}, {"nodeId": ".-2.140496982430592"}, {"nodeId": ".-3.140496982430592"}, {"nodeId": ".-4.140496982430592"}, {"nodeId": ".-5.140496982430592"}]}}, "140496982431040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956564480", "args": [{"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140496982434176": {"type": "Function", "content": {"typeVars": [".0.140496982434176"], "argTypes": [{"nodeId": ".0.140496982434176"}], "returnType": {"nodeId": ".0.140496982434176"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496982434176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956564480", "args": [{"nodeId": ".1.140496956564480"}]}, "def": "140496982434176", "variance": "INVARIANT"}}, "140496982434624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956564480", "args": [{"nodeId": ".1.140496956564480"}]}], "returnType": {"nodeId": ".1.140496956564480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496956808128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496956808832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956808480"}], "isAbstract": false}}, "140496956809184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956808480"}], "isAbstract": false}}, "140496956809536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957210800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956808480"}], "isAbstract": false}}, "140496957210800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952710464"}}}, "140496952710464": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496956809888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956808480"}], "isAbstract": false}}, "140496956810240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956810592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956810944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956811296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956811648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982437760"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028238848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496982437760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956811648"}, {"nodeId": "140497028238848"}, {"nodeId": "140496910998256"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140496910998256": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496956812000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956812352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956812704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982438208"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957223568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957210912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496982438208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956812704"}, {"nodeId": "140497028238848"}, {"nodeId": "140496910998368"}, {"nodeId": "140496910998480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140496910998368": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496910998480": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496957223568": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496957210912": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496956813056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956813408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956813760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956814112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956814464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956814816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956815168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957223904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957222896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957212928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957220656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957223120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496957213488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496957223904": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496957222896": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496957212928": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496957220656": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496957223120": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496957213488": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496956815520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956815872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956816224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956816576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810944"}], "isAbstract": false}}, "140496956816928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810944"}], "isAbstract": false}}, "140496956620864": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810944"}], "isAbstract": false}}, "140496956621216": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956812704"}], "isAbstract": false}}, "140496956621568": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956813056"}], "isAbstract": false}}, "140496956621920": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956813056"}], "isAbstract": false}}, "140496956622272": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956813760"}], "isAbstract": false}}, "140496956622624": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956622976": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956623328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956623680": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956623328"}], "isAbstract": false}}, "140496956624032": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956623328"}], "isAbstract": false}}, "140496956624384": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956623328"}], "isAbstract": false}}, "140496956624736": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956623328"}], "isAbstract": false}}, "140496956625088": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956625440": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956625792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956626144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956626496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956626848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956627200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956627552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}], "isAbstract": false}}, "140496956627904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956814464"}], "isAbstract": false}}, "140496956628256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956814464"}], "isAbstract": false}}, "140496956628608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956815168"}], "isAbstract": false}}, "140496956628960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956628608"}], "isAbstract": false}}, "140496956629312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956816224"}], "isAbstract": false}}, "140496956629664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956802144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982438656"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496956629312"}], "isAbstract": false}}, "140496982438656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956629664"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140496956630016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982439104"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496956629312"}], "isAbstract": false}}, "140496982439104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956630016"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140496956630368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496982439552"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496956629312"}], "isAbstract": false}}, "140496982439552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956630368"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140496956630720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496956631072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956631424": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956631776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956632128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956632480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956632832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956633184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956633536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956633888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956634240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496956634592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956630720"}], "isAbstract": false}}, "140496952680416": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977551072"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["find_spec"]}}, "140496977551072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952680416"}, {"nodeId": "140496956801792"}, {"nodeId": "140496923040944"}, {"nodeId": "140496923041056"}], "returnType": {"nodeId": "140496923041168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140496923040944": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496923041056": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496952674080": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948404944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902453984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948407072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952708672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028247648", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952708784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977689312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977689760"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496948404944": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496902453984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496948407072": {"type": "Union", "content": {"items": [{"nodeId": "140496952673728"}, {"nodeId": "N"}]}}, "140496952673728": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977688416"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["load_module"]}}, "140496977688416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673728"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496952674080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496952708672": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496952708784": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496931428608": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973738528"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927397968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927398192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953077968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953078080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881851008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973739424"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496973738528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428608"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919073552"}, {"nodeId": "140496919073664"}, {"nodeId": "140496919073888"}, {"nodeId": "140496919074000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140496919073552": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496931429664": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998634144"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998634592"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998635040"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998635488"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496998634144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931429664"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496952674080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496998634592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931429664"}, {"nodeId": "140496952674080"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140496998635040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931429664"}, {"nodeId": "140496931428608"}], "returnType": {"nodeId": "140496919077472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140496919077472": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496998635488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931429664"}, {"nodeId": "140496952674080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140496919073664": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919073888": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496919074000": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496927397968": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496927398192": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496953077968": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496953078080": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496881851008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428608"}], "returnType": {"nodeId": "140496919074112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919074112": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496973739424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428608"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496977689312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}, {"nodeId": "140496956801792"}, {"nodeId": "140496928008880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140496928008880": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496977689760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496923041168": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496932387328": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902969760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902971328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902971552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902971776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902972000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902972224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902972448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902972672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902972896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902973120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902973344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902973568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902973792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902974016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902974240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902974912"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496902969760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923041392"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923041392": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902971328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923041504"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923041504": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902971552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923041616"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923041616": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902971776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923041728"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923041728": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902972000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923041840"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923041840": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902972224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923041952"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923041952": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902972448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042064"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042064": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902972672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042176"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042176": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902972896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042288"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042288": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902973120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042400"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042400": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902973344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042512"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042512": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902973568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042624"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042624": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902973792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042736"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042736": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902974016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042848": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902974240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923042960"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923042960": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902974912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043072"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043072": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496932079392": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994601888"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140496932079392"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496932079392": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496932079392", "variance": "COVARIANT"}}, "140496994601888": {"type": "Function", "content": {"typeVars": [".-1.140496994601888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": ".1.140496932079392"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140496994601888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140496994601888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496994601888", "variance": "INVARIANT"}}, "140496932387680": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902968416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902977152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902977376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902977600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902977824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902978048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902978272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902978496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902978720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902978944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902979168"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250816"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}], "isAbstract": false}}, "140496902968416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043184"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043184": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902977152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043296"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043296": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902977376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043408": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902977600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043520"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043520": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902977824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043632"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043632": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902978048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043744"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043744": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902978272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043856"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043856": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902978496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923043968"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923043968": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902978720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044080"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044080": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902978944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044192"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044192": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902979168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044304"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044304": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496932388032": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903046976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903047200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903047424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903047648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903047872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903048096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903048320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903048544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903048768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140496952711136"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}], "isAbstract": false}}, "140496903046976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044416"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044416": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903047200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044528"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044528": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903047424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044640"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044640": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903047648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044752"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044752": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903047872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044864"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044864": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903048096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923044976"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923044976": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903048320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045088"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045088": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903048544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045200"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045200": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903048768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045312"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045312": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496952711136": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140497028250464"}]}}, "140496952680768": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927248160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003717216"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496927248160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927564608"}}}, "140496927564608": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140497003717216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952680768"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496932388384": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903051232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903051456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903051680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903051904"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496903051232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045536"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045536": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903051456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045648"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045648": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903051680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045760": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496903051904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923045872"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923045872": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496927326272": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903052352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903053696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903053920"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}], "isAbstract": false}}, "140496903052352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923046096"}], "returnType": {"nodeId": "140496923046208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923046096": {"type": "Tuple", "content": {"items": [{"nodeId": "140496927246592"}, {"nodeId": "140496927248608"}, {"nodeId": "140496923045984"}]}}, "140496927246592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952713936"}}}, "140496952713936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496927248608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952713488"}}}, "140496952713488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140496923045984": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923046208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952713936"}}}, "140496903053696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923046432"}], "returnType": {"nodeId": "140496923046544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923046432": {"type": "Tuple", "content": {"items": [{"nodeId": "140496927246592"}, {"nodeId": "140496927248608"}, {"nodeId": "140496923046320"}]}}, "140496923046320": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923046544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952713488"}}}, "140496903053920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923046768"}], "returnType": {"nodeId": "140496923046880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923046768": {"type": "Tuple", "content": {"items": [{"nodeId": "140496927246592"}, {"nodeId": "140496927248608"}, {"nodeId": "140496923046656"}]}}, "140496923046656": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923046880": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496927326624": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903053248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903055712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903055936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903056160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903056384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}], "isAbstract": false}}, "140496903053248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923046992"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923046992": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496903055712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923047104"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923047104": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496903055936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923047216"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923047216": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496903056160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923047328"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923047328": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496903056384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923047440"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923047440": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496952681120": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927565952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927255104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927255328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028238848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140496927565952": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496927255104": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496927255328": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496927326976": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903060192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496903060640"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140496952714720"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496957226592"}]}], "isAbstract": false}}, "140496903060192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923181120"}], "returnType": {"nodeId": "140496923181232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923181120": {"type": "Tuple", "content": {"items": [{"nodeId": "140496927246368"}, {"nodeId": "140496927256000"}]}}, "140496927246368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952715728"}}}, "140496952715728": {"type": "Union", "content": {"items": [{"nodeId": "140496948182624"}, {"nodeId": "N"}]}}, "140496948182624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496927256000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952715728"}}}, "140496923181232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952715728"}}}, "140496903060640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923181344"}], "returnType": {"nodeId": "140496923181456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923181344": {"type": "Tuple", "content": {"items": [{"nodeId": "140496927246368"}, {"nodeId": "140496927256000"}]}}, "140496923181456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952715728"}}}, "140496952714720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952715728"}}}, "140496957226592": {"type": "Union", "content": {"items": [{"nodeId": "140496910901856"}, {"nodeId": "N"}]}}, "140496910901856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028246240", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956568000": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003277536"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003277984"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003278432"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140497003277536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497003277984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956568000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497003278432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568000"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956568000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956568352": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956562720", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956562720", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003280224"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003280672"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003281120"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003281568"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003282016"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003118880"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003119328"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003119776"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003120224"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003120672"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}], "isAbstract": true}}, "140497003280224": {"type": "Function", "content": {"typeVars": [".0.140497003280224"], "argTypes": [{"nodeId": ".0.140497003280224"}], "returnType": {"nodeId": ".0.140497003280224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140497003280224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956568352"}, "def": "140497003280224", "variance": "INVARIANT"}}, "140497003280672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568352"}, {"nodeId": "0"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140497003281120": {"type": "Function", "content": {"typeVars": [".-1.140497003281120"], "argTypes": [{"nodeId": "140496956568352"}, {"nodeId": "0"}, {"nodeId": ".-1.140497003281120"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140497003281120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497003281120", "variance": "INVARIANT"}}, "140497003281568": {"type": "Function", "content": {"typeVars": [".-1.140497003281568"], "argTypes": [{"nodeId": ".-1.140497003281568"}, {"nodeId": ".-1.140497003281568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140497003281568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497003281568", "variance": "INVARIANT"}}, "140497003282016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568352"}], "returnType": {"nodeId": "140496956562016", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003118880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568352"}], "returnType": {"nodeId": "140496956561312", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003119328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568352"}], "returnType": {"nodeId": "140496956561664", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003119776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956568352"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497003120224": {"type": "Function", "content": {"typeVars": [".0.140497003120224"], "argTypes": [{"nodeId": ".0.140497003120224"}, {"nodeId": ".0.140497003120224"}], "returnType": {"nodeId": ".0.140497003120224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497003120224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956568352"}, "def": "140497003120224", "variance": "INVARIANT"}}, "140497003120672": {"type": "Function", "content": {"typeVars": [".0.140497003120672"], "argTypes": [{"nodeId": ".0.140497003120672"}, {"nodeId": ".0.140497003120672"}], "returnType": {"nodeId": ".0.140497003120672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140497003120672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956568352"}, "def": "140497003120672", "variance": "INVARIANT"}}, "140496956569056": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496927565840"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496911199232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003131424"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497003132320"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140496927565840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140497003130080"}, {"nodeId": "140497003130528"}]}}, "140497003130080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569056"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496927753488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140496927753488": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}}, "140497003130528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569056"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140496911199232": {"type": "Function", "content": {"typeVars": [".0.140496911199232"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140496911199232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140496911199232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956569056"}, "def": "140496911199232", "variance": "INVARIANT"}}, "140497003131424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569056"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140497003132320": {"type": "Function", "content": {"typeVars": [".0.140497003132320"], "argTypes": [{"nodeId": ".0.140497003132320"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140497003132320"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140497003132320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496956569056"}, "def": "140497003132320", "variance": "INVARIANT"}}, "140496956569408": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911200128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911200576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911200800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911201024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911201248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911201472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911201696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994321568"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994322016"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994322464"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496911200128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911200576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140496927754384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927754384": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496911200800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911201024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911201248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911201472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911201696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}], "returnType": {"nodeId": "140496927754720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927754720": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496994321568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}, {"nodeId": "140496927755056"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496927755280"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140496927755056": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496927755280": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496994322016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956568000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496994322464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956569408"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956568000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496956570112": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911387776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911388000"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994328288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994328736"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496911387776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570112"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911388000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570112"}], "returnType": {"nodeId": "140496927756848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927756848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496994328288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570112"}, {"nodeId": "140496956801792"}, {"nodeId": "140496927757072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140496927757072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496994328736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570112"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496956570464": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994330528"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911389792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911390240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911390464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911390688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911390912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994333216"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994333664"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994334112"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496994330528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496927757856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140496927757856": {"type": "Union", "content": {"items": [{"nodeId": "140496956569408"}, {"nodeId": "140496956569760"}, {"nodeId": "140496956570112"}]}}, "140496911389792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911390240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496927758080"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927758080": {"type": "Union", "content": {"items": [{"nodeId": "140496956569408"}, {"nodeId": "140496956569760"}, {"nodeId": "140496956570112"}]}}, "140496911390464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911390688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496911390912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}], "returnType": {"nodeId": "140496927758304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927758304": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496994333216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496994333664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956568000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496994334112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570464"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496956568000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931904448": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020177312"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140497020177312": {"type": "Function", "content": {"typeVars": [".-1.140497020177312"], "argTypes": [{"nodeId": "140496931904448"}, {"nodeId": ".-1.140497020177312"}], "returnType": {"nodeId": ".-1.140497020177312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140497020177312": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140497020177312", "variance": "INVARIANT"}}, "140496931904800": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020177760"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140496931904800"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__next__"]}}, ".1.140496931904800": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931904800", "variance": "COVARIANT"}}, "140497020177760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904800", "args": [{"nodeId": ".1.140496931904800"}]}], "returnType": {"nodeId": ".1.140496931904800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931905152": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020178208"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140496931905152"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__anext__"]}}, ".1.140496931905152": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931905152", "variance": "COVARIANT"}}, "140497020178208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931905152", "args": [{"nodeId": ".1.140496931905152"}]}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".1.140496931905152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931906208": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020179552"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140496931906208"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__le__"]}}, ".1.140496931906208": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931906208", "variance": "CONTRAVARIANT"}}, "140497020179552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931906208", "args": [{"nodeId": ".1.140496931906208"}]}, {"nodeId": ".1.140496931906208"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931906560": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020180000"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140496931906560"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__ge__"]}}, ".1.140496931906560": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931906560", "variance": "CONTRAVARIANT"}}, "140497020180000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931906560", "args": [{"nodeId": ".1.140496931906560"}]}, {"nodeId": ".1.140496931906560"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931906912": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931905504", "args": [{"nodeId": "A"}]}, {"nodeId": "140496931905856", "args": [{"nodeId": "A"}]}, {"nodeId": "140496931906208", "args": [{"nodeId": "A"}]}, {"nodeId": "140496931906560", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140496931907968": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020181344"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140496931907968"}, {"nodeId": ".2.140496931907968"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__sub__"]}}, ".1.140496931907968": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931907968", "variance": "CONTRAVARIANT"}}, ".2.140496931907968": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931907968", "variance": "COVARIANT"}}, "140497020181344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931907968", "args": [{"nodeId": ".1.140496931907968"}, {"nodeId": ".2.140496931907968"}]}, {"nodeId": ".1.140496931907968"}], "returnType": {"nodeId": ".2.140496931907968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931908320": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020181792"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140496931908320"}, {"nodeId": ".2.140496931908320"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__rsub__"]}}, ".1.140496931908320": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931908320", "variance": "CONTRAVARIANT"}}, ".2.140496931908320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931908320", "variance": "COVARIANT"}}, "140497020181792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931908320", "args": [{"nodeId": ".1.140496931908320"}, {"nodeId": ".2.140496931908320"}]}, {"nodeId": ".1.140496931908320"}], "returnType": {"nodeId": ".2.140496931908320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931908672": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020182240"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140496931908672"}, {"nodeId": ".2.140496931908672"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__divmod__"]}}, ".1.140496931908672": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931908672", "variance": "CONTRAVARIANT"}}, ".2.140496931908672": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931908672", "variance": "COVARIANT"}}, "140497020182240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931908672", "args": [{"nodeId": ".1.140496931908672"}, {"nodeId": ".2.140496931908672"}]}, {"nodeId": ".1.140496931908672"}], "returnType": {"nodeId": ".2.140496931908672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931909024": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020182688"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140496931909024"}, {"nodeId": ".2.140496931909024"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140496931909024": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931909024", "variance": "CONTRAVARIANT"}}, ".2.140496931909024": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931909024", "variance": "COVARIANT"}}, "140497020182688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931909024", "args": [{"nodeId": ".1.140496931909024"}, {"nodeId": ".2.140496931909024"}]}, {"nodeId": ".1.140496931909024"}], "returnType": {"nodeId": ".2.140496931909024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496931909376": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020183136"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140496931909376"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__iter__"]}}, ".1.140496931909376": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931909376", "variance": "COVARIANT"}}, "140497020183136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931909376", "args": [{"nodeId": ".1.140496931909376"}]}], "returnType": {"nodeId": ".1.140496931909376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496931909728": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020183584"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140496931909728"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__aiter__"]}}, ".1.140496931909728": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931909728", "variance": "COVARIANT"}}, "140497020183584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931909728", "args": [{"nodeId": ".1.140496931909728"}]}], "returnType": {"nodeId": ".1.140496931909728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931911488": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020186720"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020187168"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140496931911488"}, {"nodeId": ".2.140496931911488"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140496931911488": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931911488", "variance": "CONTRAVARIANT"}}, ".2.140496931911488": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931911488", "variance": "COVARIANT"}}, "140497020186720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931911488", "args": [{"nodeId": ".1.140496931911488"}, {"nodeId": ".2.140496931911488"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140497020187168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931911488", "args": [{"nodeId": ".1.140496931911488"}, {"nodeId": ".2.140496931911488"}]}, {"nodeId": ".1.140496931911488"}], "returnType": {"nodeId": ".2.140496931911488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931911840": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020187616"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020188064"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140496931911840"}, {"nodeId": ".2.140496931911840"}], "bases": [{"nodeId": "140496931911488", "args": [{"nodeId": ".1.140496931911840"}, {"nodeId": ".2.140496931911840"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140496931911840": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931911840", "variance": "CONTRAVARIANT"}}, ".2.140496931911840": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931911840", "variance": "INVARIANT"}}, "140497020187616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931911840", "args": [{"nodeId": ".1.140496931911840"}, {"nodeId": ".2.140496931911840"}]}, {"nodeId": ".1.140496931911840"}, {"nodeId": ".2.140496931911840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140497020188064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931911840", "args": [{"nodeId": ".1.140496931911840"}, {"nodeId": ".2.140496931911840"}]}, {"nodeId": ".1.140496931911840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931912192": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020188512"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["fileno"]}}, "140497020188512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931912192"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931912544": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020188960"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140496931912544"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["read"]}}, ".1.140496931912544": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931912544", "variance": "COVARIANT"}}, "140497020188960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931912544", "args": [{"nodeId": ".1.140496931912544"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496931912544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496931912896": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020189408"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140496931912896"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["readline"]}}, ".1.140496931912896": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931912896", "variance": "COVARIANT"}}, "140497020189408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931912896", "args": [{"nodeId": ".1.140496931912896"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496931912896"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496931913248": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020189856"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140496931913248"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["readline"]}}, ".1.140496931913248": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931913248", "variance": "COVARIANT"}}, "140497020189856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931913248", "args": [{"nodeId": ".1.140496931913248"}]}], "returnType": {"nodeId": ".1.140496931913248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496932077984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994599200"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140496956570816"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140496994599200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932077984"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140497028247296", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496932078336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994599648"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140496956570816"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140496994599648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932078336"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496932078688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994600096"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496914809008"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140496932077984"}, {"nodeId": "140496932078336"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140496994600096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932078688"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496914809008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496994600544"}, {"nodeId": "140496994600992"}]}}, "140496994600544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932078688"}, {"nodeId": "140496956803200"}], "returnType": {"nodeId": "140497028247296", "args": [{"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496994600992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932078688"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496932079040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956557088"}, {"nodeId": "140496956570816"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140496932079744": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496931728096", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__dataclass_fields__"]}}, "140496931728096": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931623248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931623696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931623920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952673024", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931624032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974059488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974060384"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974060832"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496931728096"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496931728096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931728096", "variance": "INVARIANT"}}, "140496931623248": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496931728096"}, {"nodeId": "0"}]}}, "140496931623696": {"type": "Union", "content": {"items": [{"nodeId": "140496931727744", "args": [{"nodeId": ".1.140496931728096"}]}, {"nodeId": "0"}]}}, "140496931727744": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974059040"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140496931727744"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, ".1.140496931727744": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931727744", "variance": "COVARIANT"}}, "140496974059040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931727744", "args": [{"nodeId": ".1.140496931727744"}]}], "returnType": {"nodeId": ".1.140496931727744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931623920": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496931624032": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "0"}]}}, "140496974059488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931728096", "args": [{"nodeId": ".1.140496931728096"}]}, {"nodeId": ".1.140496931728096"}, {"nodeId": "140496918887584"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496919481808"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028248704", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140496918887584": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140496931728096"}, "argKinds": [], "argNames": []}}, "140496919481808": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496974060384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931728096", "args": [{"nodeId": ".1.140496931728096"}]}, {"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140496974060832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496956635296": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956804960"}], "isAbstract": false}}, "140496956635648": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496931729152": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994609056"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872830144"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496931729152"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140496931729152": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931729152", "variance": "COVARIANT"}}, "140496994609056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931729152", "args": [{"nodeId": ".1.140496931729152"}]}], "returnType": {"nodeId": ".1.140496931729152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496872830144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931729152", "args": [{"nodeId": ".1.140496931729152"}]}, {"nodeId": "140496919486288"}, {"nodeId": "140496919486400"}, {"nodeId": "140496919486512"}], "returnType": {"nodeId": "140496919486624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496919486288": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919486400": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919486512": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496919486624": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496931729504": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496918886912"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872725344"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496931729504"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140496931729504": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931729504", "variance": "COVARIANT"}}, "140496918886912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931729504", "args": [{"nodeId": ".1.140496931729504"}]}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140496931729504"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496872725344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931729504", "args": [{"nodeId": ".1.140496931729504"}]}, {"nodeId": "140496919486848"}, {"nodeId": "140496919486960"}, {"nodeId": "140496919487072"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140496919487184"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140496919486848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919486960": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919487072": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496919487184": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496931729856": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994610848"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496994610848": {"type": "Function", "content": {"typeVars": [".-1.140496994610848"], "argTypes": [{"nodeId": "140496931729856"}, {"nodeId": ".-1.140496994610848"}], "returnType": {"nodeId": ".-1.140496994610848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140496994610848": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140496931853408"}, "def": "140496994610848", "variance": "INVARIANT"}}, "140496931853408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496931730208": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994611296"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028244480", "args": [{"nodeId": ".1.140496931730208"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931854528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994611744"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140496931730208"}], "bases": [{"nodeId": "140496931729152", "args": [{"nodeId": ".1.140496931730208"}]}, {"nodeId": "140496931729856"}], "isAbstract": false}}, ".1.140496931730208": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931730208", "variance": "COVARIANT"}}, "140496994611296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931730208", "args": [{"nodeId": ".1.140496931730208"}]}, {"nodeId": "140496919593248"}, {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140496919593248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496931730208"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496931854528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": ".1.140496931730208"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496994611744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931730208", "args": [{"nodeId": ".1.140496931730208"}]}, {"nodeId": "140496919487744"}, {"nodeId": "140496919487856"}, {"nodeId": "140496919487968"}], "returnType": {"nodeId": "140496919488080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496919487744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919487856": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919487968": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496919488080": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496931730560": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994613088"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496994613088": {"type": "Function", "content": {"typeVars": [".-1.140496994613088"], "argTypes": [{"nodeId": "140496931730560"}, {"nodeId": ".-1.140496994613088"}], "returnType": {"nodeId": ".-1.140496994613088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140496994613088": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140496948891424"}, "def": "140496994613088", "variance": "INVARIANT"}}, "140496948891424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496931730912": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994613536"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028246240", "args": [{"nodeId": ".1.140496931730912"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948903520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994610400"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140496931730912"}], "bases": [{"nodeId": "140496931729504", "args": [{"nodeId": ".1.140496931730912"}]}, {"nodeId": "140496931730560"}], "isAbstract": false}}, ".1.140496931730912": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931730912", "variance": "COVARIANT"}}, "140496994613536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931730912", "args": [{"nodeId": ".1.140496931730912"}]}, {"nodeId": "140496919594144"}, {"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140496919594144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028245888", "args": [{"nodeId": ".1.140496931730912"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496948903520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028246240", "args": [{"nodeId": ".1.140496931730912"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496994610400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931730912", "args": [{"nodeId": ".1.140496931730912"}]}, {"nodeId": "140496919488976"}, {"nodeId": "140496919489088"}, {"nodeId": "140496919489200"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140496919489312"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140496919488976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919489088": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919489200": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496919489312": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496931731264": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994976480"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["close"]}}, "140496994976480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931731264"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931731616": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994976928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994977376"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140496931731616"}], "bases": [{"nodeId": "140496931729152", "args": [{"nodeId": ".1.140496931731616"}]}], "isAbstract": false}}, ".1.140496931731616": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140496931731264"}, "def": "140496931731616", "variance": "INVARIANT"}}, "140496994976928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931731616", "args": [{"nodeId": ".1.140496931731616"}]}, {"nodeId": ".1.140496931731616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140496994977376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931731616", "args": [{"nodeId": ".1.140496931731616"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140496931731968": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994977824"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["aclose"]}}, "140496994977824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931731968"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": "140497028238848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931732320": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994978272"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496919595488"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140496931732320"}], "bases": [{"nodeId": "140496931729504", "args": [{"nodeId": ".1.140496931732320"}]}], "isAbstract": false}}, ".1.140496931732320": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140496931731968"}, "def": "140496931732320", "variance": "INVARIANT"}}, "140496994978272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931732320", "args": [{"nodeId": ".1.140496931732320"}]}, {"nodeId": ".1.140496931732320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140496919595488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931732320", "args": [{"nodeId": ".1.140496931732320"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140496931732672": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994979168"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994979616"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140496931729152", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140496994979168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931732672"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140496994979616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931732672"}, {"nodeId": "140496919490096"}, {"nodeId": "140496919490208"}, {"nodeId": "140496919490320"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496919490096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919490208": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919490320": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496931733024": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994980064"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994980512"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140496931733024"}], "bases": [{"nodeId": "140496931729152", "args": [{"nodeId": ".1.140496931733024"}]}], "isAbstract": false}}, ".1.140496931733024": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140496927401104"}, "def": "140496931733024", "variance": "INVARIANT"}}, "140496927401104": {"type": "Union", "content": {"items": [{"nodeId": "140496956559552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496994980064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931733024", "args": [{"nodeId": ".1.140496931733024"}]}, {"nodeId": ".1.140496931733024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140496994980512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931733024", "args": [{"nodeId": ".1.140496931733024"}]}, {"nodeId": "140496919490432"}, {"nodeId": "140496919490544"}, {"nodeId": "140496919490656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496919490432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919490544": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919490656": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496931897408": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140496931897408"}], "bases": [{"nodeId": "140496931733024", "args": [{"nodeId": ".1.140496931897408"}]}], "isAbstract": false}}, ".1.140496931897408": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140496927401104"}, "def": "140496931897408", "variance": "INVARIANT"}}, "140496931897760": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140496931897760"}], "bases": [{"nodeId": "140496931733024", "args": [{"nodeId": ".1.140496931897760"}]}], "isAbstract": false}}, ".1.140496931897760": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140496927401104"}, "def": "140496931897760", "variance": "INVARIANT"}}, "140496931898112": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994980960"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994981408"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994981856"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994982304"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994982752"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994983200"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994983648"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496994980960": {"type": "Function", "content": {"typeVars": [".-1.140496994980960"], "argTypes": [{"nodeId": "140496931898112"}, {"nodeId": "140496931729152", "args": [{"nodeId": ".-1.140496994980960"}]}], "returnType": {"nodeId": ".-1.140496994980960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140496994980960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496994980960", "variance": "INVARIANT"}}, "140496994981408": {"type": "Function", "content": {"typeVars": [".-1.140496994981408"], "argTypes": [{"nodeId": "140496931898112"}, {"nodeId": ".-1.140496994981408"}], "returnType": {"nodeId": ".-1.140496994981408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140496994981408": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140496927402224"}, "def": "140496994981408", "variance": "INVARIANT"}}, "140496927402224": {"type": "Union", "content": {"items": [{"nodeId": "140496931729152", "args": [{"nodeId": "A"}]}, {"nodeId": "140496927401664"}]}}, "140496927401664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496948181280"}}}, "140496948181280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931625936"}, {"nodeId": "140496931625488"}, {"nodeId": "140496931625600"}], "returnType": {"nodeId": "140496931625712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496931625936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496931625488": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496931625600": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496931625712": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496994981856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898112"}, {"nodeId": "140496919594816"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140496919595712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140496919594816": {"type": "Function", "content": {"typeVars": [".-2.140496919594816"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140496919594816"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140496919594816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496919594816", "variance": "INVARIANT"}}, "140496919595712": {"type": "Function", "content": {"typeVars": [".-2.140496919595712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140496919595712"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140496919595712": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496919595712", "variance": "INVARIANT"}}, "140496994982304": {"type": "Function", "content": {"typeVars": [".0.140496994982304"], "argTypes": [{"nodeId": ".0.140496994982304"}], "returnType": {"nodeId": ".0.140496994982304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496994982304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931898112"}, "def": "140496994982304", "variance": "INVARIANT"}}, "140496994982752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496994983200": {"type": "Function", "content": {"typeVars": [".0.140496994983200"], "argTypes": [{"nodeId": ".0.140496994983200"}], "returnType": {"nodeId": ".0.140496994983200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496994983200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931898112"}, "def": "140496994983200", "variance": "INVARIANT"}}, "140496994983648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898112"}, {"nodeId": "140496919491664"}, {"nodeId": "140496919491776"}, {"nodeId": "140496919491888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496919491664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919491776": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919491888": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496931898464": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994984096"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994978720"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994984992"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994985440"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994985888"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994986336"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994986784"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994984544"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994987232"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994987680"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496994984096": {"type": "Function", "content": {"typeVars": [".-1.140496994984096"], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": "140496931729152", "args": [{"nodeId": ".-1.140496994984096"}]}], "returnType": {"nodeId": ".-1.140496994984096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140496994984096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496994984096", "variance": "INVARIANT"}}, "140496994978720": {"type": "Function", "content": {"typeVars": [".-1.140496994978720"], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": "140496931729504", "args": [{"nodeId": ".-1.140496994978720"}]}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140496994978720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140496994978720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496994978720", "variance": "INVARIANT"}}, "140496994984992": {"type": "Function", "content": {"typeVars": [".-1.140496994984992"], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": ".-1.140496994984992"}], "returnType": {"nodeId": ".-1.140496994984992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140496994984992": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140496927402224"}, "def": "140496994984992", "variance": "INVARIANT"}}, "140496994985440": {"type": "Function", "content": {"typeVars": [".-1.140496994985440"], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": ".-1.140496994985440"}], "returnType": {"nodeId": ".-1.140496994985440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140496994985440": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140496927402784"}, "def": "140496994985440", "variance": "INVARIANT"}}, "140496927402784": {"type": "Union", "content": {"items": [{"nodeId": "140496931729504", "args": [{"nodeId": "A"}]}, {"nodeId": "140496927403008"}]}}, "140496927403008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496948903072"}}}, "140496948903072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931630192"}, {"nodeId": "140496931628736"}, {"nodeId": "140496931629856"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": "140496931629968"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496931630192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496931628736": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496931629856": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496931629968": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496994985888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": "140496919595264"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140496919596160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140496919595264": {"type": "Function", "content": {"typeVars": [".-2.140496919595264"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140496919595264"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140496919595264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496919595264", "variance": "INVARIANT"}}, "140496919596160": {"type": "Function", "content": {"typeVars": [".-2.140496919596160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140496919596160"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140496919596160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496919596160", "variance": "INVARIANT"}}, "140496994986336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": "140496919595936"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140496919596608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140496919595936": {"type": "Function", "content": {"typeVars": [".-2.140496919595936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".-2.140496919595936"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140496919595936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496919595936", "variance": "INVARIANT"}}, "140496919596608": {"type": "Function", "content": {"typeVars": [".-2.140496919596608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140497028244832", "args": [{"nodeId": ".-2.140496919596608"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140496919596608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496919596608", "variance": "INVARIANT"}}, "140496994986784": {"type": "Function", "content": {"typeVars": [".0.140496994986784"], "argTypes": [{"nodeId": ".0.140496994986784"}], "returnType": {"nodeId": ".0.140496994986784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496994986784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931898464"}, "def": "140496994986784", "variance": "INVARIANT"}}, "140496994984544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898464"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496994987232": {"type": "Function", "content": {"typeVars": [".0.140496994987232"], "argTypes": [{"nodeId": ".0.140496994987232"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140496994987232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496994987232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931898464"}, "def": "140496994987232", "variance": "INVARIANT"}}, "140496994987680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898464"}, {"nodeId": "140496919494016"}, {"nodeId": "140496919494128"}, {"nodeId": "140496919494240"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140497028239552"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140496919494016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496919494128": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496919494240": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496931898816": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140496931898816"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919493904"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994989472"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496994989920"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496919596384"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496919597280"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140496931898816"}], "bases": [{"nodeId": "140496931729152", "args": [{"nodeId": ".1.140496931898816"}]}, {"nodeId": "140496931729504", "args": [{"nodeId": ".1.140496931898816"}]}], "isAbstract": false}}, ".1.140496931898816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931898816", "variance": "INVARIANT"}}, "140496919493904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496994988128"}, {"nodeId": "140496994988576"}]}}, "140496994988128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898816", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140496994988576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898816", "args": [{"nodeId": ".1.140496931898816"}]}, {"nodeId": ".1.140496931898816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140496994989472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898816", "args": [{"nodeId": ".1.140496931898816"}]}], "returnType": {"nodeId": ".1.140496931898816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496994989920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898816", "args": [{"nodeId": ".1.140496931898816"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140496919596384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898816", "args": [{"nodeId": ".1.140496931898816"}]}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140496931898816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919597280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931898816", "args": [{"nodeId": ".1.140496931898816"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140496952685344": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893814464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893813344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893812448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893811776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893811104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893810432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923434496"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923438528"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923439200"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923439312"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995182944"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995183392"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995183840"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893754528"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923440432"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995185632"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995186080"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995186528"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496952685344"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496952685344": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952685344", "variance": "INVARIANT"}}, "140496893814464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496893813344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496893812448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496923438976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923438976": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496893811776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496923439088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923439088": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496893811104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": ".1.140496952685344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496893810432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496952685696": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893750944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893739968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893740864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496893741984"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923440880"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923442112"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923442896"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923541792"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923542240"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923542688"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923543472"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923543808"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998951712"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998952160"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998952608"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496952685696"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496952685696": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952685696", "variance": "INVARIANT"}}, "140496893750944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496893739968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496893740864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496893741984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": ".1.140496952685696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923440880": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998940960"}, {"nodeId": "140496923253824"}, {"nodeId": "140496998941856"}]}}, "140496998940960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923443008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923443008": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496923253824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923541568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923541568": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "N"}]}}, "140496998941856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923541680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923541680": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": "N"}]}}, "140496923442112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998942304"}, {"nodeId": "140496923251808"}, {"nodeId": "140496998943200"}]}}, "140496998942304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923541904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923541904": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496923251808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923542016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923542016": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "N"}]}}, "140496998943200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923542128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923542128": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": "N"}]}}, "140496923442896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998943648"}, {"nodeId": "140496923254720"}, {"nodeId": "140496998944544"}]}}, "140496998943648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923542352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923542352": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496923254720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923542464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923542464": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "N"}]}}, "140496998944544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923542576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923542576": {"type": "Union", "content": {"items": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": "N"}]}}, "140496923541792": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998944992"}, {"nodeId": "140496923254944"}, {"nodeId": "140496998945888"}]}}, "140496998944992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496923542912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140496923542912": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}}, "140496923254944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496923543136"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140496923543136": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "A"}]}}, "140496998945888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496923543360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140496923543360": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685696"}, {"nodeId": "A"}]}}, "140496923542240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998946336"}, {"nodeId": "140496923255168"}, {"nodeId": "140496998947232"}]}}, "140496998946336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923255168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496998947232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": ".1.140496952685696"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923542688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998947680"}, {"nodeId": "140496923255392"}, {"nodeId": "140496998948576"}]}}, "140496998947680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923255392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496998948576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685696"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140496923543472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998949024"}, {"nodeId": "140496923256064"}, {"nodeId": "140496998949920"}]}}, "140496998949024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496923544032"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140496923544032": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496923255616"}]}}, "140496923255616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496923256064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496923544144"}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140496923544144": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496923255840"}]}}, "140496923255840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}], "returnType": {"nodeId": "140496956570816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496998949920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": "140496923544256"}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": ".1.140496952685696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140496923544256": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685696"}, {"nodeId": "140496923254496"}]}}, "140496923254496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": ".1.140496952685696"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496923543808": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998950368"}, {"nodeId": "140496923256960"}, {"nodeId": "140496998951264"}]}}, "140496998950368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496923544480"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923544704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140496923544480": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496923256288"}]}}, "140496923256288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496923544704": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496923256960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496923544816"}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923545040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140496923544816": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496923256512"}]}}, "140496923256512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}], "returnType": {"nodeId": "140496956570816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496923545040": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496998951264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": "140496923545152"}, {"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496923545376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140496923545152": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685696"}, {"nodeId": "140496923256736"}]}}, "140496923256736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": ".1.140496952685696"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496923545376": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496952685696"}, {"nodeId": "140497028250464"}]}}, "140496998951712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}], "returnType": {"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496998952160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952685696", "args": [{"nodeId": ".1.140496952685696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496998952608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496923434496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496995178464"}, {"nodeId": "140496923252256"}, {"nodeId": "140496995179360"}]}}, "140496995178464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140496923252256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140496995179360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": ".1.140496952685344"}], "returnType": {"nodeId": ".1.140496952685344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140496923438528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496995179808"}, {"nodeId": "140496995180256"}, {"nodeId": "140496995180704"}]}}, "140496995179808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140496952685344"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496995180256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "140496923439536"}], "returnType": {"nodeId": "140496923439760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496923439536": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496923439760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": "A"}]}}, "140496995180704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "140496923439872"}, {"nodeId": "140496923439984"}, {"nodeId": "140496923440096"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496923440320"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140496923439872": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496923439984": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496923440096": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496923440320": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": "A"}]}}, "140496923439200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496995181152"}, {"nodeId": "140496995181600"}]}}, "140496995181152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496923440656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923440656": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": "A"}]}}, "140496995181600": {"type": "Function", "content": {"typeVars": [".-1.140496995181600"], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": ".-1.140496995181600"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496923440768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140496995181600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496995181600", "variance": "INVARIANT"}}, "140496923440768": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": ".-1.140496995181600"}]}}, "140496923439312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496995182048"}, {"nodeId": "140496995182496"}]}}, "140496995182048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496923441104"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923441104": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": "A"}]}}, "140496995182496": {"type": "Function", "content": {"typeVars": [".-1.140496995182496"], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": ".-1.140496995182496"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496923441216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140496995182496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496995182496", "variance": "INVARIANT"}}, "140496923441216": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": ".-1.140496995182496"}]}}, "140496995182944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "140496923441328"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496923441328": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496995183392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "140496923441440"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496923441440": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496995183840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "140496923441552"}], "returnType": {"nodeId": "140496923441776"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496923441552": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496923441776": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496893754528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496923442000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923442000": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496923440432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496995184736"}, {"nodeId": "140496995185184"}]}}, "140496995184736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140496952685344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496995185184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "140496923442336"}], "returnType": {"nodeId": "140496923442560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496923442336": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496923442560": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952685344"}, {"nodeId": "A"}]}}, "140496995185632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}], "returnType": {"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496995186080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952685344", "args": [{"nodeId": ".1.140496952685344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496995186528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496927327328": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931435296"}], "isAbstract": false}}, "140496952672320": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902334368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952672672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948405168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902334816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902335488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998736032"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998736480"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928003392"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902334368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}], "returnType": {"nodeId": "140496928006080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928006080": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140496956571168"}]}, {"nodeId": "N"}]}}, "140496948405168": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496902334816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902335488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496998736032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}, {"nodeId": "140496952672672"}, {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, {"nodeId": "140496928006528"}, {"nodeId": "140496928006640"}, {"nodeId": "140496928006752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140496928006528": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496928006640": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}, {"nodeId": "N"}]}}, "140496928006752": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140496956571168"}]}, {"nodeId": "N"}]}}, "140496998736480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496928003392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496998736928"}, {"nodeId": "140496998737376"}]}}, "140496998736928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}, {"nodeId": "N"}, {"nodeId": "140497028249760"}], "returnType": {"nodeId": "140496952672320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496998737376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952672320"}, {"nodeId": "140497028238848"}, {"nodeId": "140496928007312"}], "returnType": {"nodeId": "140496952675840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496928007312": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496952675840": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902671264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902671712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902671936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902672160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902672384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902672608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977884128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977884576"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902671264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}], "returnType": {"nodeId": "140496928012688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928012688": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140496956571168"}]}, {"nodeId": "N"}]}}, "140496902671712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}], "returnType": {"nodeId": "140496928012912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928012912": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496902671936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}], "returnType": {"nodeId": "140496952675488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496952675488": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977880992"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496977880992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675488"}, {"nodeId": "140497028238848"}, {"nodeId": "140496928012576"}], "returnType": {"nodeId": "140496952672320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140496928012576": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496902672160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902672384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902672608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977884128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}, {"nodeId": "140496931859456"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496931859456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496977884576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675840"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496952673376": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977686624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977687072"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977687520"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977687968"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496977686624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673376"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140496977687072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673376"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496977687520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673376"}, {"nodeId": "140496956801792"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496977687968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952673376"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496952674432": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902570048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977871584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977872032"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977872480"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928005072"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}], "bases": [{"nodeId": "140497028244480", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}], "isAbstract": false}}, ".1.140496952674432": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952674432", "variance": "COVARIANT"}}, ".2.140496952674432": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952674432", "variance": "CONTRAVARIANT"}}, ".3.140496952674432": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952674432", "variance": "COVARIANT"}}, "140496902570048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}], "returnType": {"nodeId": "140496928009216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928009216": {"type": "Union", "content": {"items": [{"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496977871584": {"type": "Function", "content": {"typeVars": [".0.140496977871584"], "argTypes": [{"nodeId": ".0.140496977871584"}], "returnType": {"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496977871584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}, "def": "140496977871584", "variance": "INVARIANT"}}, "140496977872032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}], "returnType": {"nodeId": ".1.140496952674432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977872480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}, {"nodeId": ".2.140496952674432"}], "returnType": {"nodeId": ".1.140496952674432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496928005072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496977872928"}, {"nodeId": "140496977873376"}]}}, "140496977872928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}, {"nodeId": "0"}, {"nodeId": "140496928009552"}, {"nodeId": "140496928009664"}], "returnType": {"nodeId": ".1.140496952674432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496928009552": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}]}}, "140496928009664": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496977873376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674432", "args": [{"nodeId": ".1.140496952674432"}, {"nodeId": ".2.140496952674432"}, {"nodeId": ".3.140496952674432"}]}, {"nodeId": "140496956808480"}, {"nodeId": "N"}, {"nodeId": "140496928009776"}], "returnType": {"nodeId": ".1.140496952674432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496928009776": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496952674784": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902577216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977874720"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977875168"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977875616"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928009328"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977876960"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977877408"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}], "bases": [{"nodeId": "140497028246240", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}], "isAbstract": false}}, ".1.140496952674784": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952674784", "variance": "COVARIANT"}}, ".2.140496952674784": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952674784", "variance": "CONTRAVARIANT"}}, "140496902577216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}], "returnType": {"nodeId": "140496928010000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928010000": {"type": "Union", "content": {"items": [{"nodeId": "140497028244832", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140496977874720": {"type": "Function", "content": {"typeVars": [".0.140496977874720"], "argTypes": [{"nodeId": ".0.140496977874720"}], "returnType": {"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496977874720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}, "def": "140496977874720", "variance": "INVARIANT"}}, "140496977875168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140496952674784"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977875616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}, {"nodeId": ".2.140496952674784"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140496952674784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496928009328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496931859232"}, {"nodeId": "140496977876064"}]}}, "140496931859232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}, {"nodeId": "0"}, {"nodeId": "140496928010784"}, {"nodeId": "140496928010896"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140496952674784"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496928010784": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}]}}, "140496928010896": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496977876064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}, {"nodeId": "140496956808480"}, {"nodeId": "N"}, {"nodeId": "140496928011120"}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140496952674784"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496928011120": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496977876960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674784", "args": [{"nodeId": ".1.140496952674784"}, {"nodeId": ".2.140496952674784"}]}], "returnType": {"nodeId": "140497028245184", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977877408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140496952675136": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902583488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977878752"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977879200"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977879648"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496928011008"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}], "bases": [{"nodeId": "140497028245184", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}], "isAbstract": false}}, ".1.140496952675136": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952675136", "variance": "COVARIANT"}}, ".2.140496952675136": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952675136", "variance": "CONTRAVARIANT"}}, ".3.140496952675136": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952675136", "variance": "COVARIANT"}}, "140496902583488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675136", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}], "returnType": {"nodeId": "140496928011904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928011904": {"type": "Union", "content": {"items": [{"nodeId": "140496956803552", "args": [{"nodeId": "140496928011792"}]}, {"nodeId": "N"}]}}, "140496928011792": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496977878752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675136", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977879200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675136", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140496952675136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977879648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675136", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}, {"nodeId": ".2.140496952675136"}], "returnType": {"nodeId": ".1.140496952675136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496928011008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496977880096"}, {"nodeId": "140496977880544"}]}}, "140496977880096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675136", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}, {"nodeId": "0"}, {"nodeId": "140496928012240"}, {"nodeId": "140496928012352"}], "returnType": {"nodeId": ".1.140496952675136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496928012240": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "140497028238848"}]}}, "140496928012352": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496977880544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952675136", "args": [{"nodeId": ".1.140496952675136"}, {"nodeId": ".2.140496952675136"}, {"nodeId": ".3.140496952675136"}]}, {"nodeId": "140496956808480"}, {"nodeId": "N"}, {"nodeId": "140496928012464"}], "returnType": {"nodeId": ".1.140496952675136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140496928012464": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496952676192": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902674176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902674400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902674624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496977886368"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902674176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676192"}], "returnType": {"nodeId": "140496928013584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496928013584": {"type": "Union", "content": {"items": [{"nodeId": "140497028238848"}, {"nodeId": "140496952674080"}]}}, "140496902674400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676192"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902674624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676192"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496977886368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676192"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496952676544": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902676416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902676864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902677088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978019488"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978019936"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902676416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676544"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902676864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676544"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902677088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676544"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978019488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676544"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496978019936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676544"}, {"nodeId": "A"}, {"nodeId": "140496923033888"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496923033888": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496952676896": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902678880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902679104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902679328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902679552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978022176"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978022624"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978023072"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902678880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902679104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902679328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902679552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978022176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496978022624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496978023072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952676896"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496952677248": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902682240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902682464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902682688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978024864"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978025312"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902682240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677248"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902682464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677248"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902682688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677248"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978024864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496978025312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677248"}, {"nodeId": "A"}, {"nodeId": "140496923034896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496923034896": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496952677600": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902683584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902750496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902750720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978027104"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978027552"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902683584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677600"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902750496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677600"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902750720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677600"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978027104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677600"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496978027552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952677600"}, {"nodeId": "A"}, {"nodeId": "140496923035568"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496923035568": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496952678656": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902757888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902757664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902758112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978149664"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978150112"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978150560"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902757888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678656"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902757664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678656"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902758112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678656"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978149664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678656"}, {"nodeId": "A"}, {"nodeId": "140496923036688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496923036688": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496978150112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678656"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496978150560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952678656"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496952679008": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902759904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902760128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902760352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978152352"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978152800"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978153248"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496902759904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679008"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902760128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679008"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496902760352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679008"}], "returnType": {"nodeId": "140497028249760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978152352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679008"}, {"nodeId": "A"}, {"nodeId": "140496923037360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496923037360": {"type": "Union", "content": {"items": [{"nodeId": "140497028249760"}, {"nodeId": "N"}]}}, "140496978152800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679008"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496978153248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679008"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496952679712": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978159968"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496978159968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952679712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927339648": {"type": "Concrete", "content": {"module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496865213488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911203712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496873059520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496877099648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911394272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496911392704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496864907712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496902968864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496910896256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496910898048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496910901632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496910898272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140496865202512"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496865213488": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496911203712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927254544"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927254544": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496873059520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496898202800"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496898202800": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496877099648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496881599424"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881599424": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496911394272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496944827744"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496944827744": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496911392704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496864860016"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496864860016": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496864907712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496865201392"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496865201392": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496902968864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496865201840"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496865201840": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496910896256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496865201952"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496865201952": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496910898048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496865202848"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496865202848": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496910901632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496865202960"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496865202960": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496910898272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496865203072"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496865203072": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496865202512": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140497028250464"}]}}, "140496927340000": {"type": "Protocol", "content": {"module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "content": {"name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}}, "140496932080448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496864681360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995270240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927569088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932127680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932127792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496864681360": {"type": "Tuple", "content": {"items": []}}, "140496995270240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932080448"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140496927569088": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496932127680": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496932127792": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932080800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932081152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932081504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496864374656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932081152"}], "isAbstract": false}}, "140496864374656": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932081856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496864371632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080800"}], "isAbstract": false}}, "140496864371632": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932092416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932082208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496864370624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932081504"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080800"}], "isAbstract": false}}, "140496864370624": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932083264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932082560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496864363232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080800"}], "isAbstract": false}}, "140496864363232": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932082912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869423728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080800"}], "isAbstract": false}}, "140496869423728": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932083616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869418240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932378880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927566848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496869418240": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932378880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881208784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379232"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379232"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379232"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932131600"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881208784": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932379232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881072976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881072976": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927568864": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932131376": {"type": "Union", "content": {"items": [{"nodeId": "140496932379232"}, {"nodeId": "N"}]}}, "140496932131600": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496927568752": {"type": "Union", "content": {"items": [{"nodeId": "140496932379232"}, {"nodeId": "N"}]}}, "140496927566848": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932083968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869410624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932378880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927567744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496869410624": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927567744": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932084320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868889696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868889696": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932379584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881071632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881071632": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932131712": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932084672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868887568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927567856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868887568": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496927567856": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932085024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868885664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868885664": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932085376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868669952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868669952": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932085728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868667040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927567968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932285152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868667040": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927567968": {"type": "Union", "content": {"items": [{"nodeId": "140496932281632"}, {"nodeId": "140496932280224"}, {"nodeId": "140496932280928"}]}}, "140496932281632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881926656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932282688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496881926656": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932282688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932280224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876878112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932282688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496876878112": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932280928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881933936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932282688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496881933936": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932285152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932086080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868663904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868663904": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927568080": {"type": "Union", "content": {"items": [{"nodeId": "140496932281632"}, {"nodeId": "140496932280224"}, {"nodeId": "140496932280928"}]}}, "140496927568192": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932086432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868660544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868660544": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932086784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496868656848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496868656848": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932087136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873634528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873634528": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932087488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873632288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873632288": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932087840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873630160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873630160": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932380288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881067712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131824"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881067712": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932131824": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932088192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873627248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873627248": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932088544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873626128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927563488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873626128": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927568304": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496927563488": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932088896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873622544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932378528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873622544": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932378528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881213376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932378176"}], "isAbstract": false}}, "140496881213376": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932131152": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932131264": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932378176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932089248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873435120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873435120": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927568528": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932089600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873434112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379936"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873434112": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932379936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881069616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881069616": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932131488": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932089952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873431760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927568640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379936"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873431760": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927568640": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932090304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873430528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873430528": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932090656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873429632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873429632": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932091008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873428400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496873428400": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932091360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496932091712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496932092064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496932092768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873425264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932284096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873425264": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932284096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932093120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873190480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932285152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873190480": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932093472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873191824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932290080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873191824": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932290080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932274240": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873189472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932378880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873189472": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932274592": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873187792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873187792": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932274944": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873185328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932128352"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873185328": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932128352": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932275296": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496873178720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496873178720": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932275648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872894336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932377824"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496872894336": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932377824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881214944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881214944": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932276000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872893216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932377824"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496872893216": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932276352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872883920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932377824"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496872883920": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932276704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496872711536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932377824"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496872711536": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932277056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877727280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877727280": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932277408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877725376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927567408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877725376": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496927567408": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932277760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877725936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877725936": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932278112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877723584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932373952"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877723584": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932373952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932278464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877304544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932379584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877304544": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932278816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877304432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932128128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877304432": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932128128": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932279168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877295808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877295808": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932279520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877291888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932128016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932130592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877291888": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932128016": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932130592": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028251168"}]}}, "140496932279872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877114016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932281632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496877114016": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932280576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876873856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932130816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932130928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131040"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496876873856": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932130816": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932130928": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932131040": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932281280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881929680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932282688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496881929680": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932281984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881613536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932282688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496881613536": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932282336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881611296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932282688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932092416"}], "isAbstract": false}}, "140496881611296": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932283040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932282688"}], "isAbstract": false}}, "140496932283392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932282688"}], "isAbstract": false}}, "140496932283744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932282688"}], "isAbstract": false}}, "140496932284448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932284096"}], "isAbstract": false}}, "140496932284800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932284096"}], "isAbstract": false}}, "140496932285504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932285856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932286208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932286560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932286912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932287264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932287616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932287968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932288320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932288672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932289024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932289376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932289728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932285152"}], "isAbstract": false}}, "140496932372544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932290080"}], "isAbstract": false}}, "140496932372896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932290080"}], "isAbstract": false}}, "140496932373248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932290080"}], "isAbstract": false}}, "140496932373600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932290080"}], "isAbstract": false}}, "140496932374304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932374656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932375008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932375360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932375712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932376064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932376416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932376768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932377120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932377472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932373952"}], "isAbstract": false}}, "140496932380640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881065248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932381344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932083264"}], "isAbstract": false}}, "140496881065248": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932381344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881063904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932380992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932131936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932083264"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496881063904": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932380992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140496932080448"}], "isAbstract": false}}, "140496932131936": {"type": "Union", "content": {"items": [{"nodeId": "140496932092416"}, {"nodeId": "N"}]}}, "140496932381696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881063568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881063568": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932382048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881063344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932132048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881063344": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932132048": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140496932382400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881062336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380992"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881062336": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932382752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881060096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932132384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881060096": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496932132384": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932383104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881060208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932092416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380992"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932132496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881060208": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932132496": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932383456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881058304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932092416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380992"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380992"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881058304": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932383808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881057856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932132608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496932132720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496881057856": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496932132608": {"type": "Union", "content": {"items": [{"nodeId": "140496932380992"}, {"nodeId": "N"}]}}, "140496932132720": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496932384160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496885939696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496932380992"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932380992"}], "isAbstract": false}}, "140496885939696": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496952686752": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956810592"}, {"nodeId": "140496956816224"}], "isAbstract": false}}, "140496952687104": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978380384"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978380832"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978381280"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978381728"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978382176"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978382624"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978383072"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978383520"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978383968"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931852960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978384416"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978384864"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978385312"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978385760"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978386208"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978386656"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931855648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978387104"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978387552"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978388000"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496886079200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978388896"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496978380384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496978380832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978381280": {"type": "Function", "content": {"typeVars": [".0.140496978381280"], "argTypes": [{"nodeId": ".0.140496978381280"}], "returnType": {"nodeId": ".0.140496978381280"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496978381280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952687104"}, "def": "140496978381280", "variance": "INVARIANT"}}, "140496978381728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140496918866272"}, {"nodeId": "140496918866384"}, {"nodeId": "140496918866496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496918866272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496918866384": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496918866496": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496978382176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978382624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978383072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978383520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978383968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931852960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496978384416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496978384864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496978385312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978385760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978386208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140496918866608"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496918866608": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496978386656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931855648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496978387104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956570816"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496978387552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140496918866720"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496918866720": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496978388000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496886079200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978388896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687104"}, {"nodeId": "140496918866832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140496918866832": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496952687456": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978389344"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978389792"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978390240"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978390688"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140496952687104"}], "isAbstract": false}}, "140496978389344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687456"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978389792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687456"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496918866944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496918866944": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496978390240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687456"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140496918867056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496918867056": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496978390688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687456"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496918867168"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496918867168": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496952687808": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952687456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978391136"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978391584"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978392032"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978392480"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978392928"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978393376"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140496952687104"}], "isAbstract": false}}, "140496978391136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687808"}], "returnType": {"nodeId": "140496952687456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978391584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687808"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496978392032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687808"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496978392480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687808"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496978392928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687808"}, {"nodeId": "140496918867280"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496918867280": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496978393376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952687808"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496952688160": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927396736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978393824"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496886074048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496978394720"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999285024"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999285472"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140496952687456"}, {"nodeId": "140496956559904"}], "isAbstract": false}}, "140496927396736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932007136"}}}, "140496932007136": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496932010272"}]}}, "140496932010272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496931996048": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "140496927327680", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496927327680", "args": [{"nodeId": "140496956802144"}]}]}}, "140496927327680": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496890068352"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140496927327680"}], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__fspath__"]}}, ".1.140496927327680": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496927327680", "variance": "COVARIANT"}}, "140496890068352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927327680", "args": [{"nodeId": ".1.140496927327680"}]}], "returnType": {"nodeId": ".1.140496927327680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978393824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952688160"}, {"nodeId": "140496918867392"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}, {"nodeId": "140496918867616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140496918867392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932007136"}}}, "140496918867616": {"type": "Union", "content": {"items": [{"nodeId": "140496918867504"}, {"nodeId": "N"}]}}, "140496918867504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496948888736"}}}, "140496948888736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496886074048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952688160"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496978394720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952688160"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496999285024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952688160"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496999285472": {"type": "Function", "content": {"typeVars": [".0.140496999285472"], "argTypes": [{"nodeId": ".0.140496999285472"}], "returnType": {"nodeId": ".0.140496999285472"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496999285472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952688160"}, "def": "140496999285472", "variance": "INVARIANT"}}, "140496931422272": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999285920"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999286368"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999286816"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999287264"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999287712"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140496952687808"}, {"nodeId": "140496956559904"}], "isAbstract": false}}, "140496999285920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422272"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140496999286368": {"type": "Function", "content": {"typeVars": [".0.140496999286368"], "argTypes": [{"nodeId": ".0.140496999286368"}], "returnType": {"nodeId": ".0.140496999286368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496999286368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931422272"}, "def": "140496999286368", "variance": "INVARIANT"}}, "140496999286816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422272"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496999287264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422272"}], "returnType": {"nodeId": "140496956802848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496999287712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422272"}, {"nodeId": "140496918867952"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496918867952": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496931422624": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999288160"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999288608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999289056"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140496952687808"}, {"nodeId": "140496956559904"}], "isAbstract": false}}, "140496999288160": {"type": "Function", "content": {"typeVars": [".0.140496999288160"], "argTypes": [{"nodeId": ".0.140496999288160"}], "returnType": {"nodeId": ".0.140496999288160"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496999288160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931422624"}, "def": "140496999288160", "variance": "INVARIANT"}}, "140496999288608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422624"}, {"nodeId": "140496952687456"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140496999289056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422624"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496931422976": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999289504"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999289952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999290400"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140496952687808"}, {"nodeId": "140496956559904"}], "isAbstract": false}}, "140496999289504": {"type": "Function", "content": {"typeVars": [".0.140496999289504"], "argTypes": [{"nodeId": ".0.140496999289504"}], "returnType": {"nodeId": ".0.140496999289504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496999289504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931422976"}, "def": "140496999289504", "variance": "INVARIANT"}}, "140496999289952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422976"}, {"nodeId": "140496952687456"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140496999290400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931422976"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496931423328": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999290848"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999291296"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140496931422624"}, {"nodeId": "140496931422976"}], "isAbstract": false}}, "140496999290848": {"type": "Function", "content": {"typeVars": [".0.140496999290848"], "argTypes": [{"nodeId": ".0.140496999290848"}], "returnType": {"nodeId": ".0.140496999290848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496999290848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931423328"}, "def": "140496999290848", "variance": "INVARIANT"}}, "140496999291296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931423328"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496931423680": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999291744"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999292192"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140496952687808"}], "isAbstract": false}}, "140496999291744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931423680"}, {"nodeId": "140496952687456"}, {"nodeId": "140496952687456"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140496999292192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931423680"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496931424032": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927630368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927396848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999292640"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999293088"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999293536"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999293984"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999294432"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999294880"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999295328"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999295776"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140496952687104"}], "isAbstract": false}}, "140496927630368": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496927396848": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496999292640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496999293088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496999293536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}], "returnType": {"nodeId": "140496956559904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496999293984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496999294432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496999294880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496999295328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496999295776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424032"}, {"nodeId": "140496918868400"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496918868400": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496931424384": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999296224"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881224160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881224608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881224832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881225280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999298464"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999298912"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999299360"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999299808"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999300256"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496999300704"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998629664"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998630112"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140496931424032"}, {"nodeId": "140496956560256"}], "isAbstract": false}}, "140496999296224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}, {"nodeId": "140496956559552", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496918868512"}, {"nodeId": "140496918868624"}, {"nodeId": "140496918868736"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140496918868512": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496918868624": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496918868736": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496881224160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}], "returnType": {"nodeId": "140496956559904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881224608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881224832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881225280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496999298464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}, {"nodeId": "140496918868848"}, {"nodeId": "140496918868960"}, {"nodeId": "140496918869072"}, {"nodeId": "140496918869184"}, {"nodeId": "140496918869296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140496918868848": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496918868960": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496918869072": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496918869184": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496918869296": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496999298912": {"type": "Function", "content": {"typeVars": [".0.140496999298912"], "argTypes": [{"nodeId": ".0.140496999298912"}], "returnType": {"nodeId": ".0.140496999298912"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496999298912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931424384"}, "def": "140496999298912", "variance": "INVARIANT"}}, "140496999299360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496999299808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496999300256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496999300704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496998629664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496998630112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424384"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140496931424736": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998630560"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998631008"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140496931424384"}], "isAbstract": false}}, "140496998630560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424736"}, {"nodeId": "140496918869520"}, {"nodeId": "140496918869632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140496918869520": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496918869632": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496998631008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931424736"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927338944": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998631456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998631904"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881353440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998632800"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140496931903744"}], "isAbstract": false}}, "140496998631456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927338944"}, {"nodeId": "140496918869744"}, {"nodeId": "140497028239552"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140496918869744": {"type": "Union", "content": {"items": [{"nodeId": "140496931903744"}, {"nodeId": "N"}]}}, "140496931903744": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969249760"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869194240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969250656"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969251104"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969251552"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": true}}, "140496969249760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903744"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140496869194240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903744"}, {"nodeId": "140496956570816"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140496969250656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969251104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903744"}], "returnType": {"nodeId": "140496914814272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914814272": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496969251552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903744"}, {"nodeId": "140496914814496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140496914814496": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496998631904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927338944"}, {"nodeId": "140496918869856"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140496918869856": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956801792"}]}}, "140496881353440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927338944"}], "returnType": {"nodeId": "140496918869968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918869968": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496998632800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927338944"}, {"nodeId": "140496918870192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496918870192": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496931429312": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496931430016": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881797824"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931429664"}], "isAbstract": true}}, "140496881797824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931430016"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496931430368": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998636384"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998636832"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881851232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998637728"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881829248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931429664"}], "isAbstract": true}}, "140496998636384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931430368"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496998636832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931430368"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919077584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496919077584": {"type": "Union", "content": {"items": [{"nodeId": "140496952672672"}, {"nodeId": "N"}]}}, "140496881851232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931430368"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919077696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496919077696": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496998637728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931430368"}, {"nodeId": "140496952674080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140496881829248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919077808"}, {"nodeId": "140496919078032"}], "returnType": {"nodeId": "140496952672672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140496919077808": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496956801792"}, {"nodeId": "140496932082208"}, {"nodeId": "140496932082912"}, {"nodeId": "140496932082560"}]}}, "140496919078032": {"type": "Union", "content": {"items": [{"nodeId": "140496956570816"}, {"nodeId": "140496919077920"}]}}, "140496919077920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496957225360": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496927327680", "args": [{"nodeId": "140496956801792"}]}]}}, "140496931430720": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876929088"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931430368"}], "isAbstract": true}}, "140496876929088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931430720"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496931431072": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998639072"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998639520"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998639968"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998640416"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140496931430016"}, {"nodeId": "140496931430720"}], "isAbstract": true}}, "140496998639072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431072"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496998639520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431072"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140496998639968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431072"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919078144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496919078144": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496998640416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431072"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496931431424": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998640864"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998641312"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998641760"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140496931429312"}], "isAbstract": false}}, "140496998640864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431424"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919078368"}], "returnType": {"nodeId": "140496919078480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140496919078368": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919078480": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496998641312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496998641760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431424"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919078592"}, {"nodeId": "140496919078704"}], "returnType": {"nodeId": "140496919078816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140496919078592": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919078704": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496919078816": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496931431776": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998642208"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998642656"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998643104"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998643552"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140496931429312"}], "isAbstract": false}}, "140496998642208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431776"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919078928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496919078928": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496998642656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431776"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919079264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496919079264": {"type": "Tuple", "content": {"items": [{"nodeId": "140496919079040"}, {"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}]}}, "140496919079040": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496998643104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496998643552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931431776"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919079376"}], "returnType": {"nodeId": "140496919079488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140496919079376": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496919079488": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496931432128": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998644000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998644448"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998644896"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496998645344"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140496931430016"}, {"nodeId": "140496931430720"}], "isAbstract": true}}, "140496998644000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432128"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140496998644448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432128"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496998644896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432128"}, {"nodeId": "140496919079600"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140496919079600": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496998645344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432128"}, {"nodeId": "140496919079712"}], "returnType": {"nodeId": "140496952674080"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140496919079712": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931432480": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876933568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876934016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876934688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876934240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": true}}, "140496876933568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432480"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956559552", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140496876934016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432480"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140496876934688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432480"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496876934240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432480"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931432832": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876935584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876936032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876936256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876936928"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919077248"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496876936480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876937152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876937376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876937600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140496876935584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496876936032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496876936256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496931432832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496876936928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931432832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140496919077248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496973730464"}, {"nodeId": "140496973730912"}, {"nodeId": "140496973731360"}, {"nodeId": "140496973731808"}, {"nodeId": "140496973732256"}, {"nodeId": "140496973732704"}, {"nodeId": "140496973733152"}]}}, "140496973730464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919079936"}, {"nodeId": "140497028250464"}, {"nodeId": "140496919080048"}, {"nodeId": "140496919080160"}, {"nodeId": "140496919080272"}], "returnType": {"nodeId": "140496931424384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919079936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932001536"}}}, "140496932001536": {"type": "Union", "content": {"items": [{"nodeId": "140496932003440"}, {"nodeId": "140496932003552"}, {"nodeId": "140496932001424"}]}}, "140496932003440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932000976"}}}, "140496932000976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496932003552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932003104"}}}, "140496932003104": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496932001424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932005120"}}}, "140496932005120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496919080048": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919080160": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919080272": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496973730912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919080496"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496952688160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919080496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008368"}}}, "140496932008368": {"type": "Union", "content": {"items": [{"nodeId": "140496932008592"}, {"nodeId": "140496932008704"}, {"nodeId": "140496932007360"}]}}, "140496932008592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932006800"}}}, "140496932006800": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496932008704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932009824"}}}, "140496932009824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496932007360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008256"}}}, "140496932008256": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496973731360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919080608"}, {"nodeId": "140496919080944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496931423328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919080608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932006800"}}}, "140496919080944": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496973731808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919081056"}, {"nodeId": "140496919081392"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496931422976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919081056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008256"}}}, "140496919081392": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496973732256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919081504"}, {"nodeId": "140496919081840"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496931422624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919081504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932009824"}}}, "140496919081840": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496973732704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919081952"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956559904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919081952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008368"}}}, "140496973733152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140496919082064"}, {"nodeId": "140496919082176"}, {"nodeId": "140496919082288"}], "returnType": {"nodeId": "140496956559552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496919082064": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919082176": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919082288": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496876936480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496876937152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931432832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496876937376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496876937600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931432832"}, {"nodeId": "140496919082512"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140496919082512": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931433184": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496876939168"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973735840"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973736288"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973736736"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973737184"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140496931432480"}], "isAbstract": true}}, "140496876939168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433184"}], "returnType": {"nodeId": "140496931432832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496973735840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433184"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931422624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140496973736288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433184"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140496973736736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433184"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496973737184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931433184"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927331904": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881849216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881848320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881847872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881847424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881846976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881846752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881846304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881844512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881844736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931431424"}, {"nodeId": "140496931430368"}], "isAbstract": false}}, "140496881849216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919074224"}], "returnType": {"nodeId": "140496919074336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140496919074224": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919074336": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496881848320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919074448"}, {"nodeId": "140496919074560"}], "returnType": {"nodeId": "140496919074672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140496919074448": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919074560": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496919074672": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496881847872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881847424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496952674080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881846976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881846752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881846304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140496881844512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428608"}], "returnType": {"nodeId": "140496919074784"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140496919074784": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496881844736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140496927332256": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881842464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881842912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881842016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881841568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881841120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881840672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881840224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881839104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881838880"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931431424"}, {"nodeId": "140496931430368"}], "isAbstract": false}}, "140496881842464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919074896"}], "returnType": {"nodeId": "140496919075008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140496919074896": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919075008": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496881842912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919075120"}, {"nodeId": "140496919075232"}], "returnType": {"nodeId": "140496919075344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140496919075120": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919075232": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496919075344": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496881842016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881841568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496952674080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881841120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881840672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140496881840224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140496881839104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428608"}], "returnType": {"nodeId": "140496919075456"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140496919075456": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496881838880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952674080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140496927332608": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881837760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881837312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931431424"}], "isAbstract": false}}, "140496881837760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919075568"}], "returnType": {"nodeId": "140496919075680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140496919075568": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919075680": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496881837312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919075792"}, {"nodeId": "140496919075904"}], "returnType": {"nodeId": "140496919076016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140496919075792": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919075904": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496919076016": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496931428960": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881835744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881835296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881836192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881834848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496881835744": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140496881835296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927331200"}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": "140496931428256"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140496927331200": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927630704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970007264"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881471488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496927630704": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496970007264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927331200"}, {"nodeId": "140496919071088"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140496919071088": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496881471488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927331200"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931428256": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970009504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970009952"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970010400"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140496931427904"}], "isAbstract": false}}, "140496970009504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428256"}, {"nodeId": "140496927337888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496927337888": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940689984"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940690432"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940690880"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496889739776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940691776"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940692224"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940694912"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940810304"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940810752"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940811200"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940811648"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940812096"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940812544"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940812992"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940813440"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940813888"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940814784"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940815232"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940815680"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940816128"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923556240"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940819712"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940820160"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940820608"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940821056"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940821504"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940821952"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940823296"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940823744"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940824192"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940824640"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940825088"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940825536"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496889826880"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948707840"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948708288"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948708736"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948709184"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948709632"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948710080"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948710528"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948711424"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140496927336832"}], "isAbstract": false}}, "140496940689984": {"type": "Function", "content": {"typeVars": [".0.140496940689984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496923722800"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140496940689984"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140496923722800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, ".0.140496940689984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940689984", "variance": "INVARIANT"}}, "140496940690432": {"type": "Function", "content": {"typeVars": [".0.140496940690432"], "argTypes": [{"nodeId": ".0.140496940690432"}], "returnType": {"nodeId": ".0.140496940690432"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496940690432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940690432", "variance": "INVARIANT"}}, "140496940690880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923723024"}, {"nodeId": "140496923723136"}, {"nodeId": "140496923723248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496923723024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496923723136": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496923723248": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496889739776": {"type": "Function", "content": {"typeVars": [".0.140496889739776"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140496889739776"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140496889739776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496889739776", "variance": "INVARIANT"}}, "140496940691776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496923723360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140496923723360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927627568"}}}, "140496927627568": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496940692224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140496940694912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940810304": {"type": "Function", "content": {"typeVars": [".0.140496940810304"], "argTypes": [{"nodeId": ".0.140496940810304"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": ".0.140496940810304"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140496940810304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940810304", "variance": "INVARIANT"}}, "140496940810752": {"type": "Function", "content": {"typeVars": [".0.140496940810752"], "argTypes": [{"nodeId": ".0.140496940810752"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": ".0.140496940810752"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140496940810752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940810752", "variance": "INVARIANT"}}, "140496940811200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940811648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940812096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940812544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940812992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940813440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940813888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940814784": {"type": "Function", "content": {"typeVars": [".0.140496940814784"], "argTypes": [{"nodeId": ".0.140496940814784"}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": ".0.140496940814784"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496940814784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940814784", "variance": "INVARIANT"}}, "140496940815232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140496940815680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140496923723472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923723472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927627568"}}}, "140496940816128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140496923556240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940816576"}, {"nodeId": "140496940817024"}, {"nodeId": "140496940817472"}, {"nodeId": "140496940817920"}, {"nodeId": "140496940818368"}, {"nodeId": "140496940818816"}, {"nodeId": "140496940819264"}]}}, "140496940816576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923723696"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923723808"}, {"nodeId": "140496923723920"}, {"nodeId": "140496923724032"}], "returnType": {"nodeId": "140496931424384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923723696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932001536"}}}, "140496923723808": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923723920": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923724032": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940817024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923724256"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496952688160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923724256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008368"}}}, "140496940817472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923724368"}, {"nodeId": "140496923724704"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496931423328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923724368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932006800"}}}, "140496923724704": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496940817920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923724816"}, {"nodeId": "140496923725152"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496931422976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923724816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008256"}}}, "140496923725152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496940818368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923725264"}, {"nodeId": "140496923725600"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496931422624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923725264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932009824"}}}, "140496923725600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140496940818816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923725712"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956559904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923725712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496932008368"}}}, "140496940819264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923725824"}, {"nodeId": "140496923725936"}, {"nodeId": "140496923726048"}], "returnType": {"nodeId": "140496956559552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140496923725824": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923725936": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923726048": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940819712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940820160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940820608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940821056": {"type": "Function", "content": {"typeVars": [".0.140496940821056"], "argTypes": [{"nodeId": ".0.140496940821056"}], "returnType": {"nodeId": ".0.140496940821056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496940821056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940821056", "variance": "INVARIANT"}}, "140496940821504": {"type": "Function", "content": {"typeVars": [".0.140496940821504"], "argTypes": [{"nodeId": ".0.140496940821504"}, {"nodeId": "140496923726272"}], "returnType": {"nodeId": ".0.140496940821504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140496940821504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940821504", "variance": "INVARIANT"}}, "140496923726272": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496927336832"}]}}, "140496927336832": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889519616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889520064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889730816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889730592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889730368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889730144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889729920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889729696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940547008"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940547456"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940679232"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940679680"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940680128"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940680576"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940681024"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940681472"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940681920"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940682368"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940682816"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940683264"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940683712"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940684160"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940684608"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940685504"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940685952"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940686400"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940686848"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940687296"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940687744"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889737312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889724992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940689088"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140496927327680", "args": [{"nodeId": "140496956801792"}]}], "isAbstract": false}}, "140496889519616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889520064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889730816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889730592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889730368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889730144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889729920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496889729696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940547008": {"type": "Function", "content": {"typeVars": [".0.140496940547008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496923721904"}], "returnType": {"nodeId": ".0.140496940547008"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140496923721904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, ".0.140496940547008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940547008", "variance": "INVARIANT"}}, "140496940547456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940679232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940679680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140496927336832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940680128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140496927336832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940680576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140496927336832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940681024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140496927336832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940681472": {"type": "Function", "content": {"typeVars": [".0.140496940681472"], "argTypes": [{"nodeId": ".0.140496940681472"}, {"nodeId": "140496923722016"}], "returnType": {"nodeId": ".0.140496940681472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496940681472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940681472", "variance": "INVARIANT"}}, "140496923722016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496940681920": {"type": "Function", "content": {"typeVars": [".0.140496940681920"], "argTypes": [{"nodeId": ".0.140496940681920"}, {"nodeId": "140496923722128"}], "returnType": {"nodeId": ".0.140496940681920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496940681920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940681920", "variance": "INVARIANT"}}, "140496923722128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496940682368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940682816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940683264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940683712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940684160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940684608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140496923722240"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140496923722240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496940685504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336832"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140496940685952": {"type": "Function", "content": {"typeVars": [".0.140496940685952"], "argTypes": [{"nodeId": ".0.140496940685952"}, {"nodeId": "140496923722352"}], "returnType": {"nodeId": ".0.140496940685952"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140496940685952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940685952", "variance": "INVARIANT"}}, "140496923722352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496940686400": {"type": "Function", "content": {"typeVars": [".0.140496940686400"], "argTypes": [{"nodeId": ".0.140496940686400"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496940686400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140496940686400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940686400", "variance": "INVARIANT"}}, "140496940686848": {"type": "Function", "content": {"typeVars": [".0.140496940686848"], "argTypes": [{"nodeId": ".0.140496940686848"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496940686848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140496940686848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940686848", "variance": "INVARIANT"}}, "140496940687296": {"type": "Function", "content": {"typeVars": [".0.140496940687296"], "argTypes": [{"nodeId": ".0.140496940687296"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496940687296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140496940687296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940687296", "variance": "INVARIANT"}}, "140496940687744": {"type": "Function", "content": {"typeVars": [".0.140496940687744"], "argTypes": [{"nodeId": ".0.140496940687744"}, {"nodeId": "140496923722464"}], "returnType": {"nodeId": ".0.140496940687744"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140496940687744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496940687744", "variance": "INVARIANT"}}, "140496923722464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496889737312": {"type": "Function", "content": {"typeVars": [".0.140496889737312"], "argTypes": [{"nodeId": ".0.140496889737312"}], "returnType": {"nodeId": "140497028247296", "args": [{"nodeId": ".0.140496889737312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496889737312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496889737312", "variance": "INVARIANT"}}, "140496889724992": {"type": "Function", "content": {"typeVars": [".0.140496889724992"], "argTypes": [{"nodeId": ".0.140496889724992"}], "returnType": {"nodeId": ".0.140496889724992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496889724992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336832"}, "def": "140496889724992", "variance": "INVARIANT"}}, "140496940689088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140496940821952": {"type": "Function", "content": {"typeVars": [".0.140496940821952"], "argTypes": [{"nodeId": ".0.140496940821952"}, {"nodeId": "140496923726384"}], "returnType": {"nodeId": ".0.140496940821952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140496940821952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940821952", "variance": "INVARIANT"}}, "140496923726384": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496927336832"}]}}, "140496940823296": {"type": "Function", "content": {"typeVars": [".0.140496940823296"], "argTypes": [{"nodeId": ".0.140496940823296"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": ".0.140496940823296"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140496940823296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496940823296", "variance": "INVARIANT"}}, "140496940823744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940824192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923726496"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140496923726496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496940824640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923726608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140496923726608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496940825088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140496940825536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140496889826880": {"type": "Function", "content": {"typeVars": [".0.140496889826880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140496889826880"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140496889826880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496889826880", "variance": "INVARIANT"}}, "140496948707840": {"type": "Function", "content": {"typeVars": [".0.140496948707840"], "argTypes": [{"nodeId": ".0.140496948707840"}], "returnType": {"nodeId": ".0.140496948707840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496948707840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496948707840", "variance": "INVARIANT"}}, "140496948708288": {"type": "Function", "content": {"typeVars": [".0.140496948708288"], "argTypes": [{"nodeId": ".0.140496948708288"}], "returnType": {"nodeId": ".0.140496948708288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496948708288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927337888"}, "def": "140496948708288", "variance": "INVARIANT"}}, "140496948708736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496948709184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923726720"}, {"nodeId": "140496923726832"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140496923726720": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923726832": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948709632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923726944"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140496923726944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496948710080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496956570816"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140496948710528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496956801792"}, {"nodeId": "140496923727056"}, {"nodeId": "140496923727168"}, {"nodeId": "140496923727280"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140496923727056": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923727168": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923727280": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948711424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927337888"}, {"nodeId": "140496923727392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140496923727392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496970009952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428256"}, {"nodeId": "140496919071312"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140496919071312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496970010400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931428256"}, {"nodeId": "140496919071424"}], "returnType": {"nodeId": "140496927327680", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496919071424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496931427904": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881474848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881473952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881473728"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919069856"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881473504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881472832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881473280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881472608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881472384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881472160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881471040"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": true}}, "140496881474848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919070192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140496919070192": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496881473952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}, {"nodeId": "140496919070304"}], "returnType": {"nodeId": "140496927327680", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140496919070304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496881473728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931427904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140496919069856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496969395872"}, {"nodeId": "140496969396320"}]}}, "140496969395872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496927331200"}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": "140496931427904"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140496969396320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140496919070528"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": "140496931427904"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140496919070528": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496881473504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919070752"}], "returnType": {"nodeId": "140496931428256"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140496919070752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496957225360"}}}, "140496881472832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}], "returnType": {"nodeId": "140496931425088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931425088": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940342336"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940342784"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940343232"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940343680"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940344128"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881515008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140496940342336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425088"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496940342784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425088"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940343232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425088"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940343680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425088"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496940344128": {"type": "Function", "content": {"typeVars": [".-1.140496940344128"], "argTypes": [{"nodeId": "140496931425088"}, {"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940344128"}], "returnType": {"nodeId": "140496918870976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140496940344128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940344128", "variance": "INVARIANT"}}, "140496918870976": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140496940344128"}]}}, "140496881515008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425088"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496918871088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918871088": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}]}}, "140496881473280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}], "returnType": {"nodeId": "140496931426848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931426848": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969388704"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969389152"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881502016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881501344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496953077184"}]}], "isAbstract": false}}, "140496969388704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931426848"}, {"nodeId": "140496919068960"}], "returnType": {"nodeId": "140496919069744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919068960": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496919069744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927396400"}}}, "140496927396400": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496969389152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931426848"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496931426848"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140496881502016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931426848"}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881501344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931426848"}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496953077184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927396400"}}}, "140496881472608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881472384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}], "returnType": {"nodeId": "140496919070864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919070864": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496927339296"}]}, {"nodeId": "N"}]}}, "140496927339296": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969392736"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969393184"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969393632"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927396624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927394832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931427904"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496927337184"}], "isAbstract": false}}, "140496969392736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927339296"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140496969393184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927339296"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969393632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927339296"}], "returnType": {"nodeId": "140496927327680", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927396624": {"type": "Union", "content": {"items": [{"nodeId": "140496931427552"}, {"nodeId": "N"}]}}, "140496931427552": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969394080"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496969394080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427552"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140496927394832": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496927337184": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140496927336832"}], "isAbstract": false}}, "140496881472160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}], "returnType": {"nodeId": "140496919070976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919070976": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496881471040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427904"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881836192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919076128"}, {"nodeId": "140496919076240"}], "returnType": {"nodeId": "140496919076352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140496919076128": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919076240": {"type": "Union", "content": {"items": [{"nodeId": "140496952674080"}, {"nodeId": "N"}]}}, "140496919076352": {"type": "Union", "content": {"items": [{"nodeId": "140496931428608"}, {"nodeId": "N"}]}}, "140496881834848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919076464"}], "returnType": {"nodeId": "140496919076576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140496919076464": {"type": "Union", "content": {"items": [{"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "N"}]}}, "140496919076576": {"type": "Union", "content": {"items": [{"nodeId": "140496931429664"}, {"nodeId": "N"}]}}, "140496927332960": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973901024"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881834176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931431776"}], "isAbstract": false}}, "140496973901024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927332960"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919076800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140496919076800": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}]}}, "140496881834176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496919077024"}], "returnType": {"nodeId": "140496918872352"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140496919077024": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}]}}, "140496918872352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931431776"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496927333312": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973901920"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140496931432128"}, {"nodeId": "140496931431072"}], "isAbstract": false}}, "140496973901920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927333312"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956570816"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140496927333664": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931432128"}, {"nodeId": "140496931431072"}], "isAbstract": false}}, "140496927334016": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973902368"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973902816"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973903264"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973903712"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973904160"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973904608"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496973905056"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140496931430720"}], "isAbstract": false}}, "140496973902368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140496973902816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140496919077136"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140496919077136": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496973903264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496973903712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140496931428608"}], "returnType": {"nodeId": "140496952674080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140496973904160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140496952674080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140496973904608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140496973905056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927334016"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496931727040": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931435648"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931434240"}], "isAbstract": false}}, "140496931727392": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496931728448": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956811648"}], "isAbstract": false}}, "140496931728800": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974066208"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919482368"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496931728800"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496931728800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496931728800", "variance": "INVARIANT"}}, "140496974066208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931728800", "args": [{"nodeId": ".1.140496931728800"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140496919482368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496974066656"}, {"nodeId": "140496974067104"}]}}, "140496974066656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140496931728800", "args": [{"nodeId": ".1.140496931728800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140496974067104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496931728800", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140496952686048": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969188512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969189408"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969189856"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969190304"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969190752"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969191200"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969191648"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969192096"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969192544"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969192992"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923722688"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140496952686048"}], "bases": [{"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}]}], "isAbstract": false}}, ".1.140496952686048": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952686048", "variance": "INVARIANT"}}, "140496969188512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": "140497028249056", "args": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140496969189408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}], "returnType": {"nodeId": ".1.140496952686048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140496969189856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969190304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": ".1.140496952686048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496969190752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": ".1.140496952686048"}], "returnType": {"nodeId": ".1.140496952686048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496969191200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496969191648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": ".1.140496952686048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496969192096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496969192544": {"type": "Function", "content": {"typeVars": [".-1.140496969192544", ".-2.140496969192544"], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140496969192544"}, {"nodeId": ".-2.140496969192544"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496923727952"}, {"nodeId": "140496923728064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496969192544": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496969192544", "variance": "INVARIANT"}}, ".-2.140496969192544": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496969192544", "variance": "INVARIANT"}}, "140496923727952": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".-1.140496969192544"}]}}, "140496923728064": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".-2.140496969192544"}]}}, "140496969192992": {"type": "Function", "content": {"typeVars": [".-1.140496969192992", ".-2.140496969192992"], "argTypes": [{"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": ".-1.140496969192992"}, {"nodeId": ".-2.140496969192992"}]}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496923728176"}, {"nodeId": "140496923728288"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140496969192992": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496969192992", "variance": "INVARIANT"}}, ".-2.140496969192992": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496969192992", "variance": "INVARIANT"}}, "140496923728176": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".-1.140496969192992"}]}}, "140496923728288": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".-2.140496969192992"}]}}, "140496923722688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496969193440"}, {"nodeId": "140496969193888"}]}}, "140496969193440": {"type": "Function", "content": {"typeVars": [".0.140496969193440"], "argTypes": [{"nodeId": ".0.140496969193440"}, {"nodeId": "140497028248704", "args": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}]}], "returnType": {"nodeId": ".0.140496969193440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496969193440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, "def": "140496969193440", "variance": "INVARIANT"}}, "140496969193888": {"type": "Function", "content": {"typeVars": [".0.140496969193888"], "argTypes": [{"nodeId": ".0.140496969193888"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496923728736"}]}], "returnType": {"nodeId": ".0.140496969193888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140496969193888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952686048", "args": [{"nodeId": ".1.140496952686048"}]}, "def": "140496969193888", "variance": "INVARIANT"}}, "140496923728736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496952686048"}, {"nodeId": ".1.140496952686048"}]}}, "140496932386272": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496890248576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890068576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890067904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890067008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890066784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890064768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890066336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890066560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890065888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890066112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890065440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890065664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890064992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890065216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890060736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890063200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890063648"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250816"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}], "isAbstract": false}}, "140496890248576": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890068576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923728960"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923728960": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890067904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729072"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729072": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890067008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729184"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729184": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890066784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729296"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729296": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890064768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729408": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890066336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729520"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729520": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890066560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729632"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729632": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890065888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729744"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729744": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890066112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729856"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729856": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890065440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923729968"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923729968": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890065664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923730080"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923730080": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890064992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923730192"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923730192": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890065216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923730304"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923730304": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890060736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923730416"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923730416": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890063200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923730528"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923730528": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890063648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923730640"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923730640": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496952686400": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890058944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890056256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965028768"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965029216"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965029664"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965030112"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965030560"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965031008"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965031456"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496952686400"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496952686400": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952686400", "variance": "INVARIANT"}}, "140496890058944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}], "returnType": {"nodeId": ".1.140496952686400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496890056256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}], "returnType": {"nodeId": ".1.140496952686400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496965028768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496965029216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140496965029664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140496965030112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496965030560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496923731088"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140496923731088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927627568"}}}, "140496965031008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496952686400"}]}], "returnType": {"nodeId": ".1.140496952686400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496965031456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496927328032": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496890486384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890016512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890015392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890015616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890014944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890014720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890014048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890013824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890012480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890011808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890011136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890010464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496890486384": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890016512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923731424"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923731424": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890015392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923731536"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923731536": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890015616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923731648"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923731648": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890014944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923731760"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923731760": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890014720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923731872"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923731872": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890014048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923731984"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923731984": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890013824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923732096"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923732096": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923732208"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923732208": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890011808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923732320"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923732320": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890011136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923732432"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923732432": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496890010464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923732544"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923732544": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496927328384": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496890488064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890008896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890007104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890006880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890005984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890006432"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}], "isAbstract": false}}, "140496890488064": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890008896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923733104"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923733104": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890007104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923733216"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923733216": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890006880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923733328"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923733328": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890005984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923733440"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923733440": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890006432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923733552"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923733552": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496927328736": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496890494448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889984192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496889982848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496890494448": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496889984192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923970800"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923970800": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496889982848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496923970912"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923970912": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496927329088": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965605344"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965605792"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965606240"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140496927329088"}], "bases": [{"nodeId": "140497028243776", "args": [{"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496927329088"}]}]}, {"nodeId": "140496931729152", "args": [{"nodeId": "140496927329088", "args": [{"nodeId": ".1.140496927329088"}]}]}], "isAbstract": false}}, ".1.140496927329088": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496927329088", "variance": "INVARIANT"}}, "140496965605344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927329088", "args": [{"nodeId": ".1.140496927329088"}]}], "returnType": {"nodeId": "140496952686400", "args": [{"nodeId": ".1.140496927329088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496965605792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927329088", "args": [{"nodeId": ".1.140496927329088"}]}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140496965606240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927329088", "args": [{"nodeId": ".1.140496927329088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927329440": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965736416"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965736864"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140496931424384"}], "isAbstract": false}}, "140496965736416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927329440"}, {"nodeId": "140496931424384"}, {"nodeId": "140496952682880", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140496952682880": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927625328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927626784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927258240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952717744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952717856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496923182240"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944468864"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944468416"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944467968"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944467520"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944467072"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944466624"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944103488"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496949001600"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496949001152"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496952682880"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496952682880": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952682880", "variance": "INVARIANT"}}, "140496927625328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496927257680": {"type": "Union", "content": {"items": [{"nodeId": "140496927257232"}, {"nodeId": "140497028247296", "args": [{"nodeId": "140496927256896"}]}]}}, "140496927257232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496927256896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496927626784": {"type": "Union", "content": {"items": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "N"}]}}, "140496927258240": {"type": "Union", "content": {"items": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "N"}]}}, "140496952717744": {"type": "Union", "content": {"items": [{"nodeId": "140496956559552", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "N"}]}}, "140496952717856": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "A"}]}}, "140496923182240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496923250688"}, {"nodeId": "140496939832640"}, {"nodeId": "140496939833088"}, {"nodeId": "140496939833536"}, {"nodeId": "140496939833984"}, {"nodeId": "140496939834432"}]}}, "140496923250688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496923367840"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923368064"}, {"nodeId": "140496923368288"}, {"nodeId": "140496923368512"}, {"nodeId": "140496923368736"}, {"nodeId": "140496923368848"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496923369184"}, {"nodeId": "140496923369408"}, {"nodeId": "140496923369520"}, {"nodeId": "140496923369744"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028246944", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496923369856"}, {"nodeId": "140496956801792"}, {"nodeId": "140496923369968"}, {"nodeId": "140496923370080"}, {"nodeId": "140496923370192"}, {"nodeId": "140496923370416"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140496923367840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923368064": {"type": "Union", "content": {"items": [{"nodeId": "140496923367952"}, {"nodeId": "N"}]}}, "140496923367952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923368288": {"type": "Union", "content": {"items": [{"nodeId": "140496923368176"}, {"nodeId": "N"}]}}, "140496923368176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496952716288": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956559552", "args": [{"nodeId": "A"}]}]}}, "140496923368512": {"type": "Union", "content": {"items": [{"nodeId": "140496923368400"}, {"nodeId": "N"}]}}, "140496923368400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923368736": {"type": "Union", "content": {"items": [{"nodeId": "140496923368624"}, {"nodeId": "N"}]}}, "140496923368624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923368848": {"type": "Union", "content": {"items": [{"nodeId": "140496923250240"}, {"nodeId": "N"}]}}, "140496923250240": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140496923369184": {"type": "Union", "content": {"items": [{"nodeId": "140496923369072"}, {"nodeId": "N"}]}}, "140496923369072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923369408": {"type": "Union", "content": {"items": [{"nodeId": "140496923369296"}, {"nodeId": "N"}]}}, "140496923369296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927258464"}}}, "140496927258464": {"type": "Union", "content": {"items": [{"nodeId": "140497028248704", "args": [{"nodeId": "140496956802144"}, {"nodeId": "140496927258016"}]}, {"nodeId": "140497028248704", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496927257568"}]}]}}, "140496927258016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496927257568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923369520": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923369744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496923369856": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923369968": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923370080": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923370192": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923370416": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496923370304"}]}, {"nodeId": "N"}]}}, "140496923370304": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496939832640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496923370528"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923370752"}, {"nodeId": "140496923370976"}, {"nodeId": "140496923371200"}, {"nodeId": "140496923371424"}, {"nodeId": "140496923371536"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496923371872"}, {"nodeId": "140496923372096"}, {"nodeId": "140496923372208"}, {"nodeId": "140496923372432"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028246944", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496923372544"}, {"nodeId": "140496923372656"}, {"nodeId": "140496956801792"}, {"nodeId": "140496923372768"}, {"nodeId": "140496923372880"}, {"nodeId": "140496923373104"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140496923370528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923370752": {"type": "Union", "content": {"items": [{"nodeId": "140496923370640"}, {"nodeId": "N"}]}}, "140496923370640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923370976": {"type": "Union", "content": {"items": [{"nodeId": "140496923370864"}, {"nodeId": "N"}]}}, "140496923370864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923371200": {"type": "Union", "content": {"items": [{"nodeId": "140496923371088"}, {"nodeId": "N"}]}}, "140496923371088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923371424": {"type": "Union", "content": {"items": [{"nodeId": "140496923371312"}, {"nodeId": "N"}]}}, "140496923371312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923371536": {"type": "Union", "content": {"items": [{"nodeId": "140496923249568"}, {"nodeId": "N"}]}}, "140496923249568": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140496923371872": {"type": "Union", "content": {"items": [{"nodeId": "140496923371760"}, {"nodeId": "N"}]}}, "140496923371760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923372096": {"type": "Union", "content": {"items": [{"nodeId": "140496923371984"}, {"nodeId": "N"}]}}, "140496923371984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927258464"}}}, "140496923372208": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923372432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496923372544": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923372656": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923372768": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923372880": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923373104": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496923372992"}]}, {"nodeId": "N"}]}}, "140496923372992": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496939833088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496923373216"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923373440"}, {"nodeId": "140496923373664"}, {"nodeId": "140496923373888"}, {"nodeId": "140496923374112"}, {"nodeId": "140496923374224"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496923374560"}, {"nodeId": "140496923374784"}, {"nodeId": "0"}, {"nodeId": "140496923375120"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028246944", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496923375232"}, {"nodeId": "140496923375344"}, {"nodeId": "140496923375456"}, {"nodeId": "140496923375568"}, {"nodeId": "140496923375680"}, {"nodeId": "140496923375904"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140496923373216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923373440": {"type": "Union", "content": {"items": [{"nodeId": "140496923373328"}, {"nodeId": "N"}]}}, "140496923373328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923373664": {"type": "Union", "content": {"items": [{"nodeId": "140496923373552"}, {"nodeId": "N"}]}}, "140496923373552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923373888": {"type": "Union", "content": {"items": [{"nodeId": "140496923373776"}, {"nodeId": "N"}]}}, "140496923373776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923374112": {"type": "Union", "content": {"items": [{"nodeId": "140496923374000"}, {"nodeId": "N"}]}}, "140496923374000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923374224": {"type": "Union", "content": {"items": [{"nodeId": "140496923250912"}, {"nodeId": "N"}]}}, "140496923250912": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140496923374560": {"type": "Union", "content": {"items": [{"nodeId": "140496923374448"}, {"nodeId": "N"}]}}, "140496923374448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923374784": {"type": "Union", "content": {"items": [{"nodeId": "140496923374672"}, {"nodeId": "N"}]}}, "140496923374672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927258464"}}}, "140496923375120": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496923375232": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923375344": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923375456": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923375568": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923375680": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923375904": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496923375792"}]}, {"nodeId": "N"}]}}, "140496923375792": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496939833536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": "140496956801792"}]}, {"nodeId": "140496923376016"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923376240"}, {"nodeId": "140496923376464"}, {"nodeId": "140496923376688"}, {"nodeId": "140496923376912"}, {"nodeId": "140496923377024"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496923377360"}, {"nodeId": "140496923426880"}, {"nodeId": "140496923426992"}, {"nodeId": "140496923427216"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028246944", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "0"}, {"nodeId": "140496923427440"}, {"nodeId": "140496923427552"}, {"nodeId": "140496923427664"}, {"nodeId": "140496923427776"}, {"nodeId": "140496923428000"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140496923376016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923376240": {"type": "Union", "content": {"items": [{"nodeId": "140496923376128"}, {"nodeId": "N"}]}}, "140496923376128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923376464": {"type": "Union", "content": {"items": [{"nodeId": "140496923376352"}, {"nodeId": "N"}]}}, "140496923376352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923376688": {"type": "Union", "content": {"items": [{"nodeId": "140496923376576"}, {"nodeId": "N"}]}}, "140496923376576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923376912": {"type": "Union", "content": {"items": [{"nodeId": "140496923376800"}, {"nodeId": "N"}]}}, "140496923376800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923377024": {"type": "Union", "content": {"items": [{"nodeId": "140496923251136"}, {"nodeId": "N"}]}}, "140496923251136": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140496923377360": {"type": "Union", "content": {"items": [{"nodeId": "140496923377248"}, {"nodeId": "N"}]}}, "140496923377248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923426880": {"type": "Union", "content": {"items": [{"nodeId": "140496923377472"}, {"nodeId": "N"}]}}, "140496923377472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927258464"}}}, "140496923426992": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923427216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496923427440": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923427552": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923427664": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923427776": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923428000": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496923427888"}]}, {"nodeId": "N"}]}}, "140496923427888": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496939833984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": "140496956802144"}]}, {"nodeId": "140496923428112"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923428336"}, {"nodeId": "140496923428560"}, {"nodeId": "140496923428784"}, {"nodeId": "140496923429008"}, {"nodeId": "140496923429120"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496923429456"}, {"nodeId": "140496923429680"}, {"nodeId": "140496923430016"}, {"nodeId": "140496923430128"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028246944", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496923430464"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140496923430352"}, {"nodeId": "140496923430576"}, {"nodeId": "140496923430800"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140496923428112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923428336": {"type": "Union", "content": {"items": [{"nodeId": "140496923428224"}, {"nodeId": "N"}]}}, "140496923428224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923428560": {"type": "Union", "content": {"items": [{"nodeId": "140496923428448"}, {"nodeId": "N"}]}}, "140496923428448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923428784": {"type": "Union", "content": {"items": [{"nodeId": "140496923428672"}, {"nodeId": "N"}]}}, "140496923428672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923429008": {"type": "Union", "content": {"items": [{"nodeId": "140496923428896"}, {"nodeId": "N"}]}}, "140496923428896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923429120": {"type": "Union", "content": {"items": [{"nodeId": "140496923251360"}, {"nodeId": "N"}]}}, "140496923251360": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140496923429456": {"type": "Union", "content": {"items": [{"nodeId": "140496923429344"}, {"nodeId": "N"}]}}, "140496923429344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923429680": {"type": "Union", "content": {"items": [{"nodeId": "140496923429568"}, {"nodeId": "N"}]}}, "140496923429568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927258464"}}}, "140496923430016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496923430128": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496923430464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496923430352": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923430576": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923430800": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496923430688"}]}, {"nodeId": "N"}]}}, "140496923430688": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496939834432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": "A"}]}, {"nodeId": "140496923431024"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923431248"}, {"nodeId": "140496923431472"}, {"nodeId": "140496923431696"}, {"nodeId": "140496923431920"}, {"nodeId": "140496923432032"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496923432368"}, {"nodeId": "140496923432592"}, {"nodeId": "140496923432704"}, {"nodeId": "140496923432928"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028246944", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496923433040"}, {"nodeId": "140496923433152"}, {"nodeId": "140496923433264"}, {"nodeId": "140496923433376"}, {"nodeId": "140496923433488"}, {"nodeId": "140496923433712"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140496923431024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923431248": {"type": "Union", "content": {"items": [{"nodeId": "140496923431136"}, {"nodeId": "N"}]}}, "140496923431136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923431472": {"type": "Union", "content": {"items": [{"nodeId": "140496923431360"}, {"nodeId": "N"}]}}, "140496923431360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923431696": {"type": "Union", "content": {"items": [{"nodeId": "140496923431584"}, {"nodeId": "N"}]}}, "140496923431584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923431920": {"type": "Union", "content": {"items": [{"nodeId": "140496923431808"}, {"nodeId": "N"}]}}, "140496923431808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496952716288"}}}, "140496923432032": {"type": "Union", "content": {"items": [{"nodeId": "140496923251584"}, {"nodeId": "N"}]}}, "140496923251584": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140496923432368": {"type": "Union", "content": {"items": [{"nodeId": "140496923432256"}, {"nodeId": "N"}]}}, "140496923432256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931996048"}}}, "140496923432592": {"type": "Union", "content": {"items": [{"nodeId": "140496923432480"}, {"nodeId": "N"}]}}, "140496923432480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927258464"}}}, "140496923432704": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923432928": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140496923433040": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, "140496923433152": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923433264": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496923433376": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923433488": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496923433712": {"type": "Union", "content": {"items": [{"nodeId": "140497028243424", "args": [{"nodeId": "140496923433600"}]}, {"nodeId": "N"}]}}, "140496923433600": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496944468864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}], "returnType": {"nodeId": "140496923433824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923433824": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496944468416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "140496923433936"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140496923433936": {"type": "Union", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "N"}]}}, "140496944467968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "140496923434048"}, {"nodeId": "140496923434160"}], "returnType": {"nodeId": "140496923434384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140496923434048": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952682880"}, {"nodeId": "N"}]}}, "140496923434160": {"type": "Union", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "N"}]}}, "140496923434384": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140496952682880"}, {"nodeId": ".1.140496952682880"}]}}, "140496944467520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140496944467072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496944466624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496944103488": {"type": "Function", "content": {"typeVars": [".0.140496944103488"], "argTypes": [{"nodeId": ".0.140496944103488"}], "returnType": {"nodeId": ".0.140496944103488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496944103488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}, "def": "140496944103488", "variance": "INVARIANT"}}, "140496949001600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682880", "args": [{"nodeId": ".1.140496952682880"}]}, {"nodeId": "140496923434608"}, {"nodeId": "140496923434720"}, {"nodeId": "140496923434832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496923434608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496923434720": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496923434832": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496949001152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496965736864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927329440"}], "returnType": {"nodeId": "140496918856080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918856080": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496927329792": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496885461312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890213120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890214016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890214240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890214464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496890214688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250816"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250816"}]}], "isAbstract": false}}, "140496885461312": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496890213120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918857648"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918857648": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890214016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918857088"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918857088": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890214240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918857424"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918857424": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890214464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918857760"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918857760": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496890214688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918857872"}], "returnType": {"nodeId": "140497028250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918857872": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}, {"nodeId": "140497028250816"}]}}, "140496927330144": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496885463776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496885612608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496885613728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496885613952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496885614176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496885614400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496885463776": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496885612608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918859328"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918859328": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496885613728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918859664"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918859664": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496885613952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918860000"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918860000": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496885614176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918860112"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918860112": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496885614400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918860224"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918860224": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496927330496": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496885629664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496965886560"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496885616192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496932079392", "args": [{"nodeId": "140497028250464"}]}, {"nodeId": "140496956803552", "args": [{"nodeId": "140497028250464"}]}], "isAbstract": false}}, "140496885629664": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}]}}, "140496965886560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496918863920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140496918863920": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}]}}, "140496885616192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496918863696"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918863696": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}]}}, "140496952684640": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953065536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953065648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956350624"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496953065536": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496953065648": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496956350624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684640"}, {"nodeId": "140496956801792"}, {"nodeId": "140496923438416"}, {"nodeId": "140496923438080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140496923438416": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496923438080": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496952684992": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956351072"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140497028250464"}], "isAbstract": false}}, "140496956351072": {"type": "Function", "content": {"typeVars": [".0.140496956351072"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".0.140496956351072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140496956351072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496952684992"}, "def": "140496956351072", "variance": "INVARIANT"}}, "140496931900224": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956352416"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956352864"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956353312"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["close", "seek", "write"]}}, "140496956352416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900224"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140496956352864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900224"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496956353312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900224"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931900576": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956353760"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956354208"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956354656"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["close", "read", "seek"]}}, "140496956353760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900576"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140496956354208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900576"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140496956354656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900576"}], "returnType": {"nodeId": "140497028238848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496927334368": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931900224"}, {"nodeId": "140496931900576"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140496931900928": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956355104"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140496956355104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931900928"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496914809344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140496914809344": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496931901280": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956355552"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140496956355552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931901280"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496914809568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140496914809568": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496931901632": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956356000"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140496956356000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931901632"}, {"nodeId": "140496931900576"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496927336128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140496927336128": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931900576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969733216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969733664"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969734112"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969734560"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969735008"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969735456"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969735904"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969736352"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969736800"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969737248"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140496931903040"}], "isAbstract": false}}, "140496969733216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}, {"nodeId": "140496931900576"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140496969733664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140496969734112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}, {"nodeId": "140496914815728"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140496914815728": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969734560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}, {"nodeId": "140496914815840"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140496914815840": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969735008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969735456": {"type": "Function", "content": {"typeVars": [".0.140496969735456"], "argTypes": [{"nodeId": ".0.140496969735456"}], "returnType": {"nodeId": ".0.140496969735456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969735456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336128"}, "def": "140496969735456", "variance": "INVARIANT"}}, "140496969735904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}, {"nodeId": "140496914816064"}, {"nodeId": "140496914816176"}, {"nodeId": "140496914816288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496914816064": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496914816176": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496914816288": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496969736352": {"type": "Function", "content": {"typeVars": [".0.140496969736352"], "argTypes": [{"nodeId": ".0.140496969736352"}], "returnType": {"nodeId": ".0.140496969736352"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969736352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336128"}, "def": "140496969736352", "variance": "INVARIANT"}}, "140496969736800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969737248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336128"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919599296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496919599296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496931903040": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969246624"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969247072"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496969246624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903040"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496914813600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140496914813600": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496969247072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903040"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496914813824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140496914813824": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496931901984": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956356448"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140496956356448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931901984"}, {"nodeId": "140496931900224"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496927335776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140496927335776": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931900224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969730080"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969730528"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969730976"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969731424"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969731872"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969732320"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969732768"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140496931903040"}], "isAbstract": false}}, "140496969730080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335776"}, {"nodeId": "140496931900224"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140496969730528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335776"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140496969730976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335776"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140496969731424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969731872": {"type": "Function", "content": {"typeVars": [".0.140496969731872"], "argTypes": [{"nodeId": ".0.140496969731872"}], "returnType": {"nodeId": ".0.140496969731872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969731872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927335776"}, "def": "140496969731872", "variance": "INVARIANT"}}, "140496969732320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335776"}, {"nodeId": "140496914815168"}, {"nodeId": "140496914815280"}, {"nodeId": "140496914815392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496914815168": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496914815280": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496914815392": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496969732768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335776"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919598848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140496919598848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496931902336": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956356896"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140496956356896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931902336"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931903392"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140496931903392": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969247520"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869195136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969248416"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969248864"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969249312"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": true}}, "140496969247520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903392"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140496869195136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903392"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140496969248416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969248864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903392"}], "returnType": {"nodeId": "140496914813936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914813936": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496969249312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931903392"}, {"nodeId": "140496914814048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140496914814048": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956801792"}]}}, "140496931902688": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496956357344"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__call__"]}}, "140496956357344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931902688"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496931903744"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140496927334720": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496869271680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496869268544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496869268320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496869267424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496869267872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496869266080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969238560"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140496956803552", "args": [{"nodeId": "140497028238848"}]}], "isAbstract": false}}, "140496869271680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496914809792"}], "returnType": {"nodeId": "140496931900928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914809792": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496869268544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496914809904"}], "returnType": {"nodeId": "140496931901280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914809904": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496869268320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496914810016"}], "returnType": {"nodeId": "140496931901632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914810016": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496869267424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496914810128"}], "returnType": {"nodeId": "140496931901984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914810128": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496869267872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496914810240"}], "returnType": {"nodeId": "140496931902336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914810240": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496869266080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496914810352"}], "returnType": {"nodeId": "140496931902688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496914810352": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496969238560": {"type": "Function", "content": {"typeVars": [".0.140496969238560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496914810576"}, {"nodeId": "140496914810688"}, {"nodeId": "140496914810800"}, {"nodeId": "140496914810912"}, {"nodeId": "140496914811024"}, {"nodeId": "140496914811136"}], "returnType": {"nodeId": ".0.140496969238560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140496914810576": {"type": "Union", "content": {"items": [{"nodeId": "140496931901632"}, {"nodeId": "N"}]}}, "140496914810688": {"type": "Union", "content": {"items": [{"nodeId": "140496931901984"}, {"nodeId": "N"}]}}, "140496914810800": {"type": "Union", "content": {"items": [{"nodeId": "140496931902336"}, {"nodeId": "N"}]}}, "140496914810912": {"type": "Union", "content": {"items": [{"nodeId": "140496931902688"}, {"nodeId": "N"}]}}, "140496914811024": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496914811136": {"type": "Union", "content": {"items": [{"nodeId": "140497028239552"}, {"nodeId": "N"}]}}, ".0.140496969238560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496914809120"}, "def": "140496969238560", "variance": "INVARIANT"}}, "140496914809120": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}]}}, "140496927335072": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969252000"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869193344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969728288"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140496931903392"}], "isAbstract": true}}, "140496969252000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335072"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140496869193344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335072"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496914814720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140496914814720": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140497028250464"}]}}, "140496969728288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335072"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140496927335424": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956802144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969728736"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496869192224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969729632"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140496931903744"}], "isAbstract": true}}, "140496969728736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335424"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140496869192224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335424"}, {"nodeId": "140496956570816"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496914814944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140496914814944": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}}, "140496969729632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927335424"}, {"nodeId": "140496956570816"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140496927336480": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927334368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969737696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969738144"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969738592"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969739040"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969739488"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969739936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969740384"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969740832"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969741280"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969741728"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969742176"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969742624"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969743072"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969743520"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969743968"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969842976"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969843424"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969843872"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969844320"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969844768"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969845216"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969845664"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140496956560256"}], "isAbstract": false}}, "140496969737696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496927334368"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140496969738144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140496969738592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496914816624"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140496914816624": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969739040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496914816736"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140496914816736": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969739488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969739936": {"type": "Function", "content": {"typeVars": [".0.140496969739936"], "argTypes": [{"nodeId": ".0.140496969739936"}], "returnType": {"nodeId": ".0.140496969739936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969739936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336480"}, "def": "140496969739936", "variance": "INVARIANT"}}, "140496969740384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140496969740832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140496969741280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969741728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140496969742176": {"type": "Function", "content": {"typeVars": [".0.140496969742176"], "argTypes": [{"nodeId": ".0.140496969742176"}], "returnType": {"nodeId": ".0.140496969742176"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969742176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496927336480"}, "def": "140496969742176", "variance": "INVARIANT"}}, "140496969742624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496914816960"}, {"nodeId": "140496914817072"}, {"nodeId": "140496914817184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496914816960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496914817072": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496914817184": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496969743072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496969743520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969743968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969842976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969843424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969843872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969844320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}, {"nodeId": "140496914817408"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140496914817408": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969844768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969845216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969845664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927336480"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931904096": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969846112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969846560"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969847008"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969847456"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969847904"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969848352"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969848800"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969849248"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969849696"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969850144"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969850592"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969851040"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969851488"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969851936"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969852384"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969852832"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969853280"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969853728"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969854176"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969854624"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969855072"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969855520"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140496956559904"}], "isAbstract": false}}, "140496969846112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496927334368"}, {"nodeId": "140496931900928"}, {"nodeId": "140496931901280"}, {"nodeId": "140496931901632"}, {"nodeId": "140496931901984"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140496969846560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140496969847008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496914817520"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140496914817520": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969847456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496914817632"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956802144"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140496914817632": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969847904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969848352": {"type": "Function", "content": {"typeVars": [".0.140496969848352"], "argTypes": [{"nodeId": ".0.140496969848352"}], "returnType": {"nodeId": ".0.140496969848352"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969848352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931904096"}, "def": "140496969848352", "variance": "INVARIANT"}}, "140496969848800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496956802144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140496969849248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956802144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140496969849696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969850144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496969850592": {"type": "Function", "content": {"typeVars": [".0.140496969850592"], "argTypes": [{"nodeId": ".0.140496969850592"}], "returnType": {"nodeId": ".0.140496969850592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140496969850592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931904096"}, "def": "140496969850592", "variance": "INVARIANT"}}, "140496969851040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496914817968"}, {"nodeId": "140496914818080"}, {"nodeId": "140496914818192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140496914817968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140496914818080": {"type": "Union", "content": {"items": [{"nodeId": "140496956808480"}, {"nodeId": "N"}]}}, "140496914818192": {"type": "Union", "content": {"items": [{"nodeId": "140496952677952"}, {"nodeId": "N"}]}}, "140496969851488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140496969851936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969852384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969852832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969853280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969853728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969854176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}, {"nodeId": "140496914818304"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140496914818304": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496969854624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969855072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496969855520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931904096"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931425792": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881513664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496956621216"}], "isAbstract": false}}, "140496881513664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931426496": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952685696", "args": [{"nodeId": "140496956801792"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969386464"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881504704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881504032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881504480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953077072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496969388256"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140496931426144"}], "isAbstract": false}}, "140496969386464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919069072"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919069072": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496881504704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919069296"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919069296": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496881504032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919069408"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919069408": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496881504480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919069520"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919069520": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496953077072": {"type": "Union", "content": {"items": [{"nodeId": "140496931427904"}, {"nodeId": "N"}]}}, "140496969388256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496919069632"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140496919069632": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496931426144": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953075952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496953075504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948889184"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948900608"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948901280"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496948901504"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140496956803552", "args": [{"nodeId": "140496956801792"}]}], "isAbstract": false}}, "140496953075952": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496953075504": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140496948889184": {"type": "Function", "content": {"typeVars": [".-1.140496948889184"], "argTypes": [{"nodeId": ".-1.140496948889184"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".-1.140496948889184"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140496948889184": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140496953075728"}, "def": "140496948889184", "variance": "INVARIANT"}}, "140496953075728": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496948900608": {"type": "Function", "content": {"typeVars": [".-1.140496948900608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": ".-1.140496948900608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140496948900608": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140496953075728"}, "def": "140496948900608", "variance": "INVARIANT"}}, "140496948901280": {"type": "Function", "content": {"typeVars": [".-1.140496948901280"], "argTypes": [{"nodeId": ".-1.140496948901280"}], "returnType": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140496948901280": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140496953075728"}, "def": "140496948901280", "variance": "INVARIANT"}}, "140496948901504": {"type": "Function", "content": {"typeVars": [".-1.140496948901504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140496948901504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140496948901504": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140496953075728"}, "def": "140496948901504", "variance": "INVARIANT"}}, "140496931427200": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881477536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881477088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496881476864"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496918871648"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140496931426848"}]}], "isAbstract": false}}, "140496881477536": {"type": "Function", "content": {"typeVars": [".0.140496881477536"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496919069968"}]}], "returnType": {"nodeId": ".0.140496881477536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140496919069968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927396400"}}}, ".0.140496881477536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931427200"}, "def": "140496881477536", "variance": "INVARIANT"}}, "140496881477088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427200"}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496881476864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427200"}], "returnType": {"nodeId": "140496956562368", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496918871648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496969391840"}, {"nodeId": "140496969392288"}]}}, "140496969391840": {"type": "Function", "content": {"typeVars": [".0.140496969391840"], "argTypes": [{"nodeId": ".0.140496969391840"}], "returnType": {"nodeId": ".0.140496969391840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496969391840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931427200"}, "def": "140496969391840", "variance": "INVARIANT"}}, "140496969392288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931427200"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496931426848"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140496927330848": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140496927331200"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881471264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496931431424"}], "isAbstract": true}}, "140496881471264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927330848"}, {"nodeId": "140496927331200"}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": "140496931427904"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140496927331552": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496881469472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970009056"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140496927330848"}], "isAbstract": false}}, "140496881469472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140496927331200"}], "returnType": {"nodeId": "140497028243424", "args": [{"nodeId": "140496931428256"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140496970009056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496927331552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140496952681472": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140496952681472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140496952681472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970017792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970018240"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496970018688"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140496952681472"}], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, ".1.140496952681472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496952681472", "variance": "INVARIANT"}}, "140496970017792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952681472", "args": [{"nodeId": ".1.140496952681472"}]}, {"nodeId": "140496923181792"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923181904"}, {"nodeId": "140496923182016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140496923181792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923181904": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952681472"}, {"nodeId": "N"}]}}, "140496923182016": {"type": "Union", "content": {"items": [{"nodeId": ".1.140496952681472"}, {"nodeId": "N"}]}}, "140496970018240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952681472", "args": [{"nodeId": ".1.140496952681472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496970018688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140496952679360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140496952681824": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496952682176": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944472000"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927625216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927258576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140496952681824"}], "isAbstract": false}}, "140496944472000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682176"}, {"nodeId": "140496923367056"}, {"nodeId": "140497028250816"}, {"nodeId": "140496923367168"}, {"nodeId": "140496923367280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140496923367056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923367168": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496923367280": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496927625216": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496927258576": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496952682528": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496944472448"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496952681824"}], "isAbstract": false}}, "140496944472448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952682528"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923367392"}, {"nodeId": "140496923367504"}, {"nodeId": "140496923367616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140496923367392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927257680"}}}, "140496923367504": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496923367616": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "N"}]}}, "140496952683232": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496952683584": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496952716624"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927562256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496898864992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948997344"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948996672"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948994208"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948993984"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496952716624": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496927562256": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496898864992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683584"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496948997344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683584"}, {"nodeId": "140496923435616"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140496923435616": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948996672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683584"}, {"nodeId": "140497028250464"}, {"nodeId": "140496952683936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140496952683936": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496927624768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927621520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496952683584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948995552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948993760"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948992416"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948993088"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948993312"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948992640"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948990176"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948989952"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948991520"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496927624768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927626000"}}}, "140496927626000": {"type": "Tuple", "content": {"items": [{"nodeId": "140496952684992"}, {"nodeId": "140496927624880"}]}}, "140496927624880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927625776"}}}, "140496927625776": {"type": "Union", "content": {"items": [{"nodeId": "140496927623984"}, {"nodeId": "140496927624544"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496952683936"}]}, {"nodeId": "140496927625440"}, {"nodeId": "140496927625664"}]}}, "140496927623984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496956803904", "args": [{"nodeId": "140496952718416"}]}}}, "140496952718416": {"type": "Tuple", "content": {"items": [{"nodeId": "140496952684992"}, {"nodeId": "140497028250464"}]}}, "140496927624544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927259696"}}}, "140496927259696": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496952683936"}]}]}}, "140496927625440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927259584"}}}, "140496927259584": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496952683936"}, {"nodeId": "140496952683936"}]}}, "140496927625664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927623760"}}}, "140496927623760": {"type": "Tuple", "content": {"items": [{"nodeId": "140496952717072"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}, {"nodeId": "140496952683936"}]}}, "140496952717072": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496927621520": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496948995552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140496952683584"}, {"nodeId": "140496923435840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140496923435840": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496923435728"}]}, {"nodeId": "N"}]}}, "140496923435728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927626000"}}}, "140496948993760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140496948992416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496948993088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140496923436176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496923436176": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956803200"}]}}, "140496948993312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140496923436400"}], "returnType": {"nodeId": "140496923436288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496923436400": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956803200"}]}}, "140496923436288": {"type": "Union", "content": {"items": [{"nodeId": "140496952683936"}, {"nodeId": "140496923435952"}]}}, "140496923435952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927626000"}}}, "140496948992640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140496923436624"}, {"nodeId": "140496923436848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496923436624": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140496956803200"}]}}, "140496923436848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927626000"}}}, "140496948990176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140497028250464"}, {"nodeId": "140496923436512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140496923436512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927626000"}}}, "140496948989952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}, {"nodeId": "140496923436960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140496923436960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927626000"}}}, "140496948991520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683936"}], "returnType": {"nodeId": "140496923437296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923437296": {"type": "Tuple", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, "140496948994208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683584"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140496948993984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952683584"}, {"nodeId": "140497028250464"}, {"nodeId": "140496952684288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140496952684288": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927625888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948990848"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948989728"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948988384"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948989056"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948989280"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140496898860288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974057696"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974057248"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496974056800"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496927625888": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948990848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140496948989728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140496948988384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}], "returnType": {"nodeId": "140496923436064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496923436064": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948989056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}, {"nodeId": "140497028250464"}, {"nodeId": "140497028243424", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140496948989280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140496898860288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496974057696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496974057248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140496974056800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496952684288"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028250464"}], "returnType": {"nodeId": "140496952684640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140496932080096": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496939840704"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496939840704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496932080096"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931425440": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940345024"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940345472"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940345920"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940346368"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140496940345024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425440"}], "returnType": {"nodeId": "140496931425440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940345472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425440"}], "returnType": {"nodeId": "140496931425440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940345920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425440"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940346368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931425440"}], "returnType": {"nodeId": "140496931425440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496931437056": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931436000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927630592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496927400880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956803904", "args": [{"nodeId": "140496931719296"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940347712"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940348160"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940348608"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940349056"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940349504"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940349952"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940350400"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940350848"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940449856"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940450304"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940450752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940451200"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940451648"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940452096"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940452544"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940452992"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940453440"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919083296"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919301248"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940455680"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940456128"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940456576"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940457024"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940457472"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940457920"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940458368"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919304720"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919305280"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940460608"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940461056"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919306064"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919307632"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940463296"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919307520"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140496919307744"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940465536"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940531776"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940532224"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940532672"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940533120"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940533568"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940534016"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940534464"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940534912"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496931436000": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931618880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931619216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948629504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948629952"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948630400"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948630848"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948631296"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877418112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877417664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877417440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877417216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496877415200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": true}}, "140496931618880": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496931619216": {"type": "Union", "content": {"items": [{"nodeId": "140496931854304"}, {"nodeId": "N"}]}}, "140496931854304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}], "returnType": {"nodeId": "140496931437056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496948629504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496919301024"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496919301136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140496919301024": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919301136": {"type": "Union", "content": {"items": [{"nodeId": "140496918877504"}, {"nodeId": "N"}]}}, "140496918877504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}], "returnType": {"nodeId": "140496931437056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496948629952": {"type": "Function", "content": {"typeVars": [".0.140496948629952"], "argTypes": [{"nodeId": ".0.140496948629952"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140496948629952"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140496948629952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931436000"}, "def": "140496948629952", "variance": "INVARIANT"}}, "140496948630400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496931437056"}, {"nodeId": "140496931719296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140496931719296": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948627936"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496956816224"}], "isAbstract": false}}, "140496948627936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931719296"}, {"nodeId": "140496919478448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140496919478448": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948630848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496931437056"}, {"nodeId": "140496931719296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140496948631296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919301472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140496919301472": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496877418112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496919301696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140496919301696": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496877417664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919301920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496919301920": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496877417440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496877417216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496877415200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496927630592": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496927400880": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940347712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940348160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140496940348608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496919303264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919303264": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940349056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496931437056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140496940349504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496919303376"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140496919303376": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496940349952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496919303600"}, {"nodeId": "140496919303824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140496919303600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931619104"}}}, "140496931619104": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496931437056"}]}, {"nodeId": "140496956801792"}, {"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}]}}, "140496919303824": {"type": "Union", "content": {"items": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931726688": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028250464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931621008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931621120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931621232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948831936"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948832384"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948832832"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948833280"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948833728"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948834176"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948834624"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948835072"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496931621008": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931621120": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931621232": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948831936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140496948832384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496948832832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}], "returnType": {"nodeId": "140496919480016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919480016": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948833280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140496948833728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028243776", "args": [{"nodeId": "140497028250464"}]}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140496948834176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140496948834624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496948835072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726688"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940350400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496919303712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140496919303712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927400656"}}}, "140496927400656": {"type": "Union", "content": {"items": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940350848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496919303936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919303936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496927400656"}}}, "140496940449856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140497028250464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496940450304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940450752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496940451200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919304048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496919304048": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940451648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919304160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140496919304160": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940452096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496940452544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940452992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496919304272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919304272": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940453440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496919304608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919304608": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496919304384"}]}}, "140496919304384": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496919083296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940453888"}, {"nodeId": "140496940454336"}]}}, "140496940453888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496919304944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140496919304944": {"type": "Union", "content": {"items": [{"nodeId": "140496919304832"}, {"nodeId": "N"}]}}, "140496919304832": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940454336": {"type": "Function", "content": {"typeVars": [".-1.140496940454336"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940454336"}], "returnType": {"nodeId": "140496919305168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140496940454336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940454336", "variance": "INVARIANT"}}, "140496919305168": {"type": "Union", "content": {"items": [{"nodeId": "140496919305056"}, {"nodeId": ".-1.140496940454336"}]}}, "140496919305056": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496919301248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940454784"}, {"nodeId": "140496940455232"}]}}, "140496940454784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496919305504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140496919305504": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496919305392"}]}, {"nodeId": "N"}]}}, "140496919305392": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940455232": {"type": "Function", "content": {"typeVars": [".-1.140496940455232"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940455232"}], "returnType": {"nodeId": "140496919305728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140496940455232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940455232", "variance": "INVARIANT"}}, "140496919305728": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496919305616"}]}, {"nodeId": ".-1.140496940455232"}]}}, "140496919305616": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940455680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919305840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140496919305840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931622352"}}}, "140496931622352": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}, {"nodeId": "140496931622576"}]}}, "140496931622576": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496931622128"}, {"nodeId": "140496956801792"}]}}, "140496931622128": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940456128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919305952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140496919305952": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940456576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940457024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940457472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940457920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940458368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140496919304720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940458816"}, {"nodeId": "140496940459264"}]}}, "140496940458816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "N"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496919306400"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140496919306400": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496919306288"}]}, {"nodeId": "N"}]}}, "140496919306288": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496940459264": {"type": "Function", "content": {"typeVars": [".-1.140496940459264"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": ".-1.140496940459264"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496919306736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140496940459264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940459264", "variance": "INVARIANT"}}, "140496919306736": {"type": "Union", "content": {"items": [{"nodeId": "140496956803904", "args": [{"nodeId": "140496919306624"}]}, {"nodeId": ".-1.140496940459264"}]}}, "140496919306624": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496919305280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940459712"}, {"nodeId": "140496940460160"}]}}, "140496940459712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496919307072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140496919307072": {"type": "Union", "content": {"items": [{"nodeId": "140496919306960"}, {"nodeId": "N"}]}}, "140496919306960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931621680"}}}, "140496931621680": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496931620672"}]}}, "140496931620672": {"type": "Tuple", "content": {"items": [{"nodeId": "140496931621904"}, {"nodeId": "140496931621792"}, {"nodeId": "140496956801792"}]}}, "140496931621904": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931621792": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940460160": {"type": "Function", "content": {"typeVars": [".-1.140496940460160"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940460160"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "140496919307408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140496940460160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940460160", "variance": "INVARIANT"}}, "140496919307408": {"type": "Union", "content": {"items": [{"nodeId": "140496919306848"}, {"nodeId": ".-1.140496940460160"}]}}, "140496919306848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140496931621680"}}}, "140496940460608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140496940461056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140496919306064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940461504"}, {"nodeId": "140496940461952"}]}}, "140496940461504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496919307184"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140496919307184": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940461952": {"type": "Function", "content": {"typeVars": [".-1.140496940461952"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": ".-1.140496940461952"}], "returnType": {"nodeId": "140496919307296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140496940461952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940461952", "variance": "INVARIANT"}}, "140496919307296": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940461952"}]}}, "140496919307632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940462400"}, {"nodeId": "140496940462848"}]}}, "140496940462400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496919307856"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140496919307856": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940462848": {"type": "Function", "content": {"typeVars": [".-1.140496940462848"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": ".-1.140496940462848"}], "returnType": {"nodeId": "140496919307968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140496940462848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940462848", "variance": "INVARIANT"}}, "140496919307968": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940462848"}]}}, "140496940463296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140496919307520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940463744"}, {"nodeId": "140496940464192"}]}}, "140496940463744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496919308192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919308192": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940464192": {"type": "Function", "content": {"typeVars": [".-1.140496940464192"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": ".-1.140496940464192"}], "returnType": {"nodeId": "140496919308304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140496940464192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940464192", "variance": "INVARIANT"}}, "140496919308304": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940464192"}]}}, "140496919307744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496940464640"}, {"nodeId": "140496940465088"}]}}, "140496940464640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "N"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496919308528"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140496919308528": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940465088": {"type": "Function", "content": {"typeVars": [".-1.140496940465088"], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": ".-1.140496940465088"}], "returnType": {"nodeId": "140496956803904", "args": [{"nodeId": "140496919308640"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140496940465088": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140497028238848"}, "def": "140496940465088", "variance": "INVARIANT"}}, "140496919308640": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": ".-1.140496940465088"}]}}, "140496940465536": {"type": "Function", "content": {"typeVars": [".0.140496940465536"], "argTypes": [{"nodeId": ".0.140496940465536"}], "returnType": {"nodeId": "140497028244480", "args": [{"nodeId": ".0.140496940465536"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140496940465536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140496931437056"}, "def": "140496940465536", "variance": "INVARIANT"}}, "140496940531776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496919308864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919308864": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940532224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028250464"}, {"nodeId": "140496919308976"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140496919308976": {"type": "Union", "content": {"items": [{"nodeId": "140496931436000"}, {"nodeId": "N"}]}}, "140496940532672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140497028239552"}, {"nodeId": "140496919309088"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140496919309088": {"type": "Union", "content": {"items": [{"nodeId": "140496931436000"}, {"nodeId": "N"}]}}, "140496940533120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940533568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}, {"nodeId": "140496919309200"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140496919309200": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940534016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496931436000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140496940534464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919309312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496919309312": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496940534912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437056"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496919309648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496919309648": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496919309424"}]}}, "140496919309424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140496931437408": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940535360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940535808"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940536256"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940536704"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940537152"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940537600"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940538048"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940538496"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940538944"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940539392"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940539840"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940540288"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940540736"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940541184"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940541632"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496940542080"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140496931437056"}], "isAbstract": false}}, "140496940535360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "140496919309760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140496919309760": {"type": "Union", "content": {"items": [{"nodeId": "140496931436000"}, {"nodeId": "N"}]}}, "140496940535808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "140497028247296", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496919309872"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140496919309872": {"type": "Union", "content": {"items": [{"nodeId": "140496931437056"}, {"nodeId": "N"}]}}, "140496940536256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496931437056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940536704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}], "returnType": {"nodeId": "140497028243776", "args": [{"nodeId": "140496931437056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940537152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "A"}, {"nodeId": "140496919310096"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140496919310096": {"type": "Union", "content": {"items": [{"nodeId": "140496931726336"}, {"nodeId": "N"}]}}, "140496931726336": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948837760"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948625472"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948625920"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948626368"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496948837760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726336"}, {"nodeId": "140496931437056"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140496948625472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726336"}, {"nodeId": "140496931437056"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140496948625920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726336"}, {"nodeId": "140496956801792"}, {"nodeId": "140496918881312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140496918881312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496948626368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931726336"}, {"nodeId": "140497028249760"}, {"nodeId": "140496918881088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140496918881088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140496940537600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "A"}, {"nodeId": "140496919310544"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140496919310544": {"type": "Union", "content": {"items": [{"nodeId": "140496931726336"}, {"nodeId": "N"}]}}, "140496940538048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "140496919310768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140496919310768": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940538496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "140496919310880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140496919310880": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940538944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "140496919310992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140496919310992": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496940539392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "A"}, {"nodeId": "140496919311216"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140496919311216": {"type": "Union", "content": {"items": [{"nodeId": "140496931726336"}, {"nodeId": "N"}]}}, "140496940539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "A"}, {"nodeId": "140496919311552"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140496919311552": {"type": "Union", "content": {"items": [{"nodeId": "140496931726336"}, {"nodeId": "N"}]}}, "140496940540288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "A"}, {"nodeId": "140496919311888"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140496919311888": {"type": "Union", "content": {"items": [{"nodeId": "140496931726336"}, {"nodeId": "N"}]}}, "140496940540736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940541184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496940541632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}, {"nodeId": "140497028239552"}, {"nodeId": "140496919312112"}, {"nodeId": "140496919312224"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140496919312112": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919312224": {"type": "Union", "content": {"items": [{"nodeId": "140496931436000"}, {"nodeId": "N"}]}}, "140496940542080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931437408"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140496931437760": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931437408"}], "isAbstract": false}}, "140496927337536": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140496927336832"}], "isAbstract": false}}, "140496927338240": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140496927337888"}, {"nodeId": "140496927337184"}], "isAbstract": false}}, "140496927338592": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140496927337888"}, {"nodeId": "140496927337536"}], "isAbstract": false}}, "140496931717184": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496956809888"}], "isAbstract": false}}, "140496931717536": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931717184"}], "isAbstract": false}}, "140496931717888": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931717536"}], "isAbstract": false}}, "140496931718240": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931717536"}], "isAbstract": false}}, "140496931718592": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931717184"}, {"nodeId": "140496956815872"}], "isAbstract": false}}, "140496931718944": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931717184"}], "isAbstract": false}}, "140496931719648": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931720000": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931720352": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931720704": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931721056": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931721408": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931721760": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931722112": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931722464": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931722816": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931723168": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931723520": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931723872": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931719296"}], "isAbstract": false}}, "140496931724224": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931723872"}], "isAbstract": false}}, "140496931724576": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931723872"}], "isAbstract": false}}, "140496931724928": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948628384"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140496931723872"}], "isAbstract": false}}, "140496948628384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931724928"}, {"nodeId": "140496919478560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140496919478560": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496931725280": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931723872"}], "isAbstract": false}}, "140496931725632": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931723872"}], "isAbstract": false}}, "140496931725984": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140496931723872"}], "isAbstract": false}}, "140496931436352": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948633984"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948634432"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948634880"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948635328"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948635776"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140496931436000"}], "isAbstract": false}}, "140496948633984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436352"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496919302144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140496919302144": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496948634432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436352"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919302368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496919302368": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496948634880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436352"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919302480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496919302480": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496931438112"}]}}, "140496931438112": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948172544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948172992"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948173440"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948173888"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948174336"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140497028238848"}], "isAbstract": false}}, "140496948172544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931438112"}, {"nodeId": "140496919312336"}, {"nodeId": "140496919312448"}, {"nodeId": "140496919312560"}, {"nodeId": "140496919312672"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140496919312336": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919312448": {"type": "Union", "content": {"items": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496919312560": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919312672": {"type": "Union", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948172992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931438112"}, {"nodeId": "140496919312784"}, {"nodeId": "140496919312896"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140496919312784": {"type": "Union", "content": {"items": [{"nodeId": "140496956802144"}, {"nodeId": "140496956802496"}, {"nodeId": "140496956801792"}]}}, "140496919312896": {"type": "Union", "content": {"items": [{"nodeId": "140496931726688"}, {"nodeId": "140496956801792"}, {"nodeId": "N"}]}}, "140496948173440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931438112"}, {"nodeId": "140496956801792"}, {"nodeId": "140496919313008"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140496919313008": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496948173888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931438112"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496948174336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931438112"}, {"nodeId": "140497028238848"}], "returnType": {"nodeId": "140497028239552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496948635328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436352"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496948635776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436352"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496931436704": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140497028239552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931853856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496931726336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948636224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948636672"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948637120"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948637568"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948638016"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496948638464"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140496931436000"}], "isAbstract": false}}, "140496931853856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496948636224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436704"}, {"nodeId": "140496919302592"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}, {"nodeId": "140497028239552"}, {"nodeId": "140497028239552"}, {"nodeId": "140496919302704"}, {"nodeId": "140497028239552"}, {"nodeId": "140496956801792"}, {"nodeId": "140496918882432"}, {"nodeId": "140496931726336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140496919302592": {"type": "Union", "content": {"items": [{"nodeId": "140497028250464"}, {"nodeId": "N"}]}}, "140496919302704": {"type": "Union", "content": {"items": [{"nodeId": "140496918882208"}, {"nodeId": "N"}]}}, "140496918882208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436000"}], "returnType": {"nodeId": "140496931437056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496918882432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140496948636672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436704"}, {"nodeId": "140496956803904", "args": [{"nodeId": "140496956801792"}]}], "returnType": {"nodeId": "140496919302928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140496919302928": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496948637120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436704"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496919303152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496919303152": {"type": "Tuple", "content": {"items": [{"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}]}}, "140496948637568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436704"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496948638016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436704"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496948638464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496931436704"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956802144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140496856890528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028242720", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140496856812336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140496856886048"}, {"nodeId": "140496856885824"}]}}, "140496856886048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140497028238848"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_OPT"], "argNames": ["object"]}}, "140496856885824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140496956570816"}, {"nodeId": "140496956801792"}, {"nodeId": "140496956801792"}], "returnType": {"nodeId": "140496956801792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["object", "encoding", "errors"]}}}, "exprTypes": {"annotation_tests": [{"startOffset": 140, "endOffset": 144, "line": 11, "type": {"nodeId": ".1.140496860610976"}}, {"startOffset": 553, "endOffset": 553, "line": 34, "type": {"nodeId": "140497028250464"}}, {"startOffset": 557, "endOffset": 557, "line": 34, "type": {"nodeId": "140497028250464"}}, {"startOffset": 604, "endOffset": 604, "line": 38, "type": {"nodeId": "140496860541472"}}, {"startOffset": 654, "endOffset": 654, "line": 42, "type": {"nodeId": "140496860541808"}}, {"startOffset": 681, "endOffset": 683, "line": 46, "type": {"nodeId": "140497028250464"}}, {"startOffset": 693, "endOffset": 697, "line": 47, "type": {"nodeId": "140497028250464"}}, {"startOffset": 707, "endOffset": 710, "line": 48, "type": {"nodeId": "140497028250464"}}, {"startOffset": 783, "endOffset": 783, "line": 52, "type": {"nodeId": "140496860542144"}}, {"startOffset": 837, "endOffset": 837, "line": 56, "type": {"nodeId": "140497028248000", "args": [{"nodeId": "140497028250464"}]}}, {"startOffset": 887, "endOffset": 887, "line": 60, "type": {"nodeId": "140497028248704", "args": [{"nodeId": "140497028250464"}, {"nodeId": "140497028250464"}]}}, {"startOffset": 937, "endOffset": 937, "line": 64, "type": {"nodeId": "140497028247296", "args": [{"nodeId": "140497028238848"}]}}, {"startOffset": 986, "endOffset": 988, "line": 68, "type": {"nodeId": "140496856890528"}}, {"startOffset": 990, "endOffset": 990, "line": 68, "type": {"nodeId": "140497028242720", "args": [{"nodeId": "A"}]}}, {"startOffset": 1038, "endOffset": 1038, "line": 72, "type": {"nodeId": "140496860542480"}}, {"startOffset": 1045, "endOffset": 1047, "line": 72, "type": {"nodeId": "140496856812336"}}, {"startOffset": 1049, "endOffset": 1049, "line": 72, "type": {"nodeId": "140496860542480"}}, {"startOffset": 1060, "endOffset": 1067, "line": 75, "type": {"nodeId": "140496956801792"}}]}, "definitions": {"annotation_tests": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956801792"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140496956804256", "args": [{"nodeId": "140496956801792"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "A": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496860610976"}}}, "square": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "collection", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496906587264"}, "name": "square"}}, "not_annotated": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497067949808"}, "name": "not_annotated"}}, "same_annotations": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496906913376"}, "name": "same_annotations"}}, "optional": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496877106144"}, "name": "optional"}}, "literal": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995268448"}, "name": "literal"}}, "Color": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496860611328"}}}, "enum_literal": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496877104576"}, "name": "enum_literal"}}, "abstract_set": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995267552"}, "name": "abstract_set"}}, "mapping": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140496995268000"}, "name": "mapping"}}, "sequence": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497023925408"}, "name": "sequence"}}, "supports_abs": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497020027616"}, "name": "supports_abs"}}, "tuple_": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140497023924512"}, "name": "tuple_"}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956569760"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028240256"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028240608"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028240960"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028241312"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028241664"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028242016"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028242368"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956636704"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956555328"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956555680"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956556032"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956556384"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956556736"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028242720"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028243072"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956557088"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956557440"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028243424"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028243776"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028244128"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028244480"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028244832"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028245184"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956557792"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028245536"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028245888"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028246240"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028246592"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028246944"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028247296"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028247648"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028248000"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028248352"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956558144"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956558496"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956558848"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956559200"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028248704"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028249056"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956559552"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956559904"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956560256"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956560608"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956560960"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028249408"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956564832"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956565184"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956565536"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956565888"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956636000"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931899168"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931899520"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931899872"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956566240"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956566592"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956566944"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956567296"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956636352"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956567648"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931433536"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931433888"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931434240"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931434592"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931434944"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931435296"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931435648"}}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927340352"}}}, "timezone": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927340704"}}}, "date": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927341408"}}}, "time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927341760"}}}, "timedelta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927342112"}}}, "datetime": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496860610624"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028238848"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028239552"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028239904"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028249760"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028250112"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028250464"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028250816"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140497028251168"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956801088"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956801440"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956801792"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956802144"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956802496"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956802848"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956803200"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956803552"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956803904"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956804256"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956562368"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956562720"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956563072"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956804608"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956804960"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956805312"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932385216"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956805664"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956563424"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956806016"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956563776"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932385568"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956806368"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956806720"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956807072"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956564128"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956807424"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956807776"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932385920"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956564480"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956808128"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956808480"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956808832"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956809184"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956809536"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956809888"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956810240"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956810592"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956810944"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956811296"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956811648"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956812000"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956812352"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956812704"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956813056"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956813408"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956813760"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956814112"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956814464"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956814816"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956815168"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956815520"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956815872"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956816224"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956816576"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956816928"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956620864"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956621216"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956621568"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956621920"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956622272"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956622624"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956622976"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956623328"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956623680"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956624032"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956624384"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956624736"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956625088"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956625440"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956625792"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956626144"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956626496"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956626848"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956627200"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956627552"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956627904"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956628256"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956628608"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956628960"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956629312"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956629664"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956630016"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956630368"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956630720"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956631072"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956631424"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956631776"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956632128"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956632480"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956632832"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956633184"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956633536"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956633888"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956634240"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956634592"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952680416"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932387328"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932387680"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932388032"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952680768"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932388384"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927326272"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927326624"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952681120"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927326976"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956568000"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956568352"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956568704"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956569056"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956569408"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956569760"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956570112"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956570464"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956570816"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956561312"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956561664"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956562016"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931904448"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931904800"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931905152"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931905504"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931905856"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931906208"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931906560"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931906912"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931907264"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931907616"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931907968"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931908320"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931908672"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931909024"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931909376"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931909728"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931910080"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931910432"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931910784"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931911136"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931911488"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931911840"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931912192"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931912544"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931912896"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931913248"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932077632"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932077984"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932078336"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932078688"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932079040"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932079392"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932079744"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956634944"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956635296"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956635648"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931729152"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931729504"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931729856"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931730208"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931730560"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931730912"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931731264"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931731616"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931731968"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931732320"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931732672"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931733024"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931897408"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931897760"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931898112"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931898464"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931898816"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952685344"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952685696"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927327328"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496956571168"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952672320"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952672672"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952673024"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952673376"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952673728"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952674080"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952674432"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952674784"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952675136"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952675488"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952675840"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952676192"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952676544"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952676896"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952677248"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952677600"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952677952"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952678304"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952678656"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952679008"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952679360"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952679712"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952680064"}}}}, "time": {"struct_time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927339648"}}}, "_ClockInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927340000"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932080448"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932080800"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932081152"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932081504"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932081856"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932082208"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932082560"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932082912"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932083264"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932083616"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932083968"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932084320"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932084672"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932085024"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932085376"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932085728"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932086080"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932086432"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932086784"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932087136"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932087488"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932087840"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932088192"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932088544"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932088896"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932089248"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932089600"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932089952"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932090304"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932090656"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932091008"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932091360"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932091712"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932092064"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932092416"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932092768"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932093120"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932093472"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932274240"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932274592"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932274944"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932275296"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932275648"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932276000"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932276352"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932276704"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932277056"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932277408"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932277760"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932278112"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932278464"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932278816"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932279168"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932279520"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932279872"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932280224"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932280576"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932280928"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932281280"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932281632"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932281984"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932282336"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932282688"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932283040"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932283392"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932283744"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932284096"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932284448"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932284800"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932285152"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932285504"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932285856"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932286208"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932286560"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932286912"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932287264"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932287616"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932287968"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932288320"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932288672"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932289024"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932289376"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932289728"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932290080"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932372544"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932372896"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932373248"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932373600"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932373952"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932374304"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932374656"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932375008"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932375360"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932375712"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932376064"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932376416"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932376768"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932377120"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932377472"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932377824"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932378176"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932378528"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932378880"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932379232"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932379584"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932379936"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932380288"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932380640"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932380992"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932381344"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932381696"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932382048"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932382400"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932382752"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932383104"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932383456"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932383808"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932384160"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952686752"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952687104"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952687456"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952687808"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952688160"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931422272"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931422624"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931422976"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931423328"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931423680"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931424032"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931424384"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931424736"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927338944"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931429312"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931429664"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931430016"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931430368"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931430720"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931431072"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931431424"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931431776"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931432128"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931432480"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931432832"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931433184"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931428608"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927331904"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927332256"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927332608"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931428960"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927332960"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927333312"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927333664"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927334016"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931727040"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931727392"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931727744"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931728096"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931728448"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931728800"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952686048"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932386272"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927327680"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952686400"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927328032"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927328384"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927328736"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927329088"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927329440"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927329792"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927330144"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927330496"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952684640"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952684992"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931900224"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931900576"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927334368"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931900928"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931901280"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931901632"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931901984"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931902336"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931902688"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927334720"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931903040"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931903392"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931903744"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927335072"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927335424"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927335776"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927336128"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927336480"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931904096"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931429664"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931425088"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931425792"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931426496"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931426848"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931427200"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927339296"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931427552"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931427904"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927330848"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927331552"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931428256"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952681472"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952681824"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952682176"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952682528"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952682880"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952683232"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952683584"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952683936"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496952684288"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496932080096"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931425088"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931425440"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931437056"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931437408"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931437760"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927336832"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927337184"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927337536"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927337888"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927338240"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496927338592"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931437056"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931436000"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931726688"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931726336"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931717184"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931717536"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931717888"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931718240"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931718592"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931718944"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931719296"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931719648"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931720000"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931720352"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931720704"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931721056"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931721408"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931721760"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931722112"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931722464"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931722816"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931723168"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931723520"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931723872"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931724224"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931724576"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931724928"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931725280"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931725632"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931725984"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931436000"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931436352"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931436704"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140496931438112"}}}}}, "names": {"annotation_tests": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing.ParamSpec"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "ByteString", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "Enum", "kind": "ImportedType", "fullname": "enum.Enum"}, {"name": "datetime", "kind": "Module", "fullname": "datetime"}, {"name": "XXX", "kind": "Other"}, {"name": "A", "kind": "LocalType"}, {"name": "square", "kind": "Other"}, {"name": "not_annotated", "kind": "Other"}, {"name": "same_annotations", "kind": "Other"}, {"name": "optional", "kind": "Other"}, {"name": "literal", "kind": "Other"}, {"name": "Color", "kind": "LocalType"}, {"name": "enum_literal", "kind": "Other"}, {"name": "abstract_set", "kind": "Other"}, {"name": "mapping", "kind": "Other"}, {"name": "sequence", "kind": "Other"}, {"name": "supports_abs", "kind": "Other"}, {"name": "tuple_", "kind": "Other"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "datetime": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_D", "kind": "Other"}, {"name": "MINYEAR", "kind": "Other"}, {"name": "MAXYEAR", "kind": "Other"}, {"name": "tzinfo", "kind": "LocalType"}, {"name": "_TzInfo", "kind": "Other"}, {"name": "timezone", "kind": "LocalType"}, {"name": "_IsoCalendarDate", "kind": "LocalType"}, {"name": "date", "kind": "LocalType"}, {"name": "time", "kind": "LocalType"}, {"name": "_Date", "kind": "Other"}, {"name": "_Time", "kind": "Other"}, {"name": "timedelta", "kind": "LocalType"}, {"name": "datetime", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "time": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_TimeTuple", "kind": "Other"}, {"name": "altzone", "kind": "Other"}, {"name": "daylight", "kind": "Other"}, {"name": "timezone", "kind": "Other"}, {"name": "tzname", "kind": "Other"}, {"name": "CLOCK_BOOTTIME", "kind": "Other"}, {"name": "CLOCK_MONOTONIC", "kind": "Other"}, {"name": "CLOCK_MONOTONIC_RAW", "kind": "Other"}, {"name": "CLOCK_PROCESS_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_REALTIME", "kind": "Other"}, {"name": "CLOCK_THREAD_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_TAI", "kind": "Other"}, {"name": "struct_time", "kind": "LocalType"}, {"name": "asctime", "kind": "Other"}, {"name": "ctime", "kind": "Other"}, {"name": "gmtime", "kind": "Other"}, {"name": "localtime", "kind": "Other"}, {"name": "mktime", "kind": "Other"}, {"name": "sleep", "kind": "Other"}, {"name": "strftime", "kind": "Other"}, {"name": "strptime", "kind": "Other"}, {"name": "time", "kind": "Other"}, {"name": "tzset", "kind": "Other"}, {"name": "_ClockInfo", "kind": "LocalType"}, {"name": "get_clock_info", "kind": "Other"}, {"name": "monotonic", "kind": "Other"}, {"name": "perf_counter", "kind": "Other"}, {"name": "process_time", "kind": "Other"}, {"name": "clock_getres", "kind": "Other"}, {"name": "clock_gettime", "kind": "Other"}, {"name": "clock_settime", "kind": "Other"}, {"name": "clock_gettime_ns", "kind": "Other"}, {"name": "clock_settime_ns", "kind": "Other"}, {"name": "pthread_getcpuclockid", "kind": "Other"}, {"name": "monotonic_ns", "kind": "Other"}, {"name": "perf_counter_ns", "kind": "Other"}, {"name": "process_time_ns", "kind": "Other"}, {"name": "time_ns", "kind": "Other"}, {"name": "thread_time", "kind": "Other"}, {"name": "thread_time_ns", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}]}} \ No newline at end of file +{"nodeStorage": {"140265790227200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748352016"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823590592"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823591040"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823591488"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823591936"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823592384"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823592832"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823593280"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823594176"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823594624"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823595072"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823595520"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823595968"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823596416"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823596864"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823597312"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823597760"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823598208"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823598656"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823599104"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823599552"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823600000"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823699008"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823699456"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823699904"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823700352"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823700800"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823701248"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823701696"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823702144"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823702592"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823703040"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823703488"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823703936"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823704384"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823704832"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823705280"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823705728"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823706176"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823706624"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823707072"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823707520"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823707968"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823708416"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823708864"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823709312"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823709760"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748352240"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823711552"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823712000"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823712448"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823712896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823713344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823713792"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823714240"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823714688"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823862848"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823863296"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823863744"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823864192"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823864640"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823865088"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823865536"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265748352016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823589696"}, {"nodeId": "140265823590144"}]}}, "140265823589696": {"type": "Function", "content": {"typeVars": [".0.140265823589696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265823589696"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140265861254656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765156592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265747836240"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710328000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832170432"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832170880"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832171328"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832171776"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832172224"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832172672"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832173120"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832173568"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832174016"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832174464"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832174912"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832175360"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832175808"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832176256"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832177600"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265832178048"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710336064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140265765156592": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140265790229664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743457008"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819574720"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819575168"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819575616"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819576064"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819576512"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743457456"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743458240"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743458576"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819579648"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819580096"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819580544"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819580992"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819581440"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819581888"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819582336"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819582784"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819583232"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743458912"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "isAbstract": false}}, ".1.140265790229664": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790229664", "variance": "INVARIANT"}}, ".2.140265790229664": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790229664", "variance": "INVARIANT"}}, "140265743457008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819571136"}, {"nodeId": "140265819571584"}, {"nodeId": "140265819572032"}, {"nodeId": "140265819572480"}, {"nodeId": "140265819572928"}, {"nodeId": "140265819573376"}, {"nodeId": "140265819573824"}, {"nodeId": "140265819574272"}]}}, "140265819571136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819571584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265819572032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764926944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848368352"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848368800"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265764926944"}, {"nodeId": ".2.140265764926944"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140265764926944": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926944", "variance": "INVARIANT"}}, ".2.140265764926944": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926944", "variance": "COVARIANT"}}, "140265848368352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265764926944"}, {"nodeId": ".2.140265764926944"}]}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265764926944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861259232": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739603968"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861259232"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__iter__"]}}, ".1.140265861259232": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861259232", "variance": "COVARIANT"}}, "140265739603968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861259232"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265861259584": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739607552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849141536"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140265861259584"}], "bases": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861259584"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140265861259584": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861259584", "variance": "COVARIANT"}}, "140265739607552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259584"}]}], "returnType": {"nodeId": ".1.140265861259584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849141536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259584"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259584"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140265848368800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265764926944"}, {"nodeId": ".2.140265764926944"}]}, {"nodeId": ".1.140265764926944"}], "returnType": {"nodeId": ".2.140265764926944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819572480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265819572928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743457904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743457904": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}}, "140265819573376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743458128"}]}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265743458128": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265790229664"}]}}, "140265819573824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790229312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743455216"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819426368"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819426816"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819427264"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819427712"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819428160"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819428608"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819429056"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819429504"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743455328"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819430848"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819431296"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743456448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743456560"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819433536"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743456784"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819434880"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819435328"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819435776"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819436224"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819436672"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819437120"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819437568"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819438016"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819438464"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819570240"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819570688"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265790229312"}], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265790229312"}]}], "isAbstract": false}}, ".1.140265790229312": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790229312", "variance": "INVARIANT"}}, "140265743455216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819425472"}, {"nodeId": "140265819425920"}]}}, "140265819425472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819425920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819426368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819426816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819427264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819427712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265790229312"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265789863040": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265744211904"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__index__"]}}, "140265744211904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861266272": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748115552"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836455616"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710198944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710198272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710199840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710200288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836457856"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836458304"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836458752"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836460096"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710200064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836461440"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823240256"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823240704"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823241152"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823241600"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823242048"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823242496"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823242944"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823243392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823243840"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823244288"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823244736"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823245184"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823245632"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748116672"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823248768"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823249216"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823249664"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823250112"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823250560"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823251008"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823251456"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823251904"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823252352"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823252800"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823253248"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823253696"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823254144"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823254592"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823255040"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823255488"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823255936"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823322176"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823322624"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823323072"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823323520"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823323968"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823324416"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823324864"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823325312"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823325760"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823326208"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823326656"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823327104"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823327552"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265748115552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836454720"}, {"nodeId": "140265836455168"}]}}, "140265836454720": {"type": "Function", "content": {"typeVars": [".0.140265836454720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748117344"}], "returnType": {"nodeId": ".0.140265836454720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140265748117344": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789849664"}, {"nodeId": "140265789863040"}, {"nodeId": "140265764926240"}]}}, "140265789865152": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827350368"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__buffer__"]}}, "140265827350368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790228256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706423680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706424576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706424352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706424800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706423232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706426144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706426592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706426816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706425472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819151424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819151872"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819152320"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819152768"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743450624"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819154112"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819154560"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819155008"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743451632"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819156352"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819157696"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819158144"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819158592"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819159040"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819159936"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819275328"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265706423680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706424576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265743451296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743451296": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "N"}]}}, "140265790228960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819284736"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819285184"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819285632"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453648"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819286976"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819287424"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819287872"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819288320"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819288768"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743455104"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819290112"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819290560"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819291008"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819422784"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819423232"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265790228960"}], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265790228960"}]}], "isAbstract": false}}, ".1.140265790228960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790228960", "variance": "COVARIANT"}}, "140265819284736": {"type": "Function", "content": {"typeVars": [".0.140265819284736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": ".0.140265819284736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140265819284736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "def": "140265819284736", "variance": "INVARIANT"}}, "140265819285184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819285632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861255360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819275776"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743452192"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743452976"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453088"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453200"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453312"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453424"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819281600"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}], "isAbstract": false}}, "140265819275776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140265743452192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819276224"}, {"nodeId": "140265819276672"}]}}, "140265819276224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819276672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743452976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819277120"}, {"nodeId": "140265819277568"}]}}, "140265819277120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819277568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819278016"}, {"nodeId": "140265819278464"}]}}, "140265819278016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819278464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819278912"}, {"nodeId": "140265819279360"}]}}, "140265819278912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819279360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819279808"}, {"nodeId": "140265819280256"}]}}, "140265819279808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819280256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743453424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819280704"}, {"nodeId": "140265819281152"}]}}, "140265819280704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819281152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819281600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265743453872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743453872": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265743453648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819286080"}, {"nodeId": "140265819286528"}]}}, "140265819286080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265790228960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819286528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265790228608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265701874528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705962432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705961536"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743453536"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819284288"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265701874528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265705962432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265705961536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743453536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819283392"}, {"nodeId": "140265819283840"}]}}, "140265819283392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819283840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819284288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228608"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265743454992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743454992": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265819286976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819287424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819287872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819288320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819288768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743455104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819289216"}, {"nodeId": "140265819289664"}]}}, "140265819289216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819289664": {"type": "Function", "content": {"typeVars": [".-1.140265819289664"], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": ".-1.140265819289664"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265743455440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819289664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819289664", "variance": "INVARIANT"}}, "140265743455440": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265790228960"}, {"nodeId": ".-1.140265819289664"}]}}, "140265819290112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819290560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819291008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819422784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228960", "args": [{"nodeId": ".1.140265790228960"}]}, {"nodeId": "A"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819423232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265785727936": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735762240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735762688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735762912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811173536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811173984"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811175328"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735762240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861265568": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265709939712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710201632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710202752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710194240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710193792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710193120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710194464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710194912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710195136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265747836576"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748111968"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836449792"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836450240"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836450688"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836451136"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836451584"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710195584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836452480"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836452928"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265709939712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710201632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710202752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785721600": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810696608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810697056"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810697504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810697952"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810698400"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810698848"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810699296"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810699744"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810700192"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810700640"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810701088"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810701536"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810701984"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "isAbstract": false}}, ".1.140265785721600": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785721600", "variance": "INVARIANT"}}, ".2.140265785721600": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785721600", "variance": "COVARIANT"}}, "140265810696608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265810697056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": ".1.140265785721600"}], "returnType": {"nodeId": ".2.140265785721600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810697504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265810697952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265810698400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810698848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810699296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789853184": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844398496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844398944"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844399392"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844399840"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844400288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844400736"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844401184"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844401632"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844402080"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844402528"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844402976"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844403424"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140265789853184"}], "bases": [{"nodeId": "140265789852480"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789853184"}]}], "isAbstract": false}}, ".1.140265789853184": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789853184", "variance": "COVARIANT"}}, "140265844398496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789853184"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265861264512": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739924448"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760780384"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844407008"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844407456"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844407904"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844506912"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844507360"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}], "bases": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861264512"}]}], "isAbstract": true}}, ".1.140265861264512": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264512", "variance": "INVARIANT"}}, ".2.140265861264512": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264512", "variance": "COVARIANT"}}, "140265739924448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": ".1.140265861264512"}], "returnType": {"nodeId": ".2.140265861264512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760780384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844406112"}, {"nodeId": "140265844406560"}]}}, "140265844406112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": ".1.140265861264512"}], "returnType": {"nodeId": "140265761015280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761015280": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264512"}, {"nodeId": "N"}]}}, "140265844406560": {"type": "Function", "content": {"typeVars": [".-1.140265844406560"], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": ".1.140265861264512"}, {"nodeId": "140265761015392"}], "returnType": {"nodeId": "140265761015504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140265761015392": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264512"}, {"nodeId": ".-1.140265844406560"}]}}, ".-1.140265844406560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844406560", "variance": "INVARIANT"}}, "140265761015504": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264512"}, {"nodeId": ".-1.140265844406560"}]}}, "140265844407008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}], "returnType": {"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789852832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844393120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844393568"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844394016"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844394464"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844394912"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844395360"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844395808"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844396256"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844396704"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844397152"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844397600"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844398048"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}], "bases": [{"nodeId": "140265789852480"}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265773689184"}]}], "isAbstract": false}}, ".1.140265789852832": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852832", "variance": "COVARIANT"}}, ".2.140265789852832": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852832", "variance": "COVARIANT"}}, "140265844393120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265844393568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760782512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789856704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743459360"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819585472"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819585920"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819717696"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819718144"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819718592"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819719040"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819719488"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819719936"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819720384"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819720832"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819721280"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819721728"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819722176"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819722624"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819723072"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819723520"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819723968"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819724416"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819724864"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819725312"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819725760"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819726208"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819726656"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819727104"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819727552"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819728000"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819728448"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819728896"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819729344"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819729792"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819730240"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789856704"}], "bases": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265789856704"}]}], "isAbstract": false}}, ".1.140265789856704": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856704", "variance": "INVARIANT"}}, "140265743459360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819584576"}, {"nodeId": "140265819585024"}]}}, "140265819584576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819585024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819585472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": ".1.140265789856704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819585920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819717696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819718144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819718592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": ".1.140265789856704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819719040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819719488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819719936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819720384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819720832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819721280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": ".1.140265789856704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819721728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819722176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819722624": {"type": "Function", "content": {"typeVars": [".-1.140265819722624"], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819722624"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265743461488"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140265819722624": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819722624", "variance": "INVARIANT"}}, "140265743461488": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": ".-1.140265819722624"}]}}, "140265819723072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819723520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819723968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819724416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819724864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861263808": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739740640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844252384"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844252832"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844253280"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844253728"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844254176"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844254624"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844255072"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844255520"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844255968"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844256416"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140265861263808"}], "bases": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861263808"}]}], "isAbstract": true}}, ".1.140265861263808": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861263808", "variance": "COVARIANT"}}, "140265739740640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844252384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844252832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844253280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844253728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844254176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844254624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844255072": {"type": "Function", "content": {"typeVars": [".-1.140265844255072"], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265844255072"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": "140265760781280"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844255072": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844255072", "variance": "INVARIANT"}}, "140265760781280": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265861263808"}, {"nodeId": ".-1.140265844255072"}]}}, "140265844255520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844255968": {"type": "Function", "content": {"typeVars": [".-1.140265844255968"], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265844255968"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": "140265760781504"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844255968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844255968", "variance": "INVARIANT"}}, "140265760781504": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265861263808"}, {"nodeId": ".-1.140265844255968"}]}}, "140265844256416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861263808"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140265861262752": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739733696"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861262752"}], "bases": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861262752"}]}, {"nodeId": "140265861262400", "args": [{"nodeId": ".1.140265861262752"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140265861262752": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262752", "variance": "COVARIANT"}}, "140265739733696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861262752"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265861262400": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739680928"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861262400"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__contains__"]}}, ".1.140265861262400": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262400", "variance": "COVARIANT"}}, "140265739680928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262400", "args": [{"nodeId": ".1.140265861262400"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819725312": {"type": "Function", "content": {"typeVars": [".0.140265819725312"], "argTypes": [{"nodeId": ".0.140265819725312"}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": ".0.140265819725312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819725312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819725312", "variance": "INVARIANT"}}, "140265819725760": {"type": "Function", "content": {"typeVars": [".-1.140265819725760"], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819725760"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265743461712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819725760": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819725760", "variance": "INVARIANT"}}, "140265743461712": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": ".-1.140265819725760"}]}}, "140265819726208": {"type": "Function", "content": {"typeVars": [".0.140265819726208"], "argTypes": [{"nodeId": ".0.140265819726208"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": ".0.140265819726208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819726208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819726208", "variance": "INVARIANT"}}, "140265819726656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265743461824"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743461824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": "N"}]}}, "140265819727104": {"type": "Function", "content": {"typeVars": [".0.140265819727104"], "argTypes": [{"nodeId": ".0.140265819727104"}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": ".0.140265819727104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819727104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819727104", "variance": "INVARIANT"}}, "140265819727552": {"type": "Function", "content": {"typeVars": [".-1.140265819727552"], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819727552"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265743461936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819727552": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819727552", "variance": "INVARIANT"}}, "140265743461936": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789856704"}, {"nodeId": ".-1.140265819727552"}]}}, "140265819728000": {"type": "Function", "content": {"typeVars": [".0.140265819728000"], "argTypes": [{"nodeId": ".0.140265819728000"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789856704"}]}], "returnType": {"nodeId": ".0.140265819728000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819728000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, "def": "140265819728000", "variance": "INVARIANT"}}, "140265819728448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819728896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819729344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819729792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789856704"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819730240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265861264160": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739742208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739833120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844257760"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844258208"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844258656"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844259104"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844259552"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844260000"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844260448"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140265861264160"}], "bases": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861264160"}]}], "isAbstract": true}}, ".1.140265861264160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264160", "variance": "INVARIANT"}}, "140265739742208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, {"nodeId": ".1.140265861264160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265739833120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, {"nodeId": ".1.140265861264160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844257760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844258208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": ".1.140265861264160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844258656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, {"nodeId": ".1.140265861264160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844259104": {"type": "Function", "content": {"typeVars": [".0.140265844259104"], "argTypes": [{"nodeId": ".0.140265844259104"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": ".0.140265844259104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844259104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844259104", "variance": "INVARIANT"}}, "140265844259552": {"type": "Function", "content": {"typeVars": [".0.140265844259552"], "argTypes": [{"nodeId": ".0.140265844259552"}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265844259552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844259552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844259552", "variance": "INVARIANT"}}, "140265844260000": {"type": "Function", "content": {"typeVars": [".0.140265844260000"], "argTypes": [{"nodeId": ".0.140265844260000"}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265861264160"}]}], "returnType": {"nodeId": ".0.140265844260000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844260000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844260000", "variance": "INVARIANT"}}, "140265844260448": {"type": "Function", "content": {"typeVars": [".0.140265844260448"], "argTypes": [{"nodeId": ".0.140265844260448"}, {"nodeId": "140265861263808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265844260448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844260448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861264160", "args": [{"nodeId": ".1.140265861264160"}]}, "def": "140265844260448", "variance": "INVARIANT"}}, "140265760782512": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844394016": {"type": "Function", "content": {"typeVars": [".-1.140265844394016"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844394016"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844394016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844394016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844394016", "variance": "INVARIANT"}}, "140265844394464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844394912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265760782736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760782736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844395360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265760782960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760782960": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844395808": {"type": "Function", "content": {"typeVars": [".-1.140265844395808"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844395808"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760783296"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844395808": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844395808", "variance": "INVARIANT"}}, "140265760783296": {"type": "Union", "content": {"items": [{"nodeId": "140265760783184"}, {"nodeId": ".-1.140265844395808"}]}}, "140265760783184": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844396256": {"type": "Function", "content": {"typeVars": [".-1.140265844396256"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844396256"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760783632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844396256": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844396256", "variance": "INVARIANT"}}, "140265760783632": {"type": "Union", "content": {"items": [{"nodeId": "140265760783520"}, {"nodeId": ".-1.140265844396256"}]}}, "140265760783520": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844396704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265760783968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760783968": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844397152": {"type": "Function", "content": {"typeVars": [".-1.140265844397152"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844397152"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844397152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844397152": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844397152", "variance": "INVARIANT"}}, "140265844397600": {"type": "Function", "content": {"typeVars": [".-1.140265844397600"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844397600"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761013824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844397600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844397600", "variance": "INVARIANT"}}, "140265761013824": {"type": "Union", "content": {"items": [{"nodeId": "140265760784192"}, {"nodeId": ".-1.140265844397600"}]}}, "140265760784192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844398048": {"type": "Function", "content": {"typeVars": [".-1.140265844398048"], "argTypes": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844398048"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844398048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844398048", "variance": "INVARIANT"}}, "140265761014160": {"type": "Union", "content": {"items": [{"nodeId": "140265761014048"}, {"nodeId": ".-1.140265844398048"}]}}, "140265761014048": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265789852480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844392224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844392672"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140265789851424"}], "isAbstract": false}}, "140265844392224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852480"}, {"nodeId": "140265861264512", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265844392672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789852480"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789851424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739601728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__len__"]}}, "140265739601728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789851424"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265773689184": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789852832"}, {"nodeId": ".2.140265789852832"}]}}, "140265844407456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}], "returnType": {"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265861264512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844407904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}], "returnType": {"nodeId": "140265789853536", "args": [{"nodeId": ".2.140265861264512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789853536": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844403872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844404320"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844404768"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844405216"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789853536"}], "bases": [{"nodeId": "140265789852480"}, {"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265789853536"}]}], "isAbstract": false}}, ".1.140265789853536": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789853536", "variance": "COVARIANT"}}, "140265844403872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": "A"}, {"nodeId": ".1.140265789853536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265844404320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844404768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844405216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265789853536"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844506912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844507360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264512"}, {"nodeId": ".2.140265861264512"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844398944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844399392": {"type": "Function", "content": {"typeVars": [".-1.140265844399392"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844399392"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844399392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844399392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844399392", "variance": "INVARIANT"}}, "140265844399840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844400288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844400736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844401184": {"type": "Function", "content": {"typeVars": [".-1.140265844401184"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844401184"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844401184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844401184", "variance": "INVARIANT"}}, "140265761014496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844401184"}]}}, "140265844401632": {"type": "Function", "content": {"typeVars": [".-1.140265844401632"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844401632"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014608"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844401632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844401632", "variance": "INVARIANT"}}, "140265761014608": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844401632"}]}}, "140265844402080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".1.140265789853184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844402528": {"type": "Function", "content": {"typeVars": [".-1.140265844402528"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844402528"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": ".-1.140265844402528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844402528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844402528", "variance": "INVARIANT"}}, "140265844402976": {"type": "Function", "content": {"typeVars": [".-1.140265844402976"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844402976"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844402976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844402976", "variance": "INVARIANT"}}, "140265761014832": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844402976"}]}}, "140265844403424": {"type": "Function", "content": {"typeVars": [".-1.140265844403424"], "argTypes": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789853184"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265844403424"}]}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265761014944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265844403424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844403424", "variance": "INVARIANT"}}, "140265761014944": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789853184"}, {"nodeId": ".-1.140265844403424"}]}}, "140265810699744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265789853536", "args": [{"nodeId": ".2.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810700192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810700640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265810701088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265785721600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265810701536": {"type": "Function", "content": {"typeVars": [".-1.140265810701536", ".-2.140265810701536"], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265810701536"}, {"nodeId": ".-2.140265810701536"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265761023792"}, {"nodeId": "140265761023904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265810701536": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701536", "variance": "INVARIANT"}}, ".-2.140265810701536": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701536", "variance": "INVARIANT"}}, "140265761023792": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".-1.140265810701536"}]}}, "140265761023904": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265785721600"}, {"nodeId": ".-2.140265810701536"}]}}, "140265810701984": {"type": "Function", "content": {"typeVars": [".-1.140265810701984", ".-2.140265810701984"], "argTypes": [{"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".2.140265785721600"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265810701984"}, {"nodeId": ".-2.140265810701984"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265761024016"}, {"nodeId": "140265761024128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265810701984": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701984", "variance": "INVARIANT"}}, ".-2.140265810701984": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265810701984", "variance": "INVARIANT"}}, "140265761024016": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785721600"}, {"nodeId": ".-1.140265810701984"}]}}, "140265761024128": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265785721600"}, {"nodeId": ".-2.140265810701984"}]}}, "140265710194240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710193792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710193120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710194464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710194912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265748115104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748115104": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265710195136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747836576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836448000"}, {"nodeId": "140265836448448"}]}}, "140265836448000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265836448448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140265748111968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836448896"}, {"nodeId": "140265836449344"}]}}, "140265836448896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265836449344": {"type": "Function", "content": {"typeVars": [".-1.140265836449344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140265836449344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140265836449344": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836449344", "variance": "INVARIANT"}}, "140265836449792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140265836450240": {"type": "Function", "content": {"typeVars": [".-1.140265836450240"], "argTypes": [{"nodeId": ".-1.140265836450240"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".-1.140265836450240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140265836450240": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836450240", "variance": "INVARIANT"}}, "140265836450688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265861265568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836451136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265836451584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265710195584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140265836452480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265785728640": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735848000"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811176672"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811177120"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735848000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728640"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811176672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728640"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265811177120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728640"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836452928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785728640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265735762688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735762912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811173536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}, {"nodeId": "140265861265568"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140265811173984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265811175328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727936"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861263104": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760778928"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849322208"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849322656"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849323104"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844244768"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844245216"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265861263104"}], "bases": [{"nodeId": "140265861262752", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265861263104"}]}], "isAbstract": true}}, ".1.140265861263104": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861263104", "variance": "COVARIANT"}}, "140265760778928": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849321312"}, {"nodeId": "140265849321760"}]}}, "140265849321312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861263104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849321760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849322208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "A"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140265849322656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265849323104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844244768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861263104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844245216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263104"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861263104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265861259936": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739610240"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861259936"}], "bases": [{"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861259936"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140265861259936": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861259936", "variance": "COVARIANT"}}, "140265739610240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265861259936"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861259936"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265706424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265743451408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743451408": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "N"}]}}, "140265706425024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265743451520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743451520": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "N"}]}}, "140265706423232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706425920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706426144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265789865152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706425696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706426592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706426816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265706425472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819151424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140265819151872": {"type": "Function", "content": {"typeVars": [".0.140265819151872"], "argTypes": [{"nodeId": ".0.140265819151872"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265819151872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790228256"}, "def": "140265819151872", "variance": "INVARIANT"}}, "140265819152320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265743451744"}, {"nodeId": "140265743451856"}, {"nodeId": "140265743451968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265743451744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265743451856": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265790233888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773689296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773693664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773692880"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815451776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815452224"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815452672"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773689296": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265773693664": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265773692880": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785726528": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811043808"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785904032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735751712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735751936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735752160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265811043808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}, {"nodeId": "140265756051600"}, {"nodeId": "140265785726880"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140265756051600": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785726880": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735753728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735754848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735755072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735755296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785905264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811048736"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735753728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265756051712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756051712": {"type": "Union", "content": {"items": [{"nodeId": "140265785726880"}, {"nodeId": "N"}]}}, "140265735754176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735754400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785721248": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735336256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735337376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735336928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735337600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735337824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735338944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735339168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735339392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735339616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735438400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735438624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735438848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735439520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810691680"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810693920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810695712"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735336256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735337376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735336928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735337600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735337824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790227552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748353024"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823867328"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823867776"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823868224"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823868672"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823869120"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823869568"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823870464"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823870912"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823871808"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823872256"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823872704"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823873152"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823873600"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823874048"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823874496"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823874944"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823875392"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823875840"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823876288"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823876736"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823877184"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823877632"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823878080"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823878528"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824010304"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824010752"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824011200"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824011648"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824012096"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824012544"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824012992"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824013440"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824013888"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824014336"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824014784"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824015232"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824015680"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824016128"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824016576"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824017024"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705771680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705885920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824018368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824018816"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748355936"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824020160"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824020608"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824021056"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824021504"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824021952"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824022400"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824022848"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824023296"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824023744"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824024192"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824024640"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824025088"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824025984"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265748353024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823865984"}, {"nodeId": "140265823866432"}, {"nodeId": "140265823866880"}]}}, "140265823865984": {"type": "Function", "content": {"typeVars": [".0.140265823865984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748357056"}], "returnType": {"nodeId": ".0.140265823865984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265748357056": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265789863040"}, {"nodeId": "140265789850720"}, {"nodeId": "140265789865152"}]}}, "140265789850720": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739493760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__bytes__"]}}, "140265739493760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789850720"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265823865984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265823865984", "variance": "INVARIANT"}}, "140265823866432": {"type": "Function", "content": {"typeVars": [".0.140265823866432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265823866432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140265823866432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265823866432", "variance": "INVARIANT"}}, "140265823866880": {"type": "Function", "content": {"typeVars": [".0.140265823866880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265823866880"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265823866880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265823866880", "variance": "INVARIANT"}}, "140265823867328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823867776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823868224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748357168"}, {"nodeId": "140265748357280"}, {"nodeId": "140265748357392"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748357168": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748357280": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748357392": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823868672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265823869120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748357504"}, {"nodeId": "140265748357616"}, {"nodeId": "140265748357728"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748357504": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748357616": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748357728": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823869568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140265823870464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748357840"}, {"nodeId": "140265748357952"}, {"nodeId": "140265748358064"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748357840": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748357952": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748358064": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823870912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748358176"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140265748358176": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}]}}, "140265823871808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748358288"}, {"nodeId": "140265748358400"}, {"nodeId": "140265748358512"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748358288": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748358400": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748358512": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823872256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823872704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823873152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823873600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823874048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823874496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823874944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823875392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823875840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823876288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748358624"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748358624": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265790227904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748356944"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824109952"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824110400"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824110848"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824111296"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824111744"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824112192"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824112640"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824113088"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824113984"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824114432"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824114880"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824115776"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824116224"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824116672"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824117120"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824117568"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824118016"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824118464"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824118912"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824119360"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824119808"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824120256"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824120704"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824121152"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824121600"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824122048"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824122496"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824122944"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824123392"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824123840"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265824124288"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818996800"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818997248"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818997696"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818998144"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818998592"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818999040"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818999488"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265818999936"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819000384"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819000832"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819001280"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819001728"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819002176"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819002624"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819003072"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705982880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701561216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819004416"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819004864"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748360976"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743450512"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819007104"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819007552"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819008000"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819008448"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819008896"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819009344"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819009792"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819010240"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819010688"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819011136"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819011584"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819012032"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819012480"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819144256"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819144704"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819145152"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819145600"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265748356944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265824108608"}, {"nodeId": "140265824109056"}, {"nodeId": "140265824109504"}]}}, "140265824108608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824109056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748361648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748361648": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265789863040"}, {"nodeId": "140265789865152"}]}}, "140265824109504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140265824109952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824110400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824110848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265824111296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748361760"}, {"nodeId": "140265748361872"}, {"nodeId": "140265748361984"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748361760": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748361872": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748361984": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824111744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824112192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265824112640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362096"}, {"nodeId": "140265748362208"}, {"nodeId": "140265748362320"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748362096": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748362208": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748362320": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824113088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140265824113984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824114432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362432"}, {"nodeId": "140265748362544"}, {"nodeId": "140265748362656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748362432": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748362544": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748362656": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824114880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362768"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140265748362768": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}]}}, "140265824115776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748362880"}, {"nodeId": "140265748362992"}, {"nodeId": "140265748363104"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748362880": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748362992": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748363104": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824116224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265824116672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824117120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824117568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824118016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824118464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824118912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824119360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824119808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824120256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824120704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748363216"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748363216": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265824121152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824121600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748363328"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748363328": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824122048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748363552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748363552": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}]}}, "140265824122496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265824122944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824123392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824123840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824124288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265818996800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748363664"}, {"nodeId": "140265748363776"}, {"nodeId": "140265748363888"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748363664": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748363776": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748363888": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265818997248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364000"}, {"nodeId": "140265748364112"}, {"nodeId": "140265748364224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748364000": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748364112": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748364224": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265818997696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748364336"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748364336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265818998144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748364560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748364560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227904"}]}}, "140265818998592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364672"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227904"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748364672": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265818999040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364784"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748364784": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265818999488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748364896"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227904"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748364896": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265818999936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227904"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265819000384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265748365008"}, {"nodeId": "140265748365120"}, {"nodeId": "140265743450176"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748365008": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748365120": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265743450176": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265819000832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743450288"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265743450288": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265819001280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819001728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819002176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743450400"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140265743450400": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265819002624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819003072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265705982880": {"type": "Function", "content": {"typeVars": [".0.140265705982880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265705982880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265705982880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227904"}, "def": "140265705982880", "variance": "INVARIANT"}}, "140265701561216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819004416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819004864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748360976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819005312"}, {"nodeId": "140265819005760"}]}}, "140265819005312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819005760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743450512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819006208"}, {"nodeId": "140265819006656"}]}}, "140265819006208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819006656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790228608"}, {"nodeId": "140265743450848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265743450848": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265790227552"}]}}, "140265819007104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743450960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743450960": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265819007552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819008000": {"type": "Function", "content": {"typeVars": [".0.140265819008000"], "argTypes": [{"nodeId": ".0.140265819008000"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": ".0.140265819008000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819008000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227904"}, "def": "140265819008000", "variance": "INVARIANT"}}, "140265819008448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819008896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819009344": {"type": "Function", "content": {"typeVars": [".0.140265819009344"], "argTypes": [{"nodeId": ".0.140265819009344"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265819009344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819009344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227904"}, "def": "140265819009344", "variance": "INVARIANT"}}, "140265819009792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819010240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265743451184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743451184": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265789865152"}]}}, "140265819010688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819011136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819011584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819012032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819144256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819144704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819145152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819145600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227904"}, {"nodeId": "140265790228256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265861263456": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739737952"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760779376"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760779936"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760780272"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844248800"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844249248"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844249696"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844250144"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844250592"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844251040"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844251488"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140265861263456"}], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": ".1.140265861263456"}]}], "isAbstract": true}}, ".1.140265861263456": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861263456", "variance": "INVARIANT"}}, "140265739737952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140265760779376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844246112"}, {"nodeId": "140265844246560"}]}}, "140265844246112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861263456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844246560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760779936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844247008"}, {"nodeId": "140265844247456"}]}}, "140265844247008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265844247456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265790228608"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265760780272": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844247904"}, {"nodeId": "140265844248352"}]}}, "140265844247904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844248352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844248800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844249248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844249696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140265844250144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844250592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861263456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140265844251040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, {"nodeId": ".1.140265861263456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140265844251488": {"type": "Function", "content": {"typeVars": [".0.140265844251488"], "argTypes": [{"nodeId": ".0.140265844251488"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265861263456"}]}], "returnType": {"nodeId": ".0.140265844251488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844251488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265861263456"}]}, "def": "140265844251488", "variance": "INVARIANT"}}, "140265823876736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823877184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748358736"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748358736": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265823877632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748358960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748358960": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}}, "140265823878080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265823878528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824010304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265824010752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748359072"}, {"nodeId": "140265748359184"}, {"nodeId": "140265748359296"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748359072": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748359184": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748359296": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824011200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748359408"}, {"nodeId": "140265748359520"}, {"nodeId": "140265748359632"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748359408": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265789863040"}]}}, "140265748359520": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748359632": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824011648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748359744"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265748359744": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265824012096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265748359968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748359968": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}}, "140265824012544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360080"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748360080": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824012992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360192"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748360192": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824013440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360304"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748360304": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824013888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265824014336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360416"}, {"nodeId": "140265748360528"}, {"nodeId": "140265748360640"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748360416": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265789865152"}]}]}}, "140265748360528": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748360640": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265824014784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360752"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748360752": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824015232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824015680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824016128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748360864"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140265748360864": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "N"}]}}, "140265824016576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265824017024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265705771680": {"type": "Function", "content": {"typeVars": [".0.140265705771680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265705771680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265705771680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227552"}, "def": "140265705771680", "variance": "INVARIANT"}}, "140265705885920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824018368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265824018816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748355936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265824019264"}, {"nodeId": "140265824019712"}]}}, "140265824019264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824019712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824020160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824020608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824021056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824021504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824021952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265748361200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748361200": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265789865152"}]}}, "140265824022400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824022848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824023296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824023744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824024192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824024640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265824025088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265748361424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748361424": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}]}}, "140265824025984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265735338496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735338944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735339168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735339392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735339616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735438400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735438624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735438848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735439520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810691680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265761023568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761023568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265761023344"}]}}, "140265761023344": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265810693920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140265810695712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721248"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140265735754624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735754848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735755072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265756052160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756052160": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "A"}]}}, "140265735755296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785905264": {"type": "Union", "content": {"items": [{"nodeId": "140265764880672"}, {"nodeId": "N"}]}}, "140265764880672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265811048736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785904032": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265735751712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735751936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735752160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726528"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265815451776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140265815452224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790233888"}, {"nodeId": "140265743997344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743997344": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265815452672": {"type": "Function", "content": {"typeVars": [".0.140265815452672"], "argTypes": [{"nodeId": ".0.140265815452672"}, {"nodeId": "140265743997568"}], "returnType": {"nodeId": ".0.140265815452672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140265815452672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790233888"}, "def": "140265815452672", "variance": "INVARIANT"}}, "140265743997568": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265743451968": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265819152768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790227200"}, {"nodeId": "140265743452080"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140265743452080": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}]}}, "140265743450624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819153216"}, {"nodeId": "140265819153664"}]}}, "140265819153216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819153664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819154112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819154560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819155008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743451632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819155456"}, {"nodeId": "140265819155904"}]}}, "140265819155456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790228608"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819155904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819156352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265743452864"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140265743452864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140265819157696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819158144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819158592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819159040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265743452752"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140265743452752": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}]}}, "140265819159936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819275328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790228256"}, {"nodeId": "140265790228256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265789849664": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739488832"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__int__"]}}, "140265739488832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789849664"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764926240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848367456"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__trunc__"]}}, "140265848367456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926240"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265836454720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266272"}, "def": "140265836454720", "variance": "INVARIANT"}}, "140265836455168": {"type": "Function", "content": {"typeVars": [".0.140265836455168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748117456"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265836455168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140265748117456": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, ".0.140265836455168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266272"}, "def": "140265836455168", "variance": "INVARIANT"}}, "140265836455616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748117792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748117792": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "0"}]}}, "140265710198944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710198272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710199840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710200288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836457856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836458304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836458752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836460096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265789863040"}, {"nodeId": "140265748118352"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140265748118352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265710200064": {"type": "Function", "content": {"typeVars": [".0.140265710200064"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748118464"}, {"nodeId": "140265748118800"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": ".0.140265710200064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140265748118464": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265789863040"}]}, {"nodeId": "140265789850720"}, {"nodeId": "140265789865152"}]}}, "140265748118800": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140265710200064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266272"}, "def": "140265710200064", "variance": "INVARIANT"}}, "140265836461440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823240256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823240704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823241152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823241600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861266624": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823328000"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823328448"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823328896"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823329344"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710022976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710024096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710020288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823331136"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823331584"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823332032"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823332480"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823332928"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823333376"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823333824"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823334272"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748117232"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823335616"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823336064"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823336512"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823336960"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823337408"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823337856"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823453248"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748350224"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823455040"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823455488"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823455936"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823456384"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748350896"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823457728"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823458176"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823458624"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823459072"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823459520"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823459968"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823460416"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823460864"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823461312"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823461760"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823462208"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823462656"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265823328000": {"type": "Function", "content": {"typeVars": [".0.140265823328000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748350336"}], "returnType": {"nodeId": ".0.140265823328000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140265748350336": {"type": "Union", "content": {"items": [{"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}]}}, "140265789850016": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739490624"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__float__"]}}, "140265739490624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789850016"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265823328000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266624"}, "def": "140265823328000", "variance": "INVARIANT"}}, "140265823328448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748350560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748350560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265823328896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823329344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710022976": {"type": "Function", "content": {"typeVars": [".0.140265710022976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265710022976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265710022976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266624"}, "def": "140265710022976", "variance": "INVARIANT"}}, "140265710024096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710020288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823331136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823331584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823332032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823332928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823333376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823333824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823334272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748350784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748350784": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265748117232": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823334720"}, {"nodeId": "140265823335168"}]}}, "140265823334720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823335168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823335616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823336064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823336512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823336960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823337408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823337856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823453248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748351232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748351232": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265748350224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823453696"}, {"nodeId": "140265823454144"}, {"nodeId": "140265823454592"}]}}, "140265823453696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265748351456"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748351456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765152560"}}}, "140265765152560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265823454144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265748351568"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748351568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765154688"}}}, "140265765154688": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265861266976": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748351344"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710366816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710584992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823465792"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823466240"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823466688"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823467136"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823467584"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823468032"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823468480"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823468928"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823584320"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823584768"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823585216"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823585664"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823586112"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823586560"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823587008"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823587456"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823587904"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265748351344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823463104"}, {"nodeId": "140265823463552"}]}}, "140265823463104": {"type": "Function", "content": {"typeVars": [".0.140265823463104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748352352"}, {"nodeId": "140265748352464"}], "returnType": {"nodeId": ".0.140265823463104"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140265748352352": {"type": "Union", "content": {"items": [{"nodeId": "140265861266976"}, {"nodeId": "140265789850368"}, {"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}]}}, "140265789850368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739492192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__complex__"]}}, "140265739492192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789850368"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748352464": {"type": "Union", "content": {"items": [{"nodeId": "140265861266976"}, {"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}]}}, ".0.140265823463104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266976"}, "def": "140265823463104", "variance": "INVARIANT"}}, "140265823463552": {"type": "Function", "content": {"typeVars": [".0.140265823463552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265748352576"}], "returnType": {"nodeId": ".0.140265823463552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140265748352576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789850368"}, {"nodeId": "140265789850016"}, {"nodeId": "140265789863040"}, {"nodeId": "140265861266976"}]}}, ".0.140265823463552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861266976"}, "def": "140265823463552", "variance": "INVARIANT"}}, "140265710366816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710584992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823465792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823466240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823466688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823467136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823467584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823468032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823468480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823468928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823584320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823584768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823585216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823585664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823586112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823586560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823587008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823587456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823587904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266976"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823454592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823455040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265748351904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748351904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}]}}, "140265823455488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823456384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748350896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823456832"}, {"nodeId": "140265823457280"}]}}, "140265823456832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265823457280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823457728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823458176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823458624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823459072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823459968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823460416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823460864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823461312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823461760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823462208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823462656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823242048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823242496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748119024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748119024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265823242944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823243392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823243840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823244288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823244736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823245184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823245632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748119248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748119248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265748116672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265823246080"}, {"nodeId": "140265823246528"}, {"nodeId": "140265823246976"}, {"nodeId": "140265823247424"}, {"nodeId": "140265823247872"}, {"nodeId": "140265823248320"}]}}, "140265823246080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823246528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265823246976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265748349440"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748349440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765152560"}}}, "140265823247424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265748349552"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748349552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765154688"}}}, "140265823247872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265823248320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265823248768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265748349776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265748349776": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265823249216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823249664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823250112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823250560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823251008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823251456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823251904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823252352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823252800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823253248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823253696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823254144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823254592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823255040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823255488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823255936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823322176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265823322624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748350112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748350112": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265823323072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823323520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823323968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823324416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823324864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823325312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823325760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823326208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823326656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823327104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823327552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819428160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819428608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819429056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265819429504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743455328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819429952"}, {"nodeId": "140265819430400"}]}}, "140265819429952": {"type": "Function", "content": {"typeVars": [".-1.140265819429952"], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".-1.140265819429952"}]}, {"nodeId": "N"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140265819429952": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140265760652336"}, "def": "140265819429952", "variance": "INVARIANT"}}, "140265760652336": {"type": "Union", "content": {"items": [{"nodeId": "140265764921312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764921664", "args": [{"nodeId": "A"}]}]}}, "140265764921312": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848361184"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140265764921312"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__lt__"]}}, ".1.140265764921312": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764921312", "variance": "CONTRAVARIANT"}}, "140265848361184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764921312", "args": [{"nodeId": ".1.140265764921312"}]}, {"nodeId": ".1.140265764921312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764921664": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848361632"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140265764921664"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__gt__"]}}, ".1.140265764921664": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764921664", "variance": "CONTRAVARIANT"}}, "140265848361632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764921664", "args": [{"nodeId": ".1.140265764921664"}]}, {"nodeId": ".1.140265764921664"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819430400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265748541088"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140265748541088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "140265743456896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743456896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995808"}}}, "140265764995808": {"type": "Union", "content": {"items": [{"nodeId": "140265764921312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764921664", "args": [{"nodeId": "A"}]}]}}, "140265819430848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819431296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743456448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819431744"}, {"nodeId": "140265819432192"}]}}, "140265819431744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265790229312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819432192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743456560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819432640"}, {"nodeId": "140265819433088"}]}}, "140265819432640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265790229312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819433088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790228608"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819433536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265743457120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743457120": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265743456784": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819433984"}, {"nodeId": "140265819434432"}]}}, "140265819433984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819434432": {"type": "Function", "content": {"typeVars": [".-1.140265819434432"], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".-1.140265819434432"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265743457344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819434432": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819434432", "variance": "INVARIANT"}}, "140265743457344": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265819434432"}, {"nodeId": ".1.140265790229312"}]}}, "140265819434880": {"type": "Function", "content": {"typeVars": [".0.140265819434880"], "argTypes": [{"nodeId": ".0.140265819434880"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": ".0.140265819434880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819434880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "def": "140265819434880", "variance": "INVARIANT"}}, "140265819435328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819435776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819436224": {"type": "Function", "content": {"typeVars": [".0.140265819436224"], "argTypes": [{"nodeId": ".0.140265819436224"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265819436224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819436224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, "def": "140265819436224", "variance": "INVARIANT"}}, "140265819436672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819437120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819437568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819438016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819438464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819570240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265790229312"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819570688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265819574272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819574720": {"type": "Function", "content": {"typeVars": [".0.140265819574720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265819574720"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140265819574720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "def": "140265819574720", "variance": "INVARIANT"}}, "140265819575168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819575616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265789855648", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789855648": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697628832"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789855648"}, {"nodeId": ".2.140265789855648"}], "bases": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265789855648"}]}], "isAbstract": false}}, ".1.140265789855648": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789855648", "variance": "COVARIANT"}}, ".2.140265789855648": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789855648", "variance": "COVARIANT"}}, "140265697628832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855648", "args": [{"nodeId": ".1.140265789855648"}, {"nodeId": ".2.140265789855648"}]}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265789855648"}, {"nodeId": ".2.140265789855648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819576064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265789856000", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789856000": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697631968"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789856000"}, {"nodeId": ".2.140265789856000"}], "bases": [{"nodeId": "140265789853536", "args": [{"nodeId": ".2.140265789856000"}]}], "isAbstract": false}}, ".1.140265789856000": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856000", "variance": "COVARIANT"}}, ".2.140265789856000": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856000", "variance": "COVARIANT"}}, "140265697631968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856000", "args": [{"nodeId": ".1.140265789856000"}, {"nodeId": ".2.140265789856000"}]}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265789856000"}, {"nodeId": ".2.140265789856000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819576512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265789856352", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789856352": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697363328"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}], "bases": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}]}], "isAbstract": false}}, ".1.140265789856352": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856352", "variance": "COVARIANT"}}, ".2.140265789856352": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789856352", "variance": "COVARIANT"}}, "140265697363328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789856352", "args": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}]}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": ".1.140265789856352"}, {"nodeId": ".2.140265789856352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743457456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819576960"}, {"nodeId": "140265819577408"}]}}, "140265819576960": {"type": "Function", "content": {"typeVars": [".-1.140265819576960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819576960"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265819576960"}, {"nodeId": "140265743458800"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140265819576960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819576960", "variance": "INVARIANT"}}, "140265743458800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265819577408": {"type": "Function", "content": {"typeVars": [".-1.140265819577408", ".-2.140265819577408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819577408"}]}, {"nodeId": ".-2.140265819577408"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265819577408"}, {"nodeId": ".-2.140265819577408"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140265819577408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819577408", "variance": "INVARIANT"}}, ".-2.140265819577408": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819577408", "variance": "INVARIANT"}}, "140265743458240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819577856"}, {"nodeId": "140265819578304"}]}}, "140265819577856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": "140265743459024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265743459024": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": "N"}]}}, "140265819578304": {"type": "Function", "content": {"typeVars": [".-1.140265819578304"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}, {"nodeId": "140265743459136"}], "returnType": {"nodeId": "140265743459248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743459136": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819578304"}]}}, ".-1.140265819578304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819578304", "variance": "INVARIANT"}}, "140265743459248": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819578304"}]}}, "140265743458576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819578752"}, {"nodeId": "140265819579200"}]}}, "140265819578752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": ".2.140265790229664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819579200": {"type": "Function", "content": {"typeVars": [".-1.140265819579200"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}, {"nodeId": "140265743459472"}], "returnType": {"nodeId": "140265743459584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743459472": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819579200"}]}}, ".-1.140265819579200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819579200", "variance": "INVARIANT"}}, "140265743459584": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-1.140265819579200"}]}}, "140265819579648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819580096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": ".2.140265790229664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819580544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265819580992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": ".1.140265790229664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819581440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819581888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265790229664"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819582336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265819582784": {"type": "Function", "content": {"typeVars": [".-1.140265819582784", ".-2.140265819582784"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265819582784"}, {"nodeId": ".-2.140265819582784"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265743459808"}, {"nodeId": "140265743459920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819582784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819582784", "variance": "INVARIANT"}}, ".-2.140265819582784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819582784", "variance": "INVARIANT"}}, "140265743459808": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".-1.140265819582784"}]}}, "140265743459920": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-2.140265819582784"}]}}, "140265819583232": {"type": "Function", "content": {"typeVars": [".-1.140265819583232", ".-2.140265819583232"], "argTypes": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265819583232"}, {"nodeId": ".-2.140265819583232"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265743460032"}, {"nodeId": "140265743460144"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819583232": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819583232", "variance": "INVARIANT"}}, ".-2.140265819583232": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819583232", "variance": "INVARIANT"}}, "140265743460032": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".-1.140265819583232"}]}}, "140265743460144": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265790229664"}, {"nodeId": ".-2.140265819583232"}]}}, "140265743458912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819583680"}, {"nodeId": "140265819584128"}]}}, "140265819583680": {"type": "Function", "content": {"typeVars": [".0.140265819583680"], "argTypes": [{"nodeId": ".0.140265819583680"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}], "returnType": {"nodeId": ".0.140265819583680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819583680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "def": "140265819583680", "variance": "INVARIANT"}}, "140265819584128": {"type": "Function", "content": {"typeVars": [".0.140265819584128"], "argTypes": [{"nodeId": ".0.140265819584128"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743460480"}]}], "returnType": {"nodeId": ".0.140265819584128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265819584128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}, "def": "140265819584128", "variance": "INVARIANT"}}, "140265743460480": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265790229664"}, {"nodeId": ".2.140265790229664"}]}}, "140265861264864": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739926464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739926912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844508704"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760781728"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844510048"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761015168"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761015616"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}], "isAbstract": true}}, ".1.140265861264864": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264864", "variance": "INVARIANT"}}, ".2.140265861264864": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861264864", "variance": "INVARIANT"}}, "140265739926464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265739926912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844508704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760781728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844509152"}, {"nodeId": "140265844509600"}]}}, "140265844509152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}], "returnType": {"nodeId": ".2.140265861264864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844509600": {"type": "Function", "content": {"typeVars": [".-1.140265844509600"], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": "140265761015728"}], "returnType": {"nodeId": "140265761015840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140265761015728": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264864"}, {"nodeId": ".-1.140265844509600"}]}}, ".-1.140265844509600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844509600", "variance": "INVARIANT"}}, "140265761015840": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265861264864"}, {"nodeId": ".-1.140265844509600"}]}}, "140265844510048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}], "returnType": {"nodeId": "140265761016064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761016064": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}}, "140265761015168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844510496"}, {"nodeId": "140265844510944"}]}}, "140265844510496": {"type": "Function", "content": {"typeVars": [".-1.140265844510496"], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": "140265761016288"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265761016400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265761016288": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265844510496"}, {"nodeId": "N"}]}}, ".-1.140265844510496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844510496", "variance": "INVARIANT"}}, "140265761016400": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265844510496"}, {"nodeId": "N"}]}}, "140265844510944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": ".2.140265861264864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265761015616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844511392"}, {"nodeId": "140265844511840"}, {"nodeId": "140265844512288"}]}}, "140265844511392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265844511840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265761016736"}]}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265761016736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}}, "140265844512288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265861264864"}, {"nodeId": ".2.140265861264864"}]}, {"nodeId": ".2.140265861264864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265747836240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265832169536"}]}}, "140265832169536": {"type": "Function", "content": {"typeVars": [".0.140265832169536"], "argTypes": [{"nodeId": ".0.140265832169536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265832169536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265832169536", "variance": "INVARIANT"}}, "140265710328000": {"type": "Function", "content": {"typeVars": [".0.140265710328000"], "argTypes": [{"nodeId": ".0.140265710328000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265710328000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265710328000", "variance": "INVARIANT"}}, "140265832170432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832170880": {"type": "Function", "content": {"typeVars": [".0.140265832170880"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265832170880"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265832170880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265832170880", "variance": "INVARIANT"}}, "140265832171328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265832171776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832172224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832172672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832173120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265832173568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265832174016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832174464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265832174912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265832175360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832175808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265748112416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748112416": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}]}}, "140265832176256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265748112640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748112640": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}]}}, "140265832177600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265832178048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140265710336064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265823589696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227200"}, "def": "140265823589696", "variance": "INVARIANT"}}, "140265823590144": {"type": "Function", "content": {"typeVars": [".0.140265823590144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265823590144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140265823590144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265790227200"}, "def": "140265823590144", "variance": "INVARIANT"}}, "140265823590592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823591040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823591488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823591936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748353136"}, {"nodeId": "140265748353248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140265748353136": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748353248": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823592384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265823592832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748353360"}, {"nodeId": "140265748353472"}, {"nodeId": "140265748353584"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748353360": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265748353472": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748353584": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823593280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140265823594176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748353696"}, {"nodeId": "140265748353808"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748353696": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748353808": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823594624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265823595072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790226496"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140265790226496": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823588800"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__"]}}, "140265823588800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790226496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823595520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748353920"}, {"nodeId": "140265748354032"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748353920": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748354032": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823595968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823596416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823596864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823597312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823597760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823598208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823598656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823599104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823599552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823600000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823699008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823699456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823699904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823700352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823700800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823701248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748354144"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748354144": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823701696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265748354368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748354368": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265823702144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265823702592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823703040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265823703488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748354480"}, {"nodeId": "140265748354592"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748354480": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748354592": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823703936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265748354704"}, {"nodeId": "140265748354816"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748354704": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748354816": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823704384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265823704832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265748355040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748355040": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265823705280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355152"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748355152": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823705728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355264"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748355264": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823706176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355376"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265748355376": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823706624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265823707072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355488"}, {"nodeId": "140265748355600"}, {"nodeId": "140265748355712"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265748355488": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265748355600": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265748355712": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "N"}]}}, "140265823707520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748355824"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265748355824": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265823707968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823708416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823708864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790226848"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790226848": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265823589248"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__"]}}, "140265823589248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790226848"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265748352800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748352800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265823709312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265823709760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748352240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265752623392"}, {"nodeId": "140265823710208"}, {"nodeId": "140265823710656"}]}}, "140265752623392": {"type": "Function", "content": {"typeVars": [".-1.140265752623392"], "argTypes": [{"nodeId": "140265748356160"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265752623392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265748356160": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265752623392"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265752623392"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265748356048"}, {"nodeId": ".-1.140265752623392"}]}]}}, ".-1.140265752623392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752623392", "variance": "INVARIANT"}}, "140265748356048": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265823710208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823710656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265748356272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265748356272": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265823711552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823712000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823712448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823712896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823713344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265748356384"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265748356384": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265823713792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823714240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823714688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823862848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265823863296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823863744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823864192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823864640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823865088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265823865536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265748356720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265748356720": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265693807008": {"type": "Concrete", "content": {"module": "annotation_tests", "simpleName": "A", "members": [{"kind": "Variable", "content": {"name": "self_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265693807008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265856936064"}, "name": "f"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265874275264"}, "name": "g"}}, {"kind": "Variable", "content": {"name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693807008", "args": [{"nodeId": "140265861266272"}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": false}}], "typeVars": [{"nodeId": ".1.140265693807008"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265693807008": {"type": "TypeVar", "content": {"varName": "XXX", "values": [{"nodeId": "140265693807008", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861266272"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265693807008", "variance": "INVARIANT"}}, "140265856936064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693807008", "args": [{"nodeId": ".1.140265693807008"}]}, {"nodeId": "A"}, {"nodeId": "140265693807008", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "140265874275264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693807008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265828382560": {"type": "Function", "content": {"typeVars": [".-1.140265828382560"], "argTypes": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": ".-1.140265828382560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["collection", "x"]}}, ".-1.140265828382560": {"type": "TypeVar", "content": {"varName": "XXX", "values": [{"nodeId": "140265693807008", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861266272"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265828382560", "variance": "INVARIANT"}}, "140265874276080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265739917952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["x", "y", "a", "b", "c"]}}, "140265710021856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693901456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693901456": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265856940320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693901792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693901792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265693807360": {"type": "Concrete", "content": {"module": "annotation_tests", "simpleName": "Color", "members": [{"kind": "Variable", "content": {"name": "RED", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "GREEN", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "BLUE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764450048"}], "isAbstract": false}}, "140265764450048": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710021408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710022080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785801888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710022304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710022528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844954208"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844954656"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844955104"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844955552"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265710021408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710022080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785801888": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265710022304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140265710022528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140265844954208": {"type": "Function", "content": {"typeVars": [".0.140265844954208"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265844954208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140265844954208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450048"}, "def": "140265844954208", "variance": "INVARIANT"}}, "140265844954656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844955104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140265844955552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450048"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140265710023424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693902128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693902128": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265739612256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263808", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265828382112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265739602848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265853043424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258528", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265861258528": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739497120"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861258528"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__abs__"]}}, ".1.140265861258528": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861258528", "variance": "COVARIANT"}}, "140265739497120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258528", "args": [{"nodeId": ".1.140265861258528"}]}], "returnType": {"nodeId": ".1.140265861258528"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265856941664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693902464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140265693902464": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265789864096": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744218624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744384960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827341856"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744385184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744385408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265744218624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265760771760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760771760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265744384288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744384960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265760771984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760771984": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827341856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}, {"nodeId": "140265790227200"}, {"nodeId": "140265760772208"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265760772432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140265760772208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140265790227200"}]}}, "140265760772432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265744385184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861256768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861256768": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739299392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853056864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739299392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256768"}], "returnType": {"nodeId": "140265861257472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861257472": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739302304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739303424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739303648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739303872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849128992"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739304544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739304096"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849131232"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849131680"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739302304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739303424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265760776016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760776016": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739303648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739303872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849128992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}, {"nodeId": "140265790227200"}, {"nodeId": "140265760776240"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140265760776240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739304544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861256768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739304096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}], "returnType": {"nodeId": "140265861257120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861257120": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739300512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853057760"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739300512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257120"}], "returnType": {"nodeId": "140265861257472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853057760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257120"}, {"nodeId": "140265861257472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140265849131232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861256416": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853051936"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853052384"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853052832"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265853051936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853052384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853052832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256416"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849131680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853056864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256768"}, {"nodeId": "140265861257472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140265744385408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864096"}], "returnType": {"nodeId": "140265861257120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861256064": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739293120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739293568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739293792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739294016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739294240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853050144"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853050592"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853051040"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265739293120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739293568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265760774784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760774784": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739293792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739294016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739294240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853050144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}, {"nodeId": "140265760775232"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140265760775232": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265853050592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265853051040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861256064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861257824": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849132128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849132576"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849133024"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849133472"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861265568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265849132128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140265849132576": {"type": "Function", "content": {"typeVars": [".-1.140265849132576"], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": ".-1.140265849132576"}], "returnType": {"nodeId": ".-1.140265849132576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265849132576": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265849132576", "variance": "INVARIANT"}}, "140265849133024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265849133472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861257824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861256416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265861258176": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849135264"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265849135264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258176"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789898272": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789896512"}], "isAbstract": false}}, "140265789896512": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827635872"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827636320"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827636768"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827637216"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827637664"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140265861265568"}], "isAbstract": false}}, "140265789857056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743460256"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819731584"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819732032"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819732480"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819732928"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819733376"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819865152"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819865600"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819866048"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819866496"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819866944"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819867392"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819867840"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819868288"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819868736"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819869184"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819869632"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819870080"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819870528"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819870976"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819871424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789857056"}], "bases": [{"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789857056"}]}], "isAbstract": false}}, ".1.140265789857056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789857056", "variance": "COVARIANT"}}, "140265743460256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819730688"}, {"nodeId": "140265819731136"}]}}, "140265819730688": {"type": "Function", "content": {"typeVars": [".0.140265819730688"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265819730688"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265819730688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "def": "140265819730688", "variance": "INVARIANT"}}, "140265819731136": {"type": "Function", "content": {"typeVars": [".0.140265819731136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": ".0.140265819731136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265819731136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "def": "140265819731136", "variance": "INVARIANT"}}, "140265819731584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819732032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819732480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140265819732928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819733376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819865152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819865600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819866048": {"type": "Function", "content": {"typeVars": [".-1.140265819866048"], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819866048"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": "140265743462384"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140265819866048": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819866048", "variance": "INVARIANT"}}, "140265743462384": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857056"}, {"nodeId": ".-1.140265819866048"}]}}, "140265819866496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819866944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819867392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819867840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819868288": {"type": "Function", "content": {"typeVars": [".-1.140265819868288"], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819868288"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": "140265743462496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819868288": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819868288", "variance": "INVARIANT"}}, "140265743462496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857056"}, {"nodeId": ".-1.140265819868288"}]}}, "140265819868736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".1.140265789857056"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819869184": {"type": "Function", "content": {"typeVars": [".-1.140265819869184"], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": ".-1.140265819869184"}]}], "returnType": {"nodeId": "140265789857056", "args": [{"nodeId": "140265743462608"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265819869184": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819869184", "variance": "INVARIANT"}}, "140265743462608": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857056"}, {"nodeId": ".-1.140265819869184"}]}}, "140265819869632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819870080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819870528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819870976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857056", "args": [{"nodeId": ".1.140265789857056"}]}, {"nodeId": "140265861263808", "args": [{"nodeId": "140265861254656"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819871424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265827635872": {"type": "Function", "content": {"typeVars": [".-1.140265827635872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140265827635872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140265827635872": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827635872", "variance": "INVARIANT"}}, "140265827636320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140265827636768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140265827637216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "140265747834560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140265747834560": {"type": "Union", "content": {"items": [{"nodeId": "140265765093440", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265765093440": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848372832"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140265765093440"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["write"]}}, ".1.140265765093440": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765093440", "variance": "CONTRAVARIANT"}}, "140265848372832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765093440", "args": [{"nodeId": ".1.140265765093440"}]}, {"nodeId": ".1.140265765093440"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265827637664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789896512"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140265789851072": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739495104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__index__"]}}, "140265739495104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789851072"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861258880": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760575712"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140265861258880"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__round__"]}}, ".1.140265861258880": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861258880", "variance": "COVARIANT"}}, "140265760575712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849138848"}, {"nodeId": "140265849139296"}]}}, "140265849138848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258880", "args": [{"nodeId": ".1.140265861258880"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849139296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258880", "args": [{"nodeId": ".1.140265861258880"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265861258880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265789851776": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739602176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__hash__"]}}, "140265739602176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789851776"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861260288": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849142432"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739613376"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760771536"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849308320"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849308768"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739613600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739614048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739614720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739614944"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265861260288"}]}], "isAbstract": true}}, ".1.140265861260288": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260288", "variance": "COVARIANT"}}, ".2.140265861260288": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260288", "variance": "CONTRAVARIANT"}}, ".3.140265861260288": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260288", "variance": "COVARIANT"}}, "140265849142432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739613376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, {"nodeId": ".2.140265861260288"}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760771536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849307424"}, {"nodeId": "140265849307872"}]}}, "140265849307424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, {"nodeId": "0"}, {"nodeId": "140265760777808"}, {"nodeId": "140265760777920"}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760777808": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265760777920": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849307872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265760778032"}], "returnType": {"nodeId": ".1.140265861260288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760778032": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849308320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849308768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265739613600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739614048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739614720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739614944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265861260288"}, {"nodeId": ".2.140265861260288"}, {"nodeId": ".3.140265861260288"}]}], "returnType": {"nodeId": "140265760778480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760778480": {"type": "Union", "content": {"items": [{"nodeId": "140265861260288", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265861260640": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739615616"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861260640"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__await__"]}}, ".1.140265861260640": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260640", "variance": "COVARIANT"}}, "140265739615616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861260640"}]}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140265861260640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861260992": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739667936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739668160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739668384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739668608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739668832"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760777584"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739669056"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}], "bases": [{"nodeId": "140265861260640", "args": [{"nodeId": ".3.140265861260992"}]}], "isAbstract": true}}, ".1.140265861260992": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260992", "variance": "COVARIANT"}}, ".2.140265861260992": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260992", "variance": "CONTRAVARIANT"}}, ".3.140265861260992": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861260992", "variance": "COVARIANT"}}, "140265739667936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265760778816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760778816": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265739668160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739668384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739668608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739668832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}, {"nodeId": ".2.140265861260992"}], "returnType": {"nodeId": ".1.140265861260992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760777584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849313696"}, {"nodeId": "140265849314144"}]}}, "140265849313696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}, {"nodeId": "0"}, {"nodeId": "140265760779040"}, {"nodeId": "140265760779152"}], "returnType": {"nodeId": ".1.140265861260992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779040": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265760779152": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849314144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265760779264"}], "returnType": {"nodeId": ".1.140265861260992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779264": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265739669056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265861260992"}, {"nodeId": ".2.140265861260992"}, {"nodeId": ".3.140265861260992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789852128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140265789852128"}, {"nodeId": ".2.140265789852128"}, {"nodeId": ".3.140265789852128"}, {"nodeId": ".4.140265789852128"}], "bases": [{"nodeId": "140265861260640", "args": [{"nodeId": ".3.140265789852128"}]}, {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265789852128"}, {"nodeId": ".2.140265789852128"}, {"nodeId": ".3.140265789852128"}]}], "isAbstract": true}}, ".1.140265789852128": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "COVARIANT"}}, ".2.140265789852128": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "CONTRAVARIANT"}}, ".3.140265789852128": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "COVARIANT"}}, ".4.140265789852128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789852128", "variance": "INVARIANT"}}, "140265861261344": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739670400"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861261344"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__aiter__"]}}, ".1.140265861261344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861261344", "variance": "COVARIANT"}}, "140265739670400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861261344", "args": [{"nodeId": ".1.140265861261344"}]}], "returnType": {"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861261696": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739676224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849315936"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140265861261696"}], "bases": [{"nodeId": "140265861261344", "args": [{"nodeId": ".1.140265861261696"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140265861261696": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861261696", "variance": "COVARIANT"}}, "140265739676224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261696"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861261696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265849315936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261696"}]}], "returnType": {"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861261696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265861262048": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849316384"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265739678912"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760777696"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265849318176"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739678016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739679808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739680032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265739680256"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}], "bases": [{"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265861262048"}]}], "isAbstract": true}}, ".1.140265861262048": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262048", "variance": "COVARIANT"}}, ".2.140265861262048": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265861262048", "variance": "CONTRAVARIANT"}}, "140265849316384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739678912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}, {"nodeId": ".2.140265861262048"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760777696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265849317280"}, {"nodeId": "140265849317728"}]}}, "140265849317280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}, {"nodeId": "0"}, {"nodeId": "140265760779488"}, {"nodeId": "140265760779600"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779488": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265760779600": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849317728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265760779712"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265861262048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265760779712": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265849318176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739678016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739679808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739680032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265785726880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265739680256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265861262048"}, {"nodeId": ".2.140265861262048"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789853888": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740027488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740028608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740029504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740030176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740030848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740031520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740032192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740032864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740033536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740034432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740035104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740036000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740036896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740037568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740038240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740038912"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761016176"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761016512"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740206368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740207040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740207936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740209056"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265789853888"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853888"}]}], "isAbstract": true}}, ".1.140265789853888": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789853888", "variance": "INVARIANT"}}, "140265740027488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740028608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740029504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740030176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740030848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740031520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740032192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740032864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265789853888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265740033536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740034432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265789853888"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265740035104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789853888"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265740036000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265740036896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740037568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740038240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265761016848"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265761016848": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265740038912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761016176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844519904"}, {"nodeId": "140265764889856"}, {"nodeId": "140265844520800"}]}}, "140265844519904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764889856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844520800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": ".1.140265789853888"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761016512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844521248"}, {"nodeId": "140265764890976"}, {"nodeId": "140265844522144"}]}}, "140265844521248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764890976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844522144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265740206368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": ".1.140265789853888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740207040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789853888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265740207936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265740209056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265789853888"}]}, {"nodeId": "140265761017184"}, {"nodeId": "140265761017296"}, {"nodeId": "140265761017408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265761017184": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265761017296": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265761017408": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265789854240": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740209952"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}], "isAbstract": true}}, "140265740209952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854240"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789854592": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740211520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740211968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740212192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740212416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265740212640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740212864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": true}}, "140265740211520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740211968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740212192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265761017520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761017520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265740212416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740212640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265740212864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854592"}], "returnType": {"nodeId": "140265789854592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789854944": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761018640"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265740215552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844667808"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844668704"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140265761018640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844666464"}, {"nodeId": "140265844666912"}]}}, "140265844666464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854944"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265761020208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265761020208": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265844666912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854944"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140265740215552": {"type": "Function", "content": {"typeVars": [".0.140265740215552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265740215552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140265740215552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789854944"}, "def": "140265740215552", "variance": "INVARIANT"}}, "140265844667808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789854944"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844668704": {"type": "Function", "content": {"typeVars": [".0.140265844668704"], "argTypes": [{"nodeId": ".0.140265844668704"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265844668704"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140265844668704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789854944"}, "def": "140265844668704", "variance": "INVARIANT"}}, "140265789855296": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844669152"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844669600"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844670048"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844850976"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844851424"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844851872"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844852320"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844852768"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844853216"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844853664"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}], "isAbstract": true}}, "140265844669152": {"type": "Function", "content": {"typeVars": [".0.140265844669152"], "argTypes": [{"nodeId": ".0.140265844669152"}], "returnType": {"nodeId": ".0.140265844669152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265844669152": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789855296"}, "def": "140265844669152", "variance": "INVARIANT"}}, "140265844669600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}, {"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140265844670048": {"type": "Function", "content": {"typeVars": [".-1.140265844670048"], "argTypes": [{"nodeId": "140265789855296"}, {"nodeId": "0"}, {"nodeId": ".-1.140265844670048"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140265844670048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844670048", "variance": "INVARIANT"}}, "140265844850976": {"type": "Function", "content": {"typeVars": [".-1.140265844850976"], "argTypes": [{"nodeId": ".-1.140265844850976"}, {"nodeId": ".-1.140265844850976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265844850976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844850976", "variance": "INVARIANT"}}, "140265844851424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265844851872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}], "returnType": {"nodeId": "140265789856352", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844852320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}], "returnType": {"nodeId": "140265789855648", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844852768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789855296"}], "returnType": {"nodeId": "140265789856000", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844853216": {"type": "Function", "content": {"typeVars": [".0.140265844853216"], "argTypes": [{"nodeId": ".0.140265844853216"}, {"nodeId": ".0.140265844853216"}], "returnType": {"nodeId": ".0.140265844853216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844853216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789855296"}, "def": "140265844853216", "variance": "INVARIANT"}}, "140265844853664": {"type": "Function", "content": {"typeVars": [".0.140265844853664"], "argTypes": [{"nodeId": ".0.140265844853664"}, {"nodeId": ".0.140265844853664"}], "returnType": {"nodeId": ".0.140265844853664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844853664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789855296"}, "def": "140265844853664", "variance": "INVARIANT"}}, "140265861265216": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773689408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773687616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844854112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844855008"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844855904"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773689408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265773687616": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265844854112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265216"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265761021104"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140265761021104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265844855008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265216"}, {"nodeId": "140265761021328"}, {"nodeId": "140265761021552"}, {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265761021776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140265761021328": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265761021552": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265761021776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265844855904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265216"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789859168": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752723520"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848588096"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848588544"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848588992"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848589440"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848589888"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848590336"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848590784"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848591232"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752723632"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848592576"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848593024"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752724864"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "isAbstract": false}}, ".1.140265789859168": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789859168", "variance": "INVARIANT"}}, ".2.140265789859168": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789859168", "variance": "INVARIANT"}}, "140265752723520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844865088"}, {"nodeId": "140265828006624"}, {"nodeId": "140265844865984"}, {"nodeId": "140265844865536"}, {"nodeId": "140265848586304"}, {"nodeId": "140265844866432"}, {"nodeId": "140265848586752"}, {"nodeId": "140265848587200"}]}}, "140265844865088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265828006624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "N"}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265844865984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265844865536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265848586304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752724528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265752724528": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}}, "140265844866432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752724752"}]}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265752724752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789859168"}]}}, "140265848586752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265848587200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227552"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265848588096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848588544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".1.140265789859168"}], "returnType": {"nodeId": ".2.140265789859168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848588992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848589440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": ".1.140265789859168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848589888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789859168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848590336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848590784": {"type": "Function", "content": {"typeVars": [".0.140265848590784"], "argTypes": [{"nodeId": ".0.140265848590784"}], "returnType": {"nodeId": ".0.140265848590784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848590784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848590784", "variance": "INVARIANT"}}, "140265848591232": {"type": "Function", "content": {"typeVars": [".0.140265848591232"], "argTypes": [{"nodeId": ".0.140265848591232"}], "returnType": {"nodeId": ".0.140265848591232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848591232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848591232", "variance": "INVARIANT"}}, "140265752723632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848591680"}, {"nodeId": "140265848592128"}]}}, "140265848591680": {"type": "Function", "content": {"typeVars": [".-1.140265848591680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265848591680"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848591680"}, {"nodeId": "140265752725200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265848591680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848591680", "variance": "INVARIANT"}}, "140265752725200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265848592128": {"type": "Function", "content": {"typeVars": [".-1.140265848592128", ".-2.140265848592128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265848592128"}]}, {"nodeId": ".-2.140265848592128"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848592128"}, {"nodeId": ".-2.140265848592128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265848592128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592128", "variance": "INVARIANT"}}, ".-2.140265848592128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592128", "variance": "INVARIANT"}}, "140265848592576": {"type": "Function", "content": {"typeVars": [".-1.140265848592576", ".-2.140265848592576"], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265752725312"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": "140265752725424"}, {"nodeId": "140265752725536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752725312": {"type": "Union", "content": {"items": [{"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848592576"}, {"nodeId": ".-2.140265848592576"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265848592576"}, {"nodeId": ".-2.140265848592576"}]}]}}, ".-1.140265848592576": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592576", "variance": "INVARIANT"}}, ".-2.140265848592576": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848592576", "variance": "INVARIANT"}}, "140265752725424": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".-1.140265848592576"}]}}, "140265752725536": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789859168"}, {"nodeId": ".-2.140265848592576"}]}}, "140265848593024": {"type": "Function", "content": {"typeVars": [".-1.140265848593024", ".-2.140265848593024"], "argTypes": [{"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, {"nodeId": "140265752725648"}], "returnType": {"nodeId": "140265789859168", "args": [{"nodeId": "140265752725760"}, {"nodeId": "140265752725872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752725648": {"type": "Union", "content": {"items": [{"nodeId": "140265789859168", "args": [{"nodeId": ".-1.140265848593024"}, {"nodeId": ".-2.140265848593024"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": ".-1.140265848593024"}, {"nodeId": ".-2.140265848593024"}]}]}}, ".-1.140265848593024": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848593024", "variance": "INVARIANT"}}, ".-2.140265848593024": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848593024", "variance": "INVARIANT"}}, "140265752725760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".-1.140265848593024"}]}}, "140265752725872": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789859168"}, {"nodeId": ".-2.140265848593024"}]}}, "140265752724864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848593472"}, {"nodeId": "140265848593920"}]}}, "140265848593472": {"type": "Function", "content": {"typeVars": [".0.140265848593472"], "argTypes": [{"nodeId": ".0.140265848593472"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}], "returnType": {"nodeId": ".0.140265848593472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848593472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848593472", "variance": "INVARIANT"}}, "140265848593920": {"type": "Function", "content": {"typeVars": [".0.140265848593920"], "argTypes": [{"nodeId": ".0.140265848593920"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752726208"}]}], "returnType": {"nodeId": ".0.140265848593920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848593920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859168", "args": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}, "def": "140265848593920", "variance": "INVARIANT"}}, "140265752726208": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789859168"}, {"nodeId": ".2.140265789859168"}]}}, "140265789859520": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752724976"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848595264"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848595712"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848596160"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848596608"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848597056"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848597504"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848597952"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752725984"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752726320"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848600192"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848600640"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848601088"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848601536"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848601984"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848799296"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848799744"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848800192"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848800640"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848801088"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848801536"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848801984"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848802432"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848802880"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848803328"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752726992"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848804672"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140265789859520"}], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265789859520"}]}], "isAbstract": false}}, ".1.140265789859520": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789859520", "variance": "INVARIANT"}}, "140265752724976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848594368"}, {"nodeId": "140265848594816"}]}}, "140265848594368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140265848594816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140265848595264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726432"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726432": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848595712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726544"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726544": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848596160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726656": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848596608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752726768"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752726768": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}]}}, "140265848597056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848597504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848597952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752725984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848598400"}, {"nodeId": "140265848598848"}]}}, "140265848598400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265789859520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848598848": {"type": "Function", "content": {"typeVars": [".0.140265848598848"], "argTypes": [{"nodeId": ".0.140265848598848"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": ".0.140265848598848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848598848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848598848", "variance": "INVARIANT"}}, "140265752726320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848599296"}, {"nodeId": "140265848599744"}]}}, "140265848599296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848599744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265790228608"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848600192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752727216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752727216": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265848600640": {"type": "Function", "content": {"typeVars": [".0.140265848600640"], "argTypes": [{"nodeId": ".0.140265848600640"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": ".0.140265848600640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848600640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848600640", "variance": "INVARIANT"}}, "140265848601088": {"type": "Function", "content": {"typeVars": [".0.140265848601088"], "argTypes": [{"nodeId": ".0.140265848601088"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": ".0.140265848601088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848601088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848601088", "variance": "INVARIANT"}}, "140265848601536": {"type": "Function", "content": {"typeVars": [".0.140265848601536"], "argTypes": [{"nodeId": ".0.140265848601536"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": ".0.140265848601536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848601536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848601536", "variance": "INVARIANT"}}, "140265848601984": {"type": "Function", "content": {"typeVars": [".0.140265848601984"], "argTypes": [{"nodeId": ".0.140265848601984"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848601984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848601984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848601984", "variance": "INVARIANT"}}, "140265848799296": {"type": "Function", "content": {"typeVars": [".0.140265848799296"], "argTypes": [{"nodeId": ".0.140265848799296"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848799296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848799296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848799296", "variance": "INVARIANT"}}, "140265848799744": {"type": "Function", "content": {"typeVars": [".0.140265848799744"], "argTypes": [{"nodeId": ".0.140265848799744"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848799744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848799744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848799744", "variance": "INVARIANT"}}, "140265848800192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140265848800640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140265848801088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265789859520"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140265848801536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140265848801984": {"type": "Function", "content": {"typeVars": [".0.140265848801984"], "argTypes": [{"nodeId": ".0.140265848801984"}], "returnType": {"nodeId": ".0.140265848801984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848801984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848801984", "variance": "INVARIANT"}}, "140265848802432": {"type": "Function", "content": {"typeVars": [".0.140265848802432"], "argTypes": [{"nodeId": ".0.140265848802432"}], "returnType": {"nodeId": ".0.140265848802432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848802432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, "def": "140265848802432", "variance": "INVARIANT"}}, "140265848802880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140265848803328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": ".1.140265789859520"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140265752726992": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265848587648"}, {"nodeId": "140265848804224"}]}}, "140265848587648": {"type": "Function", "content": {"typeVars": [".-1.140265848587648"], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".-1.140265848587648"}]}, {"nodeId": "N"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140265848587648": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140265760652336"}, "def": "140265848587648", "variance": "INVARIANT"}}, "140265848804224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265752612416"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140265752612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140265789859520"}], "returnType": {"nodeId": "140265752727664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752727664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995808"}}}, "140265848804672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859520", "args": [{"nodeId": ".1.140265789859520"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789859520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140265789859872": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848805120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848805568"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848806016"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848806464"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848806912"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848807360"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848807808"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848808256"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848808704"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848809152"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848809600"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848810048"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848810496"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848810944"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848811392"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848811840"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848812288"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848812736"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848813184"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848813632"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848814080"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848814976"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848897600"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848898048"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848898496"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848898944"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848899840"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848900288"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848900736"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848901184"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848901632"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848902080"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848902528"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848902976"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848903424"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848903872"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848904320"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848904768"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848905216"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848905664"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848906112"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848906560"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848907008"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848907456"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848907904"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848908352"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848908800"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848909248"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706356208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848909696"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848910144"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848910592"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848911040"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848911488"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848911936"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848912384"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848912832"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848913280"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839968320"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839968768"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839969216"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839969664"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839970112"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839970560"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839971008"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839971456"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839971904"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839972352"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265789859872"}]}], "isAbstract": false}}, "140265848805120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140265848805568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848806016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848806464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848806912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265752727776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752727776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265848807360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752727888"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752727888": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848807808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728000"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752728000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848808256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728112"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752728112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848808704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728224"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752728224": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848809152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848809600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848810048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848810496": {"type": "Function", "content": {"typeVars": [".0.140265848810496"], "argTypes": [{"nodeId": ".0.140265848810496"}, {"nodeId": "140265752728448"}], "returnType": {"nodeId": ".0.140265848810496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848810496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848810496", "variance": "INVARIANT"}}, "140265752728448": {"type": "Union", "content": {"items": [{"nodeId": "140265789863040"}, {"nodeId": "140265790228608"}]}}, "140265848810944": {"type": "Function", "content": {"typeVars": [".0.140265848810944"], "argTypes": [{"nodeId": ".0.140265848810944"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".0.140265848810944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265848810944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848810944", "variance": "INVARIANT"}}, "140265848811392": {"type": "Function", "content": {"typeVars": [".0.140265848811392"], "argTypes": [{"nodeId": ".0.140265848811392"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".0.140265848811392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265848811392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848811392", "variance": "INVARIANT"}}, "140265848811840": {"type": "Function", "content": {"typeVars": [".0.140265848811840"], "argTypes": [{"nodeId": ".0.140265848811840"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265848811840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848811840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848811840", "variance": "INVARIANT"}}, "140265848812288": {"type": "Function", "content": {"typeVars": [".0.140265848812288"], "argTypes": [{"nodeId": ".0.140265848812288"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265848812288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848812288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848812288", "variance": "INVARIANT"}}, "140265848812736": {"type": "Function", "content": {"typeVars": [".0.140265848812736"], "argTypes": [{"nodeId": ".0.140265848812736"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848812736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848812736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848812736", "variance": "INVARIANT"}}, "140265848813184": {"type": "Function", "content": {"typeVars": [".0.140265848813184"], "argTypes": [{"nodeId": ".0.140265848813184"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848813184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848813184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848813184", "variance": "INVARIANT"}}, "140265848813632": {"type": "Function", "content": {"typeVars": [".0.140265848813632"], "argTypes": [{"nodeId": ".0.140265848813632"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848813632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848813632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848813632", "variance": "INVARIANT"}}, "140265848814080": {"type": "Function", "content": {"typeVars": [".0.140265848814080"], "argTypes": [{"nodeId": ".0.140265848814080"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": ".0.140265848814080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265848814080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848814080", "variance": "INVARIANT"}}, "140265848814976": {"type": "Function", "content": {"typeVars": [".0.140265848814976"], "argTypes": [{"nodeId": ".0.140265848814976"}], "returnType": {"nodeId": ".0.140265848814976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848814976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848814976", "variance": "INVARIANT"}}, "140265848897600": {"type": "Function", "content": {"typeVars": [".0.140265848897600"], "argTypes": [{"nodeId": ".0.140265848897600"}], "returnType": {"nodeId": ".0.140265848897600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848897600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848897600", "variance": "INVARIANT"}}, "140265848898048": {"type": "Function", "content": {"typeVars": [".0.140265848898048"], "argTypes": [{"nodeId": ".0.140265848898048"}, {"nodeId": "140265861266272"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848898048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140265848898048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848898048", "variance": "INVARIANT"}}, "140265848898496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728784"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752728784": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848898944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752728896"}, {"nodeId": "140265752729008"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265752728896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752729008": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265848899840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752729120"}, {"nodeId": "140265752729232"}, {"nodeId": "140265752729344"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140265752729120": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265752729232": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752729344": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265848900288": {"type": "Function", "content": {"typeVars": [".0.140265848900288"], "argTypes": [{"nodeId": ".0.140265848900288"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848900288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140265848900288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848900288", "variance": "INVARIANT"}}, "140265848900736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752729456"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752729456": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848901184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140265848901632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140265848902080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265848902528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848902976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848903424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848903872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848905664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848906112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848906560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848907008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848907456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265848907904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140265848908352": {"type": "Function", "content": {"typeVars": [".0.140265848908352"], "argTypes": [{"nodeId": ".0.140265848908352"}, {"nodeId": "140265861266272"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848908352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140265848908352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848908352", "variance": "INVARIANT"}}, "140265848908800": {"type": "Function", "content": {"typeVars": [".0.140265848908800"], "argTypes": [{"nodeId": ".0.140265848908800"}], "returnType": {"nodeId": ".0.140265848908800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265848908800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848908800", "variance": "INVARIANT"}}, "140265848909248": {"type": "Function", "content": {"typeVars": [".0.140265848909248"], "argTypes": [{"nodeId": ".0.140265848909248"}, {"nodeId": "140265752730016"}], "returnType": {"nodeId": ".0.140265848909248"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140265848909248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848909248", "variance": "INVARIANT"}}, "140265752730016": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265706356208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265706437344"}, {"nodeId": "140265706437568"}, {"nodeId": "140265706437792"}]}}, "140265706437344": {"type": "Function", "content": {"typeVars": [".-1.140265706437344"], "argTypes": [{"nodeId": "140265706355872"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265706437344"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265706355872": {"type": "Union", "content": {"items": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": ".-1.140265706437344"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265706437344"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265706355536"}, {"nodeId": ".-1.140265706437344"}]}]}}, ".-1.140265706437344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265706437344", "variance": "INVARIANT"}}, "140265706355536": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265706437568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265706437792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265706355984"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265706355984": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265848909696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752730240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140265752730240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265848910144": {"type": "Function", "content": {"typeVars": [".0.140265848910144"], "argTypes": [{"nodeId": ".0.140265848910144"}, {"nodeId": "140265752730352"}], "returnType": {"nodeId": ".0.140265848910144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140265848910144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848910144", "variance": "INVARIANT"}}, "140265752730352": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848910592": {"type": "Function", "content": {"typeVars": [".0.140265848910592"], "argTypes": [{"nodeId": ".0.140265848910592"}, {"nodeId": "140265752730464"}], "returnType": {"nodeId": ".0.140265848910592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140265848910592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848910592", "variance": "INVARIANT"}}, "140265752730464": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848911040": {"type": "Function", "content": {"typeVars": [".0.140265848911040"], "argTypes": [{"nodeId": ".0.140265848911040"}, {"nodeId": "140265752730576"}, {"nodeId": "140265752730688"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265848911040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140265848911040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848911040", "variance": "INVARIANT"}}, "140265752730576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265752730688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848911488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752730800"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752730800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848911936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752730912"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140265752730912": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265789859872"}]}}, "140265848912384": {"type": "Function", "content": {"typeVars": [".0.140265848912384"], "argTypes": [{"nodeId": ".0.140265848912384"}, {"nodeId": "140265861266272"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265848912384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140265848912384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848912384", "variance": "INVARIANT"}}, "140265848912832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752731248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140265752731248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265848913280": {"type": "Function", "content": {"typeVars": [".0.140265848913280"], "argTypes": [{"nodeId": ".0.140265848913280"}, {"nodeId": "140265752731360"}], "returnType": {"nodeId": ".0.140265848913280"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140265848913280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265848913280", "variance": "INVARIANT"}}, "140265752731360": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839968320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752731472"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265752731472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839968768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752731584"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140265752731584": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839969216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140265839969664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789859872"}, {"nodeId": "140265752731696"}, {"nodeId": "140265752731808"}, {"nodeId": "140265752731920"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140265752731696": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}]}}, "140265752731808": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752731920": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265839970112": {"type": "Function", "content": {"typeVars": [".0.140265839970112"], "argTypes": [{"nodeId": ".0.140265839970112"}, {"nodeId": "140265752732032"}], "returnType": {"nodeId": ".0.140265839970112"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140265839970112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839970112", "variance": "INVARIANT"}}, "140265752732032": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265839970560": {"type": "Function", "content": {"typeVars": [".0.140265839970560"], "argTypes": [{"nodeId": ".0.140265839970560"}], "returnType": {"nodeId": ".0.140265839970560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839970560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839970560", "variance": "INVARIANT"}}, "140265839971008": {"type": "Function", "content": {"typeVars": [".0.140265839971008"], "argTypes": [{"nodeId": ".0.140265839971008"}], "returnType": {"nodeId": ".0.140265839971008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839971008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839971008", "variance": "INVARIANT"}}, "140265839971456": {"type": "Function", "content": {"typeVars": [".0.140265839971456"], "argTypes": [{"nodeId": ".0.140265839971456"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265839971456"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140265839971456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839971456", "variance": "INVARIANT"}}, "140265839971904": {"type": "Function", "content": {"typeVars": [".0.140265839971904"], "argTypes": [{"nodeId": ".0.140265839971904"}], "returnType": {"nodeId": ".0.140265839971904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839971904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839971904", "variance": "INVARIANT"}}, "140265839972352": {"type": "Function", "content": {"typeVars": [".0.140265839972352"], "argTypes": [{"nodeId": ".0.140265839972352"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265839972352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140265839972352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789859872"}, "def": "140265839972352", "variance": "INVARIANT"}}, "140265789860224": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265706537472"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752727104"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839974144"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839974592"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839975040"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839975488"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839975936"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839976384"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839976832"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839977280"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839977728"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839978176"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839978624"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839979072"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839979520"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839979968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839980416"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839980864"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839981312"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839981760"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839982208"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839982656"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839983104"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839983552"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265839984000"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840083008"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840083456"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840083904"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840084352"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840084800"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789860224"}], "bases": [{"nodeId": "140265861263456", "args": [{"nodeId": ".1.140265789860224"}]}], "isAbstract": false}}, ".1.140265789860224": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860224", "variance": "INVARIANT"}}, "140265706537472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265752732256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752732256": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752727104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265839973248"}, {"nodeId": "140265839973696"}]}}, "140265839973248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265752732480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140265752732480": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265839973696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265752732592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140265752732592": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265839974144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839974592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839975040": {"type": "Function", "content": {"typeVars": [".0.140265839975040"], "argTypes": [{"nodeId": ".0.140265839975040"}], "returnType": {"nodeId": ".0.140265839975040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839975040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839975040", "variance": "INVARIANT"}}, "140265839975488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839975936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839976384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839976832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861266272"}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265839977280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265839977728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": ".1.140265789860224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265839978176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": ".1.140265789860224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265839978624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265839979072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265839979520": {"type": "Function", "content": {"typeVars": [".0.140265839979520"], "argTypes": [{"nodeId": ".0.140265839979520"}], "returnType": {"nodeId": ".0.140265839979520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839979520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839979520", "variance": "INVARIANT"}}, "140265839979968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265839980416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".1.140265789860224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265839980864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789863040"}, {"nodeId": ".1.140265789860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265839981312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265839981760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265839982208": {"type": "Function", "content": {"typeVars": [".0.140265839982208"], "argTypes": [{"nodeId": ".0.140265839982208"}], "returnType": {"nodeId": "140265752733152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265839982208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839982208", "variance": "INVARIANT"}}, "140265752733152": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265752732928"}, {"nodeId": "N"}, {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789860224"}]}]}}, "140265752732928": {"type": "Tuple", "content": {"items": []}}, "140265839982656": {"type": "Function", "content": {"typeVars": [".0.140265839982656"], "argTypes": [{"nodeId": ".0.140265839982656"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": ".0.140265839982656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839982656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839982656", "variance": "INVARIANT"}}, "140265839983104": {"type": "Function", "content": {"typeVars": [".0.140265839983104"], "argTypes": [{"nodeId": ".0.140265839983104"}, {"nodeId": ".0.140265839983104"}], "returnType": {"nodeId": ".0.140265839983104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839983104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839983104", "variance": "INVARIANT"}}, "140265839983552": {"type": "Function", "content": {"typeVars": [".0.140265839983552"], "argTypes": [{"nodeId": ".0.140265839983552"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265839983552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839983552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839983552", "variance": "INVARIANT"}}, "140265839984000": {"type": "Function", "content": {"typeVars": [".0.140265839984000"], "argTypes": [{"nodeId": ".0.140265839984000"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265839984000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265839984000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, "def": "140265839984000", "variance": "INVARIANT"}}, "140265840083008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840083456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840083904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840084352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}, {"nodeId": "140265789860224", "args": [{"nodeId": ".1.140265789860224"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840084800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265789897568": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752728336"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840087040"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840087488"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840087936"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706687168"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752732704"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752733488"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840091520"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840091968"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840092416"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840092864"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840093312"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840093760"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840094208"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840094656"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840095104"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840095552"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840096000"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840096448"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840096896"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840097344"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840097792"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840098240"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840098688"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840246848"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840247296"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140265789897568"}], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "isAbstract": false}}, ".1.140265789897568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789897568", "variance": "INVARIANT"}}, "140265752728336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840085248"}, {"nodeId": "140265840085696"}, {"nodeId": "140265840086144"}, {"nodeId": "140265840086592"}]}}, "140265840085248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265840085696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840086144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840086592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840087040": {"type": "Function", "content": {"typeVars": [".0.140265840087040"], "argTypes": [{"nodeId": ".0.140265840087040"}], "returnType": {"nodeId": ".0.140265840087040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840087040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840087040", "variance": "INVARIANT"}}, "140265840087488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840087936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265752733600"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752733824"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140265752733600": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752733824": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}}, "140265706687168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140265752734048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140265752734048": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752732704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840088832"}, {"nodeId": "140265840089280"}, {"nodeId": "140265840089728"}]}}, "140265840088832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265840089280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840089728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265752733488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840090176"}, {"nodeId": "140265840090624"}, {"nodeId": "140265840091072"}]}}, "140265840090176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840090624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840091072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "N"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265840091520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": ".1.140265789897568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140265840091968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840092416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840092864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840093312": {"type": "Function", "content": {"typeVars": [".-1.140265840093312"], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".-1.140265840093312"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": "140265752734384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840093312": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840093312", "variance": "INVARIANT"}}, "140265752734384": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789897568"}, {"nodeId": ".-1.140265840093312"}]}}, "140265840093760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840094208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840094656": {"type": "Function", "content": {"typeVars": [".-1.140265840094656"], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": ".-1.140265840094656"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": "140265752734496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840094656": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840094656", "variance": "INVARIANT"}}, "140265752734496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789897568"}, {"nodeId": ".-1.140265840094656"}]}}, "140265840095104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840095552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840096000": {"type": "Function", "content": {"typeVars": [".0.140265840096000"], "argTypes": [{"nodeId": ".0.140265840096000"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840096000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840096000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840096000", "variance": "INVARIANT"}}, "140265764926592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848367904"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140265764926592"}, {"nodeId": ".2.140265764926592"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["items"]}}, ".1.140265764926592": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926592", "variance": "COVARIANT"}}, ".2.140265764926592": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764926592", "variance": "COVARIANT"}}, "140265848367904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265764926592"}, {"nodeId": ".2.140265764926592"}]}], "returnType": {"nodeId": "140265861263808", "args": [{"nodeId": "140265747835232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747835232": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265764926592"}, {"nodeId": ".2.140265764926592"}]}}, "140265840096448": {"type": "Function", "content": {"typeVars": [".0.140265840096448"], "argTypes": [{"nodeId": ".0.140265840096448"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840096448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840096448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840096448", "variance": "INVARIANT"}}, "140265840096896": {"type": "Function", "content": {"typeVars": [".0.140265840096896"], "argTypes": [{"nodeId": ".0.140265840096896"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840096896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840096896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840096896", "variance": "INVARIANT"}}, "140265840097344": {"type": "Function", "content": {"typeVars": [".0.140265840097344"], "argTypes": [{"nodeId": ".0.140265840097344"}, {"nodeId": "140265764926592", "args": [{"nodeId": ".1.140265789897568"}, {"nodeId": "140265861266272"}]}], "returnType": {"nodeId": ".0.140265840097344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840097344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, "def": "140265840097344", "variance": "INVARIANT"}}, "140265840097792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840098240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840098688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840246848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840247296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897568", "args": [{"nodeId": ".1.140265789897568"}]}, {"nodeId": "140265789897568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764914976": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840247744"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265764914976"}], "bases": [{"nodeId": "140265789853184", "args": [{"nodeId": ".1.140265764914976"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265764914976"}]}], "isAbstract": false}}, ".1.140265764914976": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764914976", "variance": "COVARIANT"}}, "140265840247744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914976", "args": [{"nodeId": ".1.140265764914976"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265764914976"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764915328": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840248192"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}], "bases": [{"nodeId": "140265789852832", "args": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": "140265773694000"}]}], "isAbstract": false}}, ".1.140265764915328": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764915328", "variance": "COVARIANT"}}, ".2.140265764915328": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764915328", "variance": "COVARIANT"}}, "140265840248192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764915328", "args": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265752735168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752735168": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}}, "140265773694000": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265764915328"}, {"nodeId": ".2.140265764915328"}]}}, "140265764915680": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840248640"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265764915680"}], "bases": [{"nodeId": "140265789853536", "args": [{"nodeId": ".1.140265764915680"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265764915680"}]}], "isAbstract": false}}, ".1.140265764915680": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764915680", "variance": "COVARIANT"}}, "140265840248640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764915680", "args": [{"nodeId": ".1.140265764915680"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265764915680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789860576": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840249088"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789860576"}, {"nodeId": ".2.140265789860576"}], "bases": [{"nodeId": "140265789855648", "args": [{"nodeId": ".1.140265789860576"}, {"nodeId": ".2.140265789860576"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265789860576"}]}], "isAbstract": false}}, ".1.140265789860576": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860576", "variance": "COVARIANT"}}, ".2.140265789860576": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860576", "variance": "COVARIANT"}}, "140265840249088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860576", "args": [{"nodeId": ".1.140265789860576"}, {"nodeId": ".2.140265789860576"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789860576"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789860928": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840249536"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}], "bases": [{"nodeId": "140265789856352", "args": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": "140265764648128"}]}], "isAbstract": false}}, ".1.140265789860928": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860928", "variance": "COVARIANT"}}, ".2.140265789860928": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789860928", "variance": "COVARIANT"}}, "140265840249536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789860928", "args": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265752735392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265752735392": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}}, "140265764648128": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789860928"}, {"nodeId": ".2.140265789860928"}]}}, "140265789861280": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840249984"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140265789861280"}, {"nodeId": ".2.140265789861280"}], "bases": [{"nodeId": "140265789856000", "args": [{"nodeId": ".1.140265789861280"}, {"nodeId": ".2.140265789861280"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".2.140265789861280"}]}], "isAbstract": false}}, ".1.140265789861280": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861280", "variance": "COVARIANT"}}, ".2.140265789861280": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861280", "variance": "COVARIANT"}}, "140265840249984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861280", "args": [{"nodeId": ".1.140265789861280"}, {"nodeId": ".2.140265789861280"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".2.140265789861280"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789861632": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840250432"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840250880"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840251328"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840251776"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840252224"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840252672"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840253120"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752734160"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752735728"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265789861632"}]}], "isAbstract": false}}, ".1.140265789861632": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861632", "variance": "INVARIANT"}}, ".2.140265789861632": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861632", "variance": "INVARIANT"}}, "140265840250432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752735616"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140265752735616": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}}, "140265840250880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": ".1.140265789861632"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140265840251328": {"type": "Function", "content": {"typeVars": [".0.140265840251328"], "argTypes": [{"nodeId": ".0.140265840251328"}], "returnType": {"nodeId": ".0.140265840251328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840251328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "def": "140265840251328", "variance": "INVARIANT"}}, "140265840251776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840252224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265789860576", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840252672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265789860928", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840253120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}], "returnType": {"nodeId": "140265789861280", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752734160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840253568"}, {"nodeId": "140265840254016"}]}}, "140265840253568": {"type": "Function", "content": {"typeVars": [".-1.140265840253568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840253568"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789861632", "args": [{"nodeId": ".-1.140265840253568"}, {"nodeId": "140265752736064"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265840253568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840253568", "variance": "INVARIANT"}}, "140265752736064": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265840254016": {"type": "Function", "content": {"typeVars": [".-1.140265840254016", ".-2.140265840254016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840254016"}]}, {"nodeId": ".-2.140265840254016"}], "returnType": {"nodeId": "140265789861632", "args": [{"nodeId": ".-1.140265840254016"}, {"nodeId": ".-2.140265840254016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140265840254016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840254016", "variance": "INVARIANT"}}, ".-2.140265840254016": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840254016", "variance": "INVARIANT"}}, "140265752735728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840254464"}, {"nodeId": "140265840254912"}]}}, "140265840254464": {"type": "Function", "content": {"typeVars": [".-1.140265840254464"], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": "140265752736288"}]}, {"nodeId": ".1.140265789861632"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752736400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140265752736288": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840254464"}, {"nodeId": "N"}]}}, ".-1.140265840254464": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840254464", "variance": "INVARIANT"}}, "140265752736400": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840254464"}, {"nodeId": "N"}]}}, "140265840254912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861632", "args": [{"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}]}, {"nodeId": ".1.140265789861632"}, {"nodeId": ".2.140265789861632"}], "returnType": {"nodeId": ".2.140265789861632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140265789897920": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764647568"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752735840"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840258944"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840259392"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840259840"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}], "isAbstract": false}}, ".1.140265789897920": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789897920", "variance": "INVARIANT"}}, ".2.140265789897920": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789897920", "variance": "INVARIANT"}}, "140265764647568": {"type": "Union", "content": {"items": [{"nodeId": "140265764880448"}, {"nodeId": "N"}]}}, "140265764880448": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265752735840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840255360"}, {"nodeId": "140265840255808"}, {"nodeId": "140265840256256"}, {"nodeId": "140265840256704"}, {"nodeId": "140265840257152"}, {"nodeId": "140265840257600"}, {"nodeId": "140265840258048"}, {"nodeId": "140265840258496"}]}}, "140265840255360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840255808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265840256256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265752736624": {"type": "Union", "content": {"items": [{"nodeId": "140265752613088"}, {"nodeId": "N"}]}}, "140265752613088": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840256704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736736"}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140265752736736": {"type": "Union", "content": {"items": [{"nodeId": "140265752613312"}, {"nodeId": "N"}]}}, "140265752613312": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840257152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736848"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265752736848": {"type": "Union", "content": {"items": [{"nodeId": "140265752612640"}, {"nodeId": "N"}]}}, "140265752612640": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840257600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752736960"}, {"nodeId": "140265764926944", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140265752736960": {"type": "Union", "content": {"items": [{"nodeId": "140265752613536"}, {"nodeId": "N"}]}}, "140265752613536": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265840258048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752737072"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752737296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265752737072": {"type": "Union", "content": {"items": [{"nodeId": "140265752613760"}, {"nodeId": "N"}]}}, "140265752613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265752737296": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}}, "140265840258496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": "140265752737408"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752737632"}]}, {"nodeId": ".2.140265789897920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140265752737408": {"type": "Union", "content": {"items": [{"nodeId": "140265752613984"}, {"nodeId": "N"}]}}, "140265752613984": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": [], "argNames": []}}, "140265752737632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".2.140265789897920"}]}}, "140265840258944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, {"nodeId": ".1.140265789897920"}], "returnType": {"nodeId": ".2.140265789897920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840259392": {"type": "Function", "content": {"typeVars": [".0.140265840259392"], "argTypes": [{"nodeId": ".0.140265840259392"}], "returnType": {"nodeId": ".0.140265840259392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840259392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, "def": "140265840259392", "variance": "INVARIANT"}}, "140265840259840": {"type": "Function", "content": {"typeVars": [".0.140265840259840"], "argTypes": [{"nodeId": ".0.140265840259840"}], "returnType": {"nodeId": ".0.140265840259840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840259840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789897920", "args": [{"nodeId": ".1.140265789897920"}, {"nodeId": ".2.140265789897920"}]}, "def": "140265840259840", "variance": "INVARIANT"}}, "140265789861984": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840260288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840260736"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265701868032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840261632"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840262080"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840262528"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840377920"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840378368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840378816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840379264"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840379712"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752736176"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752737856"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840381952"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701870720"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752738080"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840383296"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840383744"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752738416"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "isAbstract": false}}, ".1.140265789861984": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861984", "variance": "INVARIANT"}}, ".2.140265789861984": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789861984", "variance": "INVARIANT"}}, "140265840260288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140265840260736": {"type": "Function", "content": {"typeVars": [".0.140265840260736"], "argTypes": [{"nodeId": ".0.140265840260736"}, {"nodeId": "140265752737968"}], "returnType": {"nodeId": ".0.140265840260736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140265840260736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840260736", "variance": "INVARIANT"}}, "140265752737968": {"type": "Union", "content": {"items": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "N"}]}}, "140265701868032": {"type": "Function", "content": {"typeVars": [".0.140265701868032"], "argTypes": [{"nodeId": ".0.140265701868032"}], "returnType": {"nodeId": ".0.140265701868032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265701868032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265701868032", "variance": "INVARIANT"}}, "140265840261632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265840262080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840262528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840377920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789861984"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840378368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840378816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840379264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140265840379712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752736176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840380160"}, {"nodeId": "140265840380608"}]}}, "140265840380160": {"type": "Function", "content": {"typeVars": [".-1.140265840380160"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": "140265752738192"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752738304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140265752738192": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840380160"}, {"nodeId": "N"}]}}, ".-1.140265840380160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840380160", "variance": "INVARIANT"}}, "140265752738304": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140265840380160"}, {"nodeId": "N"}]}}, "140265840380608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140265752737856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840381056"}, {"nodeId": "140265840381504"}]}}, "140265840381056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}], "returnType": {"nodeId": ".2.140265789861984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140265840381504": {"type": "Function", "content": {"typeVars": [".-1.140265840381504"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": ".1.140265789861984"}, {"nodeId": "140265752738528"}], "returnType": {"nodeId": "140265752738640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140265752738528": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-1.140265840381504"}]}}, ".-1.140265840381504": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840381504", "variance": "INVARIANT"}}, "140265752738640": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-1.140265840381504"}]}}, "140265840381952": {"type": "Function", "content": {"typeVars": [".0.140265840381952"], "argTypes": [{"nodeId": ".0.140265840381952"}], "returnType": {"nodeId": ".0.140265840381952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265840381952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840381952", "variance": "INVARIANT"}}, "140265701870720": {"type": "Function", "content": {"typeVars": [".0.140265701870720"], "argTypes": [{"nodeId": ".0.140265701870720"}], "returnType": {"nodeId": ".0.140265701870720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265701870720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265701870720", "variance": "INVARIANT"}}, "140265752738080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840382400"}, {"nodeId": "140265840382848"}]}}, "140265840382400": {"type": "Function", "content": {"typeVars": [".-1.140265840382400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840382400"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": ".-1.140265840382400"}, {"nodeId": "140265752738976"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140265840382400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840382400", "variance": "INVARIANT"}}, "140265752738976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265840382848": {"type": "Function", "content": {"typeVars": [".-1.140265840382848", ".-2.140265840382848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265840382848"}]}, {"nodeId": ".-2.140265840382848"}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": ".-1.140265840382848"}, {"nodeId": ".-2.140265840382848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140265840382848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840382848", "variance": "INVARIANT"}}, ".-2.140265840382848": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840382848", "variance": "INVARIANT"}}, "140265840383296": {"type": "Function", "content": {"typeVars": [".-1.140265840383296", ".-2.140265840383296"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265840383296"}, {"nodeId": ".-2.140265840383296"}]}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": "140265752739088"}, {"nodeId": "140265752739200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840383296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383296", "variance": "INVARIANT"}}, ".-2.140265840383296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383296", "variance": "INVARIANT"}}, "140265752739088": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".-1.140265840383296"}]}}, "140265752739200": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-2.140265840383296"}]}}, "140265840383744": {"type": "Function", "content": {"typeVars": [".-1.140265840383744", ".-2.140265840383744"], "argTypes": [{"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265840383744"}, {"nodeId": ".-2.140265840383744"}]}], "returnType": {"nodeId": "140265789861984", "args": [{"nodeId": "140265752739312"}, {"nodeId": "140265752739424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840383744": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383744", "variance": "INVARIANT"}}, ".-2.140265840383744": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840383744", "variance": "INVARIANT"}}, "140265752739312": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".-1.140265840383744"}]}}, "140265752739424": {"type": "Union", "content": {"items": [{"nodeId": ".2.140265789861984"}, {"nodeId": ".-2.140265840383744"}]}}, "140265752738416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840384192"}, {"nodeId": "140265840384640"}]}}, "140265840384192": {"type": "Function", "content": {"typeVars": [".0.140265840384192"], "argTypes": [{"nodeId": ".0.140265840384192"}, {"nodeId": "140265764926944", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}], "returnType": {"nodeId": ".0.140265840384192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840384192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840384192", "variance": "INVARIANT"}}, "140265840384640": {"type": "Function", "content": {"typeVars": [".0.140265840384640"], "argTypes": [{"nodeId": ".0.140265840384640"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265747824704"}]}], "returnType": {"nodeId": ".0.140265840384640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840384640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789861984", "args": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}, "def": "140265840384640", "variance": "INVARIANT"}}, "140265747824704": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265789861984"}, {"nodeId": ".2.140265789861984"}]}}, "140265764449344": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840386656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840387104"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140265840386656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840387104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449344"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265764449696": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840388896"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710015808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840390688"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840391136"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840392480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840393376"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710020064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844949280"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844949728"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844950176"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752096304"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265764450048"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "A"}, {"nodeId": "140265764450048"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789896512"}], "isAbstract": false}}, "140265840388896": {"type": "Function", "content": {"typeVars": [".-1.140265840388896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "140265764449344"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140265840388896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140265840388896": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840388896", "variance": "INVARIANT"}}, "140265710015808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861265568"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265764449344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140265840390688": {"type": "Function", "content": {"typeVars": [".-1.140265840390688"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".-1.140265840390688"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265840390688": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840390688", "variance": "INVARIANT"}}, "140265840391136": {"type": "Function", "content": {"typeVars": [".-1.140265840391136"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".-1.140265840391136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265840391136": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840391136", "variance": "INVARIANT"}}, "140265840392480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840393376": {"type": "Function", "content": {"typeVars": [".-1.140265840393376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".-1.140265840393376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840393376": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265840393376", "variance": "INVARIANT"}}, "140265710020064": {"type": "Function", "content": {"typeVars": [".-1.140265710020064"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140265785721600", "args": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265710020064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140265710020064": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265710020064", "variance": "INVARIANT"}}, "140265844949280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265844949728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844950176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752096304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265844950624"}, {"nodeId": "140265844951520"}]}}, "140265844950624": {"type": "Function", "content": {"typeVars": [".-1.140265844950624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140265844950624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140265844950624": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265844950624", "variance": "INVARIANT"}}, "140265844951520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764449696"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752315040"}, {"nodeId": "140265752315152"}, {"nodeId": "140265752315264"}, {"nodeId": "140265752315376"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140265752315040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785802112"}}}, "140265785802112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265785800320"}]}]}, {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}]}}, "140265785800320": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265752315152": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752315264": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752315376": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265764450400": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710024768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844956448"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}, {"nodeId": "140265764450048"}], "isAbstract": false}}, "140265710024768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450400"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844956448": {"type": "Function", "content": {"typeVars": [".0.140265844956448"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265844956448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140265844956448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450400"}, "def": "140265844956448", "variance": "INVARIANT"}}, "140265764450752": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785802448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710025888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710191328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844958240"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844958688"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844959136"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844959584"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844960032"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265844960480"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140265764450048"}], "isAbstract": false}}, "140265785802448": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265710025888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450752"}], "returnType": {"nodeId": "140265752316272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752316272": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265710191328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450752"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844958240": {"type": "Function", "content": {"typeVars": [".0.140265844958240"], "argTypes": [{"nodeId": ".0.140265844958240"}, {"nodeId": ".0.140265844958240"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844958240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844958240", "variance": "INVARIANT"}}, "140265844958688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764450752"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265844959136": {"type": "Function", "content": {"typeVars": [".0.140265844959136"], "argTypes": [{"nodeId": ".0.140265844959136"}, {"nodeId": ".0.140265844959136"}], "returnType": {"nodeId": ".0.140265844959136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844959136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844959136", "variance": "INVARIANT"}}, "140265844959584": {"type": "Function", "content": {"typeVars": [".0.140265844959584"], "argTypes": [{"nodeId": ".0.140265844959584"}, {"nodeId": ".0.140265844959584"}], "returnType": {"nodeId": ".0.140265844959584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844959584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844959584", "variance": "INVARIANT"}}, "140265844960032": {"type": "Function", "content": {"typeVars": [".0.140265844960032"], "argTypes": [{"nodeId": ".0.140265844960032"}, {"nodeId": ".0.140265844960032"}], "returnType": {"nodeId": ".0.140265844960032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265844960032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844960032", "variance": "INVARIANT"}}, "140265844960480": {"type": "Function", "content": {"typeVars": [".0.140265844960480"], "argTypes": [{"nodeId": ".0.140265844960480"}], "returnType": {"nodeId": ".0.140265844960480"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265844960480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764450752"}, "def": "140265844960480", "variance": "INVARIANT"}}, "140265764451104": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853471200"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853471648"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853472096"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853472544"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710198048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710200736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710201856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}, {"nodeId": "140265764450752"}], "isAbstract": false}}, "140265853471200": {"type": "Function", "content": {"typeVars": [".0.140265853471200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853471200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140265853471200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853471200", "variance": "INVARIANT"}}, "140265853471648": {"type": "Function", "content": {"typeVars": [".0.140265853471648"], "argTypes": [{"nodeId": ".0.140265853471648"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853471648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265853471648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853471648", "variance": "INVARIANT"}}, "140265853472096": {"type": "Function", "content": {"typeVars": [".0.140265853472096"], "argTypes": [{"nodeId": ".0.140265853472096"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853472096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265853472096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853472096", "variance": "INVARIANT"}}, "140265853472544": {"type": "Function", "content": {"typeVars": [".0.140265853472544"], "argTypes": [{"nodeId": ".0.140265853472544"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265853472544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265853472544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265853472544", "variance": "INVARIANT"}}, "140265710198048": {"type": "Function", "content": {"typeVars": [".0.140265710198048"], "argTypes": [{"nodeId": ".0.140265710198048"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265710198048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265710198048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265710198048", "variance": "INVARIANT"}}, "140265710200736": {"type": "Function", "content": {"typeVars": [".0.140265710200736"], "argTypes": [{"nodeId": ".0.140265710200736"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265710200736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265710200736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265710200736", "variance": "INVARIANT"}}, "140265710201856": {"type": "Function", "content": {"typeVars": [".0.140265710201856"], "argTypes": [{"nodeId": ".0.140265710201856"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265710201856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265710201856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451104"}, "def": "140265710201856", "variance": "INVARIANT"}}, "140265764451456": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710203648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853473440"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265764451104"}], "isAbstract": false}}, "140265710203648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853473440": {"type": "Function", "content": {"typeVars": [".0.140265853473440"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265853473440"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265853473440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451456"}, "def": "140265853473440", "variance": "INVARIANT"}}, "140265760339776": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "content": {"name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693799904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693800352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693800576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853477472"}, "name": "fromutc"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265693799904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693547536"}], "returnType": {"nodeId": "140265693547648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693547536": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265693806656": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693806656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693806656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840671008"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693679616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693680512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693680736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693680960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693681184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693681408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693682080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693682528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693684544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693684096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693684768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840776288"}, "name": "timestamp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840776736"}, "name": "utctimetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840777184"}, "name": "date"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840777632"}, "name": "time"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840778080"}, "name": "timetz"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840778528"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840778976"}, "name": "astimezone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840779872"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693686560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840780768"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840781216"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840781664"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840782112"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840782560"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840783008"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840783456"}, "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693550000"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}], "typeVars": [], "bases": [{"nodeId": "140265760340832"}], "isAbstract": false}}, "140265840671008": {"type": "Function", "content": {"typeVars": [".0.140265840671008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693550448"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840671008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140265693550448": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265840671008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840671008", "variance": "INVARIANT"}}, "140265693679616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693680512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693680736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693680960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693681184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693550560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693550560": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265693681408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693682080": {"type": "Function", "content": {"typeVars": [".0.140265693682080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}, {"nodeId": "140265693550672"}], "returnType": {"nodeId": ".0.140265693682080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}}, "140265693550672": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265693682080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693682080", "variance": "INVARIANT"}}, "140265693682528": {"type": "Function", "content": {"typeVars": [".0.140265693682528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": ".0.140265693682528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693682528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693682528", "variance": "INVARIANT"}}, "140265693684544": {"type": "Function", "content": {"typeVars": [".0.140265693684544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265693550784"}], "returnType": {"nodeId": ".0.140265693684544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}}, "140265693550784": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265693684544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693684544", "variance": "INVARIANT"}}, "140265693684096": {"type": "Function", "content": {"typeVars": [".0.140265693684096"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265693684096"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265693684096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693684096", "variance": "INVARIANT"}}, "140265693684768": {"type": "Function", "content": {"typeVars": [".0.140265693684768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265760340832"}, {"nodeId": "140265760341184"}, {"nodeId": "140265693550896"}], "returnType": {"nodeId": ".0.140265693684768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}}, "140265760340832": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853479712"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693804384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693805728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693805952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693806176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693823488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693823040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693823712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693823936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853483744"}, "name": "ctime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853484640"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840525600"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840526048"}, "name": "isoformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840526496"}, "name": "timetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840526944"}, "name": "toordinal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840527392"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840527840"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840528288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840528736"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840529184"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840529632"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840530080"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693547312"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840534112"}, "name": "weekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840534560"}, "name": "isoweekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840535008"}, "name": "isocalendar"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760341536": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840659808"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693836480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693837600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693838496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840661600"}, "name": "total_seconds"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840662048"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840662496"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840662944"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840663392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840663840"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840664288"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840664736"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840665184"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840665632"}, "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693547424"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265693549104"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840667872"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840668320"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840668768"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840669216"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840669664"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840670112"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840670560"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265840659808": {"type": "Function", "content": {"typeVars": [".0.140265840659808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": ".0.140265840659808"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks"]}}, ".0.140265840659808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341536"}, "def": "140265840659808", "variance": "INVARIANT"}}, "140265693836480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693837600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693838496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840661600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840662048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840662496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840662944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840663392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840663840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840664288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840664736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265840665184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840665632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693547424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840666080"}, {"nodeId": "140265840666528"}]}}, "140265840666080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840666528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693549104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840666976"}, {"nodeId": "140265840667424"}]}}, "140265840666976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840667424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840667872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840668320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265693550336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693550336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265760341536"}]}}, "140265840668768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840669216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840669664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840670112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840670560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341536"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853479712": {"type": "Function", "content": {"typeVars": [".0.140265853479712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265853479712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}}, ".0.140265853479712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265853479712", "variance": "INVARIANT"}}, "140265693804384": {"type": "Function", "content": {"typeVars": [".0.140265693804384"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266624"}], "returnType": {"nodeId": ".0.140265693804384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693804384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693804384", "variance": "INVARIANT"}}, "140265693805728": {"type": "Function", "content": {"typeVars": [".0.140265693805728"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265693805728"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265693805728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693805728", "variance": "INVARIANT"}}, "140265693805952": {"type": "Function", "content": {"typeVars": [".0.140265693805952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265693805952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693805952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693805952", "variance": "INVARIANT"}}, "140265693806176": {"type": "Function", "content": {"typeVars": [".0.140265693806176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265693806176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693806176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693806176", "variance": "INVARIANT"}}, "140265693823488": {"type": "Function", "content": {"typeVars": [".0.140265693823488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265693823488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}}, ".0.140265693823488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693823488", "variance": "INVARIANT"}}, "140265693823040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693823712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693823936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853483744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265853484640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840525600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840526048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840526496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265693548992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693548992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265698087584"}}}, "140265698087584": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265840526944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840527392": {"type": "Function", "content": {"typeVars": [".0.140265840527392"], "argTypes": [{"nodeId": ".0.140265840527392"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": ".0.140265840527392"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}}, ".0.140265840527392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840527392", "variance": "INVARIANT"}}, "140265840527840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840528288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840528736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840529184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840529632": {"type": "Function", "content": {"typeVars": [".0.140265840529632"], "argTypes": [{"nodeId": ".0.140265840529632"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840529632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840529632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840529632", "variance": "INVARIANT"}}, "140265840530080": {"type": "Function", "content": {"typeVars": [".0.140265840530080"], "argTypes": [{"nodeId": ".0.140265840530080"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840530080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840530080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840530080", "variance": "INVARIANT"}}, "140265693547312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840530528"}, {"nodeId": "140265840530976"}, {"nodeId": "140265840531424"}]}}, "140265840530528": {"type": "Function", "content": {"typeVars": [".0.140265840530528"], "argTypes": [{"nodeId": ".0.140265840530528"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840530528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840530528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840530528", "variance": "INVARIANT"}}, "140265840530976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840531424": {"type": "Function", "content": {"typeVars": [".-1.140265840531424"], "argTypes": [{"nodeId": ".-1.140265840531424"}, {"nodeId": ".-1.140265840531424"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265840531424": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265840531424", "variance": "INVARIANT"}}, "140265840534112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840534560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840535008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340832"}], "returnType": {"nodeId": "140265693549216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265693545744"}}}, "140265693545744": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760341184": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760341536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840535904"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693827072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693832448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693832896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693833120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693833344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265693833568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840539040"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840539488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840539936"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840540384"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840540832"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265693833792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840657120"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840657568"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840658016"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840658464"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840658912"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265840659360"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265840535904": {"type": "Function", "content": {"typeVars": [".0.140265840535904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693549328"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840535904"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140265693549328": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265840535904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341184"}, "def": "140265840535904", "variance": "INVARIANT"}}, "140265693827072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693832448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693832896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693833120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693833344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549440": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265693833568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840539040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840539488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840539936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840540384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840540832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}}, "140265693833792": {"type": "Function", "content": {"typeVars": [".0.140265693833792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265693833792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140265693833792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341184"}, "def": "140265693833792", "variance": "INVARIANT"}}, "140265840657120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840657568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265840658016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549552": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840658464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549664": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265840658912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760341184"}], "returnType": {"nodeId": "140265693549776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693549776": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840659360": {"type": "Function", "content": {"typeVars": [".0.140265840659360"], "argTypes": [{"nodeId": ".0.140265840659360"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693549888"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840659360"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140265840659360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760341184"}, "def": "140265840659360", "variance": "INVARIANT"}}, "140265693549888": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265693550896": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, ".0.140265693684768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693684768", "variance": "INVARIANT"}}, "140265840776288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840776736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265698087584"}}}, "140265840777184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265760340832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840777632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265760341184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840778080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265760341184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265840778528": {"type": "Function", "content": {"typeVars": [".0.140265840778528"], "argTypes": [{"nodeId": ".0.140265840778528"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265693551120"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".0.140265840778528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140265840778528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840778528", "variance": "INVARIANT"}}, "140265693551120": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265840778976": {"type": "Function", "content": {"typeVars": [".0.140265840778976"], "argTypes": [{"nodeId": ".0.140265840778976"}, {"nodeId": "140265693551232"}], "returnType": {"nodeId": ".0.140265840778976"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}}, ".0.140265840778976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840778976", "variance": "INVARIANT"}}, "140265693551232": {"type": "Union", "content": {"items": [{"nodeId": "140265760339776"}, {"nodeId": "N"}]}}, "140265840779872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}}, "140265693686560": {"type": "Function", "content": {"typeVars": [".0.140265693686560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265693686560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".0.140265693686560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265693686560", "variance": "INVARIANT"}}, "140265840780768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551344": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840781216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551456": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265840781664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693551568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265693551568": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265840782112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840782560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840783008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265840783456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265693806656"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265693550000": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265840783904"}, {"nodeId": "140265693534624"}]}}, "140265840783904": {"type": "Function", "content": {"typeVars": [".0.140265840783904"], "argTypes": [{"nodeId": ".0.140265840783904"}, {"nodeId": "140265760341536"}], "returnType": {"nodeId": ".0.140265840783904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265840783904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265693806656"}, "def": "140265840783904", "variance": "INVARIANT"}}, "140265693534624": {"type": "Function", "content": {"typeVars": [".-1.140265693534624"], "argTypes": [{"nodeId": ".-1.140265693534624"}, {"nodeId": ".-1.140265693534624"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265693534624": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140265760340832"}, "def": "140265693534624", "variance": "INVARIANT"}}, "140265693547648": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265693800352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693547760"}], "returnType": {"nodeId": "140265693547872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693547760": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265693547872": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265693800576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693547984"}], "returnType": {"nodeId": "140265693548096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693547984": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265693548096": {"type": "Union", "content": {"items": [{"nodeId": "140265760341536"}, {"nodeId": "N"}]}}, "140265853477472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760339776"}, {"nodeId": "140265693806656"}], "returnType": {"nodeId": "140265693806656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265760340128": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "content": {"name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760340128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853477920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853478368"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853478816"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853479264"}, "name": "dst"}}], "typeVars": [], "bases": [{"nodeId": "140265760339776"}], "isAbstract": false}}, "140265853477920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265760341536"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}}, "140265853478368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265693548208"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693548208": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265853478816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265693548320"}], "returnType": {"nodeId": "140265760341536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693548320": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265853479264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760340128"}, {"nodeId": "140265693548432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265693548432": {"type": "Union", "content": {"items": [{"nodeId": "140265693806656"}, {"nodeId": "N"}]}}, "140265861255712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705955040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760267328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705953920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705953248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819425024"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265705955040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}], "returnType": {"nodeId": "140265743455888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743455888": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265789865504": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831750048"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265831750048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865504"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265760267328": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265705953920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265705953248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265819425024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861255712"}, {"nodeId": "140265861254656"}, {"nodeId": "140265743456224"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265743456224": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265861265920": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265748115216"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265748115216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836453376"}, {"nodeId": "140265836453824"}, {"nodeId": "140265836454272"}]}}, "140265836453376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265836453824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265920"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265836454272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861265920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789857408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819871872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819872320"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819872768"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819873216"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265789857408"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": "140265760268784"}]}], "isAbstract": false}}, ".1.140265789857408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789857408", "variance": "INVARIANT"}}, "140265819871872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857408", "args": [{"nodeId": ".1.140265789857408"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857408"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140265819872320": {"type": "Function", "content": {"typeVars": [".0.140265819872320"], "argTypes": [{"nodeId": ".0.140265819872320"}], "returnType": {"nodeId": ".0.140265819872320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265819872320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857408", "args": [{"nodeId": ".1.140265789857408"}]}, "def": "140265819872320", "variance": "INVARIANT"}}, "140265819872768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857408", "args": [{"nodeId": ".1.140265789857408"}]}], "returnType": {"nodeId": "140265743463056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743463056": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": ".1.140265789857408"}]}}, "140265819873216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265760268784": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": ".1.140265789857408"}]}}, "140265790230016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735683232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735679872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735679648"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743461600"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819875904"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819876352"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819876800"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819877248"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819877696"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743462832"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819879040"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265735683232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735679872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735679648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265743461600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819875008"}, {"nodeId": "140265819875456"}]}}, "140265819875008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819875456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265819875904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819876352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265819876800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819877248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819877696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743462832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819878144"}, {"nodeId": "140265819878592"}]}}, "140265819878144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265789863040"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819878592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265790230016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819879040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230016"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265790230368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760587024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760264864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760264976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819879488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819879936"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819880384"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819880832"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819979840"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819980288"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819980736"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760587024": {"type": "Union", "content": {"items": [{"nodeId": "140265764887168"}, {"nodeId": "N"}]}}, "140265764887168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760264864": {"type": "Union", "content": {"items": [{"nodeId": "140265764881120"}, {"nodeId": "N"}]}}, "140265764881120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265760264976": {"type": "Union", "content": {"items": [{"nodeId": "140265764883808"}, {"nodeId": "N"}]}}, "140265764883808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819879488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265743463504"}, {"nodeId": "140265743463840"}, {"nodeId": "140265743464176"}, {"nodeId": "140265743464400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140265743463504": {"type": "Union", "content": {"items": [{"nodeId": "140265748541984"}, {"nodeId": "N"}]}}, "140265748541984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743463840": {"type": "Union", "content": {"items": [{"nodeId": "140265748542208"}, {"nodeId": "N"}]}}, "140265748542208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265743464176": {"type": "Union", "content": {"items": [{"nodeId": "140265748542432"}, {"nodeId": "N"}]}}, "140265748542432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265743464400": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265819879936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265748541312"}], "returnType": {"nodeId": "140265790230368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748541312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819880384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265748541760"}], "returnType": {"nodeId": "140265790230368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748541760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265819880832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "140265748542656"}], "returnType": {"nodeId": "140265790230368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265748542656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265819979840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "A"}, {"nodeId": "140265743465184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265743465184": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265819980288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265819980736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790230368"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265790230720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265765401024": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819984768"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140265765401024"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__fspath__"]}}, ".1.140265765401024": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765401024", "variance": "COVARIANT"}}, "140265819984768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765401024", "args": [{"nodeId": ".1.140265765401024"}]}], "returnType": {"nodeId": ".1.140265765401024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790231072": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265819985664"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140265790231072"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__anext__"]}}, ".1.140265790231072": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140265861260640", "args": [{"nodeId": "A"}]}, "def": "140265790231072", "variance": "COVARIANT"}}, "140265819985664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790231072", "args": [{"nodeId": ".1.140265790231072"}]}], "returnType": {"nodeId": ".1.140265790231072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265789857760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743827120"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814901248"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814901696"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265789857760"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789857760"}]}], "isAbstract": false}}, ".1.140265789857760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789857760", "variance": "INVARIANT"}}, "140265743827120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265819995072"}, {"nodeId": "140265819995520"}, {"nodeId": "140265814900800"}]}}, "140265819995072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, {"nodeId": "N"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265743830256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743830256": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265789857760"}, {"nodeId": "N"}]}}, "140265819995520": {"type": "Function", "content": {"typeVars": [".-1.140265819995520"], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, {"nodeId": "140265748543552"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265819995520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265748543552": {"type": "Function", "content": {"typeVars": [".-1.140265748543552"], "argTypes": [{"nodeId": ".-1.140265748543552"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265748543552": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265748543552", "variance": "INVARIANT"}}, ".-1.140265819995520": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265819995520", "variance": "INVARIANT"}}, "140265814900800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, {"nodeId": "140265748543328"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265789857760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265748543328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140265789857760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265814901248": {"type": "Function", "content": {"typeVars": [".0.140265814901248"], "argTypes": [{"nodeId": ".0.140265814901248"}], "returnType": {"nodeId": ".0.140265814901248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265814901248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}, "def": "140265814901248", "variance": "INVARIANT"}}, "140265814901696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789857760", "args": [{"nodeId": ".1.140265789857760"}]}], "returnType": {"nodeId": ".1.140265789857760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790231424": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814908416"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265790231424"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__"]}}, ".1.140265790231424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790231424", "variance": "COVARIANT"}}, "140265814908416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790231424", "args": [{"nodeId": ".1.140265790231424"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265790231424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789858112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743830592"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814915584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265814916032"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265789858112"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789858112"}]}], "isAbstract": false}}, ".1.140265789858112": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789858112", "variance": "INVARIANT"}}, "140265743830592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265814912896"}, {"nodeId": "140265814913344"}, {"nodeId": "140265814913792"}, {"nodeId": "140265814914240"}, {"nodeId": "140265814914688"}, {"nodeId": "140265814915136"}]}}, "140265814912896": {"type": "Function", "content": {"typeVars": [".-1.140265814912896"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909376"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814912896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265743909376": {"type": "Function", "content": {"typeVars": [".-1.140265743909376"], "argTypes": [{"nodeId": ".-1.140265743909376"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140265743909376": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909376", "variance": "INVARIANT"}}, ".-1.140265814912896": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814912896", "variance": "INVARIANT"}}, "140265814913344": {"type": "Function", "content": {"typeVars": [".-1.140265814913344", ".-2.140265814913344"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909152"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814913344"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814913344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140265743909152": {"type": "Function", "content": {"typeVars": [".-1.140265743909152", ".-2.140265743909152"], "argTypes": [{"nodeId": ".-1.140265743909152"}, {"nodeId": ".-2.140265743909152"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265743909152": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909152", "variance": "INVARIANT"}}, ".-2.140265743909152": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909152", "variance": "INVARIANT"}}, ".-1.140265814913344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913344", "variance": "INVARIANT"}}, ".-2.140265814913344": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913344", "variance": "INVARIANT"}}, "140265814913792": {"type": "Function", "content": {"typeVars": [".-1.140265814913792", ".-2.140265814913792", ".-3.140265814913792"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743908928"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814913792"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814913792"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265814913792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140265743908928": {"type": "Function", "content": {"typeVars": [".-1.140265743908928", ".-2.140265743908928", ".-3.140265743908928"], "argTypes": [{"nodeId": ".-1.140265743908928"}, {"nodeId": ".-2.140265743908928"}, {"nodeId": ".-3.140265743908928"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140265743908928": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743908928", "variance": "INVARIANT"}}, ".-2.140265743908928": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743908928", "variance": "INVARIANT"}}, ".-3.140265743908928": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743908928", "variance": "INVARIANT"}}, ".-1.140265814913792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913792", "variance": "INVARIANT"}}, ".-2.140265814913792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913792", "variance": "INVARIANT"}}, ".-3.140265814913792": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814913792", "variance": "INVARIANT"}}, "140265814914240": {"type": "Function", "content": {"typeVars": [".-1.140265814914240", ".-2.140265814914240", ".-3.140265814914240", ".-4.140265814914240"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909600"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814914240"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814914240"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265814914240"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265814914240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140265743909600": {"type": "Function", "content": {"typeVars": [".-1.140265743909600", ".-2.140265743909600", ".-3.140265743909600", ".-4.140265743909600"], "argTypes": [{"nodeId": ".-1.140265743909600"}, {"nodeId": ".-2.140265743909600"}, {"nodeId": ".-3.140265743909600"}, {"nodeId": ".-4.140265743909600"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140265743909600": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-2.140265743909600": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-3.140265743909600": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-4.140265743909600": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909600", "variance": "INVARIANT"}}, ".-1.140265814914240": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, ".-2.140265814914240": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, ".-3.140265814914240": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, ".-4.140265814914240": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914240", "variance": "INVARIANT"}}, "140265814914688": {"type": "Function", "content": {"typeVars": [".-1.140265814914688", ".-2.140265814914688", ".-3.140265814914688", ".-4.140265814914688", ".-5.140265814914688"], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743909824"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265814914688"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-5.140265814914688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140265743909824": {"type": "Function", "content": {"typeVars": [".-1.140265743909824", ".-2.140265743909824", ".-3.140265743909824", ".-4.140265743909824", ".-5.140265743909824"], "argTypes": [{"nodeId": ".-1.140265743909824"}, {"nodeId": ".-2.140265743909824"}, {"nodeId": ".-3.140265743909824"}, {"nodeId": ".-4.140265743909824"}, {"nodeId": ".-5.140265743909824"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140265743909824": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-2.140265743909824": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-3.140265743909824": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-4.140265743909824": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-5.140265743909824": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265743909824", "variance": "INVARIANT"}}, ".-1.140265814914688": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-2.140265814914688": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-3.140265814914688": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-4.140265814914688": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, ".-5.140265814914688": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265814914688", "variance": "INVARIANT"}}, "140265814915136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, {"nodeId": "140265743910048"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140265743910048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265814915584": {"type": "Function", "content": {"typeVars": [".0.140265814915584"], "argTypes": [{"nodeId": ".0.140265814915584"}], "returnType": {"nodeId": ".0.140265814915584"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265814915584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}, "def": "140265814915584", "variance": "INVARIANT"}}, "140265814916032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858112", "args": [{"nodeId": ".1.140265789858112"}]}], "returnType": {"nodeId": ".1.140265789858112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265765401376": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815074496"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140265765401376"}], "bases": [{"nodeId": "140265765093440", "args": [{"nodeId": ".1.140265765401376"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140265765401376": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765401376", "variance": "CONTRAVARIANT"}}, "140265815074496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765401376", "args": [{"nodeId": ".1.140265765401376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790231776": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815075840"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140265790231776"}, {"nodeId": ".2.140265790231776"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__pow__"]}}, ".1.140265790231776": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790231776", "variance": "CONTRAVARIANT"}}, ".2.140265790231776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790231776", "variance": "COVARIANT"}}, "140265815075840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790231776", "args": [{"nodeId": ".1.140265790231776"}, {"nodeId": ".2.140265790231776"}]}, {"nodeId": ".1.140265790231776"}], "returnType": {"nodeId": ".2.140265790231776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265790232128": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815076288"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140265790232128"}, {"nodeId": ".2.140265790232128"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__pow__"]}}, ".1.140265790232128": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232128", "variance": "CONTRAVARIANT"}}, ".2.140265790232128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232128", "variance": "COVARIANT"}}, "140265815076288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790232128", "args": [{"nodeId": ".1.140265790232128"}, {"nodeId": ".2.140265790232128"}]}, {"nodeId": ".1.140265790232128"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140265790232128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265790232480": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815076736"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140265790232480"}, {"nodeId": ".2.140265790232480"}, {"nodeId": ".3.140265790232480"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__pow__"]}}, ".1.140265790232480": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232480", "variance": "CONTRAVARIANT"}}, ".2.140265790232480": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232480", "variance": "CONTRAVARIANT"}}, ".3.140265790232480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232480", "variance": "COVARIANT"}}, "140265815076736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790232480", "args": [{"nodeId": ".1.140265790232480"}, {"nodeId": ".2.140265790232480"}, {"nodeId": ".3.140265790232480"}]}, {"nodeId": ".1.140265790232480"}, {"nodeId": ".2.140265790232480"}], "returnType": {"nodeId": ".3.140265790232480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265789858464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743842016"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815305216"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815305664"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815306112"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140265789858464"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789858464"}]}], "isAbstract": false}}, ".1.140265789858464": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789858464", "variance": "INVARIANT"}}, "140265743842016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265815304320"}, {"nodeId": "140265815304768"}]}}, "140265815304320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}, {"nodeId": "140265861259936", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265815304768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}, {"nodeId": "140265764925888", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764925888": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848366560"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848367008"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265764925888"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140265764925888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764925888", "variance": "COVARIANT"}}, "140265848366560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925888", "args": [{"nodeId": ".1.140265764925888"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265848367008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925888", "args": [{"nodeId": ".1.140265764925888"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265764925888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265815305216": {"type": "Function", "content": {"typeVars": [".0.140265815305216"], "argTypes": [{"nodeId": ".0.140265815305216"}], "returnType": {"nodeId": ".0.140265815305216"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265815305216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}, "def": "140265815305216", "variance": "INVARIANT"}}, "140265815305664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": ".1.140265789858464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265815306112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858464", "args": [{"nodeId": ".1.140265789858464"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790232832": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815307008"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140265790232832"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__round__"]}}, ".1.140265790232832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790232832", "variance": "COVARIANT"}}, "140265815307008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790232832", "args": [{"nodeId": ".1.140265790232832"}]}], "returnType": {"nodeId": ".1.140265790232832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790233184": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815307456"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140265790233184"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__round__"]}}, ".1.140265790233184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265790233184", "variance": "COVARIANT"}}, "140265815307456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790233184", "args": [{"nodeId": ".1.140265790233184"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265790233184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265765401728": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764923072", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140265764923424", "args": [{"nodeId": "140265861266272"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140265764923072": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848362976"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140265764923072"}, {"nodeId": ".2.140265764923072"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__add__"]}}, ".1.140265764923072": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923072", "variance": "CONTRAVARIANT"}}, ".2.140265764923072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923072", "variance": "COVARIANT"}}, "140265848362976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764923072", "args": [{"nodeId": ".1.140265764923072"}, {"nodeId": ".2.140265764923072"}]}, {"nodeId": ".1.140265764923072"}], "returnType": {"nodeId": ".2.140265764923072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764923424": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848363424"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140265764923424"}, {"nodeId": ".2.140265764923424"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__radd__"]}}, ".1.140265764923424": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923424", "variance": "CONTRAVARIANT"}}, ".2.140265764923424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923424", "variance": "COVARIANT"}}, "140265848363424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764923424", "args": [{"nodeId": ".1.140265764923424"}, {"nodeId": ".2.140265764923424"}]}, {"nodeId": ".1.140265764923424"}], "returnType": {"nodeId": ".2.140265764923424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789858816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265743993088"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815449984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815450432"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265789858816"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265789858816"}]}], "isAbstract": false}}, ".1.140265789858816": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265789858816", "variance": "COVARIANT"}}, "140265743993088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265815444608"}, {"nodeId": "140265815445056"}, {"nodeId": "140265815445504"}, {"nodeId": "140265815445952"}, {"nodeId": "140265815446400"}, {"nodeId": "140265815446848"}]}}, "140265815444608": {"type": "Function", "content": {"typeVars": [".-1.140265815444608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815444608"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994320"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140265815444608": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815444608", "variance": "INVARIANT"}}, "140265743994320": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815444608"}]}}, "140265815445056": {"type": "Function", "content": {"typeVars": [".-1.140265815445056", ".-2.140265815445056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815445056"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815445056"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994544"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140265815445056": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445056", "variance": "INVARIANT"}}, ".-2.140265815445056": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445056", "variance": "INVARIANT"}}, "140265743994544": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815445056"}, {"nodeId": ".-2.140265815445056"}]}}, "140265815445504": {"type": "Function", "content": {"typeVars": [".-1.140265815445504", ".-2.140265815445504", ".-3.140265815445504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815445504"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815445504"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265815445504"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140265815445504": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445504", "variance": "INVARIANT"}}, ".-2.140265815445504": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445504", "variance": "INVARIANT"}}, ".-3.140265815445504": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445504", "variance": "INVARIANT"}}, "140265743994768": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815445504"}, {"nodeId": ".-2.140265815445504"}, {"nodeId": ".-3.140265815445504"}]}}, "140265815445952": {"type": "Function", "content": {"typeVars": [".-1.140265815445952", ".-2.140265815445952", ".-3.140265815445952", ".-4.140265815445952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815445952"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815445952"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265815445952"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265815445952"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743994992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140265815445952": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, ".-2.140265815445952": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, ".-3.140265815445952": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, ".-4.140265815445952": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815445952", "variance": "INVARIANT"}}, "140265743994992": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815445952"}, {"nodeId": ".-2.140265815445952"}, {"nodeId": ".-3.140265815445952"}, {"nodeId": ".-4.140265815445952"}]}}, "140265815446400": {"type": "Function", "content": {"typeVars": [".-1.140265815446400", ".-2.140265815446400", ".-3.140265815446400", ".-4.140265815446400", ".-5.140265815446400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-1.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-2.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-3.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-4.140265815446400"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": ".-5.140265815446400"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265743995216"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140265815446400": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-2.140265815446400": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-3.140265815446400": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-4.140265815446400": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, ".-5.140265815446400": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265815446400", "variance": "INVARIANT"}}, "140265743995216": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140265815446400"}, {"nodeId": ".-2.140265815446400"}, {"nodeId": ".-3.140265815446400"}, {"nodeId": ".-4.140265815446400"}, {"nodeId": ".-5.140265815446400"}]}}, "140265815446848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265789858816", "args": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140265815449984": {"type": "Function", "content": {"typeVars": [".0.140265815449984"], "argTypes": [{"nodeId": ".0.140265815449984"}], "returnType": {"nodeId": ".0.140265815449984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265815449984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789858816", "args": [{"nodeId": ".1.140265789858816"}]}, "def": "140265815449984", "variance": "INVARIANT"}}, "140265815450432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789858816", "args": [{"nodeId": ".1.140265789858816"}]}], "returnType": {"nodeId": ".1.140265789858816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265790233536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265790234240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790234592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790234944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790488752"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790488752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785906496"}}}, "140265785906496": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790235296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790233888"}], "isAbstract": false}}, "140265790235648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790236000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790236352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790236704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790237056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815453568"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861254656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265815453568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790237056"}, {"nodeId": "140265861254656"}, {"nodeId": "140265743997680"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140265743997680": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790237408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790237760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790238112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815454016"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790501520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790488864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265815454016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790238112"}, {"nodeId": "140265861254656"}, {"nodeId": "140265743997792"}, {"nodeId": "140265743997904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140265743997792": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265743997904": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790501520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790488864": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790238464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790238816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790239168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790239520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790239872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790240224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790240576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790501856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790500848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790490880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790498608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790501072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790491440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790501856": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790500848": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790490880": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790498608": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265790501072": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790491440": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265790240928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790241280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790241632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265790241984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236352"}], "isAbstract": false}}, "140265790242336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236352"}], "isAbstract": false}}, "140265789882432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236352"}], "isAbstract": false}}, "140265789882784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790238112"}], "isAbstract": false}}, "140265789883136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790238464"}], "isAbstract": false}}, "140265789883488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790238464"}], "isAbstract": false}}, "140265789883840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790239168"}], "isAbstract": false}}, "140265789884192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789884544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789884896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789885248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789885600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789885952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789886304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789884896"}], "isAbstract": false}}, "140265789886656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789887008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789887360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789887712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789888064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789888416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789888768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789889120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}], "isAbstract": false}}, "140265789889472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790239872"}], "isAbstract": false}}, "140265789889824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790239872"}], "isAbstract": false}}, "140265789890176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790240576"}], "isAbstract": false}}, "140265789890528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789890176"}], "isAbstract": false}}, "140265789890880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790241632"}], "isAbstract": false}}, "140265789891232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815454464"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265789890880"}], "isAbstract": false}}, "140265815454464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789891232"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140265789891584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815454912"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265789890880"}], "isAbstract": false}}, "140265815454912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789891584"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140265789891936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265815455360"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265789890880"}], "isAbstract": false}}, "140265815455360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789891936"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140265789892288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265789892640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789892992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789893344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789893696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789894048": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789894400": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789894752": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789895104": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789895456": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789895808": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265789896160": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789892288"}], "isAbstract": false}}, "140265785728992": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810566880"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["find_spec"]}}, "140265810566880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728992"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756056752"}, {"nodeId": "140265756056864"}], "returnType": {"nodeId": "140265756056976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140265756056752": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756056864": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265785722656": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773687504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735453184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773689632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785904704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861263456", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785904816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810705120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810705568"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773687504": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265735453184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265773689632": {"type": "Union", "content": {"items": [{"nodeId": "140265785722304"}, {"nodeId": "N"}]}}, "140265785722304": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810704224"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["load_module"]}}, "140265810704224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722304"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265785904704": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265785904816": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764444416": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806770720"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760397392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760397616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785798864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785798976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714768288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806771616"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265806770720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752089360"}, {"nodeId": "140265752089472"}, {"nodeId": "140265752089696"}, {"nodeId": "140265752089808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140265752089360": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265764445472": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831633568"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831634016"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831634464"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831634912"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265831633568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265831634016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265831634464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752093280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140265752093280": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265831634912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445472"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265752089472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752089696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265752089808": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265760397392": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265760397616": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265785798864": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265785798976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714768288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752089920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752089920": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265806771616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810705120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265761024688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140265761024688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265810705568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756056976": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265765403136": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735952576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735954816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735955936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735956832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735957056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735957728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265735952576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057200": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057312"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057312": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057424"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057424": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057536"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057536": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735954816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057648"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057648": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057760"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057760": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057872"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057872": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756057984"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756057984": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058096"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735955936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058208"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058208": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058320"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058320": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058432"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058432": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058544"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058544": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735956832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058656": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735957056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058768"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058768": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735957728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058880"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265765095200": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827634080"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140265765095200"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265765095200": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265765095200", "variance": "COVARIANT"}}, "140265827634080": {"type": "Function", "content": {"typeVars": [".-1.140265827634080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": ".1.140265765095200"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140265827634080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140265827634080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827634080", "variance": "INVARIANT"}}, "140265765403488": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735951232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735959968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735960864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735961984"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266624"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265735951232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756058992"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756058992": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735959968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059104"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059216"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059328"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059440"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059440": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735960864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059552"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059552": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059664"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059776"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756059888"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756059888": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060000"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060000": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735961984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060112"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060112": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265765403840": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736029792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736030912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736031136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736031360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736031584"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265785907168"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265736029792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060224": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060336"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060448"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060448": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060560"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060672"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060672": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736030912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060784"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060784": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736031136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756060896"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756060896": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736031360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061008"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061008": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736031584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061120"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061120": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265785907168": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140265861266272"}]}}, "140265785729344": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760263968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836667488"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760263968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760580416"}}}, "140265760580416": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265836667488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785729344"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765404192": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736034720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265736034048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061344"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061344": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736034272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061456"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736034496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265736034720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760325696": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736035168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736036512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736036736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265736035168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756061904"}], "returnType": {"nodeId": "140265756062016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756061904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262400"}, {"nodeId": "140265760264416"}, {"nodeId": "140265756061792"}]}}, "140265760262400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909968"}}}, "140265785909968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265760264416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909520"}}}, "140265785909520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756061792": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756062016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909968"}}}, "140265736036512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062240"}], "returnType": {"nodeId": "140265756062352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262400"}, {"nodeId": "140265760264416"}, {"nodeId": "140265756062128"}]}}, "140265756062128": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756062352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785909520"}}}, "140265736036736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062576"}], "returnType": {"nodeId": "140265756062688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062576": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262400"}, {"nodeId": "140265760264416"}, {"nodeId": "140265756062464"}]}}, "140265756062464": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756062688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760326048": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736036064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736038528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736038752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736038976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736039200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265736036064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062800"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062800": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736038528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756062912"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756062912": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736038752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756063024"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756063024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736038976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756063136"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756063136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265736039200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756063248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756063248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265785729696": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760581760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760270912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760271136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861254656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140265760581760": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265760270912": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265760271136": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760326400": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736043008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265736043456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265785910752"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790504544"}]}], "isAbstract": false}}, "140265736043008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756196928"}], "returnType": {"nodeId": "140265756197040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756196928": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262176"}, {"nodeId": "140265760271808"}]}}, "140265760262176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265785911760": {"type": "Union", "content": {"items": [{"nodeId": "140265773760096"}, {"nodeId": "N"}]}}, "140265773760096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760271808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265756197040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265736043456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756197152"}], "returnType": {"nodeId": "140265756197264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756197152": {"type": "Tuple", "content": {"items": [{"nodeId": "140265760262176"}, {"nodeId": "140265760271808"}]}}, "140265756197264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265785910752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785911760"}}}, "140265790504544": {"type": "Union", "content": {"items": [{"nodeId": "140265743917440"}, {"nodeId": "N"}]}}, "140265743917440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861262048", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789862336": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836276960"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836277408"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836277856"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265836276960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836277408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836277856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789862688": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265789857056", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836279648"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836280096"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836280544"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836280992"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836281440"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836101920"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836102368"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836102816"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836103264"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836103712"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}], "isAbstract": true}}, "140265836279648": {"type": "Function", "content": {"typeVars": [".0.140265836279648"], "argTypes": [{"nodeId": ".0.140265836279648"}], "returnType": {"nodeId": ".0.140265836279648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265836279648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789862688"}, "def": "140265836279648", "variance": "INVARIANT"}}, "140265836280096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}, {"nodeId": "0"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140265836280544": {"type": "Function", "content": {"typeVars": [".-1.140265836280544"], "argTypes": [{"nodeId": "140265789862688"}, {"nodeId": "0"}, {"nodeId": ".-1.140265836280544"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140265836280544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836280544", "variance": "INVARIANT"}}, "140265836280992": {"type": "Function", "content": {"typeVars": [".-1.140265836280992"], "argTypes": [{"nodeId": ".-1.140265836280992"}, {"nodeId": ".-1.140265836280992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265836280992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265836280992", "variance": "INVARIANT"}}, "140265836281440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}], "returnType": {"nodeId": "140265789856352", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836101920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}], "returnType": {"nodeId": "140265789855648", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836102368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}], "returnType": {"nodeId": "140265789856000", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836102816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789862688"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265836103264": {"type": "Function", "content": {"typeVars": [".0.140265836103264"], "argTypes": [{"nodeId": ".0.140265836103264"}, {"nodeId": ".0.140265836103264"}], "returnType": {"nodeId": ".0.140265836103264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265836103264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789862688"}, "def": "140265836103264", "variance": "INVARIANT"}}, "140265836103712": {"type": "Function", "content": {"typeVars": [".0.140265836103712"], "argTypes": [{"nodeId": ".0.140265836103712"}, {"nodeId": ".0.140265836103712"}], "returnType": {"nodeId": ".0.140265836103712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265836103712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789862688"}, "def": "140265836103712", "variance": "INVARIANT"}}, "140265789863392": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265760581648"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265744214816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836114464"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265836115360"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140265760581648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265836113120"}, {"nodeId": "140265836113568"}]}}, "140265836113120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863392"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265760769296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140265760769296": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265836113568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863392"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140265744214816": {"type": "Function", "content": {"typeVars": [".0.140265744214816"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140265744214816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140265744214816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789863392"}, "def": "140265744214816", "variance": "INVARIANT"}}, "140265836114464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863392"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265836115360": {"type": "Function", "content": {"typeVars": [".0.140265836115360"], "argTypes": [{"nodeId": ".0.140265836115360"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265836115360"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140265836115360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265789863392"}, "def": "140265836115360", "variance": "INVARIANT"}}, "140265789863744": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744215712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744216832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744217056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744217280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827337376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827337824"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827338272"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265744215712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744216160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265760770192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760770192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265744216384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744216608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744216832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744217056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744217280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}], "returnType": {"nodeId": "140265760770528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760770528": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827337376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}, {"nodeId": "140265760770864"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265760771088"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140265760770864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265760771088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827337824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827338272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789863744"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265789864448": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744386976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744387200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827344096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827344544"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265744386976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744387200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}], "returnType": {"nodeId": "140265760772656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760772656": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827344096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}, {"nodeId": "140265790227200"}, {"nodeId": "140265760772880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140265760772880": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265827344544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265789864800": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827346336"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744388992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744389440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744389664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744389888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744390112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827349024"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827349472"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827349920"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827346336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265760773664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140265760773664": {"type": "Union", "content": {"items": [{"nodeId": "140265789863744"}, {"nodeId": "140265789864096"}, {"nodeId": "140265789864448"}]}}, "140265744388992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744389440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265760773888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760773888": {"type": "Union", "content": {"items": [{"nodeId": "140265789863744"}, {"nodeId": "140265789864096"}, {"nodeId": "140265789864448"}]}}, "140265744389664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744389888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265744390112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}], "returnType": {"nodeId": "140265760774112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760774112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265827349024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827349472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827349920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789864800"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265789862336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764920256": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848359840"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265848359840": {"type": "Function", "content": {"typeVars": [".-1.140265848359840"], "argTypes": [{"nodeId": "140265764920256"}, {"nodeId": ".-1.140265848359840"}], "returnType": {"nodeId": ".-1.140265848359840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140265848359840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265848359840", "variance": "INVARIANT"}}, "140265764920608": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848360288"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140265764920608"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__next__"]}}, ".1.140265764920608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764920608", "variance": "COVARIANT"}}, "140265848360288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764920608", "args": [{"nodeId": ".1.140265764920608"}]}], "returnType": {"nodeId": ".1.140265764920608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764920960": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848360736"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140265764920960"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__anext__"]}}, ".1.140265764920960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764920960", "variance": "COVARIANT"}}, "140265848360736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764920960", "args": [{"nodeId": ".1.140265764920960"}]}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".1.140265764920960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764922016": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848362080"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140265764922016"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__le__"]}}, ".1.140265764922016": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764922016", "variance": "CONTRAVARIANT"}}, "140265848362080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764922016", "args": [{"nodeId": ".1.140265764922016"}]}, {"nodeId": ".1.140265764922016"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764922368": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848362528"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140265764922368"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__ge__"]}}, ".1.140265764922368": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764922368", "variance": "CONTRAVARIANT"}}, "140265848362528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764922368", "args": [{"nodeId": ".1.140265764922368"}]}, {"nodeId": ".1.140265764922368"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764922720": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764921312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764921664", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764922016", "args": [{"nodeId": "A"}]}, {"nodeId": "140265764922368", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140265764923776": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848363872"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140265764923776"}, {"nodeId": ".2.140265764923776"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__sub__"]}}, ".1.140265764923776": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923776", "variance": "CONTRAVARIANT"}}, ".2.140265764923776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764923776", "variance": "COVARIANT"}}, "140265848363872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764923776", "args": [{"nodeId": ".1.140265764923776"}, {"nodeId": ".2.140265764923776"}]}, {"nodeId": ".1.140265764923776"}], "returnType": {"nodeId": ".2.140265764923776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764924128": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848364320"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140265764924128"}, {"nodeId": ".2.140265764924128"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__rsub__"]}}, ".1.140265764924128": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924128", "variance": "CONTRAVARIANT"}}, ".2.140265764924128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924128", "variance": "COVARIANT"}}, "140265848364320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764924128", "args": [{"nodeId": ".1.140265764924128"}, {"nodeId": ".2.140265764924128"}]}, {"nodeId": ".1.140265764924128"}], "returnType": {"nodeId": ".2.140265764924128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764924480": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848364768"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140265764924480"}, {"nodeId": ".2.140265764924480"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__divmod__"]}}, ".1.140265764924480": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924480", "variance": "CONTRAVARIANT"}}, ".2.140265764924480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924480", "variance": "COVARIANT"}}, "140265848364768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764924480", "args": [{"nodeId": ".1.140265764924480"}, {"nodeId": ".2.140265764924480"}]}, {"nodeId": ".1.140265764924480"}], "returnType": {"nodeId": ".2.140265764924480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764924832": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848365216"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140265764924832"}, {"nodeId": ".2.140265764924832"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140265764924832": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924832", "variance": "CONTRAVARIANT"}}, ".2.140265764924832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764924832", "variance": "COVARIANT"}}, "140265848365216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764924832", "args": [{"nodeId": ".1.140265764924832"}, {"nodeId": ".2.140265764924832"}]}, {"nodeId": ".1.140265764924832"}], "returnType": {"nodeId": ".2.140265764924832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764925184": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848365664"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140265764925184"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__iter__"]}}, ".1.140265764925184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764925184", "variance": "COVARIANT"}}, "140265848365664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925184", "args": [{"nodeId": ".1.140265764925184"}]}], "returnType": {"nodeId": ".1.140265764925184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764925536": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848366112"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140265764925536"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__aiter__"]}}, ".1.140265764925536": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764925536", "variance": "COVARIANT"}}, "140265848366112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764925536", "args": [{"nodeId": ".1.140265764925536"}]}], "returnType": {"nodeId": ".1.140265764925536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764927296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848369248"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848369696"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140265764927296"}, {"nodeId": ".2.140265764927296"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140265764927296": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927296", "variance": "CONTRAVARIANT"}}, ".2.140265764927296": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927296", "variance": "COVARIANT"}}, "140265848369248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927296", "args": [{"nodeId": ".1.140265764927296"}, {"nodeId": ".2.140265764927296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265848369696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927296", "args": [{"nodeId": ".1.140265764927296"}, {"nodeId": ".2.140265764927296"}]}, {"nodeId": ".1.140265764927296"}], "returnType": {"nodeId": ".2.140265764927296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764927648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848370144"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848370592"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}], "bases": [{"nodeId": "140265764927296", "args": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140265764927648": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927648", "variance": "CONTRAVARIANT"}}, ".2.140265764927648": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764927648", "variance": "INVARIANT"}}, "140265848370144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927648", "args": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}]}, {"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265848370592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764927648", "args": [{"nodeId": ".1.140265764927648"}, {"nodeId": ".2.140265764927648"}]}, {"nodeId": ".1.140265764927648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764928000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848371040"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["fileno"]}}, "140265848371040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764928000"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764928352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848371488"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140265764928352"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["read"]}}, ".1.140265764928352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764928352", "variance": "COVARIANT"}}, "140265848371488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764928352", "args": [{"nodeId": ".1.140265764928352"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265764928352"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764928704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848371936"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140265764928704"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["readline"]}}, ".1.140265764928704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764928704", "variance": "COVARIANT"}}, "140265848371936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764928704", "args": [{"nodeId": ".1.140265764928704"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265764928704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764929056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265848372384"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140265764929056"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["readline"]}}, ".1.140265764929056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764929056", "variance": "COVARIANT"}}, "140265848372384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764929056", "args": [{"nodeId": ".1.140265764929056"}]}], "returnType": {"nodeId": ".1.140265764929056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265765093792": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827631392"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265789865152"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140265827631392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765093792"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765094144": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827631840"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265789865152"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140265827631840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094144"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765094496": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827632288"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265747824816"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265765093792"}, {"nodeId": "140265765094144"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140265827632288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265747824816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265827632736"}, {"nodeId": "140265827633184"}]}}, "140265827632736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094496"}, {"nodeId": "140265790228608"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265827633184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765094496"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265765094848": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140265789851424"}, {"nodeId": "140265789865152"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140265765095552": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265764743904", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__dataclass_fields__"]}}, "140265764743904": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721600", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764639840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807091680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807092576"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807093024"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265764743904"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265764743904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764743904", "variance": "INVARIANT"}}, "140265764639056": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265764743904"}, {"nodeId": "0"}]}}, "140265764639504": {"type": "Union", "content": {"items": [{"nodeId": "140265764743552", "args": [{"nodeId": ".1.140265764743904"}]}, {"nodeId": "0"}]}}, "140265764743552": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807091232"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140265764743552"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, ".1.140265764743552": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764743552", "variance": "COVARIANT"}}, "140265807091232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764743552", "args": [{"nodeId": ".1.140265764743552"}]}], "returnType": {"nodeId": ".1.140265764743552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764639728": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764639840": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "0"}]}}, "140265807091680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764743904", "args": [{"nodeId": ".1.140265764743904"}]}, {"nodeId": ".1.140265764743904"}, {"nodeId": "140265751903168"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752497616"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861264512", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140265751903168": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140265764743904"}, "argKinds": [], "argNames": []}}, "140265752497616": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265807092576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764743904", "args": [{"nodeId": ".1.140265764743904"}]}, {"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140265807093024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265789896864": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790230368"}], "isAbstract": false}}, "140265789897216": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764744960": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827641248"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705747648"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265764744960"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140265764744960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764744960", "variance": "COVARIANT"}}, "140265827641248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764744960"}]}], "returnType": {"nodeId": ".1.140265764744960"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265705747648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764744960"}]}, {"nodeId": "140265752502096"}, {"nodeId": "140265752502208"}, {"nodeId": "140265752502320"}], "returnType": {"nodeId": "140265752502432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752502096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752502208": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752502320": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752502432": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764745312": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265751902944"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710880352"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265764745312"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140265764745312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764745312", "variance": "COVARIANT"}}, "140265751902944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764745312"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265764745312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265710880352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764745312"}]}, {"nodeId": "140265752502656"}, {"nodeId": "140265752502768"}, {"nodeId": "140265752502880"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140265752502992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140265752502656": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752502768": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752502880": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752502992": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764745664": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827643040"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827643040": {"type": "Function", "content": {"typeVars": [".-1.140265827643040"], "argTypes": [{"nodeId": "140265764745664"}, {"nodeId": ".-1.140265827643040"}], "returnType": {"nodeId": ".-1.140265827643040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140265827643040": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140265764885376"}, "def": "140265827643040", "variance": "INVARIANT"}}, "140265764885376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265764746016": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827643488"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265764746016"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764886496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827643936"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140265764746016"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764746016"}]}, {"nodeId": "140265764745664"}], "isAbstract": false}}, ".1.140265764746016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764746016", "variance": "COVARIANT"}}, "140265827643488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746016", "args": [{"nodeId": ".1.140265764746016"}]}, {"nodeId": "140265752608832"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140265752608832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265764746016"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265764886496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265764746016"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265827643936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746016", "args": [{"nodeId": ".1.140265764746016"}]}, {"nodeId": "140265752503552"}, {"nodeId": "140265752503664"}, {"nodeId": "140265752503776"}], "returnType": {"nodeId": "140265752503888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752503552": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752503664": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752503776": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752503888": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764746368": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827645280"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827645280": {"type": "Function", "content": {"typeVars": [".-1.140265827645280"], "argTypes": [{"nodeId": "140265764746368"}, {"nodeId": ".-1.140265827645280"}], "returnType": {"nodeId": ".-1.140265827645280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140265827645280": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140265773815328"}, "def": "140265827645280", "variance": "INVARIANT"}}, "140265773815328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265764746720": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827645728"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265764746720"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773825408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265751902720"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140265764746720"}], "bases": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764746720"}]}, {"nodeId": "140265764746368"}], "isAbstract": false}}, ".1.140265764746720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764746720", "variance": "COVARIANT"}}, "140265827645728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746720", "args": [{"nodeId": ".1.140265764746720"}]}, {"nodeId": "140265752609728"}, {"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140265752609728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861261696", "args": [{"nodeId": ".1.140265764746720"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265773825408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265764746720"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265751902720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764746720", "args": [{"nodeId": ".1.140265764746720"}]}, {"nodeId": "140265752504784"}, {"nodeId": "140265752504896"}, {"nodeId": "140265752505008"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140265752505120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140265752504784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752504896": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752505008": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265752505120": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265764747072": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827992288"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["close"]}}, "140265827992288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747072"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764747424": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827992736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827993184"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140265764747424"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764747424"}]}], "isAbstract": false}}, ".1.140265764747424": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140265764747072"}, "def": "140265764747424", "variance": "INVARIANT"}}, "140265827992736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747424", "args": [{"nodeId": ".1.140265764747424"}]}, {"nodeId": ".1.140265764747424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140265827993184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747424", "args": [{"nodeId": ".1.140265764747424"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140265764747776": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827993632"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["aclose"]}}, "140265827993632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764747776"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "140265861254656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764748128": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827994080"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265752611072"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140265764748128"}], "bases": [{"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764748128"}]}], "isAbstract": false}}, ".1.140265764748128": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140265764747776"}, "def": "140265764748128", "variance": "INVARIANT"}}, "140265827994080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748128", "args": [{"nodeId": ".1.140265764748128"}]}, {"nodeId": ".1.140265764748128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140265752611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748128", "args": [{"nodeId": ".1.140265764748128"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140265764748480": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827994976"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827995424"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140265827994976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748480"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140265827995424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748480"}, {"nodeId": "140265752505904"}, {"nodeId": "140265752506016"}, {"nodeId": "140265752506128"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752505904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752506016": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752506128": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764748832": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827995872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827996320"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140265764748832"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764748832"}]}], "isAbstract": false}}, ".1.140265764748832": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140265760400528"}, "def": "140265764748832", "variance": "INVARIANT"}}, "140265760400528": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265827995872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764748832"}]}, {"nodeId": ".1.140265764748832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140265827996320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764748832"}]}, {"nodeId": "140265752506240"}, {"nodeId": "140265752506352"}, {"nodeId": "140265752506464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752506240": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752506352": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752506464": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764913216": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140265764913216"}], "bases": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764913216"}]}], "isAbstract": false}}, ".1.140265764913216": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140265760400528"}, "def": "140265764913216", "variance": "INVARIANT"}}, "140265764913568": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140265764913568"}], "bases": [{"nodeId": "140265764748832", "args": [{"nodeId": ".1.140265764913568"}]}], "isAbstract": false}}, ".1.140265764913568": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140265760400528"}, "def": "140265764913568", "variance": "INVARIANT"}}, "140265764913920": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827996768"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827997216"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827997664"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827998112"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827998560"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827999008"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827999456"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827996768": {"type": "Function", "content": {"typeVars": [".-1.140265827996768"], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": "140265764744960", "args": [{"nodeId": ".-1.140265827996768"}]}], "returnType": {"nodeId": ".-1.140265827996768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140265827996768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827996768", "variance": "INVARIANT"}}, "140265827997216": {"type": "Function", "content": {"typeVars": [".-1.140265827997216"], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": ".-1.140265827997216"}], "returnType": {"nodeId": ".-1.140265827997216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140265827997216": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140265760401648"}, "def": "140265827997216", "variance": "INVARIANT"}}, "140265760401648": {"type": "Union", "content": {"items": [{"nodeId": "140265764744960", "args": [{"nodeId": "A"}]}, {"nodeId": "140265760401088"}]}}, "140265760401088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265773759200"}}}, "140265773759200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764641744"}, {"nodeId": "140265764641296"}, {"nodeId": "140265764641408"}], "returnType": {"nodeId": "140265764641520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265764641744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265764641296": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265764641408": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764641520": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265827997664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": "140265752610400"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265752611296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140265752610400": {"type": "Function", "content": {"typeVars": [".-2.140265752610400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752610400"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752610400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752610400", "variance": "INVARIANT"}}, "140265752611296": {"type": "Function", "content": {"typeVars": [".-2.140265752611296"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752611296"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752611296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752611296", "variance": "INVARIANT"}}, "140265827998112": {"type": "Function", "content": {"typeVars": [".0.140265827998112"], "argTypes": [{"nodeId": ".0.140265827998112"}], "returnType": {"nodeId": ".0.140265827998112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265827998112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764913920"}, "def": "140265827998112", "variance": "INVARIANT"}}, "140265827998560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764913920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265827999008": {"type": "Function", "content": {"typeVars": [".0.140265827999008"], "argTypes": [{"nodeId": ".0.140265827999008"}], "returnType": {"nodeId": ".0.140265827999008"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265827999008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764913920"}, "def": "140265827999008", "variance": "INVARIANT"}}, "140265827999456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764913920"}, {"nodeId": "140265752507472"}, {"nodeId": "140265752507584"}, {"nodeId": "140265752507696"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265752507472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752507584": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752507696": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764914272": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827999904"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265827994528"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828000800"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828001248"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828001696"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828002144"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828002592"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828000352"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828003040"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828003488"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265827999904": {"type": "Function", "content": {"typeVars": [".-1.140265827999904"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265764744960", "args": [{"nodeId": ".-1.140265827999904"}]}], "returnType": {"nodeId": ".-1.140265827999904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140265827999904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827999904", "variance": "INVARIANT"}}, "140265827994528": {"type": "Function", "content": {"typeVars": [".-1.140265827994528"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265764745312", "args": [{"nodeId": ".-1.140265827994528"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140265827994528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140265827994528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265827994528", "variance": "INVARIANT"}}, "140265828000800": {"type": "Function", "content": {"typeVars": [".-1.140265828000800"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": ".-1.140265828000800"}], "returnType": {"nodeId": ".-1.140265828000800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140265828000800": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140265760401648"}, "def": "140265828000800", "variance": "INVARIANT"}}, "140265828001248": {"type": "Function", "content": {"typeVars": [".-1.140265828001248"], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": ".-1.140265828001248"}], "returnType": {"nodeId": ".-1.140265828001248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140265828001248": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140265760402208"}, "def": "140265828001248", "variance": "INVARIANT"}}, "140265760402208": {"type": "Union", "content": {"items": [{"nodeId": "140265764745312", "args": [{"nodeId": "A"}]}, {"nodeId": "140265760402432"}]}}, "140265760402432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265773825632"}}}, "140265773825632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764646000"}, {"nodeId": "140265764644544"}, {"nodeId": "140265764645664"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": "140265764645776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265764646000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265764644544": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265764645664": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764645776": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265828001696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265752610848"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265752611744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140265752610848": {"type": "Function", "content": {"typeVars": [".-2.140265752610848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752610848"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752610848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752610848", "variance": "INVARIANT"}}, "140265752611744": {"type": "Function", "content": {"typeVars": [".-2.140265752611744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140265752611744"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752611744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752611744", "variance": "INVARIANT"}}, "140265828002144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265752611520"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265752612192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140265752611520": {"type": "Function", "content": {"typeVars": [".-2.140265752611520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".-2.140265752611520"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752611520": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752611520", "variance": "INVARIANT"}}, "140265752612192": {"type": "Function", "content": {"typeVars": [".-2.140265752612192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265861260640", "args": [{"nodeId": ".-2.140265752612192"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140265752612192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265752612192", "variance": "INVARIANT"}}, "140265828002592": {"type": "Function", "content": {"typeVars": [".0.140265828002592"], "argTypes": [{"nodeId": ".0.140265828002592"}], "returnType": {"nodeId": ".0.140265828002592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265828002592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764914272"}, "def": "140265828002592", "variance": "INVARIANT"}}, "140265828000352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265828003040": {"type": "Function", "content": {"typeVars": [".0.140265828003040"], "argTypes": [{"nodeId": ".0.140265828003040"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140265828003040"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265828003040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764914272"}, "def": "140265828003040", "variance": "INVARIANT"}}, "140265828003488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914272"}, {"nodeId": "140265752509824"}, {"nodeId": "140265752509936"}, {"nodeId": "140265752510048"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140265861255360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140265752509824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265752509936": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265752510048": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265764914624": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265764914624"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752509712"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828005280"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828005728"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265752611968"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265752612864"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140265764914624"}], "bases": [{"nodeId": "140265764744960", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": "140265764745312", "args": [{"nodeId": ".1.140265764914624"}]}], "isAbstract": false}}, ".1.140265764914624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764914624", "variance": "INVARIANT"}}, "140265752509712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828003936"}, {"nodeId": "140265828004384"}]}}, "140265828003936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140265828004384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": ".1.140265764914624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140265828005280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}], "returnType": {"nodeId": ".1.140265764914624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265828005728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140265752611968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265764914624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752612864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764914624", "args": [{"nodeId": ".1.140265764914624"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140265785733920": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726797280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726796160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726795264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726794592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726793920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726793248"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756452656"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756454336"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756455008"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756455120"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828198752"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828199200"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828199648"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726737344"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756456240"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828201440"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828201888"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828202336"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785733920"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785733920": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785733920", "variance": "INVARIANT"}}, "140265726797280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726796160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726795264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265756454784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756454784": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265726794592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265756454896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756454896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265726793920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726793248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785733920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785734272": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726733760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726723008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726723456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265726724128"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756456688"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756457920"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756458704"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756557600"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756558048"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756558496"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756559280"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756559616"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831967520"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831967968"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831968416"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785734272"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785734272": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785734272", "variance": "INVARIANT"}}, "140265726733760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726723008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726723456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265726724128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756456688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831956768"}, {"nodeId": "140265756269408"}, {"nodeId": "140265831957664"}]}}, "140265831956768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756458816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756458816": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756269408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557376": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "N"}]}}, "140265831957664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557488": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "N"}]}}, "140265756457920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831958112"}, {"nodeId": "140265756267392"}, {"nodeId": "140265831959008"}]}}, "140265831958112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557712": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756267392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557824": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "N"}]}}, "140265831959008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756557936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756557936": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "N"}]}}, "140265756458704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831959456"}, {"nodeId": "140265756270304"}, {"nodeId": "140265831960352"}]}}, "140265831959456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756558160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558160": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265756270304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756558272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558272": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "N"}]}}, "140265831960352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756558384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558384": {"type": "Union", "content": {"items": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "N"}]}}, "140265756557600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831960800"}, {"nodeId": "140265756270528"}, {"nodeId": "140265831961696"}]}}, "140265831960800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265756558720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140265756558720": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}}, "140265756270528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265756558944"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140265756558944": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "A"}]}}, "140265831961696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265756559168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140265756559168": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "A"}]}}, "140265756558048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831962144"}, {"nodeId": "140265756270752"}, {"nodeId": "140265831963040"}]}}, "140265831962144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756270752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265831963040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": ".1.140265785734272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756558496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831963488"}, {"nodeId": "140265756270976"}, {"nodeId": "140265831964384"}]}}, "140265831963488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756270976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265831964384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140265756559280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831964832"}, {"nodeId": "140265756271648"}, {"nodeId": "140265831965728"}]}}, "140265831964832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756559840"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756559840": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265756271200"}]}}, "140265756271200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756271648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265756559952"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756559952": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265756271424"}]}}, "140265756271424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}], "returnType": {"nodeId": "140265789865152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265831965728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "140265756560064"}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560064": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "140265756270080"}]}}, "140265756270080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756559616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831966176"}, {"nodeId": "140265756272544"}, {"nodeId": "140265831967072"}]}}, "140265831966176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756560288"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756560512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560288": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265756271872"}]}}, "140265756271872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756560512": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756272544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265756560624"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756560848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560624": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265756272096"}]}}, "140265756272096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}], "returnType": {"nodeId": "140265789865152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756560848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265831967072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "140265756560960"}, {"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265756561184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140265756560960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "140265756272320"}]}}, "140265756272320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": ".1.140265785734272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265756561184": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265785734272"}, {"nodeId": "140265861266272"}]}}, "140265831967520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}], "returnType": {"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831967968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785734272", "args": [{"nodeId": ".1.140265785734272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831968416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265756452656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828194272"}, {"nodeId": "140265756267840"}, {"nodeId": "140265828195168"}]}}, "140265828194272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140265756267840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140265828195168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": ".1.140265785733920"}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140265756454336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828195616"}, {"nodeId": "140265828196064"}, {"nodeId": "140265828196512"}]}}, "140265828195616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265828196064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756455344"}], "returnType": {"nodeId": "140265756455568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265756455344": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756455568": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828196512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756455680"}, {"nodeId": "140265756455792"}, {"nodeId": "140265756455904"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756456128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140265756455680": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756455792": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756455904": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265756456128": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265756455008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828196960"}, {"nodeId": "140265828197408"}]}}, "140265828196960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756456464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756456464": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828197408": {"type": "Function", "content": {"typeVars": [".-1.140265828197408"], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": ".-1.140265828197408"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756456576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140265828197408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265828197408", "variance": "INVARIANT"}}, "140265756456576": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": ".-1.140265828197408"}]}}, "140265756455120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828197856"}, {"nodeId": "140265828198304"}]}}, "140265828197856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265756456912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756456912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828198304": {"type": "Function", "content": {"typeVars": [".-1.140265828198304"], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": ".-1.140265828198304"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265756457024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140265828198304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265828198304", "variance": "INVARIANT"}}, "140265756457024": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": ".-1.140265828198304"}]}}, "140265828198752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756457136"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265756457136": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265828199200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756457248"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265756457248": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265828199648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756457360"}], "returnType": {"nodeId": "140265756457584"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265756457360": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265756457584": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265726737344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265756457808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756457808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265756456240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265828200544"}, {"nodeId": "140265828200992"}]}}, "140265828200544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140265785733920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265828200992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "140265756458144"}], "returnType": {"nodeId": "140265756458368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756458144": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265756458368": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785733920"}, {"nodeId": "A"}]}}, "140265828201440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}], "returnType": {"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265828201888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785733920", "args": [{"nodeId": ".1.140265785733920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265828202336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265760326752": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764451104"}], "isAbstract": false}}, "140265785720896": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735333568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785721248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773687728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735334016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735334688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831751840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831752288"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761019200"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735333568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}], "returnType": {"nodeId": "140265761021888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761021888": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265773687728": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265735334016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735334688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831751840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "140265785721248"}, {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, {"nodeId": "140265761022336"}, {"nodeId": "140265761022448"}, {"nodeId": "140265761022560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140265761022336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265761022448": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}, {"nodeId": "N"}]}}, "140265761022560": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265831752288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265761019200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265831752736"}, {"nodeId": "140265831753184"}]}}, "140265831752736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "N"}, {"nodeId": "140265861265568"}], "returnType": {"nodeId": "140265785720896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265831753184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785720896"}, {"nodeId": "140265861254656"}, {"nodeId": "140265761023120"}], "returnType": {"nodeId": "140265785724416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265761023120": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785724416": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735670464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735670912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735671808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810899936"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810900384"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735670464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265761028496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761028496": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265789865504"}]}, {"nodeId": "N"}]}}, "140265735670912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265761028720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761028720": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265735671136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265785724064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785724064": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810896800"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265810896800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724064"}, {"nodeId": "140265861254656"}, {"nodeId": "140265761028384"}], "returnType": {"nodeId": "140265785720896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140265761028384": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265735671360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735671584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735671808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810899936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}, {"nodeId": "140265764891424"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265764891424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265810900384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724416"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265785721952": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810702432"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810702880"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810703328"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810703776"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265810702432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140265810702880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265810703328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "140265790227200"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265810703776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785721952"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265785723008": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735454304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810887392"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810887840"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810888288"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761020880"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}], "bases": [{"nodeId": "140265861260288", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}], "isAbstract": false}}, ".1.140265785723008": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723008", "variance": "COVARIANT"}}, ".2.140265785723008": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723008", "variance": "CONTRAVARIANT"}}, ".3.140265785723008": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723008", "variance": "COVARIANT"}}, "140265735454304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}], "returnType": {"nodeId": "140265761025024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761025024": {"type": "Union", "content": {"items": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265810887392": {"type": "Function", "content": {"typeVars": [".0.140265810887392"], "argTypes": [{"nodeId": ".0.140265810887392"}], "returnType": {"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265810887392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, "def": "140265810887392", "variance": "INVARIANT"}}, "140265810887840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810888288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, {"nodeId": ".2.140265785723008"}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761020880": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265810888736"}, {"nodeId": "140265810889184"}]}}, "140265810888736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, {"nodeId": "0"}, {"nodeId": "140265761025360"}, {"nodeId": "140265761025472"}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761025360": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265761025472": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810889184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723008", "args": [{"nodeId": ".1.140265785723008"}, {"nodeId": ".2.140265785723008"}, {"nodeId": ".3.140265785723008"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265761025584"}], "returnType": {"nodeId": ".1.140265785723008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761025584": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785723360": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735576416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810890528"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810890976"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810891424"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761025136"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810892768"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810893216"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}], "bases": [{"nodeId": "140265861262048", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "isAbstract": false}}, ".1.140265785723360": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723360", "variance": "COVARIANT"}}, ".2.140265785723360": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723360", "variance": "CONTRAVARIANT"}}, "140265735576416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "returnType": {"nodeId": "140265761025808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761025808": {"type": "Union", "content": {"items": [{"nodeId": "140265861260640", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140265810890528": {"type": "Function", "content": {"typeVars": [".0.140265810890528"], "argTypes": [{"nodeId": ".0.140265810890528"}], "returnType": {"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265810890528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, "def": "140265810890528", "variance": "INVARIANT"}}, "140265810890976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810891424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, {"nodeId": ".2.140265785723360"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761025136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265764891200"}, {"nodeId": "140265810891872"}]}}, "140265764891200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, {"nodeId": "0"}, {"nodeId": "140265761026592"}, {"nodeId": "140265761026704"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761026592": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265761026704": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810891872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265761026928"}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140265785723360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761026928": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810892768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723360", "args": [{"nodeId": ".1.140265785723360"}, {"nodeId": ".2.140265785723360"}]}], "returnType": {"nodeId": "140265861260992", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810893216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140265785723712": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735582688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810894560"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810895008"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810895456"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265761026816"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}], "bases": [{"nodeId": "140265861260992", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "isAbstract": false}}, ".1.140265785723712": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723712", "variance": "COVARIANT"}}, ".2.140265785723712": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723712", "variance": "CONTRAVARIANT"}}, ".3.140265785723712": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785723712", "variance": "COVARIANT"}}, "140265735582688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "returnType": {"nodeId": "140265761027712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761027712": {"type": "Union", "content": {"items": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265761027600"}]}, {"nodeId": "N"}]}}, "140265761027600": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265810894560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810895008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140265785723712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810895456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}, {"nodeId": ".2.140265785723712"}], "returnType": {"nodeId": ".1.140265785723712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265761026816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265810895904"}, {"nodeId": "140265810896352"}]}}, "140265810895904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}, {"nodeId": "0"}, {"nodeId": "140265761028048"}, {"nodeId": "140265761028160"}], "returnType": {"nodeId": ".1.140265785723712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761028048": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "140265861254656"}]}}, "140265761028160": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265810896352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785723712", "args": [{"nodeId": ".1.140265785723712"}, {"nodeId": ".2.140265785723712"}, {"nodeId": ".3.140265785723712"}]}, {"nodeId": "140265790233888"}, {"nodeId": "N"}, {"nodeId": "140265761028272"}], "returnType": {"nodeId": ".1.140265785723712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140265761028272": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265785724768": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735673376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735673600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735673824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265810902176"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735673376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}], "returnType": {"nodeId": "140265761029392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265761029392": {"type": "Union", "content": {"items": [{"nodeId": "140265861254656"}, {"nodeId": "140265785722656"}]}}, "140265735673600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735673824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265810902176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785724768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265785725120": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735675616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735676064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735676288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811035296"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811035744"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735675616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735676064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735676288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811035296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811035744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725120"}, {"nodeId": "A"}, {"nodeId": "140265756049696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756049696": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785725472": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735678752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811037984"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811038432"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811038880"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735678080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735678304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735678528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735678752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811037984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811038432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265811038880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725472"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265785725824": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735681440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735681664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735681888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811040672"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811041120"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735681440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735681664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735681888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811040672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811041120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785725824"}, {"nodeId": "A"}, {"nodeId": "140265756050704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756050704": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785726176": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735682784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735749696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735749920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811042912"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811043360"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735682784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735749696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735749920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811042912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265811043360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785726176"}, {"nodeId": "A"}, {"nodeId": "140265756051376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756051376": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265785727232": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735757088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735756864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735757312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811165472"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811165920"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811166368"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735757088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735756864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735757312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811165472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}, {"nodeId": "A"}, {"nodeId": "140265756052496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756052496": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265811165920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265811166368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727232"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265785727584": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735759104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735759328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735759552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811168160"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811168608"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811169056"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265735759104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735759328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265735759552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}], "returnType": {"nodeId": "140265861265568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811168160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}, {"nodeId": "A"}, {"nodeId": "140265756053168"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265756053168": {"type": "Union", "content": {"items": [{"nodeId": "140265861265568"}, {"nodeId": "N"}]}}, "140265811168608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265811169056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785727584"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265785728288": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811175776"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265811175776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785728288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760339072": {"type": "Concrete", "content": {"module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265698098336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265705957056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265710016928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744393472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265744391904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265697792224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265735951680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743911840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743913632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743914528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743917216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265743913856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265698087360"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265698098336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265705957056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760270352"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760270352": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265710016928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265731169568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265731169568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265744393472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265714533312"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714533312": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265744391904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265777843664"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265777843664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265697792224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265697744864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265697744864": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265735951680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698086240"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698086240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743911840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698086688"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698086688": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743913632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698086800"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698086800": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743914528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698087696"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698087696": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743917216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698087808"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698087808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265743913856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265698087920"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265698087920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265698087360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140265861266272"}]}}, "140265760339424": {"type": "Protocol", "content": {"module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "content": {"name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266624"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}}, "140265765096256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265697581920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828384352"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265697581920": {"type": "Tuple", "content": {"items": []}}, "140265828384352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765096256"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140265760584896": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265765143488": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265765143600": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765096608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765096960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765097312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702518880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096960"}], "isAbstract": false}}, "140265702518880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765097664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702516416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702516416": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765108224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765098016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702514848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765097312"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702514848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765099072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765098368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702506896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702506896": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765098720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702324848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096608"}], "isAbstract": false}}, "140265702324848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765099424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702319248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765394688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760582656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265702319248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765394688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714126064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765147408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265714126064": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765395040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719233584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719233584": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584672": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765147184": {"type": "Union", "content": {"items": [{"nodeId": "140265765395040"}, {"nodeId": "N"}]}}, "140265765147408": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265760584560": {"type": "Union", "content": {"items": [{"nodeId": "140265765395040"}, {"nodeId": "N"}]}}, "140265760582656": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765099776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702314096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765394688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583552"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265702314096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760583552": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765100128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701806752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701806752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765395392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719232128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719232128": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765147520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765100480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701804960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701804960": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265760583664": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765100832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701803280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701803280": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765101184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701554576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701554576": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765101536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701551664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765300960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701551664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760583776": {"type": "Union", "content": {"items": [{"nodeId": "140265765297440"}, {"nodeId": "140265765296032"}, {"nodeId": "140265765296736"}]}}, "140265765297440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714844384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714844384": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765298496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765296032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715055104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265715055104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765296736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714851328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714851328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765300960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765101888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701547632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701547632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760583888": {"type": "Union", "content": {"items": [{"nodeId": "140265765297440"}, {"nodeId": "140265765296032"}, {"nodeId": "140265765296736"}]}}, "140265760584000": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765102240": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701545168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701545168": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765102592": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265701542704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265701542704": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765102944": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706519600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706519600": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765103296": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706516912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706516912": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765103648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706514224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706514224": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765396096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719227872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719227872": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765147632": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765104000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706511760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706511760": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765104352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706510752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760579296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706510752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584112": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265760579296": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765104704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706507728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765394336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706507728": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765394336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714130544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765393984"}], "isAbstract": false}}, "140265714130544": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765146960": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765147072": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765393984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765105056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706353632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706353632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584336": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765105408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706351840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395744"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706351840": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765395744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719229776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719229776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765147296": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765105760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706349152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760584448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395744"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706349152": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760584448": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765106112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706348368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706348368": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765106464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706347136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706347136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765106816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706345680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265706345680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765107168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265765107520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265765107872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265765108576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706342768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765299904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706342768": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765299904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765108928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706091712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765300960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706091712": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765109280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706093056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765305888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706093056": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765305888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765290048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706090704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765394688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706090704": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765290400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706089024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706089024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765290752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706086560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765144160"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706086560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765144160": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765291104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265706079952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265706079952": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765291456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705811952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265705811952": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765393632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714131776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265714131776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765291808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705810944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265705810944": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765292160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265705800304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265705800304": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765292512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710871920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765393632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710871920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765292864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710645344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710645344": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765293216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710643776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760583216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710643776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265760583216": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765293568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710643216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710643216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765293920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710633920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765389760"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710633920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765389760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765294272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710222272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765395392"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710222272": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765294624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710217008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710217008": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765143936": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765294976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710215328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710215328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765295328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710209280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765143824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710209280": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765143824": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765146400": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266976"}]}}, "140265765295680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710037904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765297440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265710037904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765296384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715050176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765146848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265715050176": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765146624": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765146736": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765146848": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765297088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714847408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714847408": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765297792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714547088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714547088": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765298144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714539024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765298496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765108224"}], "isAbstract": false}}, "140265714539024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765298848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765298496"}], "isAbstract": false}}, "140265765299200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765298496"}], "isAbstract": false}}, "140265765299552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765298496"}], "isAbstract": false}}, "140265765300256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765299904"}], "isAbstract": false}}, "140265765300608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765299904"}], "isAbstract": false}}, "140265765301312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765301664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765302016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765302368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765302720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765303072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765303424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765303776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765304128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765304480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765304832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765305184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765305536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765300960"}], "isAbstract": false}}, "140265765388352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765388704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765389056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765389408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765305888"}], "isAbstract": false}}, "140265765390112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765390464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765390816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765391168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765391520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765391872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765392224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765392576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765392928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765393280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765389760"}], "isAbstract": false}}, "140265765396448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719225408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765397152"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765099072"}], "isAbstract": false}}, "140265719225408": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765397152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719224400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765396800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765099072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265719224400": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765396800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140265765096256"}], "isAbstract": false}}, "140265765147744": {"type": "Union", "content": {"items": [{"nodeId": "140265765108224"}, {"nodeId": "N"}]}}, "140265765397504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719223840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719223840": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765397856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719223168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765147856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719223168": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765147856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140265765398208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719222384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719222384": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765398560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719220256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719220256": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265765148192": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765398912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719220032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765108224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148304"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719220032": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765148304": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765399264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265719218352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765108224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265719218352": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765399616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718857200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265765148528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265718857200": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265765148416": {"type": "Union", "content": {"items": [{"nodeId": "140265765396800"}, {"nodeId": "N"}]}}, "140265765148528": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265765399968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718857312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265765396800"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765396800"}], "isAbstract": false}}, "140265718857312": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265785735328": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790236000"}, {"nodeId": "140265790241632"}], "isAbstract": false}}, "140265785735680": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811314272"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811314720"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811315168"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811315616"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811316064"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811316512"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811316960"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811317408"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811317856"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764884928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811318304"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811318752"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811319200"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811319648"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811320096"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811320544"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764887616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811320992"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811321440"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811321888"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718996480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811322784"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265811314272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265811314720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811315168": {"type": "Function", "content": {"typeVars": [".0.140265811315168"], "argTypes": [{"nodeId": ".0.140265811315168"}], "returnType": {"nodeId": ".0.140265811315168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265811315168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785735680"}, "def": "140265811315168", "variance": "INVARIANT"}}, "140265811315616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882080"}, {"nodeId": "140265751882192"}, {"nodeId": "140265751882304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265751882080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265751882192": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265751882304": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265811316064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811316512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811316960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811317408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811317856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764884928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265811318304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265811318752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265811319200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811319648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811320096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882416"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751882416": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811320544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764887616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265811320992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265789865152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811321440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882528"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751882528": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811321888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265718996480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811322784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785735680"}, {"nodeId": "140265751882640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140265751882640": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265785736032": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811323232"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811323680"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811324128"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811324576"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140265785735680"}], "isAbstract": false}}, "140265811323232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811323680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265751882752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265751882752": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811324128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265751882864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265751882864": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811324576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265751882976"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751882976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785736384": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785736032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811325024"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811325472"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811325920"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811326368"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811326816"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811327264"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140265785735680"}], "isAbstract": false}}, "140265811325024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}], "returnType": {"nodeId": "140265785736032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811325472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811325920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811326368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265811326816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265751883088"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751883088": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265811327264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736384"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265785736736": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760396160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811327712"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718991328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265811328608"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831547168"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831547616"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140265785736032"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265760396160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006560"}}}, "140265765006560": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265765009696"}]}}, "140265765009696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265764995472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227552"}]}]}}, "140265760327104": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723002016"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140265760327104"}], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__fspath__"]}}, ".1.140265760327104": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265760327104", "variance": "COVARIANT"}}, "140265723002016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760327104", "args": [{"nodeId": ".1.140265760327104"}]}], "returnType": {"nodeId": ".1.140265760327104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811327712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}, {"nodeId": "140265751883200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265751883424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140265751883200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006560"}}}, "140265751883424": {"type": "Union", "content": {"items": [{"nodeId": "140265751883312"}, {"nodeId": "N"}]}}, "140265751883312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265773811296"}}}, "140265773811296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265718991328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265811328608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831547168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785736736"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831547616": {"type": "Function", "content": {"typeVars": [".0.140265831547616"], "argTypes": [{"nodeId": ".0.140265831547616"}], "returnType": {"nodeId": ".0.140265831547616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831547616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785736736"}, "def": "140265831547616", "variance": "INVARIANT"}}, "140265764438080": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831548064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831548512"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831548960"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831549408"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831549856"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265831548064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140265831548512": {"type": "Function", "content": {"typeVars": [".0.140265831548512"], "argTypes": [{"nodeId": ".0.140265831548512"}], "returnType": {"nodeId": ".0.140265831548512"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831548512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764438080"}, "def": "140265831548512", "variance": "INVARIANT"}}, "140265831548960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831549408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}], "returnType": {"nodeId": "140265790228256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831549856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438080"}, {"nodeId": "140265751883760"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751883760": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265764438432": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831550304"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831550752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831551200"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265831550304": {"type": "Function", "content": {"typeVars": [".0.140265831550304"], "argTypes": [{"nodeId": ".0.140265831550304"}], "returnType": {"nodeId": ".0.140265831550304"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831550304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764438432"}, "def": "140265831550304", "variance": "INVARIANT"}}, "140265831550752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438432"}, {"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140265831551200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438432"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764438784": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831551648"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831552096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831552544"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}, {"nodeId": "140265789854240"}], "isAbstract": false}}, "140265831551648": {"type": "Function", "content": {"typeVars": [".0.140265831551648"], "argTypes": [{"nodeId": ".0.140265831551648"}], "returnType": {"nodeId": ".0.140265831551648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831551648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764438784"}, "def": "140265831551648", "variance": "INVARIANT"}}, "140265831552096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438784"}, {"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140265831552544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764438784"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265764439136": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831552992"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831553440"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140265764438432"}, {"nodeId": "140265764438784"}], "isAbstract": false}}, "140265831552992": {"type": "Function", "content": {"typeVars": [".0.140265831552992"], "argTypes": [{"nodeId": ".0.140265831552992"}], "returnType": {"nodeId": ".0.140265831552992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831552992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764439136"}, "def": "140265831552992", "variance": "INVARIANT"}}, "140265831553440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439136"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265764439488": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831553888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831554336"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140265785736384"}], "isAbstract": false}}, "140265831553888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439488"}, {"nodeId": "140265785736032"}, {"nodeId": "140265785736032"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140265831554336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439488"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265764439840": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760646176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760396272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831554784"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831555232"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831555680"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831556128"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831556576"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831557024"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831557472"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831557920"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140265785735680"}], "isAbstract": false}}, "140265760646176": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760396272": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265831554784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265831555232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831555680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831556128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831556576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831557024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831557472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831557920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764439840"}, {"nodeId": "140265751884208"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265751884208": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265764440192": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831558368"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714157824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714158272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714158496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714158944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831560608"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831561056"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831561504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831561952"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831562400"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831562848"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831629088"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831629536"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140265764439840"}, {"nodeId": "140265789854592"}], "isAbstract": false}}, "140265831558368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265751884320"}, {"nodeId": "140265751884432"}, {"nodeId": "140265751884544"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140265751884320": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884432": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884544": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714157824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714158272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714158496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714158944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831560608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265751884656"}, {"nodeId": "140265751884768"}, {"nodeId": "140265751884880"}, {"nodeId": "140265751884992"}, {"nodeId": "140265751885104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140265751884656": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884768": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884880": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751884992": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265751885104": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265831561056": {"type": "Function", "content": {"typeVars": [".0.140265831561056"], "argTypes": [{"nodeId": ".0.140265831561056"}], "returnType": {"nodeId": ".0.140265831561056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265831561056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764440192"}, "def": "140265831561056", "variance": "INVARIANT"}}, "140265831561504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265831561952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831562400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265831562848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831629088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265831629536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440192"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140265764440544": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831629984"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831630432"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140265764440192"}], "isAbstract": false}}, "140265831629984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440544"}, {"nodeId": "140265751885328"}, {"nodeId": "140265751885440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140265751885328": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265751885440": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831630432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440544"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760338368": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831630880"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831631328"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714287104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831632224"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140265764919552"}], "isAbstract": false}}, "140265831630880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}, {"nodeId": "140265751885552"}, {"nodeId": "140265861255360"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140265751885552": {"type": "Union", "content": {"items": [{"nodeId": "140265764919552"}, {"nodeId": "N"}]}}, "140265764919552": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802249184"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702078752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802250080"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802250528"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802250976"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265802249184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702078752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265802250080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802250528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}], "returnType": {"nodeId": "140265747830080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747830080": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265802250976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919552"}, {"nodeId": "140265747830304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140265747830304": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265831631328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}, {"nodeId": "140265751885664"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265751885664": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}]}}, "140265714287104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}], "returnType": {"nodeId": "140265751885776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751885776": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265831632224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338368"}, {"nodeId": "140265751886000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265751886000": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265764445120": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764445824": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714715104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764445472"}], "isAbstract": true}}, "140265714715104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764445824"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265764446176": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831635808"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831636256"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714768512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831637152"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714746528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764445472"}], "isAbstract": true}}, "140265831635808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265831636256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752093392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752093392": {"type": "Union", "content": {"items": [{"nodeId": "140265785721248"}, {"nodeId": "N"}]}}, "140265714768512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752093504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752093504": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831637152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446176"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265714746528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752093616"}, {"nodeId": "140265752093840"}], "returnType": {"nodeId": "140265785721248"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140265752093616": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265765098016"}, {"nodeId": "140265765098720"}, {"nodeId": "140265765098368"}]}}, "140265752093840": {"type": "Union", "content": {"items": [{"nodeId": "140265789865152"}, {"nodeId": "140265752093728"}]}}, "140265752093728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265790503312": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}]}}, "140265764446528": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715105376"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764446176"}], "isAbstract": true}}, "140265715105376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446528"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265764446880": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831638496"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831638944"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831639392"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831639840"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140265764445824"}, {"nodeId": "140265764446528"}], "isAbstract": true}}, "140265831638496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265831638944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140265831639392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752093952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752093952": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831639840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764446880"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265764447232": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831640288"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831640736"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831641184"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140265764445120"}], "isAbstract": false}}, "140265831640288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447232"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752094176"}], "returnType": {"nodeId": "140265752094288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140265752094176": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752094288": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265831640736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831641184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447232"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752094400"}, {"nodeId": "140265752094512"}], "returnType": {"nodeId": "140265752094624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140265752094400": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752094512": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752094624": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764447584": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831641632"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831642080"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831642528"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831642976"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140265764445120"}], "isAbstract": false}}, "140265831641632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752094736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752094736": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265831642080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752095072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265752095072": {"type": "Tuple", "content": {"items": [{"nodeId": "140265752094848"}, {"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}]}}, "140265752094848": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265831642528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265831642976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447584"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752095184"}], "returnType": {"nodeId": "140265752095296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140265752095184": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752095296": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764447936": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831643424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831643872"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831644320"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265831644768"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140265764445824"}, {"nodeId": "140265764446528"}], "isAbstract": true}}, "140265831643424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140265831643872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265831644320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265752095408"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265752095408": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265831644768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764447936"}, {"nodeId": "140265752095520"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265752095520": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764448288": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715110112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715110560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715111232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715110784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265715110112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265715110560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265715111232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265715110784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448288"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764448640": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715112128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715112576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715112800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715113472"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752093056"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265715113024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715113696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715113920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715114144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140265715112128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715112576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715112800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265764448640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715113472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764448640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140265752093056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265806762656"}, {"nodeId": "140265806763104"}, {"nodeId": "140265806763552"}, {"nodeId": "140265806764000"}, {"nodeId": "140265806764448"}, {"nodeId": "140265806764896"}, {"nodeId": "140265806765344"}]}}, "140265806762656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752095744"}, {"nodeId": "140265861266272"}, {"nodeId": "140265752095856"}, {"nodeId": "140265752095968"}, {"nodeId": "140265752096080"}], "returnType": {"nodeId": "140265764440192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752095744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765000960"}}}, "140265765000960": {"type": "Union", "content": {"items": [{"nodeId": "140265765002864"}, {"nodeId": "140265765002976"}, {"nodeId": "140265765000848"}]}}, "140265765002864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765000400"}}}, "140265765000400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765002976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765002528"}}}, "140265765002528": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765000848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765004544"}}}, "140265765004544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265752095856": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752095968": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752096080": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265806763104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752095632"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265785736736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752095632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265765007792": {"type": "Union", "content": {"items": [{"nodeId": "140265765008016"}, {"nodeId": "140265765008128"}, {"nodeId": "140265765006784"}]}}, "140265765008016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006224"}}}, "140265765006224": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765008128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765009248"}}}, "140265765009248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265765006784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007680"}}}, "140265765007680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806763552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752096416"}, {"nodeId": "140265752096752"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764439136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752096416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006224"}}}, "140265752096752": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806764000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752096864"}, {"nodeId": "140265752097200"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752096864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007680"}}}, "140265752097200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806764448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752097312"}, {"nodeId": "140265752097648"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752097312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765009248"}}}, "140265752097648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265806764896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752097760"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752097760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265806765344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265752097872"}, {"nodeId": "140265752097984"}, {"nodeId": "140265752098096"}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265752097872": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752097984": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752098096": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265715113024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764448640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265715113920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265715114144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448640"}, {"nodeId": "140265752098320"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140265752098320": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764448992": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265715115712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806768032"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806768480"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806768928"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806769376"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140265764448288"}], "isAbstract": true}}, "140265715115712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}], "returnType": {"nodeId": "140265764448640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265806768032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764438432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265806768480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140265806768928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265806769376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764448992"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760331328": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714766496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714765600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714765152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714764704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714764256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714764032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714763584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714761792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714760640"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}, {"nodeId": "140265764446176"}], "isAbstract": false}}, "140265714766496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090032"}], "returnType": {"nodeId": "140265752090144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752090032": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752090144": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265714765600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090256"}, {"nodeId": "140265752090368"}], "returnType": {"nodeId": "140265752090480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752090256": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752090368": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752090480": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265714765152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714764704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714764256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714764032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714763584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140265714761792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752090592"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140265752090592": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265714760640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140265760331680": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714759744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714760192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714759296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714758848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714758400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714757952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714757504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714756384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714756160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}, {"nodeId": "140265764446176"}], "isAbstract": false}}, "140265714759744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090704"}], "returnType": {"nodeId": "140265752090816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752090704": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752090816": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265714760192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752090928"}, {"nodeId": "140265752091040"}], "returnType": {"nodeId": "140265752091152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752090928": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752091040": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752091152": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265714759296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714758848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714758400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714757952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140265714757504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140265714756384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265752091264"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140265752091264": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265714756160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140265760332032": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714755040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714754592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}], "isAbstract": false}}, "140265714755040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752091376"}], "returnType": {"nodeId": "140265752091488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752091376": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752091488": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265714754592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752091600"}, {"nodeId": "140265752091712"}], "returnType": {"nodeId": "140265752091824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752091600": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752091712": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752091824": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265764444768": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714753024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714752576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714753472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714752128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265714753024": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140265714752576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764444064"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140265760330624": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760646512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803023072"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714405152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760646512": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265803023072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330624"}, {"nodeId": "140265752086896"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140265752086896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714405152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764444064": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803025312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803025760"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803026208"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140265764443712"}], "isAbstract": false}}, "140265803025312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444064"}, {"nodeId": "140265760337312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265760337312": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781439040"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781439488"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781439936"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265722689824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781440832"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781441280"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781443968"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781903424"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781903872"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781904320"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781904768"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781905216"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781905664"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781906112"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781906560"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781907008"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781907904"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781908352"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781908800"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781909248"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756572048"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781912832"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781913280"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781913728"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781914176"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781914624"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781915072"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781916416"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781916864"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781917312"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781917760"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781918208"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781918656"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265722776928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773384192"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773384640"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773385088"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773385536"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773385984"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773386432"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773386880"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773387776"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140265760336256"}], "isAbstract": false}}, "140265781439040": {"type": "Function", "content": {"typeVars": [".0.140265781439040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265756738608"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265781439040"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140265756738608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, ".0.140265781439040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781439040", "variance": "INVARIANT"}}, "140265781439488": {"type": "Function", "content": {"typeVars": [".0.140265781439488"], "argTypes": [{"nodeId": ".0.140265781439488"}], "returnType": {"nodeId": ".0.140265781439488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265781439488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781439488", "variance": "INVARIANT"}}, "140265781439936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756738832"}, {"nodeId": "140265756738944"}, {"nodeId": "140265756739056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265756738832": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756738944": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265756739056": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265722689824": {"type": "Function", "content": {"typeVars": [".0.140265722689824"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265722689824"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265722689824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265722689824", "variance": "INVARIANT"}}, "140265781440832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265756739168"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265756739168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760643376"}}}, "140265760643376": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265781441280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140265781443968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781903424": {"type": "Function", "content": {"typeVars": [".0.140265781903424"], "argTypes": [{"nodeId": ".0.140265781903424"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781903424"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140265781903424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781903424", "variance": "INVARIANT"}}, "140265781903872": {"type": "Function", "content": {"typeVars": [".0.140265781903872"], "argTypes": [{"nodeId": ".0.140265781903872"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781903872"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140265781903872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781903872", "variance": "INVARIANT"}}, "140265781904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781905664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781906112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781906560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781907008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781907904": {"type": "Function", "content": {"typeVars": [".0.140265781907904"], "argTypes": [{"nodeId": ".0.140265781907904"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781907904"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265781907904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781907904", "variance": "INVARIANT"}}, "140265781908352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140265781908800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265756739280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756739280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760643376"}}}, "140265781909248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140265756572048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781909696"}, {"nodeId": "140265781910144"}, {"nodeId": "140265781910592"}, {"nodeId": "140265781911040"}, {"nodeId": "140265781911488"}, {"nodeId": "140265781911936"}, {"nodeId": "140265781912384"}]}}, "140265781909696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756739504"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756739616"}, {"nodeId": "140265756739728"}, {"nodeId": "140265756739840"}], "returnType": {"nodeId": "140265764440192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756739504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765000960"}}}, "140265756739616": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756739728": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756739840": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781910144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756739392"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265785736736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756739392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265781910592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756740176"}, {"nodeId": "140265756740512"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764439136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756740176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765006224"}}}, "140265756740512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265781911040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756740624"}, {"nodeId": "140265756740960"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756740624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007680"}}}, "140265756740960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265781911488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756741072"}, {"nodeId": "140265756741408"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265764438432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756741072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765009248"}}}, "140265756741408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140265781911936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756741520"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265789854240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756741520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265765007792"}}}, "140265781912384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756741632"}, {"nodeId": "140265756741744"}, {"nodeId": "140265756741856"}], "returnType": {"nodeId": "140265789853888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140265756741632": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756741744": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756741856": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781912832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781913280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781913728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781914176": {"type": "Function", "content": {"typeVars": [".0.140265781914176"], "argTypes": [{"nodeId": ".0.140265781914176"}], "returnType": {"nodeId": ".0.140265781914176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265781914176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781914176", "variance": "INVARIANT"}}, "140265781914624": {"type": "Function", "content": {"typeVars": [".0.140265781914624"], "argTypes": [{"nodeId": ".0.140265781914624"}, {"nodeId": "140265756742080"}], "returnType": {"nodeId": ".0.140265781914624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140265781914624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781914624", "variance": "INVARIANT"}}, "140265756742080": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265760336256"}]}}, "140265760336256": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722672992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722485600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722486496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722680192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722679968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781590976"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781591424"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781428288"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781428736"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781429184"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781429632"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781430080"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781430528"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781430976"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781431424"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781431872"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781432320"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781432768"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781433216"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781433664"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781434560"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781435008"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781435456"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781435904"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781436352"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781436800"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722687360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722675264"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781438144"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265722672992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722485600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722486496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722680192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722679968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781590976": {"type": "Function", "content": {"typeVars": [".0.140265781590976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265756737712"}], "returnType": {"nodeId": ".0.140265781590976"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140265756737712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, ".0.140265781590976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781590976", "variance": "INVARIANT"}}, "140265781591424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781428288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781428736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781429184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781429632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781430080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781430528": {"type": "Function", "content": {"typeVars": [".0.140265781430528"], "argTypes": [{"nodeId": ".0.140265781430528"}, {"nodeId": "140265756737824"}], "returnType": {"nodeId": ".0.140265781430528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265781430528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781430528", "variance": "INVARIANT"}}, "140265756737824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781430976": {"type": "Function", "content": {"typeVars": [".0.140265781430976"], "argTypes": [{"nodeId": ".0.140265781430976"}, {"nodeId": "140265756737936"}], "returnType": {"nodeId": ".0.140265781430976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265781430976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781430976", "variance": "INVARIANT"}}, "140265756737936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781431424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781431872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781432320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781432768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781433216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781433664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265756738048"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140265756738048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781434560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760336256"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140265781435008": {"type": "Function", "content": {"typeVars": [".0.140265781435008"], "argTypes": [{"nodeId": ".0.140265781435008"}, {"nodeId": "140265756738160"}], "returnType": {"nodeId": ".0.140265781435008"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140265781435008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781435008", "variance": "INVARIANT"}}, "140265756738160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265781435456": {"type": "Function", "content": {"typeVars": [".0.140265781435456"], "argTypes": [{"nodeId": ".0.140265781435456"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265781435456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140265781435456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781435456", "variance": "INVARIANT"}}, "140265781435904": {"type": "Function", "content": {"typeVars": [".0.140265781435904"], "argTypes": [{"nodeId": ".0.140265781435904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265781435904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140265781435904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781435904", "variance": "INVARIANT"}}, "140265781436352": {"type": "Function", "content": {"typeVars": [".0.140265781436352"], "argTypes": [{"nodeId": ".0.140265781436352"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265781436352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140265781436352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781436352", "variance": "INVARIANT"}}, "140265781436800": {"type": "Function", "content": {"typeVars": [".0.140265781436800"], "argTypes": [{"nodeId": ".0.140265781436800"}, {"nodeId": "140265756738272"}], "returnType": {"nodeId": ".0.140265781436800"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140265781436800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265781436800", "variance": "INVARIANT"}}, "140265756738272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265722687360": {"type": "Function", "content": {"typeVars": [".0.140265722687360"], "argTypes": [{"nodeId": ".0.140265722687360"}], "returnType": {"nodeId": "140265861263104", "args": [{"nodeId": ".0.140265722687360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265722687360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265722687360", "variance": "INVARIANT"}}, "140265722675264": {"type": "Function", "content": {"typeVars": [".0.140265722675264"], "argTypes": [{"nodeId": ".0.140265722675264"}], "returnType": {"nodeId": ".0.140265722675264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265722675264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760336256"}, "def": "140265722675264", "variance": "INVARIANT"}}, "140265781438144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140265781915072": {"type": "Function", "content": {"typeVars": [".0.140265781915072"], "argTypes": [{"nodeId": ".0.140265781915072"}, {"nodeId": "140265756742192"}], "returnType": {"nodeId": ".0.140265781915072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140265781915072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781915072", "variance": "INVARIANT"}}, "140265756742192": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265760336256"}]}}, "140265781916416": {"type": "Function", "content": {"typeVars": [".0.140265781916416"], "argTypes": [{"nodeId": ".0.140265781916416"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": ".0.140265781916416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140265781916416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265781916416", "variance": "INVARIANT"}}, "140265781916864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781917312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742304"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140265756742304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265781917760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140265756742416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265781918208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140265781918656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140265722776928": {"type": "Function", "content": {"typeVars": [".0.140265722776928"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140265722776928"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140265722776928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265722776928", "variance": "INVARIANT"}}, "140265773384192": {"type": "Function", "content": {"typeVars": [".0.140265773384192"], "argTypes": [{"nodeId": ".0.140265773384192"}], "returnType": {"nodeId": ".0.140265773384192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265773384192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265773384192", "variance": "INVARIANT"}}, "140265773384640": {"type": "Function", "content": {"typeVars": [".0.140265773384640"], "argTypes": [{"nodeId": ".0.140265773384640"}], "returnType": {"nodeId": ".0.140265773384640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265773384640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760337312"}, "def": "140265773384640", "variance": "INVARIANT"}}, "140265773385088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265773385536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742528"}, {"nodeId": "140265756742640"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140265756742528": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756742640": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773385984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756742752"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140265756742752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265773386432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265789865152"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140265773386880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756742864"}, {"nodeId": "140265756742976"}, {"nodeId": "140265756743088"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140265756742864": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756742976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756743088": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773387776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760337312"}, {"nodeId": "140265756743200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140265756743200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265803025760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444064"}, {"nodeId": "140265752087120"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140265752087120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265803026208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764444064"}, {"nodeId": "140265752087232"}], "returnType": {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265752087232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265764443712": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714408512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714407616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714407392"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752085664"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714407168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714406048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714405824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714404704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265714408512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752086000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140265752086000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}, {"nodeId": "140265752086112"}], "returnType": {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140265752086112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265714407392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764443712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140265752085664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265802411680"}, {"nodeId": "140265802412128"}]}}, "140265802411680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764443712"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140265802412128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140265752086336"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764443712"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140265752086336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265714407168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752086560"}], "returnType": {"nodeId": "140265764444064"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140265752086560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790503312"}}}, "140265714406496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265764440896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764440896": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781320768"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781321216"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781321664"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781322112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781322560"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714448672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140265781320768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781321216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781321664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781322112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781322560": {"type": "Function", "content": {"typeVars": [".-1.140265781322560"], "argTypes": [{"nodeId": "140265764440896"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781322560"}], "returnType": {"nodeId": "140265751886784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140265781322560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781322560", "variance": "INVARIANT"}}, "140265751886784": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140265781322560"}]}}, "140265714448672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764440896"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265751886896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751886896": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265714406944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265764442656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764442656": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802404512"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802404960"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714435680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714435008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265785798080"}]}], "isAbstract": false}}, "140265802404512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}, {"nodeId": "140265752084768"}], "returnType": {"nodeId": "140265752085552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752084768": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265752085552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760395824"}}}, "140265760395824": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265802404960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265764442656"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140265714435680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714435008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764442656"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265785798080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760395824"}}}, "140265714406272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714406048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265752086672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752086672": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265760338720"}]}, {"nodeId": "N"}]}}, "140265760338720": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802408544"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802408992"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802409440"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760396048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760394256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764443712"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265760336608"}], "isAbstract": false}}, "140265802408544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338720"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140265802408992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338720"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802409440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760338720"}], "returnType": {"nodeId": "140265760327104", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760396048": {"type": "Union", "content": {"items": [{"nodeId": "140265764443360"}, {"nodeId": "N"}]}}, "140265764443360": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802409888"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265802409888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443360"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140265760394256": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760336608": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760336256"}], "isAbstract": false}}, "140265714405824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265752086784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752086784": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265714404704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443712"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714753472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752091936"}, {"nodeId": "140265752092048"}], "returnType": {"nodeId": "140265752092160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140265752091936": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752092048": {"type": "Union", "content": {"items": [{"nodeId": "140265785722656"}, {"nodeId": "N"}]}}, "140265752092160": {"type": "Union", "content": {"items": [{"nodeId": "140265764444416"}, {"nodeId": "N"}]}}, "140265714752128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752092272"}], "returnType": {"nodeId": "140265752092384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140265752092272": {"type": "Union", "content": {"items": [{"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "N"}]}}, "140265752092384": {"type": "Union", "content": {"items": [{"nodeId": "140265764445472"}, {"nodeId": "N"}]}}, "140265760332384": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806933216"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714751456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447584"}], "isAbstract": false}}, "140265806933216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760332384"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752092608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140265752092608": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265714751456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265752092832"}], "returnType": {"nodeId": "140265751887936"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140265752092832": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}]}}, "140265751887936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764447584"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265760332736": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806934112"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140265764447936"}, {"nodeId": "140265764446880"}], "isAbstract": false}}, "140265806934112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760332736"}, {"nodeId": "140265790227200"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140265760333088": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764447936"}, {"nodeId": "140265764446880"}], "isAbstract": false}}, "140265760333440": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806934560"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806935008"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806935456"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806935904"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806936352"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806936800"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265806937248"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140265764446528"}], "isAbstract": false}}, "140265806934560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140265806935008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265752092944"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265752092944": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265806935456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265806935904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265764444416"}], "returnType": {"nodeId": "140265785722656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140265806936352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265785722656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140265806936800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140265806937248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760333440"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265764742848": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764451456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764450048"}], "isAbstract": false}}, "140265764743200": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764744256": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790237056"}], "isAbstract": false}}, "140265764744608": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807098400"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752498176"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265764744608"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265764744608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265764744608", "variance": "INVARIANT"}}, "140265807098400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764744608", "args": [{"nodeId": ".1.140265764744608"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140265752498176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265807098848"}, {"nodeId": "140265807099296"}]}}, "140265807098848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140265764744608", "args": [{"nodeId": ".1.140265764744608"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140265807099296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265764744608", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140265785734624": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802204320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802205216"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802205664"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802206112"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802206560"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802207008"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802207456"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802207904"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802208352"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802208800"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756738496"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140265785734624"}], "bases": [{"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}], "isAbstract": false}}, ".1.140265785734624": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785734624", "variance": "INVARIANT"}}, "140265802204320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": "140265861264864", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140265802205216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": ".1.140265785734624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140265802205664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802206112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802206560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": ".1.140265785734624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802207008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265802207456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": ".1.140265785734624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265802207904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265802208352": {"type": "Function", "content": {"typeVars": [".-1.140265802208352", ".-2.140265802208352"], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265802208352"}, {"nodeId": ".-2.140265802208352"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265756743760"}, {"nodeId": "140265756743872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265802208352": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208352", "variance": "INVARIANT"}}, ".-2.140265802208352": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208352", "variance": "INVARIANT"}}, "140265756743760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-1.140265802208352"}]}}, "140265756743872": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-2.140265802208352"}]}}, "140265802208800": {"type": "Function", "content": {"typeVars": [".-1.140265802208800", ".-2.140265802208800"], "argTypes": [{"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": ".-1.140265802208800"}, {"nodeId": ".-2.140265802208800"}]}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265756743984"}, {"nodeId": "140265756744096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140265802208800": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208800", "variance": "INVARIANT"}}, ".-2.140265802208800": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265802208800", "variance": "INVARIANT"}}, "140265756743984": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-1.140265802208800"}]}}, "140265756744096": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".-2.140265802208800"}]}}, "140265756738496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265802209248"}, {"nodeId": "140265802209696"}]}}, "140265802209248": {"type": "Function", "content": {"typeVars": [".0.140265802209248"], "argTypes": [{"nodeId": ".0.140265802209248"}, {"nodeId": "140265861264512", "args": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}], "returnType": {"nodeId": ".0.140265802209248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265802209248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, "def": "140265802209248", "variance": "INVARIANT"}}, "140265802209696": {"type": "Function", "content": {"typeVars": [".0.140265802209696"], "argTypes": [{"nodeId": ".0.140265802209696"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265756744544"}]}], "returnType": {"nodeId": ".0.140265802209696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140265802209696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785734624", "args": [{"nodeId": ".1.140265785734624"}]}, "def": "140265802209696", "variance": "INVARIANT"}}, "140265756744544": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265785734624"}, {"nodeId": ".1.140265785734624"}]}}, "140265765402080": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723199072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723002464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723001568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722998432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723000224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722999328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722998656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722998880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722994400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722996864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722997312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266624"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265723199072": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265723002464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756744768"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756744768": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723001568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756744880"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756744880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756744992"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756744992": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745104"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722998432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745216"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745328"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723000224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745440"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745440": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745552"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745552": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745664"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745664": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745776"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745776": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722999328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756745888"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756745888": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722998656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746000"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746000": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722998880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746112"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746112": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722994400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746224"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746224": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722996864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746336"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746336": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265722997312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756746448"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756746448": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265785734976": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722992608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722989920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793588128"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793588576"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793589024"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793589472"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793589920"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793590368"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265793590816"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785734976"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785734976": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785734976", "variance": "INVARIANT"}}, "140265722992608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": ".1.140265785734976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265722989920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": ".1.140265785734976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793588128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793588576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265793589024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265793589472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793589920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265756746896"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140265756746896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760643376"}}}, "140265793590368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265785734976"}]}], "returnType": {"nodeId": ".1.140265785734976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265793590816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265760327456": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723436880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722966560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722965440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722965664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722964992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722964768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722964096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722963872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722962528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722961856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722961184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722960512"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265723436880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722966560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747232"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747232": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722965440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747344"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747344": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722965664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747456"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722964992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747568"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722964768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747680"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722964096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747792"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747792": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722963872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756747904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756747904": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722962528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748016"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748016": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722961856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748128"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748128": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722961184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748240"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748240": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748352"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748352": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760327808": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723438560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722958944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722957152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722956928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722956032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722956480"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265723438560": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722958944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756748912"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756748912": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722957152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749024"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749024": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722956928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749136"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722956032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749248": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722956480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756749360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756749360": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265760328160": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265723444944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722934240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265722932896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265723444944": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265722934240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756986608"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756986608": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265722932896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265756986720"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756986720": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760328512": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794164704"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794165152"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794165600"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140265760328512"}], "bases": [{"nodeId": "140265861259584", "args": [{"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265760328512"}]}]}, {"nodeId": "140265764744960", "args": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}]}], "isAbstract": false}}, ".1.140265760328512": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265760328512", "variance": "INVARIANT"}}, "140265794164704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}], "returnType": {"nodeId": "140265785734976", "args": [{"nodeId": ".1.140265760328512"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265794165152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140265794165600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328512", "args": [{"nodeId": ".1.140265760328512"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760328864": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794295776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794296224"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265764440192"}], "isAbstract": false}}, "140265794295776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328864"}, {"nodeId": "140265764440192"}, {"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140265785731456": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760641136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760642592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760274048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785913776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785913888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265756198048"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777484672"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777484224"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777483776"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777483328"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777482880"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777482432"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777119296"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782017408"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782016960"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785731456"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785731456": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785731456", "variance": "INVARIANT"}}, "140265760641136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265760273488": {"type": "Union", "content": {"items": [{"nodeId": "140265760273040"}, {"nodeId": "140265861263104", "args": [{"nodeId": "140265760272704"}]}]}}, "140265760273040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265760272704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265760642592": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "N"}]}}, "140265760274048": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "N"}]}}, "140265785913776": {"type": "Union", "content": {"items": [{"nodeId": "140265789853888", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "N"}]}}, "140265785913888": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "A"}]}}, "140265756198048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265756266272"}, {"nodeId": "140265772848448"}, {"nodeId": "140265772848896"}, {"nodeId": "140265772849344"}, {"nodeId": "140265772849792"}, {"nodeId": "140265772850240"}]}}, "140265756266272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756383648"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756383872"}, {"nodeId": "140265756384096"}, {"nodeId": "140265756384320"}, {"nodeId": "140265756384544"}, {"nodeId": "140265756384656"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756384992"}, {"nodeId": "140265756385216"}, {"nodeId": "140265756385328"}, {"nodeId": "140265756385552"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756385664"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756385776"}, {"nodeId": "140265756385888"}, {"nodeId": "140265756386000"}, {"nodeId": "140265756386224"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756383648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756383872": {"type": "Union", "content": {"items": [{"nodeId": "140265756383760"}, {"nodeId": "N"}]}}, "140265756383760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756384096": {"type": "Union", "content": {"items": [{"nodeId": "140265756383984"}, {"nodeId": "N"}]}}, "140265756383984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265785912320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140265861266272"}, {"nodeId": "140265789853888", "args": [{"nodeId": "A"}]}]}}, "140265756384320": {"type": "Union", "content": {"items": [{"nodeId": "140265756384208"}, {"nodeId": "N"}]}}, "140265756384208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756384544": {"type": "Union", "content": {"items": [{"nodeId": "140265756384432"}, {"nodeId": "N"}]}}, "140265756384432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756384656": {"type": "Union", "content": {"items": [{"nodeId": "140265756265824"}, {"nodeId": "N"}]}}, "140265756265824": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756384992": {"type": "Union", "content": {"items": [{"nodeId": "140265756384880"}, {"nodeId": "N"}]}}, "140265756384880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756385216": {"type": "Union", "content": {"items": [{"nodeId": "140265756385104"}, {"nodeId": "N"}]}}, "140265756385104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265760274272": {"type": "Union", "content": {"items": [{"nodeId": "140265861264512", "args": [{"nodeId": "140265790227552"}, {"nodeId": "140265760273824"}]}, {"nodeId": "140265861264512", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265760273376"}]}]}}, "140265760273824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265760273376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756385328": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756385552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756385664": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756385776": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756385888": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756386000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756386224": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756386112"}]}, {"nodeId": "N"}]}}, "140265756386112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772848448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756386336"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756386560"}, {"nodeId": "140265756386784"}, {"nodeId": "140265756387008"}, {"nodeId": "140265756387232"}, {"nodeId": "140265756387344"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756387680"}, {"nodeId": "140265756387904"}, {"nodeId": "140265756388016"}, {"nodeId": "140265756388240"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756388352"}, {"nodeId": "140265756388464"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756388576"}, {"nodeId": "140265756388688"}, {"nodeId": "140265756388912"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756386336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756386560": {"type": "Union", "content": {"items": [{"nodeId": "140265756386448"}, {"nodeId": "N"}]}}, "140265756386448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756386784": {"type": "Union", "content": {"items": [{"nodeId": "140265756386672"}, {"nodeId": "N"}]}}, "140265756386672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756387008": {"type": "Union", "content": {"items": [{"nodeId": "140265756386896"}, {"nodeId": "N"}]}}, "140265756386896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756387232": {"type": "Union", "content": {"items": [{"nodeId": "140265756387120"}, {"nodeId": "N"}]}}, "140265756387120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756387344": {"type": "Union", "content": {"items": [{"nodeId": "140265756265152"}, {"nodeId": "N"}]}}, "140265756265152": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756387680": {"type": "Union", "content": {"items": [{"nodeId": "140265756387568"}, {"nodeId": "N"}]}}, "140265756387568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756387904": {"type": "Union", "content": {"items": [{"nodeId": "140265756387792"}, {"nodeId": "N"}]}}, "140265756387792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756388016": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756388240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756388352": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756388464": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756388576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756388688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756388912": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756388800"}]}, {"nodeId": "N"}]}}, "140265756388800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772848896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756389024"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756389248"}, {"nodeId": "140265756389472"}, {"nodeId": "140265756389696"}, {"nodeId": "140265756389920"}, {"nodeId": "140265756390032"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756390368"}, {"nodeId": "140265756390592"}, {"nodeId": "0"}, {"nodeId": "140265756390928"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756391040"}, {"nodeId": "140265756391152"}, {"nodeId": "140265756391264"}, {"nodeId": "140265756391376"}, {"nodeId": "140265756391488"}, {"nodeId": "140265756391712"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756389024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756389248": {"type": "Union", "content": {"items": [{"nodeId": "140265756389136"}, {"nodeId": "N"}]}}, "140265756389136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756389472": {"type": "Union", "content": {"items": [{"nodeId": "140265756389360"}, {"nodeId": "N"}]}}, "140265756389360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756389696": {"type": "Union", "content": {"items": [{"nodeId": "140265756389584"}, {"nodeId": "N"}]}}, "140265756389584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756389920": {"type": "Union", "content": {"items": [{"nodeId": "140265756389808"}, {"nodeId": "N"}]}}, "140265756389808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756390032": {"type": "Union", "content": {"items": [{"nodeId": "140265756266496"}, {"nodeId": "N"}]}}, "140265756266496": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756390368": {"type": "Union", "content": {"items": [{"nodeId": "140265756390256"}, {"nodeId": "N"}]}}, "140265756390256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756390592": {"type": "Union", "content": {"items": [{"nodeId": "140265756390480"}, {"nodeId": "N"}]}}, "140265756390480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756390928": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756391040": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756391152": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756391264": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756391376": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756391488": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756391712": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756391600"}]}, {"nodeId": "N"}]}}, "140265756391600": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772849344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227200"}]}, {"nodeId": "140265756391824"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756392048"}, {"nodeId": "140265756392272"}, {"nodeId": "140265756392496"}, {"nodeId": "140265756392720"}, {"nodeId": "140265756392832"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756393168"}, {"nodeId": "140265756442688"}, {"nodeId": "140265756442800"}, {"nodeId": "140265756443024"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "0"}, {"nodeId": "140265756443248"}, {"nodeId": "140265756443360"}, {"nodeId": "140265756443472"}, {"nodeId": "140265756443584"}, {"nodeId": "140265756443808"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756391824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756392048": {"type": "Union", "content": {"items": [{"nodeId": "140265756391936"}, {"nodeId": "N"}]}}, "140265756391936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756392272": {"type": "Union", "content": {"items": [{"nodeId": "140265756392160"}, {"nodeId": "N"}]}}, "140265756392160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756392496": {"type": "Union", "content": {"items": [{"nodeId": "140265756392384"}, {"nodeId": "N"}]}}, "140265756392384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756392720": {"type": "Union", "content": {"items": [{"nodeId": "140265756392608"}, {"nodeId": "N"}]}}, "140265756392608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756392832": {"type": "Union", "content": {"items": [{"nodeId": "140265756266720"}, {"nodeId": "N"}]}}, "140265756266720": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756393168": {"type": "Union", "content": {"items": [{"nodeId": "140265756393056"}, {"nodeId": "N"}]}}, "140265756393056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756442688": {"type": "Union", "content": {"items": [{"nodeId": "140265756393280"}, {"nodeId": "N"}]}}, "140265756393280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756442800": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756443024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756443248": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756443360": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756443472": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756443584": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756443808": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756443696"}]}, {"nodeId": "N"}]}}, "140265756443696": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772849792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "140265790227552"}]}, {"nodeId": "140265756443920"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756444144"}, {"nodeId": "140265756444368"}, {"nodeId": "140265756444592"}, {"nodeId": "140265756444816"}, {"nodeId": "140265756444928"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756445264"}, {"nodeId": "140265756445488"}, {"nodeId": "140265756445824"}, {"nodeId": "140265756445936"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756446272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140265756446160"}, {"nodeId": "140265756446384"}, {"nodeId": "140265756446608"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756443920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756444144": {"type": "Union", "content": {"items": [{"nodeId": "140265756444032"}, {"nodeId": "N"}]}}, "140265756444032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756444368": {"type": "Union", "content": {"items": [{"nodeId": "140265756444256"}, {"nodeId": "N"}]}}, "140265756444256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756444592": {"type": "Union", "content": {"items": [{"nodeId": "140265756444480"}, {"nodeId": "N"}]}}, "140265756444480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756444816": {"type": "Union", "content": {"items": [{"nodeId": "140265756444704"}, {"nodeId": "N"}]}}, "140265756444704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756444928": {"type": "Union", "content": {"items": [{"nodeId": "140265756266944"}, {"nodeId": "N"}]}}, "140265756266944": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756445264": {"type": "Union", "content": {"items": [{"nodeId": "140265756445152"}, {"nodeId": "N"}]}}, "140265756445152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756445488": {"type": "Union", "content": {"items": [{"nodeId": "140265756445376"}, {"nodeId": "N"}]}}, "140265756445376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756445824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756445936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756446272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756446160": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756446384": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756446608": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756446496"}]}, {"nodeId": "N"}]}}, "140265756446496": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265772850240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": "A"}]}, {"nodeId": "140265756446832"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756447056"}, {"nodeId": "140265756447280"}, {"nodeId": "140265756447504"}, {"nodeId": "140265756447728"}, {"nodeId": "140265756447840"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265756448176"}, {"nodeId": "140265756448400"}, {"nodeId": "140265756448512"}, {"nodeId": "140265756448736"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861262752", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265756448848"}, {"nodeId": "140265756448960"}, {"nodeId": "140265756449072"}, {"nodeId": "140265756449184"}, {"nodeId": "140265756449296"}, {"nodeId": "140265756449520"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140265756446832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756447056": {"type": "Union", "content": {"items": [{"nodeId": "140265756446944"}, {"nodeId": "N"}]}}, "140265756446944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756447280": {"type": "Union", "content": {"items": [{"nodeId": "140265756447168"}, {"nodeId": "N"}]}}, "140265756447168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756447504": {"type": "Union", "content": {"items": [{"nodeId": "140265756447392"}, {"nodeId": "N"}]}}, "140265756447392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756447728": {"type": "Union", "content": {"items": [{"nodeId": "140265756447616"}, {"nodeId": "N"}]}}, "140265756447616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265785912320"}}}, "140265756447840": {"type": "Union", "content": {"items": [{"nodeId": "140265756267168"}, {"nodeId": "N"}]}}, "140265756267168": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140265756448176": {"type": "Union", "content": {"items": [{"nodeId": "140265756448064"}, {"nodeId": "N"}]}}, "140265756448064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764995472"}}}, "140265756448400": {"type": "Union", "content": {"items": [{"nodeId": "140265756448288"}, {"nodeId": "N"}]}}, "140265756448288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760274272"}}}, "140265756448512": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756448736": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140265756448848": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, "140265756448960": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756449072": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265756449184": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756449296": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265756449520": {"type": "Union", "content": {"items": [{"nodeId": "140265861259232", "args": [{"nodeId": "140265756449408"}]}, {"nodeId": "N"}]}}, "140265756449408": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265777484672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}], "returnType": {"nodeId": "140265756449632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756449632": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265777484224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265756449744"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140265756449744": {"type": "Union", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "N"}]}}, "140265777483776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265756449856"}, {"nodeId": "140265756449968"}], "returnType": {"nodeId": "140265756450192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140265756449856": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785731456"}, {"nodeId": "N"}]}}, "140265756449968": {"type": "Union", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "N"}]}}, "140265756450192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140265785731456"}, {"nodeId": ".1.140265785731456"}]}}, "140265777483328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140265777482880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265777482432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265777119296": {"type": "Function", "content": {"typeVars": [".0.140265777119296"], "argTypes": [{"nodeId": ".0.140265777119296"}], "returnType": {"nodeId": ".0.140265777119296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265777119296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, "def": "140265777119296", "variance": "INVARIANT"}}, "140265782017408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731456", "args": [{"nodeId": ".1.140265785731456"}]}, {"nodeId": "140265756450416"}, {"nodeId": "140265756450528"}, {"nodeId": "140265756450640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265756450416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265756450528": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265756450640": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265782016960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265794296224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760328864"}], "returnType": {"nodeId": "140265751871888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751871888": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760329216": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718411808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723163168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265723164736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266624"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266624"}]}], "isAbstract": false}}, "140265718411808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265723163168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873456"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751872896"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751872896": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873232"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873232": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873568"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265723164736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751873680"}], "returnType": {"nodeId": "140265861266624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751873680": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}, {"nodeId": "140265861266624"}]}}, "140265760329568": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718414272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718563104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718563776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718564000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718564224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718564448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265718414272": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265718563104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875136"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875136": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718563776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875472"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875472": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718564000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875808"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718564224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751875920"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751875920": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265718564448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751876032"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751876032": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265760329920": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265718596544"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265794445920"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265718566240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265765095200", "args": [{"nodeId": "140265861266272"}]}, {"nodeId": "140265790228960", "args": [{"nodeId": "140265861266272"}]}], "isAbstract": false}}, "140265718596544": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}]}}, "140265794445920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265751879728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140265751879728": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265718566240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265751879504"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751879504": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}]}}, "140265785733216": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785786432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785786544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789644960"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265785786432": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785786544": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265789644960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785733216"}, {"nodeId": "140265790227200"}, {"nodeId": "140265756454224"}, {"nodeId": "140265756453888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140265756454224": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265756453888": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265785733568": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789645408"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265861266272"}], "isAbstract": false}}, "140265789645408": {"type": "Function", "content": {"typeVars": [".0.140265789645408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".0.140265789645408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140265789645408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265785733568"}, "def": "140265789645408", "variance": "INVARIANT"}}, "140265764916032": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789646752"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789647200"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789647648"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["close", "seek", "write"]}}, "140265789646752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916032"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140265789647200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916032"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265789647648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916032"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764916384": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789648096"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789648544"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789648992"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["close", "read", "seek"]}}, "140265789648096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916384"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140265789648544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916384"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140265789648992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916384"}], "returnType": {"nodeId": "140265861254656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265760333792": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764916032"}, {"nodeId": "140265764916384"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140265764916736": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789649440"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789649440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764916736"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747825152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747825152": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265764917088": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789649888"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789649888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764917088"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747825376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747825376": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265764917440": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789650336"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789650336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764917440"}, {"nodeId": "140265764916384"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265760335552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265760335552": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764916384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802749024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802749472"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802749920"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802750368"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802750816"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802751264"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802751712"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802752160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802752608"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802753056"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265764918848"}], "isAbstract": false}}, "140265802749024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265764916384"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265802749472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140265802749920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265747831536"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140265747831536": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802750368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265747831648"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140265747831648": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802750816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802751264": {"type": "Function", "content": {"typeVars": [".0.140265802751264"], "argTypes": [{"nodeId": ".0.140265802751264"}], "returnType": {"nodeId": ".0.140265802751264"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802751264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335552"}, "def": "140265802751264", "variance": "INVARIANT"}}, "140265802751712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265747831872"}, {"nodeId": "140265747831984"}, {"nodeId": "140265747832096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747831872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747831984": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747832096": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802752160": {"type": "Function", "content": {"typeVars": [".0.140265802752160"], "argTypes": [{"nodeId": ".0.140265802752160"}], "returnType": {"nodeId": ".0.140265802752160"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802752160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335552"}, "def": "140265802752160", "variance": "INVARIANT"}}, "140265802752608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802753056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335552"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752614880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265752614880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764918848": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802246048"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802246496"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265802246048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918848"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747829408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747829408": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265802246496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918848"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265747829632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140265747829632": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265764917792": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789650784"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789650784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764917792"}, {"nodeId": "140265764916032"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265760335200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265760335200": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764916032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802745888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802746336"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802746784"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802747232"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802747680"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802748128"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802748576"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140265764918848"}], "isAbstract": false}}, "140265802745888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265764916032"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140265802746336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140265802746784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140265802747232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802747680": {"type": "Function", "content": {"typeVars": [".0.140265802747680"], "argTypes": [{"nodeId": ".0.140265802747680"}], "returnType": {"nodeId": ".0.140265802747680"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802747680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335200"}, "def": "140265802747680", "variance": "INVARIANT"}}, "140265802748128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265747830976"}, {"nodeId": "140265747831088"}, {"nodeId": "140265747831200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747830976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747831088": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747831200": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802748576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752614432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140265752614432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764918144": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789651232"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789651232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918144"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764919200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265764919200": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802246944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702079648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802247840"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802248288"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802248736"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265802246944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702079648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265802247840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802248288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}], "returnType": {"nodeId": "140265747829744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747829744": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265802248736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919200"}, {"nodeId": "140265747829856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140265747829856": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790227200"}]}}, "140265764918496": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265789651680"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__call__"]}}, "140265789651680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764918496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265764919552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265760334144": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702172576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702169440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702169216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702168320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702168768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265702166976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802237984"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265861254656"}]}], "isAbstract": false}}, "140265702172576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825600"}], "returnType": {"nodeId": "140265764916736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825600": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702169440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825712"}], "returnType": {"nodeId": "140265764917088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825712": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702169216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825824"}], "returnType": {"nodeId": "140265764917440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825824": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702168320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747825936"}], "returnType": {"nodeId": "140265764917792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747825936": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702168768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747826048"}], "returnType": {"nodeId": "140265764918144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747826048": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265702166976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265747826160"}], "returnType": {"nodeId": "140265764918496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265747826160": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265802237984": {"type": "Function", "content": {"typeVars": [".0.140265802237984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265747826384"}, {"nodeId": "140265747826496"}, {"nodeId": "140265747826608"}, {"nodeId": "140265747826720"}, {"nodeId": "140265747826832"}, {"nodeId": "140265747826944"}], "returnType": {"nodeId": ".0.140265802237984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140265747826384": {"type": "Union", "content": {"items": [{"nodeId": "140265764917440"}, {"nodeId": "N"}]}}, "140265747826496": {"type": "Union", "content": {"items": [{"nodeId": "140265764917792"}, {"nodeId": "N"}]}}, "140265747826608": {"type": "Union", "content": {"items": [{"nodeId": "140265764918144"}, {"nodeId": "N"}]}}, "140265747826720": {"type": "Union", "content": {"items": [{"nodeId": "140265764918496"}, {"nodeId": "N"}]}}, "140265747826832": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265747826944": {"type": "Union", "content": {"items": [{"nodeId": "140265861255360"}, {"nodeId": "N"}]}}, ".0.140265802237984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265747824928"}, "def": "140265802237984", "variance": "INVARIANT"}}, "140265747824928": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}]}}, "140265760334496": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802251424"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702077856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802744096"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140265764919200"}], "isAbstract": true}}, "140265802251424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702077856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334496"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265747830528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140265747830528": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265861266272"}]}}, "140265802744096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334496"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265760334848": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802744544"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265702076736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802745440"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140265764919552"}], "isAbstract": true}}, "140265802744544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334848"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140265702076736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334848"}, {"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265747830752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140265747830752": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}}, "140265802745440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760334848"}, {"nodeId": "140265789865152"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140265760335904": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760333792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802753504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802753952"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802754400"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802754848"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802755296"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802755744"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802756192"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802756640"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802757088"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802757536"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802757984"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802758432"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802758880"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802759328"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802759776"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802858784"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802859232"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802859680"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802860128"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802860576"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802861024"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802861472"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140265789854592"}], "isAbstract": false}}, "140265802753504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265760333792"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140265802753952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265802754400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747832432"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747832432": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802754848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747832544"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140265747832544": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802755296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802755744": {"type": "Function", "content": {"typeVars": [".0.140265802755744"], "argTypes": [{"nodeId": ".0.140265802755744"}], "returnType": {"nodeId": ".0.140265802755744"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802755744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335904"}, "def": "140265802755744", "variance": "INVARIANT"}}, "140265802756192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140265802756640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140265802757088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802757536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140265802757984": {"type": "Function", "content": {"typeVars": [".0.140265802757984"], "argTypes": [{"nodeId": ".0.140265802757984"}], "returnType": {"nodeId": ".0.140265802757984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802757984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265760335904"}, "def": "140265802757984", "variance": "INVARIANT"}}, "140265802758432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747832768"}, {"nodeId": "140265747832880"}, {"nodeId": "140265747832992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747832768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747832880": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747832992": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802758880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802759328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802759776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802858784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802859232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802859680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802860128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}, {"nodeId": "140265747833216"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747833216": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802860576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802861024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802861472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760335904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764919904": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802861920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802862368"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802862816"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802863264"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802863712"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802864160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802864608"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802865056"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802865504"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802865952"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802866400"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802866848"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802867296"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802867744"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802868192"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802868640"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802869088"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802869536"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802869984"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802870432"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802870880"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802871328"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140265789854240"}], "isAbstract": false}}, "140265802861920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265760333792"}, {"nodeId": "140265764916736"}, {"nodeId": "140265764917088"}, {"nodeId": "140265764917440"}, {"nodeId": "140265764917792"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140265802862368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265802862816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747833328"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747833328": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802863264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747833440"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227552"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140265747833440": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802863712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802864160": {"type": "Function", "content": {"typeVars": [".0.140265802864160"], "argTypes": [{"nodeId": ".0.140265802864160"}], "returnType": {"nodeId": ".0.140265802864160"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802864160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764919904"}, "def": "140265802864160", "variance": "INVARIANT"}}, "140265802864608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265790227552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140265802865056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140265802865504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802865952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265802866400": {"type": "Function", "content": {"typeVars": [".0.140265802866400"], "argTypes": [{"nodeId": ".0.140265802866400"}], "returnType": {"nodeId": ".0.140265802866400"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140265802866400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764919904"}, "def": "140265802866400", "variance": "INVARIANT"}}, "140265802866848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747833776"}, {"nodeId": "140265747833888"}, {"nodeId": "140265747834000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140265747833776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140265747833888": {"type": "Union", "content": {"items": [{"nodeId": "140265790233888"}, {"nodeId": "N"}]}}, "140265747834000": {"type": "Union", "content": {"items": [{"nodeId": "140265785726528"}, {"nodeId": "N"}]}}, "140265802867296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140265802867744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802868192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802868640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802869088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802869536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802869984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}, {"nodeId": "140265747834112"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140265747834112": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265802870432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802870880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265802871328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764919904"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764441600": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714447328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265789882784"}], "isAbstract": false}}, "140265714447328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441600"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764442304": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785734272", "args": [{"nodeId": "140265790227200"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802402272"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714438368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714437696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714438144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785797968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265802404064"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140265764441952"}], "isAbstract": false}}, "140265802402272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752084880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752084880": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265714438368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085104"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752085104": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265714437696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085216"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752085216": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265714438144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085328"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752085328": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265785797968": {"type": "Union", "content": {"items": [{"nodeId": "140265764443712"}, {"nodeId": "N"}]}}, "140265802404064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265752085440"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140265752085440": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265764441952": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785796848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785796400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773811744"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773822496"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773823168"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265773823392"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140265790228960", "args": [{"nodeId": "140265790227200"}]}], "isAbstract": false}}, "140265785796848": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265785796400": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140265773811744": {"type": "Function", "content": {"typeVars": [".-1.140265773811744"], "argTypes": [{"nodeId": ".-1.140265773811744"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".-1.140265773811744"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140265773811744": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773811744", "variance": "INVARIANT"}}, "140265785796624": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773822496": {"type": "Function", "content": {"typeVars": [".-1.140265773822496"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": ".-1.140265773822496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140265773822496": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773822496", "variance": "INVARIANT"}}, "140265773823168": {"type": "Function", "content": {"typeVars": [".-1.140265773823168"], "argTypes": [{"nodeId": ".-1.140265773823168"}], "returnType": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140265773823168": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773823168", "variance": "INVARIANT"}}, "140265773823392": {"type": "Function", "content": {"typeVars": [".-1.140265773823392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140265773823392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140265773823392": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140265785796624"}, "def": "140265773823392", "variance": "INVARIANT"}}, "140265764443008": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714411200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714410752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265714410528"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265751887456"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265764442656"}]}], "isAbstract": false}}, "140265714411200": {"type": "Function", "content": {"typeVars": [".0.140265714411200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265752085776"}]}], "returnType": {"nodeId": ".0.140265714411200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140265752085776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760395824"}}}, ".0.140265714411200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764443008"}, "def": "140265714411200", "variance": "INVARIANT"}}, "140265714410752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443008"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265714410528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443008"}], "returnType": {"nodeId": "140265789856704", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265751887456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265802407648"}, {"nodeId": "140265802408096"}]}}, "140265802407648": {"type": "Function", "content": {"typeVars": [".0.140265802407648"], "argTypes": [{"nodeId": ".0.140265802407648"}], "returnType": {"nodeId": ".0.140265802407648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265802407648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764443008"}, "def": "140265802407648", "variance": "INVARIANT"}}, "140265802408096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764443008"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265764442656"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140265760330272": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140265760330624"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714404928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265764447232"}], "isAbstract": true}}, "140265714404928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330272"}, {"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764443712"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140265760330976": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265714403136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803024864"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140265760330272"}], "isAbstract": false}}, "140265714403136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140265760330624"}], "returnType": {"nodeId": "140265861259232", "args": [{"nodeId": "140265764444064"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140265803024864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265760330976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140265785730048": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265785730048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140265785730048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803033600"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803034048"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265803034496"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140265785730048"}], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, ".1.140265785730048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265785730048", "variance": "INVARIANT"}}, "140265803033600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785730048", "args": [{"nodeId": ".1.140265785730048"}]}, {"nodeId": "140265756197600"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756197712"}, {"nodeId": "140265756197824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140265756197600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756197712": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785730048"}, {"nodeId": "N"}]}}, "140265756197824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140265785730048"}, {"nodeId": "N"}]}}, "140265803034048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785730048", "args": [{"nodeId": ".1.140265785730048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265803034496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140265785727936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140265785730400": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265785730752": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777487808"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760641024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760274384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265785730400"}], "isAbstract": false}}, "140265777487808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785730752"}, {"nodeId": "140265756382864"}, {"nodeId": "140265861266624"}, {"nodeId": "140265756382976"}, {"nodeId": "140265756383088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140265756382864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756382976": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265756383088": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265760641024": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265760274384": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785731104": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265777488256"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265785730400"}], "isAbstract": false}}, "140265777488256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785731104"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756383200"}, {"nodeId": "140265756383312"}, {"nodeId": "140265756383424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140265756383200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760273488"}}}, "140265756383312": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265756383424": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "N"}]}}, "140265785731808": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265785732160": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265785912656"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760578064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265731848032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782013152"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782012480"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782010016"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782009792"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265785912656": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760578064": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265731848032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265782013152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265756451424"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140265756451424": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265782012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265861266272"}, {"nodeId": "140265785732512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140265785732512": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265760640576"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760651216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265785732160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782011360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782009568"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782008224"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782008896"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782009120"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782008448"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005984"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005760"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782007328"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760640576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265760641808": {"type": "Tuple", "content": {"items": [{"nodeId": "140265785733568"}, {"nodeId": "140265760640688"}]}}, "140265760640688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641584"}}}, "140265760641584": {"type": "Union", "content": {"items": [{"nodeId": "140265760639792"}, {"nodeId": "140265760640352"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265785732512"}]}, {"nodeId": "140265760641248"}, {"nodeId": "140265760641472"}]}}, "140265760639792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265790229312", "args": [{"nodeId": "140265785914448"}]}}}, "140265785914448": {"type": "Tuple", "content": {"items": [{"nodeId": "140265785733568"}, {"nodeId": "140265861266272"}]}}, "140265760640352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760275504"}}}, "140265760275504": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265785732512"}]}]}}, "140265760641248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760275392"}}}, "140265760275392": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265785732512"}, {"nodeId": "140265785732512"}]}}, "140265760641472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760639568"}}}, "140265760639568": {"type": "Tuple", "content": {"items": [{"nodeId": "140265785913104"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}, {"nodeId": "140265785732512"}]}}, "140265785913104": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265760651216": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265782011360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265785732160"}, {"nodeId": "140265756451648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140265756451648": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265756451536"}]}, {"nodeId": "N"}]}}, "140265756451536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782009568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140265782008224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265782008896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756451872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756451872": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790228608"}]}}, "140265782009120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756450304"}], "returnType": {"nodeId": "140265756451984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265756450304": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790228608"}]}}, "140265756451984": {"type": "Union", "content": {"items": [{"nodeId": "140265785732512"}, {"nodeId": "140265756452208"}]}}, "140265756452208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782008448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756452320"}, {"nodeId": "140265756451760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265756452320": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265790228608"}]}}, "140265756451760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782005984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265861266272"}, {"nodeId": "140265756452432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140265756452432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782005760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}, {"nodeId": "140265756452880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140265756452880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760641808"}}}, "140265782007328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732512"}], "returnType": {"nodeId": "140265756452096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756452096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, "140265782010016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140265782009792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732160"}, {"nodeId": "140265861266272"}, {"nodeId": "140265785732864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140265785732864": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760642144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782006656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005536"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782004192"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782004864"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265782005088"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140265731843328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807089888"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807089440"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265807088992"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265760642144": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265782006656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140265782005536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140265782004192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}], "returnType": {"nodeId": "140265756452544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265756452544": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265782004864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265861266272"}, {"nodeId": "140265861259232", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140265782005088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140265731843328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265807089888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265807089440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140265807088992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265785732864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861266272"}], "returnType": {"nodeId": "140265785733216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140265765095904": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265772856512"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265772856512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265765095904"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764441248": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781323456"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781323904"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781324352"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781324800"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140265781323456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265764441248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781323904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265764441248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781324352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781324800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764441248"}], "returnType": {"nodeId": "140265764441248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265764452864": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764451808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760646400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265760400304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229312", "args": [{"nodeId": "140265764735104"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781326144"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781326592"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781327040"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781327488"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781327936"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781328384"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781328832"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781329280"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781772352"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781772800"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781773248"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781773696"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781774144"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781774592"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781775040"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781775488"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781775936"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752099104"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752317056"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781778176"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781778624"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781779072"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781779520"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781779968"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781780416"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781780864"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752320528"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752321088"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781783104"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781783552"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752321872"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752323440"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781785792"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752323328"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140265752323552"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781788032"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781575744"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781576192"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781576640"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781577088"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781577536"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781577984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781578432"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781578880"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764451808": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764634688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764635024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773568000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773568448"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773568896"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773569344"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773569792"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710335392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710334944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710334720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710334496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265710332480"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": true}}, "140265764634688": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265764635024": {"type": "Union", "content": {"items": [{"nodeId": "140265764886272"}, {"nodeId": "N"}]}}, "140265764886272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}], "returnType": {"nodeId": "140265764452864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265773568000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265752316832"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752316944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140265752316832": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752316944": {"type": "Union", "content": {"items": [{"nodeId": "140265751893088"}, {"nodeId": "N"}]}}, "140265751893088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}], "returnType": {"nodeId": "140265764452864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265773568448": {"type": "Function", "content": {"typeVars": [".0.140265773568448"], "argTypes": [{"nodeId": ".0.140265773568448"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140265773568448"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140265773568448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764451808"}, "def": "140265773568448", "variance": "INVARIANT"}}, "140265773568896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265764452864"}, {"nodeId": "140265764735104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140265764735104": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773566432"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265790241632"}], "isAbstract": false}}, "140265773566432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764735104"}, {"nodeId": "140265752494256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140265752494256": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773569344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265764452864"}, {"nodeId": "140265764735104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140265773569792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752317280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140265752317280": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265710335392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752317504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140265752317504": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265710334944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752317728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752317728": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265710334720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265710334496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265710332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265760646400": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265760400304": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781326144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781326592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140265781327040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752319072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752319072": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781327488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265764452864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140265781327936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265752319184"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140265752319184": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265781328384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265752319408"}, {"nodeId": "140265752319632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140265752319408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764634912"}}}, "140265764634912": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265764452864"}]}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}]}}, "140265752319632": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764742496": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861266272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764636816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764636928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764637040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773491904"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773492352"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773492800"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773493248"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773493696"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773494144"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773494592"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773495040"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265764636816": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764636928": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764637040": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773491904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140265773492352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265773492800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}], "returnType": {"nodeId": "140265752495824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752495824": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773493248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140265773493696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861259584", "args": [{"nodeId": "140265861266272"}]}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140265773494144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140265773494592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773495040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742496"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781328832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265752319520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140265752319520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760400080"}}}, "140265760400080": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781329280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752319744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752319744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265760400080"}}}, "140265781772352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861266272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781772800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781773248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265781773696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752319856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265752319856": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781774144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752319968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140265752319968": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781774592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265781775040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781775488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752320080"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752320080": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781775936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752320416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752320416": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265752320192"}]}}, "140265752320192": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265752099104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781776384"}, {"nodeId": "140265781776832"}]}}, "140265781776384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752320752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140265752320752": {"type": "Union", "content": {"items": [{"nodeId": "140265752320640"}, {"nodeId": "N"}]}}, "140265752320640": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781776832": {"type": "Function", "content": {"typeVars": [".-1.140265781776832"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781776832"}], "returnType": {"nodeId": "140265752320976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140265781776832": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781776832", "variance": "INVARIANT"}}, "140265752320976": {"type": "Union", "content": {"items": [{"nodeId": "140265752320864"}, {"nodeId": ".-1.140265781776832"}]}}, "140265752320864": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265752317056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781777280"}, {"nodeId": "140265781777728"}]}}, "140265781777280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752321312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140265752321312": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752321200"}]}, {"nodeId": "N"}]}}, "140265752321200": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781777728": {"type": "Function", "content": {"typeVars": [".-1.140265781777728"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781777728"}], "returnType": {"nodeId": "140265752321536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140265781777728": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781777728", "variance": "INVARIANT"}}, "140265752321536": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752321424"}]}, {"nodeId": ".-1.140265781777728"}]}}, "140265752321424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781778176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752321648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140265752321648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764638160"}}}, "140265764638160": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "140265764638384"}]}}, "140265764638384": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265764637936"}, {"nodeId": "140265790227200"}]}}, "140265764637936": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781778624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752321760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140265752321760": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781779072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781779520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781779968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781780416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781780864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140265752320528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781781312"}, {"nodeId": "140265781781760"}]}}, "140265781781312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752322208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140265752322208": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752322096"}]}, {"nodeId": "N"}]}}, "140265752322096": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265781781760": {"type": "Function", "content": {"typeVars": [".-1.140265781781760"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781781760"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752322544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140265781781760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781781760", "variance": "INVARIANT"}}, "140265752322544": {"type": "Union", "content": {"items": [{"nodeId": "140265790229312", "args": [{"nodeId": "140265752322432"}]}, {"nodeId": ".-1.140265781781760"}]}}, "140265752322432": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265752321088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781782208"}, {"nodeId": "140265781782656"}]}}, "140265781782208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752322880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140265752322880": {"type": "Union", "content": {"items": [{"nodeId": "140265752322768"}, {"nodeId": "N"}]}}, "140265752322768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764637488"}}}, "140265764637488": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265764636480"}]}}, "140265764636480": {"type": "Tuple", "content": {"items": [{"nodeId": "140265764637712"}, {"nodeId": "140265764637600"}, {"nodeId": "140265790227200"}]}}, "140265764637712": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764637600": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781782656": {"type": "Function", "content": {"typeVars": [".-1.140265781782656"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781782656"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "140265752323216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140265781782656": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781782656", "variance": "INVARIANT"}}, "140265752323216": {"type": "Union", "content": {"items": [{"nodeId": "140265752322656"}, {"nodeId": ".-1.140265781782656"}]}}, "140265752322656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140265764637488"}}}, "140265781783104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140265781783552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140265752321872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781784000"}, {"nodeId": "140265781784448"}]}}, "140265781784000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752322992"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140265752322992": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781784448": {"type": "Function", "content": {"typeVars": [".-1.140265781784448"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781784448"}], "returnType": {"nodeId": "140265752323104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781784448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781784448", "variance": "INVARIANT"}}, "140265752323104": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781784448"}]}}, "140265752323440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781784896"}, {"nodeId": "140265781785344"}]}}, "140265781784896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265752323664"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140265752323664": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781785344": {"type": "Function", "content": {"typeVars": [".-1.140265781785344"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781785344"}], "returnType": {"nodeId": "140265752323776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781785344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781785344", "variance": "INVARIANT"}}, "140265752323776": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781785344"}]}}, "140265781785792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140265752323328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781786240"}, {"nodeId": "140265781786688"}]}}, "140265781786240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752324000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752324000": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781786688": {"type": "Function", "content": {"typeVars": [".-1.140265781786688"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781786688"}], "returnType": {"nodeId": "140265752324112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781786688": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781786688", "variance": "INVARIANT"}}, "140265752324112": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781786688"}]}}, "140265752323552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265781787136"}, {"nodeId": "140265781787584"}]}}, "140265781787136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "N"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752324336"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140265752324336": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781787584": {"type": "Function", "content": {"typeVars": [".-1.140265781787584"], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": ".-1.140265781787584"}], "returnType": {"nodeId": "140265790229312", "args": [{"nodeId": "140265752324448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140265781787584": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140265861254656"}, "def": "140265781787584", "variance": "INVARIANT"}}, "140265752324448": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": ".-1.140265781787584"}]}}, "140265781788032": {"type": "Function", "content": {"typeVars": [".0.140265781788032"], "argTypes": [{"nodeId": ".0.140265781788032"}], "returnType": {"nodeId": "140265861260288", "args": [{"nodeId": ".0.140265781788032"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140265781788032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140265764452864"}, "def": "140265781788032", "variance": "INVARIANT"}}, "140265781575744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265752324672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752324672": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781576192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861266272"}, {"nodeId": "140265752324784"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140265752324784": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781576640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752324896"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140265752324896": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781577088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781577536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752325008"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140265752325008": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781577984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265764451808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140265781578432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752325120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752325120": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265781578880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452864"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265752325456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265752325456": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265752325232"}]}}, "140265752325232": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140265764453216": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781579328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781579776"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781580224"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781580672"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781581120"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781581568"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781582016"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781582464"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781582912"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781583360"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781583808"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781584256"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781584704"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781585152"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781585600"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265781586048"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140265764452864"}], "isAbstract": false}}, "140265781579328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752325568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140265752325568": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781579776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265861263104", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752325680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140265752325680": {"type": "Union", "content": {"items": [{"nodeId": "140265764452864"}, {"nodeId": "N"}]}}, "140265781580224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265764452864"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781580672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "140265861259584", "args": [{"nodeId": "140265764452864"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781581120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752325904"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752325904": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265764742144": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773497728"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773563968"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773564416"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773564864"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773497728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265764452864"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140265773563968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265764452864"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140265773564416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265790227200"}, {"nodeId": "140265751896896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140265751896896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265773564864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764742144"}, {"nodeId": "140265861265568"}, {"nodeId": "140265751896672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140265751896672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140265781581568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752326352"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752326352": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781582016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752326576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140265752326576": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781582464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752326688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140265752326688": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781582912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265752326800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140265752326800": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265781583360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752327024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752327024": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781583808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752327360"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752327360": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781584256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "A"}, {"nodeId": "140265752327696"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140265752327696": {"type": "Union", "content": {"items": [{"nodeId": "140265764742144"}, {"nodeId": "N"}]}}, "140265781584704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781585152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265781585600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752327920"}, {"nodeId": "140265752328032"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140265752327920": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752328032": {"type": "Union", "content": {"items": [{"nodeId": "140265764451808"}, {"nodeId": "N"}]}}, "140265781586048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453216"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140265764453568": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764453216"}], "isAbstract": false}}, "140265760336960": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760336256"}], "isAbstract": false}}, "140265760337664": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760337312"}, {"nodeId": "140265760336608"}], "isAbstract": false}}, "140265760338016": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140265760337312"}, {"nodeId": "140265760336960"}], "isAbstract": false}}, "140265764732992": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265790235296"}], "isAbstract": false}}, "140265764733344": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764732992"}], "isAbstract": false}}, "140265764733696": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764733344"}], "isAbstract": false}}, "140265764734048": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764733344"}], "isAbstract": false}}, "140265764734400": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764732992"}, {"nodeId": "140265790241280"}], "isAbstract": false}}, "140265764734752": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764732992"}], "isAbstract": false}}, "140265764735456": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764735808": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764736160": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764736512": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764736864": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764737216": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764737568": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764737920": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764738272": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764738624": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764738976": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764739328": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764739680": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764735104"}], "isAbstract": false}}, "140265764740032": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764740384": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764740736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773566880"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265773566880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764740736"}, {"nodeId": "140265752494368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140265752494368": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265764741088": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764741440": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764741792": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140265764739680"}], "isAbstract": false}}, "140265764452160": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773572480"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773572928"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773573376"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773573824"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773574272"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140265764451808"}], "isAbstract": false}}, "140265773572480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752317952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140265752317952": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773572928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752318176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752318176": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773573376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752318288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752318288": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265764453920"}]}}, "140265764453920": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773750016"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773750464"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773750912"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773751360"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773751808"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140265861254656"}], "isAbstract": false}}, "140265773750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265752328144"}, {"nodeId": "140265752328256"}, {"nodeId": "140265752328368"}, {"nodeId": "140265752328480"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140265752328144": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752328256": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265752328368": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752328480": {"type": "Union", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265752328592"}, {"nodeId": "140265752328704"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140265752328592": {"type": "Union", "content": {"items": [{"nodeId": "140265790227552"}, {"nodeId": "140265790227904"}, {"nodeId": "140265790227200"}]}}, "140265752328704": {"type": "Union", "content": {"items": [{"nodeId": "140265764742496"}, {"nodeId": "140265790227200"}, {"nodeId": "N"}]}}, "140265773750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265790227200"}, {"nodeId": "140265752328816"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140265752328816": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265773751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764453920"}, {"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265861255360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773573824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265773574272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452160"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265764452512": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265861255360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764885824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265764742144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773574720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773575168"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773575616"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773576064"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773576512"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265773576960"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140265764451808"}], "isAbstract": false}}, "140265764885824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773574720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265752318400"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}, {"nodeId": "140265861255360"}, {"nodeId": "140265861255360"}, {"nodeId": "140265752318512"}, {"nodeId": "140265861255360"}, {"nodeId": "140265790227200"}, {"nodeId": "140265751898016"}, {"nodeId": "140265764742144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140265752318400": {"type": "Union", "content": {"items": [{"nodeId": "140265861266272"}, {"nodeId": "N"}]}}, "140265752318512": {"type": "Union", "content": {"items": [{"nodeId": "140265751897792"}, {"nodeId": "N"}]}}, "140265751897792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764451808"}], "returnType": {"nodeId": "140265764452864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265751898016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140265773575168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790229312", "args": [{"nodeId": "140265790227200"}]}], "returnType": {"nodeId": "140265752318736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140265752318736": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773575616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265752318960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265752318960": {"type": "Tuple", "content": {"items": [{"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}]}}, "140265773576064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265773576512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265773576960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265764452512"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140265694100640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861258528", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140265694120864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140265694096160"}, {"nodeId": "140265694095936"}]}}, "140265694096160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265861254656"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_OPT"], "argNames": ["object"]}}, "140265694095936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140265789865152"}, {"nodeId": "140265790227200"}, {"nodeId": "140265790227200"}], "returnType": {"nodeId": "140265790227200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["object", "encoding", "errors"]}}}, "exprTypes": {"annotation_tests": [{"startOffset": 140, "endOffset": 144, "line": 11, "type": {"nodeId": ".1.140265693807008"}}, {"startOffset": 553, "endOffset": 553, "line": 34, "type": {"nodeId": "140265861266272"}}, {"startOffset": 557, "endOffset": 557, "line": 34, "type": {"nodeId": "140265861266272"}}, {"startOffset": 604, "endOffset": 604, "line": 38, "type": {"nodeId": "140265693901456"}}, {"startOffset": 654, "endOffset": 654, "line": 42, "type": {"nodeId": "140265693901792"}}, {"startOffset": 681, "endOffset": 683, "line": 46, "type": {"nodeId": "140265861266272"}}, {"startOffset": 693, "endOffset": 697, "line": 47, "type": {"nodeId": "140265861266272"}}, {"startOffset": 707, "endOffset": 710, "line": 48, "type": {"nodeId": "140265861266272"}}, {"startOffset": 783, "endOffset": 783, "line": 52, "type": {"nodeId": "140265693902128"}}, {"startOffset": 837, "endOffset": 837, "line": 56, "type": {"nodeId": "140265861263808", "args": [{"nodeId": "140265861266272"}]}}, {"startOffset": 887, "endOffset": 887, "line": 60, "type": {"nodeId": "140265861264512", "args": [{"nodeId": "140265861266272"}, {"nodeId": "140265861266272"}]}}, {"startOffset": 937, "endOffset": 937, "line": 64, "type": {"nodeId": "140265861263104", "args": [{"nodeId": "140265861254656"}]}}, {"startOffset": 986, "endOffset": 988, "line": 68, "type": {"nodeId": "140265694100640"}}, {"startOffset": 990, "endOffset": 990, "line": 68, "type": {"nodeId": "140265861258528", "args": [{"nodeId": "A"}]}}, {"startOffset": 1038, "endOffset": 1038, "line": 72, "type": {"nodeId": "140265693902464"}}, {"startOffset": 1045, "endOffset": 1047, "line": 72, "type": {"nodeId": "140265694120864"}}, {"startOffset": 1049, "endOffset": 1049, "line": 72, "type": {"nodeId": "140265693902464"}}, {"startOffset": 1060, "endOffset": 1067, "line": 75, "type": {"nodeId": "140265790227200"}}]}, "definitions": {"annotation_tests": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790227200"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140265790229664", "args": [{"nodeId": "140265790227200"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "A": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265693807008"}}}, "square": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "collection", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828382560"}, "name": "square"}}, "not_annotated": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265874276080"}, "name": "not_annotated"}}, "same_annotations": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "y", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265739917952"}, "name": "same_annotations"}}, "optional": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265710021856"}, "name": "optional"}}, "literal": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265856940320"}, "name": "literal"}}, "Color": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265693807360"}}}, "enum_literal": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265710023424"}, "name": "enum_literal"}}, "abstract_set": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265739612256"}, "name": "abstract_set"}}, "mapping": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265828382112"}, "name": "mapping"}}, "sequence": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265739602848"}, "name": "sequence"}}, "supports_abs": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265853043424"}, "name": "supports_abs"}}, "tuple_": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140265856941664"}, "name": "tuple_"}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864096"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861256064"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861256416"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861256768"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861257120"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861257472"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861257824"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861258176"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789898272"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789849664"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789850016"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789850368"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789850720"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789851072"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861258528"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861258880"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789851424"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789851776"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861259232"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861259584"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861259936"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861260288"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861260640"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861260992"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789852128"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861261344"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861261696"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861262048"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861262400"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861262752"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861263104"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861263456"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861263808"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861264160"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789852480"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789852832"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789853184"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789853536"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861264512"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861264864"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789853888"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789854240"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789854592"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789854944"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789855296"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861265216"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789859168"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789859520"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789859872"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789860224"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789897568"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764914976"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764915328"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764915680"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789860576"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789860928"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789861280"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789861632"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789897920"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789861984"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764449344"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764449696"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764450048"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764450400"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764450752"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451104"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451456"}}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760339776"}}}, "timezone": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760340128"}}}, "date": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760340832"}}}, "time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760341184"}}}, "timedelta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760341536"}}}, "datetime": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265693806656"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861254656"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861255360"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861255712"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861265568"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861265920"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861266272"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861266624"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265861266976"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790226496"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790226848"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790227200"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790227552"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790227904"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790228256"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790228608"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790228960"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790229312"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790229664"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789856704"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789857056"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789857408"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790230016"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790230368"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790230720"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765401024"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790231072"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789857760"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790231424"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789858112"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765401376"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790231776"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790232128"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790232480"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789858464"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790232832"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790233184"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765401728"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789858816"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790233536"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790233888"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790234240"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790234592"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790234944"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790235296"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790235648"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790236000"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790236352"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790236704"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790237056"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790237408"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790237760"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790238112"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790238464"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790238816"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790239168"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790239520"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790239872"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790240224"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790240576"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790240928"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790241280"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790241632"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790241984"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265790242336"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789882432"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789882784"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789883136"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789883488"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789883840"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789884192"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789884544"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789884896"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789885248"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789885600"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789885952"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789886304"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789886656"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789887008"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789887360"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789887712"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789888064"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789888416"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789888768"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789889120"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789889472"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789889824"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789890176"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789890528"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789890880"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789891232"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789891584"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789891936"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789892288"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789892640"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789892992"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789893344"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789893696"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789894048"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789894400"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789894752"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789895104"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789895456"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789895808"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789896160"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785728992"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765403136"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765403488"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765403840"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785729344"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765404192"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760325696"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760326048"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785729696"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760326400"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789862336"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789862688"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789863040"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789863392"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789863744"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864096"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864448"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789864800"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789865152"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789855648"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789856000"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789856352"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764920256"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764920608"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764920960"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764921312"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764921664"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764922016"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764922368"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764922720"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764923072"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764923424"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764923776"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764924128"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764924480"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764924832"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764925184"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764925536"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764925888"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764926240"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764926592"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764926944"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764927296"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764927648"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764928000"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764928352"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764928704"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764929056"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765093440"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765093792"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765094144"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765094496"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765094848"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765095200"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765095552"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789896512"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789896864"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789897216"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764744960"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764745312"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764745664"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764746016"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764746368"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764746720"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764747072"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764747424"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764747776"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764748128"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764748480"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764748832"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764913216"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764913568"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764913920"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764914272"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764914624"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785733920"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785734272"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760326752"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265789865504"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785720896"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785721248"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785721600"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785721952"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785722304"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785722656"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785723008"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785723360"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785723712"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785724064"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785724416"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785724768"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785725120"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785725472"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785725824"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785726176"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785726528"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785726880"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785727232"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785727584"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785727936"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785728288"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785728640"}}}}, "time": {"struct_time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760339072"}}}, "_ClockInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760339424"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765096256"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765096608"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765096960"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765097312"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765097664"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765098016"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765098368"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765098720"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765099072"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765099424"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765099776"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765100128"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765100480"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765100832"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765101184"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765101536"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765101888"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765102240"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765102592"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765102944"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765103296"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765103648"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765104000"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765104352"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765104704"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765105056"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765105408"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765105760"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765106112"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765106464"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765106816"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765107168"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765107520"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765107872"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765108224"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765108576"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765108928"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765109280"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765290048"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765290400"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765290752"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765291104"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765291456"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765291808"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765292160"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765292512"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765292864"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765293216"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765293568"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765293920"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765294272"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765294624"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765294976"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765295328"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765295680"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765296032"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765296384"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765296736"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765297088"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765297440"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765297792"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765298144"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765298496"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765298848"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765299200"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765299552"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765299904"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765300256"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765300608"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765300960"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765301312"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765301664"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765302016"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765302368"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765302720"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765303072"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765303424"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765303776"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765304128"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765304480"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765304832"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765305184"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765305536"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765305888"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765388352"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765388704"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765389056"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765389408"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765389760"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765390112"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765390464"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765390816"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765391168"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765391520"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765391872"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765392224"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765392576"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765392928"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765393280"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765393632"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765393984"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765394336"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765394688"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765395040"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765395392"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765395744"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765396096"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765396448"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765396800"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765397152"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765397504"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765397856"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765398208"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765398560"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765398912"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765399264"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765399616"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765399968"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785735328"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785735680"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785736032"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785736384"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785736736"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764438080"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764438432"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764438784"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764439136"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764439488"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764439840"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440192"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440544"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760338368"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445120"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445472"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445824"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764446176"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764446528"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764446880"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764447232"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764447584"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764447936"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764448288"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764448640"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764448992"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764444416"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760331328"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760331680"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760332032"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764444768"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760332384"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760332736"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760333088"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760333440"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764742848"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764743200"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764743552"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764743904"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764744256"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764744608"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785734624"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765402080"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760327104"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785734976"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760327456"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760327808"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760328160"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760328512"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760328864"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760329216"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760329568"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760329920"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785733216"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785733568"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764916032"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764916384"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760333792"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764916736"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764917088"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764917440"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764917792"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764918144"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764918496"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760334144"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764918848"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764919200"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764919552"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760334496"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760334848"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760335200"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760335552"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760335904"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764919904"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764445472"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440896"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764441600"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764442304"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764442656"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764443008"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760338720"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764443360"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764443712"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760330272"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760330976"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764444064"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785730048"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785730400"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785730752"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785731104"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785731456"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785731808"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785732160"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785732512"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265785732864"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265765095904"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764440896"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764441248"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452864"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764453216"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764453568"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760336256"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760336608"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760336960"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760337312"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760337664"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265760338016"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452864"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451808"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764742496"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764742144"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764732992"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764733344"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764733696"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764734048"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764734400"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764734752"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764735104"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764735456"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764735808"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764736160"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764736512"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764736864"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764737216"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764737568"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764737920"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764738272"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764738624"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764738976"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764739328"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764739680"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764740032"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764740384"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764740736"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764741088"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764741440"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764741792"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764451808"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452160"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764452512"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140265764453920"}}}}}, "names": {"annotation_tests": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing.ParamSpec"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "ByteString", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "Enum", "kind": "ImportedType", "fullname": "enum.Enum"}, {"name": "datetime", "kind": "Module", "fullname": "datetime"}, {"name": "XXX", "kind": "Other"}, {"name": "A", "kind": "LocalType"}, {"name": "square", "kind": "Other"}, {"name": "not_annotated", "kind": "Other"}, {"name": "same_annotations", "kind": "Other"}, {"name": "optional", "kind": "Other"}, {"name": "literal", "kind": "Other"}, {"name": "Color", "kind": "LocalType"}, {"name": "enum_literal", "kind": "Other"}, {"name": "abstract_set", "kind": "Other"}, {"name": "mapping", "kind": "Other"}, {"name": "sequence", "kind": "Other"}, {"name": "supports_abs", "kind": "Other"}, {"name": "tuple_", "kind": "Other"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "datetime": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_D", "kind": "Other"}, {"name": "MINYEAR", "kind": "Other"}, {"name": "MAXYEAR", "kind": "Other"}, {"name": "tzinfo", "kind": "LocalType"}, {"name": "_TzInfo", "kind": "Other"}, {"name": "timezone", "kind": "LocalType"}, {"name": "_IsoCalendarDate", "kind": "LocalType"}, {"name": "date", "kind": "LocalType"}, {"name": "time", "kind": "LocalType"}, {"name": "_Date", "kind": "Other"}, {"name": "_Time", "kind": "Other"}, {"name": "timedelta", "kind": "LocalType"}, {"name": "datetime", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "time": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_TimeTuple", "kind": "Other"}, {"name": "altzone", "kind": "Other"}, {"name": "daylight", "kind": "Other"}, {"name": "timezone", "kind": "Other"}, {"name": "tzname", "kind": "Other"}, {"name": "CLOCK_BOOTTIME", "kind": "Other"}, {"name": "CLOCK_MONOTONIC", "kind": "Other"}, {"name": "CLOCK_MONOTONIC_RAW", "kind": "Other"}, {"name": "CLOCK_PROCESS_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_REALTIME", "kind": "Other"}, {"name": "CLOCK_THREAD_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_TAI", "kind": "Other"}, {"name": "struct_time", "kind": "LocalType"}, {"name": "asctime", "kind": "Other"}, {"name": "ctime", "kind": "Other"}, {"name": "gmtime", "kind": "Other"}, {"name": "localtime", "kind": "Other"}, {"name": "mktime", "kind": "Other"}, {"name": "sleep", "kind": "Other"}, {"name": "strftime", "kind": "Other"}, {"name": "strptime", "kind": "Other"}, {"name": "time", "kind": "Other"}, {"name": "tzset", "kind": "Other"}, {"name": "_ClockInfo", "kind": "LocalType"}, {"name": "get_clock_info", "kind": "Other"}, {"name": "monotonic", "kind": "Other"}, {"name": "perf_counter", "kind": "Other"}, {"name": "process_time", "kind": "Other"}, {"name": "clock_getres", "kind": "Other"}, {"name": "clock_gettime", "kind": "Other"}, {"name": "clock_settime", "kind": "Other"}, {"name": "clock_gettime_ns", "kind": "Other"}, {"name": "clock_settime_ns", "kind": "Other"}, {"name": "pthread_getcpuclockid", "kind": "Other"}, {"name": "monotonic_ns", "kind": "Other"}, {"name": "perf_counter_ns", "kind": "Other"}, {"name": "process_time_ns", "kind": "Other"}, {"name": "time_ns", "kind": "Other"}, {"name": "thread_time", "kind": "Other"}, {"name": "thread_time_ns", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/boruvka.json b/utbot-python-types/src/test/resources/boruvka.json index 5475959dce..548361a5fa 100644 --- a/utbot-python-types/src/test/resources/boruvka.json +++ b/utbot-python-types/src/test/resources/boruvka.json @@ -1 +1 @@ -{"nodeStorage": {"140552987165440": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949213536"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032802240"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032802688"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032803136"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032803584"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032804032"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032804480"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032804928"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032805824"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032806272"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032806720"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032807168"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032807616"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032808064"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032808512"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032808960"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032809408"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032809856"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032958016"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032958464"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032958912"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032959360"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032959808"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032960256"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032960704"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032961152"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032961600"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032962048"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032962496"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032962944"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032963392"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032963840"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032964288"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032964736"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032965184"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032965632"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032966080"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032966528"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032966976"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032967424"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032967872"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032968320"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032968768"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032969216"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032969664"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032970112"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032970560"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949213760"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032972352"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032972800"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032973248"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032973696"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033089088"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033089536"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033089984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033090432"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033090880"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033091328"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033091776"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033092224"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033092672"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033093120"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033093568"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}], "isAbstract": false}}, "140552949213536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032801344"}, {"nodeId": "140553032801792"}]}}, "140553032801344": {"type": "Function", "content": {"typeVars": [".0.140553032801344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": ".0.140553032801344"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140553057832448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982830144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948927280"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894829440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049639616"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049640064"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049640512"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049640960"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049641408"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049641856"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049642304"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049642752"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049643200"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049643648"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049644096"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049644544"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049644992"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049645440"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049646784"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049647232"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894826752"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140552982830144": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140552987167904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944318528"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028851904"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028852352"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028852800"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028853248"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028853696"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944318976"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944319760"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944320096"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028856832"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028857280"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028857728"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028858176"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028858624"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028859072"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028859520"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028859968"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028860416"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944631872"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}], "bases": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "isAbstract": false}}, ".1.140552987167904": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987167904", "variance": "INVARIANT"}}, ".2.140552987167904": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987167904", "variance": "INVARIANT"}}, "140552944318528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028848320"}, {"nodeId": "140553028848768"}, {"nodeId": "140553028849216"}, {"nodeId": "140553028849664"}, {"nodeId": "140553028850112"}, {"nodeId": "140553028850560"}, {"nodeId": "140553028851008"}, {"nodeId": "140553028851456"}]}}, "140553028848320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028848768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".2.140552987167904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140553028849216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552986686944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050067168"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050067616"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140552986686944"}, {"nodeId": ".2.140552986686944"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140552986686944": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986686944", "variance": "INVARIANT"}}, ".2.140552986686944": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986686944", "variance": "COVARIANT"}}, "140553050067168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552986686944"}, {"nodeId": ".2.140552986686944"}]}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552986686944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057837024": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940509824"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057837024"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__iter__"]}}, ".1.140553057837024": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057837024", "variance": "COVARIANT"}}, "140552940509824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057837024"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057837024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553057837376": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940513408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020727456"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140553057837376"}], "bases": [{"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057837376"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140553057837376": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057837376", "variance": "COVARIANT"}}, "140552940513408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057837376"}]}], "returnType": {"nodeId": ".1.140553057837376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020727456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057837376"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057837376"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140553050067616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552986686944"}, {"nodeId": ".2.140552986686944"}]}, {"nodeId": ".1.140552986686944"}], "returnType": {"nodeId": ".2.140552986686944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028849664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".2.140552987167904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553028850112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552944319424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944319424": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}}, "140553028850560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552944319648"}]}, {"nodeId": ".2.140552987167904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140552944319648": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552987167904"}]}}, "140553028851008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552987167552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944316736"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028670784"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028671232"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028671680"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028672128"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028672576"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028673024"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028673472"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028673920"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944316848"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028675264"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028675712"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944317968"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944318080"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028677952"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944318304"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028679296"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028679744"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028680192"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028680640"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028681088"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028845632"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028846080"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028846528"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028846976"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028847424"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028847872"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552987167552"}], "bases": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140552987167552"}]}], "isAbstract": false}}, ".1.140552987167552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987167552", "variance": "INVARIANT"}}, "140552944316736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028669888"}, {"nodeId": "140553028670336"}]}}, "140553028669888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028670336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028670784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028671232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": ".1.140552987167552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028671680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028672128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".1.140552987167552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552965485696": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552945134144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__index__"]}}, "140552945134144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057844064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949206592"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045028288"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894489856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894490528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894488960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894488736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045030528"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045030976"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045031424"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032450112"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898761600"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032451456"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032451904"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032452352"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032452800"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032453248"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032453696"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032454144"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032454592"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032455040"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032455488"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032455936"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032456384"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032456832"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032457280"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949207712"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032460416"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032460864"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032461312"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032461760"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032462208"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032462656"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032463104"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032463552"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032464000"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032464448"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032464896"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032465344"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032465792"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032548416"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032548864"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032549312"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032549760"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032550208"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032550656"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032551104"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032551552"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032552000"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032552448"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032552896"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032553344"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032553792"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032554240"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032554688"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032555136"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032555584"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552949206592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553045027392"}, {"nodeId": "140553045027840"}]}}, "140553045027392": {"type": "Function", "content": {"typeVars": [".0.140553045027392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949208384"}], "returnType": {"nodeId": ".0.140553045027392"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140552949208384": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965487808"}, {"nodeId": "140552965472320"}, {"nodeId": "140552965485696"}, {"nodeId": "140552986686240"}]}}, "140552965487808": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020090272"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__buffer__"]}}, "140553020090272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552987166496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890210272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890210944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890211168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890211392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890211616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890211840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890212064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890212288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890212512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890212736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890212960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890213184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028428608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028429056"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028429504"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028429952"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944312144"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028431296"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028431744"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028432192"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944313152"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028433536"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028434880"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028435328"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028550720"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028551168"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028552064"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028552512"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552890210272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890210944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890211168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552944312816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944312816": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "N"}]}}, "140552987167200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028561920"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028562368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028562816"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944315168"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028564160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028564608"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028565056"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028565504"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028565952"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944316624"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028665856"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028666304"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028666752"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028667200"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028667648"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552987167200"}], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140552987167200"}]}], "isAbstract": false}}, ".1.140552987167200": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987167200", "variance": "COVARIANT"}}, "140553028561920": {"type": "Function", "content": {"typeVars": [".0.140553028561920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": ".0.140553028561920"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140553028561920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, "def": "140553028561920", "variance": "INVARIANT"}}, "140553028562368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028562816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057833152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028552960"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944313712"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944314496"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944314608"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944314720"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944314832"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944314944"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028558784"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140553057844064"}], "isAbstract": false}}, "140553028552960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140552944313712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028553408"}, {"nodeId": "140553028553856"}]}}, "140553028553408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028553856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944314496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028554304"}, {"nodeId": "140553028554752"}]}}, "140553028554304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028554752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944314608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028555200"}, {"nodeId": "140553028555648"}]}}, "140553028555200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028555648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944314720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028556096"}, {"nodeId": "140553028556544"}]}}, "140553028556096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028556544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944314832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028556992"}, {"nodeId": "140553028557440"}]}}, "140553028556992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028557440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944314944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028557888"}, {"nodeId": "140553028558336"}]}}, "140553028557888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028558336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028558784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552944315392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944315392": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}]}}, "140552944315168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028563264"}, {"nodeId": "140553028563712"}]}}, "140553028563264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".1.140552987167200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028563712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552987166848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890341568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890342016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890343136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944315056"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028561472"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552890341568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890342016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890343136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944315056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028560576"}, {"nodeId": "140553028561024"}]}}, "140553028560576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166848"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028561024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166848"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553028561472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166848"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552944316512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944316512": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140553028564160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552987167200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028564608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028565056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028565504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028565952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944316624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028566400"}, {"nodeId": "140553028665408"}]}}, "140553028566400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028665408": {"type": "Function", "content": {"typeVars": [".-1.140553028665408"], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": ".-1.140553028665408"}]}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552944316960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553028665408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028665408", "variance": "INVARIANT"}}, "140552944316960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552987167200"}, {"nodeId": ".-1.140553028665408"}]}}, "140553028665856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028666304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028666752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028667200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167200", "args": [{"nodeId": ".1.140552987167200"}]}, {"nodeId": "A"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553028667648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552965741504": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936618944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936619392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936619616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037285856"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037286304"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037287648"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936618944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741504"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057843360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894495680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894495232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894495008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894494112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894494336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894494560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894493664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894493440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552894493216"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948927616"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949203008"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045022464"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552953511072"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045023360"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045023808"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045024256"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894492992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045025152"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553045025600"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552894495680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894495232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894495008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140552965735168", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965735168": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036759776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036760224"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036760672"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036761120"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036761568"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036762016"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036762464"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036762912"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036763360"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036763808"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036764256"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036764704"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036765152"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}], "bases": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "isAbstract": false}}, ".1.140552965735168": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965735168", "variance": "INVARIANT"}}, ".2.140552965735168": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965735168", "variance": "COVARIANT"}}, "140553036759776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140553036760224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, {"nodeId": ".1.140552965735168"}], "returnType": {"nodeId": ".2.140552965735168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553036760672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965735168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553036761120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553036761568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553036762016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036762464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965735168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965475840": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015902496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015902944"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015903392"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015903840"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015904288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015904736"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015905184"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015905632"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015906080"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015906528"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015906976"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015907424"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140552965475840"}], "bases": [{"nodeId": "140552965475136"}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140552965475840"}]}], "isAbstract": false}}, ".1.140552965475840": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965475840", "variance": "COVARIANT"}}, "140553015902496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".1.140552965475840"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140553057842304": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940830304"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961920576"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015911008"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015911456"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015911904"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015912352"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015912800"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}], "bases": [{"nodeId": "140553057840544", "args": [{"nodeId": ".1.140553057842304"}]}], "isAbstract": true}}, ".1.140553057842304": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057842304", "variance": "INVARIANT"}}, ".2.140553057842304": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057842304", "variance": "COVARIANT"}}, "140552940830304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}, {"nodeId": ".1.140553057842304"}], "returnType": {"nodeId": ".2.140553057842304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552961920576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015910112"}, {"nodeId": "140553015910560"}]}}, "140553015910112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}, {"nodeId": ".1.140553057842304"}], "returnType": {"nodeId": "140552961925952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961925952": {"type": "Union", "content": {"items": [{"nodeId": ".2.140553057842304"}, {"nodeId": "N"}]}}, "140553015910560": {"type": "Function", "content": {"typeVars": [".-1.140553015910560"], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}, {"nodeId": ".1.140553057842304"}, {"nodeId": "140552961926064"}], "returnType": {"nodeId": "140552961926176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140552961926064": {"type": "Union", "content": {"items": [{"nodeId": ".2.140553057842304"}, {"nodeId": ".-1.140553015910560"}]}}, ".-1.140553015910560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015910560", "variance": "INVARIANT"}}, "140552961926176": {"type": "Union", "content": {"items": [{"nodeId": ".2.140553057842304"}, {"nodeId": ".-1.140553015910560"}]}}, "140553015911008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}], "returnType": {"nodeId": "140552965475488", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965475488": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015798560"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015799008"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015799456"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015799904"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015800352"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015800800"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015801248"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015801696"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015802144"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015802592"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015803040"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015803488"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}], "bases": [{"nodeId": "140552965475136"}, {"nodeId": "140553057841600", "args": [{"nodeId": "140552965592048"}]}], "isAbstract": false}}, ".1.140552965475488": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965475488", "variance": "COVARIANT"}}, ".2.140552965475488": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965475488", "variance": "COVARIANT"}}, "140553015798560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140553015799008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961922704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965479360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944632320"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028977600"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028978048"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028978496"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028978944"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028979392"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028979840"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028980288"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028980736"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028981184"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028981632"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028982080"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028982528"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028982976"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028983424"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028983872"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028984320"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028984768"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028985216"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028985664"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028986112"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028986560"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028987008"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028987456"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028987904"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028988352"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028988800"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028989248"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028989696"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028990144"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028990592"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028991040"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965479360"}], "bases": [{"nodeId": "140553057841952", "args": [{"nodeId": ".1.140552965479360"}]}], "isAbstract": false}}, ".1.140552965479360": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965479360", "variance": "INVARIANT"}}, "140552944632320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028976704"}, {"nodeId": "140553028977152"}]}}, "140553028976704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028977152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028977600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": ".1.140552965479360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028978048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028978496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553028978944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553028979392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": ".1.140552965479360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028979840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553028980288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553028980736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028981184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028981632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028982080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": ".1.140552965479360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028982528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028982976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028983424": {"type": "Function", "content": {"typeVars": [".-1.140553028983424"], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553028983424"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552944634448"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140553028983424": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028983424", "variance": "INVARIANT"}}, "140552944634448": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479360"}, {"nodeId": ".-1.140553028983424"}]}}, "140553028983872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553028984320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028984768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028985216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028985664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057841600": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940695648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015789152"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015789600"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015790048"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015790496"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015790944"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015791392"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015791840"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015792288"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015792736"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015793184"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140553057841600"}], "bases": [{"nodeId": "140553057840544", "args": [{"nodeId": ".1.140553057841600"}]}], "isAbstract": true}}, ".1.140553057841600": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057841600", "variance": "COVARIANT"}}, "140552940695648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015789152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015789600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015790048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015790496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015790944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015791392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015791840": {"type": "Function", "content": {"typeVars": [".-1.140553015791840"], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".-1.140553015791840"}]}], "returnType": {"nodeId": "140553057841600", "args": [{"nodeId": "140552961921472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015791840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015791840", "variance": "INVARIANT"}}, "140552961921472": {"type": "Union", "content": {"items": [{"nodeId": ".1.140553057841600"}, {"nodeId": ".-1.140553015791840"}]}}, "140553015792288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015792736": {"type": "Function", "content": {"typeVars": [".-1.140553015792736"], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".-1.140553015792736"}]}], "returnType": {"nodeId": "140553057841600", "args": [{"nodeId": "140552961921696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015792736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015792736", "variance": "INVARIANT"}}, "140552961921696": {"type": "Union", "content": {"items": [{"nodeId": ".1.140553057841600"}, {"nodeId": ".-1.140553015792736"}]}}, "140553015793184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841600"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140553057840544": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940688704"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057840544"}], "bases": [{"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057840544"}]}, {"nodeId": "140553057840192", "args": [{"nodeId": ".1.140553057840544"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140553057840544": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057840544", "variance": "COVARIANT"}}, "140552940688704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840544", "args": [{"nodeId": ".1.140553057840544"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553057840192": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940685344"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057840192"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__contains__"]}}, ".1.140553057840192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057840192", "variance": "COVARIANT"}}, "140552940685344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840192", "args": [{"nodeId": ".1.140553057840192"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028986112": {"type": "Function", "content": {"typeVars": [".0.140553028986112"], "argTypes": [{"nodeId": ".0.140553028986112"}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": ".0.140553028986112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028986112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "def": "140553028986112", "variance": "INVARIANT"}}, "140553028986560": {"type": "Function", "content": {"typeVars": [".-1.140553028986560"], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".-1.140553028986560"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552944634672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553028986560": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028986560", "variance": "INVARIANT"}}, "140552944634672": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479360"}, {"nodeId": ".-1.140553028986560"}]}}, "140553028987008": {"type": "Function", "content": {"typeVars": [".0.140553028987008"], "argTypes": [{"nodeId": ".0.140553028987008"}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": ".0.140553028987008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028987008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "def": "140553028987008", "variance": "INVARIANT"}}, "140553028987456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140552944634784"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944634784": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479360"}, {"nodeId": "N"}]}}, "140553028987904": {"type": "Function", "content": {"typeVars": [".0.140553028987904"], "argTypes": [{"nodeId": ".0.140553028987904"}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": ".0.140553028987904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028987904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "def": "140553028987904", "variance": "INVARIANT"}}, "140553028988352": {"type": "Function", "content": {"typeVars": [".-1.140553028988352"], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".-1.140553028988352"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552944634896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553028988352": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028988352", "variance": "INVARIANT"}}, "140552944634896": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479360"}, {"nodeId": ".-1.140553028988352"}]}}, "140553028988800": {"type": "Function", "content": {"typeVars": [".0.140553028988800"], "argTypes": [{"nodeId": ".0.140553028988800"}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140552965479360"}]}], "returnType": {"nodeId": ".0.140553028988800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028988800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, "def": "140553028988800", "variance": "INVARIANT"}}, "140553028989248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028989696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028990144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028990592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965479360"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028991040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140553057841952": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940733824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940738976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015794528"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015794976"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015795424"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015795872"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015796320"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015796768"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015797216"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140553057841952"}], "bases": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841952"}]}], "isAbstract": true}}, ".1.140553057841952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057841952", "variance": "INVARIANT"}}, "140552940733824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, {"nodeId": ".1.140553057841952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140552940738976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, {"nodeId": ".1.140553057841952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140553015794528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015794976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}], "returnType": {"nodeId": ".1.140553057841952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015795424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, {"nodeId": ".1.140553057841952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140553015795872": {"type": "Function", "content": {"typeVars": [".0.140553015795872"], "argTypes": [{"nodeId": ".0.140553015795872"}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841952"}]}], "returnType": {"nodeId": ".0.140553015795872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553015795872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, "def": "140553015795872", "variance": "INVARIANT"}}, "140553015796320": {"type": "Function", "content": {"typeVars": [".0.140553015796320"], "argTypes": [{"nodeId": ".0.140553015796320"}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140553015796320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553015796320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, "def": "140553015796320", "variance": "INVARIANT"}}, "140553015796768": {"type": "Function", "content": {"typeVars": [".0.140553015796768"], "argTypes": [{"nodeId": ".0.140553015796768"}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140553057841952"}]}], "returnType": {"nodeId": ".0.140553015796768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553015796768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, "def": "140553015796768", "variance": "INVARIANT"}}, "140553015797216": {"type": "Function", "content": {"typeVars": [".0.140553015797216"], "argTypes": [{"nodeId": ".0.140553015797216"}, {"nodeId": "140553057841600", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140553015797216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553015797216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057841952", "args": [{"nodeId": ".1.140553057841952"}]}, "def": "140553015797216", "variance": "INVARIANT"}}, "140552961922704": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015799456": {"type": "Function", "content": {"typeVars": [".-1.140553015799456"], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015799456"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".-1.140553015799456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015799456": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015799456", "variance": "INVARIANT"}}, "140553015799904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015800352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552961922928"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552961922928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015800800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552961923152"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552961923152": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015801248": {"type": "Function", "content": {"typeVars": [".-1.140553015801248"], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015801248"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961923488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015801248": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015801248", "variance": "INVARIANT"}}, "140552961923488": {"type": "Union", "content": {"items": [{"nodeId": "140552961923376"}, {"nodeId": ".-1.140553015801248"}]}}, "140552961923376": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015801696": {"type": "Function", "content": {"typeVars": [".-1.140553015801696"], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015801696"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961923824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015801696": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015801696", "variance": "INVARIANT"}}, "140552961923824": {"type": "Union", "content": {"items": [{"nodeId": "140552961923712"}, {"nodeId": ".-1.140553015801696"}]}}, "140552961923712": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015802144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961924160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552961924160": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015802592": {"type": "Function", "content": {"typeVars": [".-1.140553015802592"], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015802592"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".-1.140553015802592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015802592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015802592", "variance": "INVARIANT"}}, "140553015803040": {"type": "Function", "content": {"typeVars": [".-1.140553015803040"], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015803040"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961924496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015803040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015803040", "variance": "INVARIANT"}}, "140552961924496": {"type": "Union", "content": {"items": [{"nodeId": "140552961924384"}, {"nodeId": ".-1.140553015803040"}]}}, "140552961924384": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015803488": {"type": "Function", "content": {"typeVars": [".-1.140553015803488"], "argTypes": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015803488"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961924832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015803488": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015803488", "variance": "INVARIANT"}}, "140552961924832": {"type": "Union", "content": {"items": [{"nodeId": "140552961924720"}, {"nodeId": ".-1.140553015803488"}]}}, "140552961924720": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140552965475136": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015797664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015798112"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140552965474080"}], "isAbstract": false}}, "140553015797664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475136"}, {"nodeId": "140553057842304", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140553015798112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475136"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965474080": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940507584"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__len__"]}}, "140552940507584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965474080"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965592048": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965475488"}, {"nodeId": ".2.140552965475488"}]}}, "140553015911456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}], "returnType": {"nodeId": "140552965475840", "args": [{"nodeId": ".1.140553057842304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015911904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}], "returnType": {"nodeId": "140552965476192", "args": [{"nodeId": ".2.140553057842304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965476192": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015907872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015908320"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015908768"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015909216"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552965476192"}], "bases": [{"nodeId": "140552965475136"}, {"nodeId": "140553057840544", "args": [{"nodeId": ".1.140552965476192"}]}], "isAbstract": false}}, ".1.140552965476192": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965476192", "variance": "COVARIANT"}}, "140553015907872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476192", "args": [{"nodeId": ".1.140552965476192"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": "A"}, {"nodeId": ".1.140552965476192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140553015908320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476192", "args": [{"nodeId": ".1.140552965476192"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015908768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476192", "args": [{"nodeId": ".1.140552965476192"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965476192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553015909216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476192", "args": [{"nodeId": ".1.140552965476192"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965476192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553015912352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015912800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842304"}, {"nodeId": ".2.140553057842304"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015902944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965475840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015903392": {"type": "Function", "content": {"typeVars": [".-1.140553015903392"], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015903392"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".-1.140553015903392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015903392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015903392", "variance": "INVARIANT"}}, "140553015903840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015904288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965475840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553015904736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965475840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553015905184": {"type": "Function", "content": {"typeVars": [".-1.140553015905184"], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015905184"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961925168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015905184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015905184", "variance": "INVARIANT"}}, "140552961925168": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965475840"}, {"nodeId": ".-1.140553015905184"}]}}, "140553015905632": {"type": "Function", "content": {"typeVars": [".-1.140553015905632"], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015905632"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961925280"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015905632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015905632", "variance": "INVARIANT"}}, "140552961925280": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965475840"}, {"nodeId": ".-1.140553015905632"}]}}, "140553015906080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".1.140552965475840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015906528": {"type": "Function", "content": {"typeVars": [".-1.140553015906528"], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015906528"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": ".-1.140553015906528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015906528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015906528", "variance": "INVARIANT"}}, "140553015906976": {"type": "Function", "content": {"typeVars": [".-1.140553015906976"], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015906976"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961925504"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015906976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015906976", "variance": "INVARIANT"}}, "140552961925504": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965475840"}, {"nodeId": ".-1.140553015906976"}]}}, "140553015907424": {"type": "Function", "content": {"typeVars": [".-1.140553015907424"], "argTypes": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965475840"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553015907424"}]}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552961925616"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553015907424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015907424", "variance": "INVARIANT"}}, "140552961925616": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965475840"}, {"nodeId": ".-1.140553015907424"}]}}, "140553036762912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140552965476192", "args": [{"nodeId": ".2.140552965735168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036763360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036763808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140553036764256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965735168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553036764704": {"type": "Function", "content": {"typeVars": [".-1.140553036764704", ".-2.140553036764704"], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553036764704"}, {"nodeId": ".-2.140553036764704"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552956937488"}, {"nodeId": "140552956937600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553036764704": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553036764704", "variance": "INVARIANT"}}, ".-2.140553036764704": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553036764704", "variance": "INVARIANT"}}, "140552956937488": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".-1.140553036764704"}]}}, "140552956937600": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965735168"}, {"nodeId": ".-2.140553036764704"}]}}, "140553036765152": {"type": "Function", "content": {"typeVars": [".-1.140553036765152", ".-2.140553036765152"], "argTypes": [{"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".2.140552965735168"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553036765152"}, {"nodeId": ".-2.140553036765152"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552956937712"}, {"nodeId": "140552956937824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553036765152": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553036765152", "variance": "INVARIANT"}}, ".-2.140553036765152": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553036765152", "variance": "INVARIANT"}}, "140552956937712": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965735168"}, {"nodeId": ".-1.140553036765152"}]}}, "140552956937824": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965735168"}, {"nodeId": ".-2.140553036765152"}]}}, "140552894494112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894494336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894494560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894493664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894493440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140552949206144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949206144": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552894493216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948927616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553045020672"}, {"nodeId": "140553045021120"}]}}, "140553045020672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553045021120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140552949203008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553045021568"}, {"nodeId": "140552953506368"}]}}, "140553045021568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552953506368": {"type": "Function", "content": {"typeVars": [".-1.140552953506368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140552953506368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140552953506368": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953506368", "variance": "INVARIANT"}}, "140553045022464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140552953511072": {"type": "Function", "content": {"typeVars": [".-1.140552953511072"], "argTypes": [{"nodeId": ".-1.140552953511072"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".-1.140552953511072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140552953511072": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953511072", "variance": "INVARIANT"}}, "140553045023360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057843360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553045023808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553045024256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552894492992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140553045025152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965742208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965742208": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936704704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037288992"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037289440"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936704704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965742208"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037288992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965742208"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965742208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553037289440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965742208"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965742208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553045025600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843360"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965742208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552936619392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741504"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936619616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741504"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037285856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741504"}, {"nodeId": "140553057843360"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140553037286304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741504"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553037287648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741504"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057840896": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961919120"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015632480"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015632928"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015633376"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015633824"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015634272"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140553057840896"}], "bases": [{"nodeId": "140553057840544", "args": [{"nodeId": ".1.140553057840896"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".1.140553057840896"}]}], "isAbstract": true}}, ".1.140553057840896": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057840896", "variance": "COVARIANT"}}, "140552961919120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015631584"}, {"nodeId": "140553015632032"}]}}, "140553015631584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140553057840896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015632032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015632480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}, {"nodeId": "A"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140553015632928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140553015633376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015633824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057840896"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553015634272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057840896"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057840896"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553057837728": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940516096"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057837728"}], "bases": [{"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057837728"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140553057837728": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057837728", "variance": "COVARIANT"}}, "140552940516096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057837728", "args": [{"nodeId": ".1.140553057837728"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057837728"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552890211392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552944312928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944312928": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "N"}]}}, "140552890211616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552944313040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944313040": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "N"}]}}, "140552890211840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890212064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890212288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552965487808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890212512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890212736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890212960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890213184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028428608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140553028429056": {"type": "Function", "content": {"typeVars": [".0.140553028429056"], "argTypes": [{"nodeId": ".0.140553028429056"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553028429056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987166496"}, "def": "140553028429056", "variance": "INVARIANT"}}, "140553028429504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552944313264"}, {"nodeId": "140552944313376"}, {"nodeId": "140552944313488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552944313264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552944313376": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552987172128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987076512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987069456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987077296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024728960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024729408"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024729856"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552987076512": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552987069456": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552987077296": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552965740096": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037123360"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965593616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936608416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936608640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936608864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553037123360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740096"}, {"nodeId": "140552956945888"}, {"nodeId": "140552965740448"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140552956945888": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552965740448": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936610432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936610880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936611104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936611328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936611552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936611776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936612000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965593840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037128288"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936610432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140552956946000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956946000": {"type": "Union", "content": {"items": [{"nodeId": "140552965740448"}, {"nodeId": "N"}]}}, "140552936610880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936611104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140552965734816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965734816": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936192960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936193632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936292640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936292864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936293088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936293312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936293536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936293760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936293984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936294208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936294432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936294656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936294880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936295104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936295328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936295552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936296224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041473184"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041475424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041477216"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936192960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936193632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936292640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936292864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936293088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936293312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936293536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987165792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949214544"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033095360"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033095808"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033096256"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033096704"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033097152"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033097600"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033098496"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033098944"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033099840"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033100288"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033100736"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033101184"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033101632"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033102080"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033102528"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033102976"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033103424"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033103872"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033104320"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033104768"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033220160"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033220608"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033221056"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033221504"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033221952"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033222400"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033222848"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033223296"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033223744"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033224192"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033224640"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033225088"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033225536"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033225984"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033226432"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033226880"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033227328"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033227776"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033228224"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033228672"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552889892448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552890057440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033230016"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033230464"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949217456"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033231808"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033232256"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033232704"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033233152"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033233600"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033234048"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033234496"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033234944"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033235392"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553033235840"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028108352"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028108800"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028109696"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552949214544": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553033094016"}, {"nodeId": "140553033094464"}, {"nodeId": "140553033094912"}]}}, "140553033094016": {"type": "Function", "content": {"typeVars": [".0.140553033094016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949218576"}], "returnType": {"nodeId": ".0.140553033094016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552949218576": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552965485696"}]}, {"nodeId": "140552965485696"}, {"nodeId": "140552965473376"}, {"nodeId": "140552965487808"}]}}, "140552965473376": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940432384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__bytes__"]}}, "140552940432384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965473376"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553033094016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987165792"}, "def": "140553033094016", "variance": "INVARIANT"}}, "140553033094464": {"type": "Function", "content": {"typeVars": [".0.140553033094464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140553033094464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140553033094464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987165792"}, "def": "140553033094464", "variance": "INVARIANT"}}, "140553033094912": {"type": "Function", "content": {"typeVars": [".0.140553033094912"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140553033094912"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140553033094912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987165792"}, "def": "140553033094912", "variance": "INVARIANT"}}, "140553033095360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033095808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553033096256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552949218688"}, {"nodeId": "140552949218800"}, {"nodeId": "140552949218912"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949218688": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552949218800": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949218912": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033096704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140553033097152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552949219024"}, {"nodeId": "140552949219136"}, {"nodeId": "140552944304192"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949219024": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552965487808"}]}]}}, "140552949219136": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944304192": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033097600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140553033098496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944304304"}, {"nodeId": "140552944304416"}, {"nodeId": "140552944304528"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944304304": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944304416": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944304528": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033098944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944304640"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140552944304640": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}]}}, "140553033099840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944304752"}, {"nodeId": "140552944304864"}, {"nodeId": "140552944304976"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944304752": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944304864": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944304976": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033100288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033100736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033101184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033101632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033102080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033102528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033102976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033103424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033103872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552965487808"}]}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553033104320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}, {"nodeId": "140552944305088"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552944305088": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}]}}, "140552987166144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949218464"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028111488"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028111936"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028112384"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028112832"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028113280"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028113728"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028114176"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028114624"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028115520"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028115968"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028116416"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028117312"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028117760"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028118208"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028118656"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028119104"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028119552"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028120000"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028120448"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028120896"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028121344"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028121792"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028122240"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028122688"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028123136"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028123584"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028124032"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028239424"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028239872"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028240320"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028240768"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028241216"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028241664"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028242112"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028242560"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028243008"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028243456"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028243904"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028244352"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028244800"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028245248"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028245696"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028246144"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028246592"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028247040"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028247488"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552890067072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552890065952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028248832"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028249280"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944307440"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944312032"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028251520"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028251968"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028252416"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028252864"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028253312"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028253760"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028254208"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028254656"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028255104"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028419648"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028420096"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028420544"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028420992"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028421440"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028421888"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028422336"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028422784"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140553057841248", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552949218464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028110144"}, {"nodeId": "140553028110592"}, {"nodeId": "140553028111040"}]}}, "140553028110144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028110592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944308112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944308112": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552965485696"}]}, {"nodeId": "140552965485696"}, {"nodeId": "140552965487808"}]}}, "140553028111040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140553028111488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028111936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028112384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553028112832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944308224"}, {"nodeId": "140552944308336"}, {"nodeId": "140552944308448"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944308224": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944308336": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944308448": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028113280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028113728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140553028114176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944308560"}, {"nodeId": "140552944308672"}, {"nodeId": "140552944308784"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944308560": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552965487808"}]}]}}, "140552944308672": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944308784": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028114624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140553028115520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552965485696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028115968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944308896"}, {"nodeId": "140552944309008"}, {"nodeId": "140552944309120"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944308896": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944309008": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944309120": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028116416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944309232"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140552944309232": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}]}}, "140553028117312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944309344"}, {"nodeId": "140552944309456"}, {"nodeId": "140552944309568"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944309344": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944309456": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944309568": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028117760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553028118208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028118656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028119104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028119552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028120000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028120448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028120896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028121344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028121792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552965487808"}]}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028122240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}, {"nodeId": "140552944309680"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552944309680": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}]}}, "140553028122688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028123136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944309792"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552944309792": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553028123584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552944310016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944310016": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987166144"}, {"nodeId": "140552987166144"}, {"nodeId": "140552987166144"}]}}, "140553028124032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553028239424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028239872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028240320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028240768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}, {"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553028241216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944310128"}, {"nodeId": "140552944310240"}, {"nodeId": "140552944310352"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944310128": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944310240": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944310352": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028241664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944310464"}, {"nodeId": "140552944310576"}, {"nodeId": "140552944310688"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944310464": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944310576": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944310688": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028242112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}, {"nodeId": "140552944310800"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552944310800": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}]}}, "140553028242560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552944311024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944311024": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987166144"}, {"nodeId": "140552987166144"}, {"nodeId": "140552987166144"}]}}, "140553028243008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944311136"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987166144"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552944311136": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553028243456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944311248"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552944311248": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553028243904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944311360"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987166144"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552944311360": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553028244352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987166144"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140553028244800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944311472"}, {"nodeId": "140552944311584"}, {"nodeId": "140552944311696"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944311472": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552965487808"}]}]}}, "140552944311584": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944311696": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553028245248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944311808"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552944311808": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553028245696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028246144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028246592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944311920"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140552944311920": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553028247040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028247488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552890067072": {"type": "Function", "content": {"typeVars": [".0.140552890067072"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552890067072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140552890067072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987166144"}, "def": "140552890067072", "variance": "INVARIANT"}}, "140552890065952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487808"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028248832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028249280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944307440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028249728"}, {"nodeId": "140553028250176"}]}}, "140553028249728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028250176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944312032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028250624"}, {"nodeId": "140553028251072"}]}}, "140553028250624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553028251072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552987166848"}, {"nodeId": "140552944312368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552944312368": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552965485696"}]}, {"nodeId": "140552987165792"}]}}, "140553028251520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944312480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944312480": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552987166848"}]}}, "140553028251968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028252416": {"type": "Function", "content": {"typeVars": [".0.140553028252416"], "argTypes": [{"nodeId": ".0.140553028252416"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": ".0.140553028252416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028252416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987166144"}, "def": "140553028252416", "variance": "INVARIANT"}}, "140553028252864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028253312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987166144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028253760": {"type": "Function", "content": {"typeVars": [".0.140553028253760"], "argTypes": [{"nodeId": ".0.140553028253760"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".0.140553028253760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028253760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987166144"}, "def": "140553028253760", "variance": "INVARIANT"}}, "140553028254208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028254656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552944312704"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944312704": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552965487808"}]}}, "140553028255104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028419648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028420096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028420544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028420992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028421440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028421888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028422336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028422784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166144"}, {"nodeId": "140552987166496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553057841248": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940692960"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961919568"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961920128"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961920464"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015637856"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015638304"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015638752"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015639200"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015639648"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015787808"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015788256"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140553057841248"}], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": ".1.140553057841248"}]}], "isAbstract": true}}, ".1.140553057841248": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057841248", "variance": "INVARIANT"}}, "140552940692960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140553057844064"}, {"nodeId": ".1.140553057841248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140552961919568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015635168"}, {"nodeId": "140553015635616"}]}}, "140553015635168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140553057841248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015635616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552961920128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015636064"}, {"nodeId": "140553015636512"}]}}, "140553015636064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140553057844064"}, {"nodeId": ".1.140553057841248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553015636512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140552987166848"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057841248"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552961920464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015636960"}, {"nodeId": "140553015637408"}]}}, "140553015636960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015637408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015637856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": ".1.140553057841248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140553015638304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015638752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057841248"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140553015639200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015639648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140553057841248"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140553015787808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, {"nodeId": ".1.140553057841248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140553015788256": {"type": "Function", "content": {"typeVars": [".0.140553015788256"], "argTypes": [{"nodeId": ".0.140553015788256"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140553057841248"}]}], "returnType": {"nodeId": ".0.140553015788256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553015788256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057841248", "args": [{"nodeId": ".1.140553057841248"}]}, "def": "140553015788256", "variance": "INVARIANT"}}, "140553033104768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033220160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944305200"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552944305200": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553033220608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552944305424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944305424": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}]}}, "140553033221056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965487808"}, {"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553033221504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553033221952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553033222400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944305536"}, {"nodeId": "140552944305648"}, {"nodeId": "140552944305760"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944305536": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944305648": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944305760": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033222848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944305872"}, {"nodeId": "140552944305984"}, {"nodeId": "140552944306096"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944305872": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552965485696"}]}}, "140552944305984": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944306096": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033223296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}, {"nodeId": "140552944306208"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552944306208": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}]}}, "140553033223744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552944306432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944306432": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}]}}, "140553033224192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944306544"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552944306544": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553033224640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944306656"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552944306656": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553033225088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944306768"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552944306768": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553033225536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140553033225984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944306880"}, {"nodeId": "140552944306992"}, {"nodeId": "140552944307104"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552944306880": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552965487808"}]}]}}, "140552944306992": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552944307104": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553033226432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944307216"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552944307216": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553033226880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033227328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033227776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944307328"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140552944307328": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "N"}]}}, "140553033228224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553033228672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552889892448": {"type": "Function", "content": {"typeVars": [".0.140552889892448"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552889892448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140552889892448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987165792"}, "def": "140552889892448", "variance": "INVARIANT"}}, "140552890057440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487808"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033230016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553033230464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552949217456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553033230912"}, {"nodeId": "140553033231360"}]}}, "140553033230912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033231360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033231808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033232256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033232704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033233152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033233600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552944307664"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944307664": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552965487808"}]}}, "140553033234048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033234496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033234944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033235392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033235840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028108352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028108800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552944307888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944307888": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}]}}, "140553028109696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552936293760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936293984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936294208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936294432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936294656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936294880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936295104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936295328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936295552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936296224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041473184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552956937264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956937264": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552956937040"}]}}, "140552956937040": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553041475424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140553041477216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734816"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140552965734816"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140552936611328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936611552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936611776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140552956946448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956946448": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "A"}]}}, "140552936612000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965593840": {"type": "Union", "content": {"items": [{"nodeId": "140552986415776"}, {"nodeId": "N"}]}}, "140552986415776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553037128288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965593616": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552936608416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740096"}], "returnType": {"nodeId": "140552965740448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936608640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740096"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936608864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740096"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553024728960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140553024729408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987172128"}, {"nodeId": "140552944924400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944924400": {"type": "Union", "content": {"items": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140553024729856": {"type": "Function", "content": {"typeVars": [".0.140553024729856"], "argTypes": [{"nodeId": ".0.140553024729856"}, {"nodeId": "140552944924624"}], "returnType": {"nodeId": ".0.140553024729856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140553024729856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987172128"}, "def": "140553024729856", "variance": "INVARIANT"}}, "140552944924624": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552944313488": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553028429952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552987165440"}, {"nodeId": "140552944313600"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140552944313600": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}]}}, "140552944312144": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028430400"}, {"nodeId": "140553028430848"}]}}, "140553028430400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028430848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028431296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028431744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028432192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944313152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028432640"}, {"nodeId": "140553028433088"}]}}, "140553028432640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552987166848"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553028433088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553028433536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552944314384"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140552944314384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140553028434880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028435328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028550720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028551168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552944314272"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140552944314272": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}]}}, "140553028552064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028552512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987166496"}, {"nodeId": "140552987166496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552965472320": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940427456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__int__"]}}, "140552940427456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965472320"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986686240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050066272"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__trunc__"]}}, "140553050066272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986686240"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553045027392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844064"}, "def": "140553045027392", "variance": "INVARIANT"}}, "140553045027840": {"type": "Function", "content": {"typeVars": [".0.140553045027840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949208496"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".0.140553045027840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140552949208496": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}]}}, ".0.140553045027840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844064"}, "def": "140553045027840", "variance": "INVARIANT"}}, "140553045028288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552949208832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949208832": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "0"}]}}, "140552894489856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894490528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894488960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552894488736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553045030528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553045030976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553045031424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032450112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140552965485696"}, {"nodeId": "140552949209392"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140552949209392": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140552898761600": {"type": "Function", "content": {"typeVars": [".0.140552898761600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949209504"}, {"nodeId": "140552949209840"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": ".0.140552898761600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140552949209504": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552965485696"}]}, {"nodeId": "140552965473376"}, {"nodeId": "140552965487808"}]}}, "140552949209840": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140552898761600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844064"}, "def": "140552898761600", "variance": "INVARIANT"}}, "140553032451456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032451904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032452352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032452800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032453248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057844416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032556032"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032556480"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032556928"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032557376"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552889737824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552889738272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552889736928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032559168"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032559616"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032560064"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032560512"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032560960"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032561408"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032561856"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032562304"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949208272"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032563648"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032564096"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032679488"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032679936"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032680384"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032680832"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032681280"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949211744"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032683072"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032683520"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032683968"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032684416"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949212416"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032685760"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032686208"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032686656"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032687104"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032687552"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032688000"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032688448"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032688896"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032689344"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032689792"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032690240"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032690688"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553032556032": {"type": "Function", "content": {"typeVars": [".0.140553032556032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949211856"}], "returnType": {"nodeId": ".0.140553032556032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140552949211856": {"type": "Union", "content": {"items": [{"nodeId": "140552965472672"}, {"nodeId": "140552965485696"}, {"nodeId": "140552987165440"}, {"nodeId": "140552965487808"}]}}, "140552965472672": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940429248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__float__"]}}, "140552940429248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965472672"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553032556032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844416"}, "def": "140553032556032", "variance": "INVARIANT"}}, "140553032556480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140552949212080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949212080": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140553032556928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032557376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552889737824": {"type": "Function", "content": {"typeVars": [".0.140552889737824"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552889737824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140552889737824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844416"}, "def": "140552889737824", "variance": "INVARIANT"}}, "140552889738272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552889736928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032559168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032559616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032560064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032560512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032560960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032561408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032561856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032562304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140552949212304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552949212304": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552949208272": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032562752"}, {"nodeId": "140553032563200"}]}}, "140553032562752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140553032563200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140553032563648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032564096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032679488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032679936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032680384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032680832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032681280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140552949212752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552949212752": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552949211744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032681728"}, {"nodeId": "140553032682176"}, {"nodeId": "140553032682624"}]}}, "140553032681728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140552949212976"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552949212976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552982829360"}}}, "140552982829360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140553032682176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140552949213088"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552949213088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552999686928"}}}, "140552999686928": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140553057844768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949212864"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552889744096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552889876992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032693824"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032694272"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032694720"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032695168"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032794176"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032794624"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032795072"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032795520"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032795968"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032796416"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032796864"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032797312"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032797760"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032798208"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032798656"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032799104"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032799552"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552949212864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032691136"}, {"nodeId": "140553032691584"}]}}, "140553032691136": {"type": "Function", "content": {"typeVars": [".0.140553032691136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949213872"}, {"nodeId": "140552949213984"}], "returnType": {"nodeId": ".0.140553032691136"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140552949213872": {"type": "Union", "content": {"items": [{"nodeId": "140553057844768"}, {"nodeId": "140552965473024"}, {"nodeId": "140552965472672"}, {"nodeId": "140552965485696"}]}}, "140552965473024": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940430816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__complex__"]}}, "140552940430816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965473024"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552949213984": {"type": "Union", "content": {"items": [{"nodeId": "140553057844768"}, {"nodeId": "140552965472672"}, {"nodeId": "140552965485696"}]}}, ".0.140553032691136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844768"}, "def": "140553032691136", "variance": "INVARIANT"}}, "140553032691584": {"type": "Function", "content": {"typeVars": [".0.140553032691584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552949214096"}], "returnType": {"nodeId": ".0.140553032691584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140552949214096": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965473024"}, {"nodeId": "140552965472672"}, {"nodeId": "140552965485696"}, {"nodeId": "140553057844768"}]}}, ".0.140553032691584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057844768"}, "def": "140553032691584", "variance": "INVARIANT"}}, "140552889744096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552889876992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032693824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032694272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032694720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032695168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032794176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140553032794624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032795072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032795520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032795968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032796416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140553032796864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032797312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032797760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032798208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032798656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032799104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032799552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844768"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032682624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140553032683072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140552949213424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949213424": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}]}}, "140553032683520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032683968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032684416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949212416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032684864"}, {"nodeId": "140553032685312"}]}}, "140553032684864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553032685312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553032685760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032686208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032686656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032687104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032687552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032688000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032688448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032688896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032689344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032689792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032690240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032690688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844416"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032453696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032454144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552949210064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552949210064": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140553032454592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032455040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032455488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032456384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032456832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032457280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552949210288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552949210288": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552949207712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032457728"}, {"nodeId": "140553032458176"}, {"nodeId": "140553032458624"}, {"nodeId": "140553032459072"}, {"nodeId": "140553032459520"}, {"nodeId": "140553032459968"}]}}, "140553032457728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032458176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553032458624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140552949210960"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552949210960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552982829360"}}}, "140553032459072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140552949211072"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552949211072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552999686928"}}}, "140553032459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140553032459968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553032460416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552949211296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552949211296": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553032460864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032461312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032461760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032462208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032462656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032463104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032463552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032464000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032464448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032464896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032465344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032465792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032548416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032548864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032549312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032549760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032550208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553032550656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552949211632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949211632": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}]}}, "140553032551104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032551552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032552000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032552448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032552896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032553344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032553792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032554240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032554688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553032555136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032555584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028672576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": ".1.140552987167552"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553028673024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": ".1.140552987167552"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028673472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552965485696"}, {"nodeId": ".1.140552987167552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553028673920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": ".1.140552987167552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944316848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028674368"}, {"nodeId": "140553028674816"}]}}, "140553028674368": {"type": "Function", "content": {"typeVars": [".-1.140553028674368"], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".-1.140553028674368"}]}, {"nodeId": "N"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140553028674368": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140552978553024"}, "def": "140553028674368", "variance": "INVARIANT"}}, "140552978553024": {"type": "Union", "content": {"items": [{"nodeId": "140552986681312", "args": [{"nodeId": "A"}]}, {"nodeId": "140552986681664", "args": [{"nodeId": "A"}]}]}}, "140552986681312": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019798496"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140552986681312"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__lt__"]}}, ".1.140552986681312": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986681312", "variance": "CONTRAVARIANT"}}, "140553019798496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986681312", "args": [{"nodeId": ".1.140552986681312"}]}, {"nodeId": ".1.140552986681312"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986681664": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019798944"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140552986681664"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__gt__"]}}, ".1.140552986681664": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986681664", "variance": "CONTRAVARIANT"}}, "140553019798944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986681664", "args": [{"nodeId": ".1.140552986681664"}]}, {"nodeId": ".1.140552986681664"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028674816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552949283104"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140552949283104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140552987167552"}], "returnType": {"nodeId": "140552944318416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944318416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552912"}}}, "140552978552912": {"type": "Union", "content": {"items": [{"nodeId": "140552986681312", "args": [{"nodeId": "A"}]}, {"nodeId": "140552986681664", "args": [{"nodeId": "A"}]}]}}, "140553028675264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028675712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944317968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028676160"}, {"nodeId": "140553028676608"}]}}, "140553028676160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".1.140552987167552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028676608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944318080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028677056"}, {"nodeId": "140553028677504"}]}}, "140553028677056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552965485696"}, {"nodeId": ".1.140552987167552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553028677504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987166848"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553028677952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552944318640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944318640": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552987166848"}]}}, "140552944318304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028678400"}, {"nodeId": "140553028678848"}]}}, "140553028678400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028678848": {"type": "Function", "content": {"typeVars": [".-1.140553028678848"], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987167552", "args": [{"nodeId": ".-1.140553028678848"}]}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552944318864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553028678848": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028678848", "variance": "INVARIANT"}}, "140552944318864": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553028678848"}, {"nodeId": ".1.140552987167552"}]}}, "140553028679296": {"type": "Function", "content": {"typeVars": [".0.140553028679296"], "argTypes": [{"nodeId": ".0.140553028679296"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": ".0.140553028679296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028679296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "def": "140553028679296", "variance": "INVARIANT"}}, "140553028679744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028680192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028680640": {"type": "Function", "content": {"typeVars": [".0.140553028680640"], "argTypes": [{"nodeId": ".0.140553028680640"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".0.140553028680640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028680640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "def": "140553028680640", "variance": "INVARIANT"}}, "140553028681088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028845632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028846080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028846528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028846976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028847424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028847872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140553028851456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028851904": {"type": "Function", "content": {"typeVars": [".0.140553028851904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553028851904"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140553028851904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "def": "140553028851904", "variance": "INVARIANT"}}, "140553028852352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028852800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140552965478304", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965478304": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552898432128"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552965478304"}, {"nodeId": ".2.140552965478304"}], "bases": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552965478304"}]}], "isAbstract": false}}, ".1.140552965478304": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965478304", "variance": "COVARIANT"}}, ".2.140552965478304": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965478304", "variance": "COVARIANT"}}, "140552898432128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965478304", "args": [{"nodeId": ".1.140552965478304"}, {"nodeId": ".2.140552965478304"}]}], "returnType": {"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965478304"}, {"nodeId": ".2.140552965478304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028853248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140552965478656", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965478656": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552898349760"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552965478656"}, {"nodeId": ".2.140552965478656"}], "bases": [{"nodeId": "140552965476192", "args": [{"nodeId": ".2.140552965478656"}]}], "isAbstract": false}}, ".1.140552965478656": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965478656", "variance": "COVARIANT"}}, ".2.140552965478656": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965478656", "variance": "COVARIANT"}}, "140552898349760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965478656", "args": [{"nodeId": ".1.140552965478656"}, {"nodeId": ".2.140552965478656"}]}], "returnType": {"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965478656"}, {"nodeId": ".2.140552965478656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028853696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140552965479008", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965479008": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552898351104"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552965479008"}, {"nodeId": ".2.140552965479008"}], "bases": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552965479008"}, {"nodeId": ".2.140552965479008"}]}], "isAbstract": false}}, ".1.140552965479008": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965479008", "variance": "COVARIANT"}}, ".2.140552965479008": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965479008", "variance": "COVARIANT"}}, "140552898351104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479008", "args": [{"nodeId": ".1.140552965479008"}, {"nodeId": ".2.140552965479008"}]}], "returnType": {"nodeId": "140552965735168", "args": [{"nodeId": ".1.140552965479008"}, {"nodeId": ".2.140552965479008"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944318976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028854144"}, {"nodeId": "140553028854592"}]}}, "140553028854144": {"type": "Function", "content": {"typeVars": [".-1.140553028854144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553028854144"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": ".-1.140553028854144"}, {"nodeId": "140552944320320"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140553028854144": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028854144", "variance": "INVARIANT"}}, "140552944320320": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553028854592": {"type": "Function", "content": {"typeVars": [".-1.140553028854592", ".-2.140553028854592"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553028854592"}]}, {"nodeId": ".-2.140553028854592"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": ".-1.140553028854592"}, {"nodeId": ".-2.140553028854592"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140553028854592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028854592", "variance": "INVARIANT"}}, ".-2.140553028854592": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028854592", "variance": "INVARIANT"}}, "140552944319760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028855040"}, {"nodeId": "140553028855488"}]}}, "140553028855040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}], "returnType": {"nodeId": "140552944631984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944631984": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": "N"}]}}, "140553028855488": {"type": "Function", "content": {"typeVars": [".-1.140553028855488"], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}, {"nodeId": "140552944632096"}], "returnType": {"nodeId": "140552944632208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552944632096": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": ".-1.140553028855488"}]}}, ".-1.140553028855488": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028855488", "variance": "INVARIANT"}}, "140552944632208": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": ".-1.140553028855488"}]}}, "140552944320096": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028855936"}, {"nodeId": "140553028856384"}]}}, "140553028855936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}], "returnType": {"nodeId": ".2.140552987167904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553028856384": {"type": "Function", "content": {"typeVars": [".-1.140553028856384"], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}, {"nodeId": "140552944632432"}], "returnType": {"nodeId": "140552944632544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552944632432": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": ".-1.140553028856384"}]}}, ".-1.140553028856384": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028856384", "variance": "INVARIANT"}}, "140552944632544": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": ".-1.140553028856384"}]}}, "140553028856832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028857280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}], "returnType": {"nodeId": ".2.140552987167904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028857728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553028858176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": ".1.140552987167904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553028858624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552987167904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028859072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552987167904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553028859520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140553028859968": {"type": "Function", "content": {"typeVars": [".-1.140553028859968", ".-2.140553028859968"], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553028859968"}, {"nodeId": ".-2.140553028859968"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552944632768"}, {"nodeId": "140552944632880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553028859968": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028859968", "variance": "INVARIANT"}}, ".-2.140553028859968": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028859968", "variance": "INVARIANT"}}, "140552944632768": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".-1.140553028859968"}]}}, "140552944632880": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": ".-2.140553028859968"}]}}, "140553028860416": {"type": "Function", "content": {"typeVars": [".-1.140553028860416", ".-2.140553028860416"], "argTypes": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553028860416"}, {"nodeId": ".-2.140553028860416"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552944632992"}, {"nodeId": "140552944633104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553028860416": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028860416", "variance": "INVARIANT"}}, ".-2.140553028860416": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553028860416", "variance": "INVARIANT"}}, "140552944632992": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".-1.140553028860416"}]}}, "140552944633104": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552987167904"}, {"nodeId": ".-2.140553028860416"}]}}, "140552944631872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028860864"}, {"nodeId": "140553028861312"}]}}, "140553028860864": {"type": "Function", "content": {"typeVars": [".0.140553028860864"], "argTypes": [{"nodeId": ".0.140553028860864"}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}], "returnType": {"nodeId": ".0.140553028860864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028860864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "def": "140553028860864", "variance": "INVARIANT"}}, "140553028861312": {"type": "Function", "content": {"typeVars": [".0.140553028861312"], "argTypes": [{"nodeId": ".0.140553028861312"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552944633440"}]}], "returnType": {"nodeId": ".0.140553028861312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553028861312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}, "def": "140553028861312", "variance": "INVARIANT"}}, "140552944633440": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552987167904"}, {"nodeId": ".2.140552987167904"}]}}, "140553057842656": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940930880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940931328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015914144"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961921920"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015915488"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961925840"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961926288"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}], "bases": [{"nodeId": "140553057842304", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}], "isAbstract": true}}, ".1.140553057842656": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057842656", "variance": "INVARIANT"}}, ".2.140553057842656": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057842656", "variance": "INVARIANT"}}, "140552940930880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552940931328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".1.140553057842656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553015914144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961921920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015914592"}, {"nodeId": "140553015915040"}]}}, "140553015914592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".1.140553057842656"}], "returnType": {"nodeId": ".2.140553057842656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553015915040": {"type": "Function", "content": {"typeVars": [".-1.140553015915040"], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".1.140553057842656"}, {"nodeId": "140552961926400"}], "returnType": {"nodeId": "140552961926512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140552961926400": {"type": "Union", "content": {"items": [{"nodeId": ".2.140553057842656"}, {"nodeId": ".-1.140553015915040"}]}}, ".-1.140553015915040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015915040", "variance": "INVARIANT"}}, "140552961926512": {"type": "Union", "content": {"items": [{"nodeId": ".2.140553057842656"}, {"nodeId": ".-1.140553015915040"}]}}, "140553015915488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}], "returnType": {"nodeId": "140552961926736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961926736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}}, "140552961925840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015915936"}, {"nodeId": "140553015916384"}]}}, "140553015915936": {"type": "Function", "content": {"typeVars": [".-1.140553015915936"], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": "140552961926960"}]}, {"nodeId": ".1.140553057842656"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552961927072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552961926960": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553015915936"}, {"nodeId": "N"}]}}, ".-1.140553015915936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553015915936", "variance": "INVARIANT"}}, "140552961927072": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553015915936"}, {"nodeId": "N"}]}}, "140553015916384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}], "returnType": {"nodeId": ".2.140553057842656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552961926288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015916832"}, {"nodeId": "140553015917280"}, {"nodeId": "140553015917728"}]}}, "140553015916832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".2.140553057842656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553015917280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552961927408"}]}, {"nodeId": ".2.140553057842656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140552961927408": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}}, "140553015917728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140553057842656"}, {"nodeId": ".2.140553057842656"}]}, {"nodeId": ".2.140553057842656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140552948927280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553049638720"}]}}, "140553049638720": {"type": "Function", "content": {"typeVars": [".0.140553049638720"], "argTypes": [{"nodeId": ".0.140553049638720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553049638720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553049638720", "variance": "INVARIANT"}}, "140552894829440": {"type": "Function", "content": {"typeVars": [".0.140552894829440"], "argTypes": [{"nodeId": ".0.140552894829440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552894829440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552894829440", "variance": "INVARIANT"}}, "140553049639616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553049640064": {"type": "Function", "content": {"typeVars": [".0.140553049640064"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140553049640064"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140553049640064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553049640064", "variance": "INVARIANT"}}, "140553049640512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553049640960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553049641408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553049641856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553049642304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553049642752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553049643200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553049643648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553049644096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553049644544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553049644992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "140552949203456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949203456": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}]}}, "140553049645440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552949203680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552949203680": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}]}}, "140553049646784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553049647232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140552894826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140553032801344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987165440"}, "def": "140553032801344", "variance": "INVARIANT"}}, "140553032801792": {"type": "Function", "content": {"typeVars": [".0.140553032801792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552965487808"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140553032801792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140553032801792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552987165440"}, "def": "140553032801792", "variance": "INVARIANT"}}, "140553032802240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032802688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032803136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553032803584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552949214656"}, {"nodeId": "140552949214768"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140552949214656": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949214768": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032804032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140553032804480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949214880"}, {"nodeId": "140552949214992"}, {"nodeId": "140552949215104"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949214880": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}]}}, "140552949214992": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949215104": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032804928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140553032805824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552949215216"}, {"nodeId": "140552949215328"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949215216": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949215328": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032806272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140553032806720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987164736"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140552987164736": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032800448"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__getitem__"]}}, "140553032800448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987164736"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032807168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552949215440"}, {"nodeId": "140552949215552"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949215440": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949215552": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032807616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032808064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032808512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032808960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032809408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032809856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032958016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032958464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032958912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032959360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032959808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032960256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032960704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553032961152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553032961600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032962048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949215664"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552949215664": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553032962496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552949215888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552949215888": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140553032962944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553032963392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553032963840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553032964288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552949216000"}, {"nodeId": "140552949216112"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949216000": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949216112": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032964736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552949216224"}, {"nodeId": "140552949216336"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949216224": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949216336": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032965184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553032965632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552949216560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552949216560": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140553032966080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949216672"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552949216672": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553032966528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949216784"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552949216784": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553032966976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949216896"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552949216896": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553032967424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140553032967872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949217008"}, {"nodeId": "140552949217120"}, {"nodeId": "140552949217232"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552949217008": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}]}}, "140552949217120": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140552949217232": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "N"}]}}, "140553032968320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949217344"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552949217344": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553032968768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032969216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032969664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165088"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552987165088": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553032800896"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__getitem__"]}}, "140553032800896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165088"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552949214320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552949214320": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553032970112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553032970560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552949213760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553032971008"}, {"nodeId": "140553032971456"}, {"nodeId": "140553032971904"}]}}, "140553032971008": {"type": "Function", "content": {"typeVars": [".-1.140553032971008"], "argTypes": [{"nodeId": "140552949217680"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": ".-1.140553032971008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552949217680": {"type": "Union", "content": {"items": [{"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": ".-1.140553032971008"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140553032971008"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552949217568"}, {"nodeId": ".-1.140553032971008"}]}]}}, ".-1.140553032971008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553032971008", "variance": "INVARIANT"}}, "140552949217568": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140553032971456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032971904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140552949217792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552949217792": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553032972352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032972800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032973248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553032973696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033089088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552949217904"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552949217904": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552987166848"}]}}, "140553033089536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033089984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553033090432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033090880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553033091328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033091776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033092224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033092672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033093120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553033093568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552949218240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552949218240": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961438848": {"type": "Concrete", "content": {"module": "boruvka", "simpleName": "Graph", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553053497472"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weight", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553053501728"}, "name": "add_edge"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553053502176"}, "name": "find_component"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553053502624"}, "name": "set_component"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "component_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553053503072"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553049637152"}, "name": "boruvka"}}, {"kind": "Variable", "content": {"name": "m_num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m_edges", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m_component", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553053497472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438848"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "num_of_nodes"]}}, "140553053501728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438848"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "u_node", "v_node", "weight"]}}, "140553053502176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438848"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}}, "140553053502624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438848"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}}, "140553053503072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438848"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "component_size", "u_node", "v_node"]}}, "140553049637152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057833504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890349408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965734816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965986944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890350080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552890350752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028669440"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552890349408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833504"}], "returnType": {"nodeId": "140552944317408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944317408": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140552965488160"}]}, {"nodeId": "N"}]}}, "140552965488160": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041461984"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553041461984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965488160"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552965986944": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140552890350080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833504"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552890350752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833504"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553028669440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833504"}, {"nodeId": "140553057832448"}, {"nodeId": "140552944317744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552944317744": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140553057843712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552949206256"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552949206256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553045026048"}, {"nodeId": "140553045026496"}, {"nodeId": "140553045026944"}]}}, "140553045026048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843712"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553045026496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843712"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553045026944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965479712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944633216"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553028992384"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029107776"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029108224"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029108672"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029109120"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029109568"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029110016"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029110464"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029110912"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029111360"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029111808"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029112256"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029112704"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029113152"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029113600"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029114048"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029114496"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029114944"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029115392"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029115840"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965479712"}], "bases": [{"nodeId": "140553057841600", "args": [{"nodeId": ".1.140552965479712"}]}], "isAbstract": false}}, ".1.140552965479712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965479712", "variance": "COVARIANT"}}, "140552944633216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553028991488"}, {"nodeId": "140553028991936"}]}}, "140553028991488": {"type": "Function", "content": {"typeVars": [".0.140553028991488"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140553028991488"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140553028991488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "def": "140553028991488", "variance": "INVARIANT"}}, "140553028991936": {"type": "Function", "content": {"typeVars": [".0.140553028991936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": ".0.140553028991936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140553028991936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "def": "140553028991936", "variance": "INVARIANT"}}, "140553028992384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553029107776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553029108224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140553029108672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029109120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029109568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029110016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029110464": {"type": "Function", "content": {"typeVars": [".-1.140553029110464"], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553029110464"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": "140552944635344"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140553029110464": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553029110464", "variance": "INVARIANT"}}, "140552944635344": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479712"}, {"nodeId": ".-1.140553029110464"}]}}, "140553029110912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553029111360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029111808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553029112256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029112704": {"type": "Function", "content": {"typeVars": [".-1.140553029112704"], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".-1.140553029112704"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": "140552944635456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553029112704": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553029112704", "variance": "INVARIANT"}}, "140552944635456": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479712"}, {"nodeId": ".-1.140553029112704"}]}}, "140553029113152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".1.140552965479712"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029113600": {"type": "Function", "content": {"typeVars": [".-1.140553029113600"], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": ".-1.140553029113600"}]}], "returnType": {"nodeId": "140552965479712", "args": [{"nodeId": "140552944635568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553029113600": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553029113600", "variance": "INVARIANT"}}, "140552944635568": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965479712"}, {"nodeId": ".-1.140553029113600"}]}}, "140553029114048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029114496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029114944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029115392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965479712", "args": [{"nodeId": ".1.140552965479712"}]}, {"nodeId": "140553057841600", "args": [{"nodeId": "140553057832448"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029115840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552965480064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029116288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029116736"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029117184"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029117632"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965480064"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": "140552965589360"}]}], "isAbstract": false}}, ".1.140552965480064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965480064", "variance": "INVARIANT"}}, "140553029116288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480064", "args": [{"nodeId": ".1.140552965480064"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965480064"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140553029116736": {"type": "Function", "content": {"typeVars": [".0.140553029116736"], "argTypes": [{"nodeId": ".0.140553029116736"}], "returnType": {"nodeId": ".0.140553029116736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553029116736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965480064", "args": [{"nodeId": ".1.140552965480064"}]}, "def": "140553029116736", "variance": "INVARIANT"}}, "140553029117184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480064", "args": [{"nodeId": ".1.140552965480064"}]}], "returnType": {"nodeId": "140552944636016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944636016": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": ".1.140552965480064"}]}}, "140553029117632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552965589360": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": ".1.140552965480064"}]}}, "140552987168256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552885579424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552885579872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552885580096"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944634560"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029120320"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029120768"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029121216"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029121664"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029122112"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944635792"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553029123456"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552885579424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552885579872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552885580096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552944634560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553029119424"}, {"nodeId": "140553029119872"}]}}, "140553029119424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029119872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553029120320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029120768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553029121216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553029121664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029122112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944635792": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553029122560"}, {"nodeId": "140553029123008"}]}}, "140553029122560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029123008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140552987168256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553029123456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168256"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552987168608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965995680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965989744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965996352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024012352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024012800"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024013248"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024013696"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024014144"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024014592"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024015040"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552965995680": {"type": "Union", "content": {"items": [{"nodeId": "140552986416896"}, {"nodeId": "N"}]}}, "140552986416896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965989744": {"type": "Union", "content": {"items": [{"nodeId": "140552973625920"}, {"nodeId": "N"}]}}, "140552973625920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965996352": {"type": "Union", "content": {"items": [{"nodeId": "140552973626592"}, {"nodeId": "N"}]}}, "140552973626592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553024012352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "140552944636464"}, {"nodeId": "140552944636800"}, {"nodeId": "140552944637136"}, {"nodeId": "140552944637360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140552944636464": {"type": "Union", "content": {"items": [{"nodeId": "140552949284000"}, {"nodeId": "N"}]}}, "140552949284000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944636800": {"type": "Union", "content": {"items": [{"nodeId": "140552949284224"}, {"nodeId": "N"}]}}, "140552949284224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944637136": {"type": "Union", "content": {"items": [{"nodeId": "140552949284448"}, {"nodeId": "N"}]}}, "140552949284448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944637360": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553024012800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "140552944779328"}], "returnType": {"nodeId": "140552987168608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944779328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553024013248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "140552944779552"}], "returnType": {"nodeId": "140552987168608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944779552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553024013696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "140552944779776"}], "returnType": {"nodeId": "140552987168608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552944779776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553024014144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "A"}, {"nodeId": "140552944638144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552944638144": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140553024014592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553024015040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987168608"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552987168960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552961241536": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024019072"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140552961241536"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__fspath__"]}}, ".1.140552961241536": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552961241536", "variance": "COVARIANT"}}, "140553024019072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961241536", "args": [{"nodeId": ".1.140552961241536"}]}], "returnType": {"nodeId": ".1.140552961241536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987169312": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024019968"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140552987169312"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__anext__"]}}, ".1.140552987169312": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140553057838432", "args": [{"nodeId": "A"}]}, "def": "140552987169312", "variance": "COVARIANT"}}, "140553057838432": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940603648"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057838432"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__await__"]}}, ".1.140553057838432": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838432", "variance": "COVARIANT"}}, "140552940603648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838432", "args": [{"nodeId": ".1.140553057838432"}]}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140553057838432"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057838080": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020728352"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940517888"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961741248"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020730144"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020730592"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940601632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940602080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940602752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940602976"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140553057838080"}]}], "isAbstract": true}}, ".1.140553057838080": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838080", "variance": "COVARIANT"}}, ".2.140553057838080": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838080", "variance": "CONTRAVARIANT"}}, ".3.140553057838080": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838080", "variance": "COVARIANT"}}, "140553020728352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": ".1.140553057838080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940517888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}, {"nodeId": ".2.140553057838080"}], "returnType": {"nodeId": ".1.140553057838080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961741248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553020729248"}, {"nodeId": "140553020729696"}]}}, "140553020729248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}, {"nodeId": "0"}, {"nodeId": "140552961918000"}, {"nodeId": "140552961918112"}], "returnType": {"nodeId": ".1.140553057838080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552961918000": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}]}}, "140552961918112": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553020729696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}, {"nodeId": "140552987172128"}, {"nodeId": "N"}, {"nodeId": "140552961918224"}], "returnType": {"nodeId": ".1.140553057838080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552961918224": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553020730144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020730592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552940601632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": "140552965734816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940602080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": "140552965740448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940602752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940602976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140553057838080"}, {"nodeId": ".2.140553057838080"}, {"nodeId": ".3.140553057838080"}]}], "returnType": {"nodeId": "140552961918672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961918672": {"type": "Union", "content": {"items": [{"nodeId": "140553057838080", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140553024019968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987169312", "args": [{"nodeId": ".1.140552987169312"}]}], "returnType": {"nodeId": ".1.140552987169312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965480416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944639488"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024162048"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024162496"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140552965480416"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965480416"}]}], "isAbstract": false}}, ".1.140552965480416": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965480416", "variance": "INVARIANT"}}, "140552944639488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553024160704"}, {"nodeId": "140553024161152"}, {"nodeId": "140553024161600"}]}}, "140553024160704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480416", "args": [{"nodeId": ".1.140552965480416"}]}, {"nodeId": "N"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552944642624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552944642624": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965480416"}, {"nodeId": "N"}]}}, "140553024161152": {"type": "Function", "content": {"typeVars": [".-1.140553024161152"], "argTypes": [{"nodeId": "140552965480416", "args": [{"nodeId": ".1.140552965480416"}]}, {"nodeId": "140552944780000"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024161152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552944780000": {"type": "Function", "content": {"typeVars": [".-1.140552944780000"], "argTypes": [{"nodeId": ".-1.140552944780000"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140552944780000": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944780000", "variance": "INVARIANT"}}, ".-1.140553024161152": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024161152", "variance": "INVARIANT"}}, "140553024161600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480416", "args": [{"nodeId": ".1.140552965480416"}]}, {"nodeId": "140552944780224"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965480416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552944780224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140552965480416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553024162048": {"type": "Function", "content": {"typeVars": [".0.140553024162048"], "argTypes": [{"nodeId": ".0.140553024162048"}], "returnType": {"nodeId": ".0.140553024162048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553024162048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965480416", "args": [{"nodeId": ".1.140552965480416"}]}, "def": "140553024162048", "variance": "INVARIANT"}}, "140553024162496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480416", "args": [{"nodeId": ".1.140552965480416"}]}], "returnType": {"nodeId": ".1.140552965480416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987169664": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024169216"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140552987169664"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__getitem__"]}}, ".1.140552987169664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987169664", "variance": "COVARIANT"}}, "140553024169216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987169664", "args": [{"nodeId": ".1.140552987169664"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552987169664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965480768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944642960"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024356864"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024357312"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140552965480768"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965480768"}]}], "isAbstract": false}}, ".1.140552965480768": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965480768", "variance": "INVARIANT"}}, "140552944642960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553024173696"}, {"nodeId": "140553024174144"}, {"nodeId": "140553024174592"}, {"nodeId": "140553024175040"}, {"nodeId": "140553024175488"}, {"nodeId": "140553024356416"}]}}, "140553024173696": {"type": "Function", "content": {"typeVars": [".-1.140553024173696"], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, {"nodeId": "140552944782464"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024173696"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552944782464": {"type": "Function", "content": {"typeVars": [".-1.140552944782464"], "argTypes": [{"nodeId": ".-1.140552944782464"}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140552944782464": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782464", "variance": "INVARIANT"}}, ".-1.140553024173696": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024173696", "variance": "INVARIANT"}}, "140553024174144": {"type": "Function", "content": {"typeVars": [".-1.140553024174144", ".-2.140553024174144"], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, {"nodeId": "140552944781792"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024174144"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024174144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140552944781792": {"type": "Function", "content": {"typeVars": [".-1.140552944781792", ".-2.140552944781792"], "argTypes": [{"nodeId": ".-1.140552944781792"}, {"nodeId": ".-2.140552944781792"}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140552944781792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944781792", "variance": "INVARIANT"}}, ".-2.140552944781792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944781792", "variance": "INVARIANT"}}, ".-1.140553024174144": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024174144", "variance": "INVARIANT"}}, ".-2.140553024174144": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024174144", "variance": "INVARIANT"}}, "140553024174592": {"type": "Function", "content": {"typeVars": [".-1.140553024174592", ".-2.140553024174592", ".-3.140553024174592"], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, {"nodeId": "140552944782016"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024174592"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024174592"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-3.140553024174592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140552944782016": {"type": "Function", "content": {"typeVars": [".-1.140552944782016", ".-2.140552944782016", ".-3.140552944782016"], "argTypes": [{"nodeId": ".-1.140552944782016"}, {"nodeId": ".-2.140552944782016"}, {"nodeId": ".-3.140552944782016"}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140552944782016": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782016", "variance": "INVARIANT"}}, ".-2.140552944782016": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782016", "variance": "INVARIANT"}}, ".-3.140552944782016": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782016", "variance": "INVARIANT"}}, ".-1.140553024174592": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024174592", "variance": "INVARIANT"}}, ".-2.140553024174592": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024174592", "variance": "INVARIANT"}}, ".-3.140553024174592": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024174592", "variance": "INVARIANT"}}, "140553024175040": {"type": "Function", "content": {"typeVars": [".-1.140553024175040", ".-2.140553024175040", ".-3.140553024175040", ".-4.140553024175040"], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, {"nodeId": "140552944782688"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024175040"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024175040"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-3.140553024175040"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-4.140553024175040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140552944782688": {"type": "Function", "content": {"typeVars": [".-1.140552944782688", ".-2.140552944782688", ".-3.140552944782688", ".-4.140552944782688"], "argTypes": [{"nodeId": ".-1.140552944782688"}, {"nodeId": ".-2.140552944782688"}, {"nodeId": ".-3.140552944782688"}, {"nodeId": ".-4.140552944782688"}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140552944782688": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782688", "variance": "INVARIANT"}}, ".-2.140552944782688": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782688", "variance": "INVARIANT"}}, ".-3.140552944782688": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782688", "variance": "INVARIANT"}}, ".-4.140552944782688": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782688", "variance": "INVARIANT"}}, ".-1.140553024175040": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175040", "variance": "INVARIANT"}}, ".-2.140553024175040": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175040", "variance": "INVARIANT"}}, ".-3.140553024175040": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175040", "variance": "INVARIANT"}}, ".-4.140553024175040": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175040", "variance": "INVARIANT"}}, "140553024175488": {"type": "Function", "content": {"typeVars": [".-1.140553024175488", ".-2.140553024175488", ".-3.140553024175488", ".-4.140553024175488", ".-5.140553024175488"], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, {"nodeId": "140552944782912"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024175488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024175488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-3.140553024175488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-4.140553024175488"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-5.140553024175488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140552944782912": {"type": "Function", "content": {"typeVars": [".-1.140552944782912", ".-2.140552944782912", ".-3.140552944782912", ".-4.140552944782912", ".-5.140552944782912"], "argTypes": [{"nodeId": ".-1.140552944782912"}, {"nodeId": ".-2.140552944782912"}, {"nodeId": ".-3.140552944782912"}, {"nodeId": ".-4.140552944782912"}, {"nodeId": ".-5.140552944782912"}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140552944782912": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782912", "variance": "INVARIANT"}}, ".-2.140552944782912": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782912", "variance": "INVARIANT"}}, ".-3.140552944782912": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782912", "variance": "INVARIANT"}}, ".-4.140552944782912": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782912", "variance": "INVARIANT"}}, ".-5.140552944782912": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552944782912", "variance": "INVARIANT"}}, ".-1.140553024175488": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175488", "variance": "INVARIANT"}}, ".-2.140553024175488": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175488", "variance": "INVARIANT"}}, ".-3.140553024175488": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175488", "variance": "INVARIANT"}}, ".-4.140553024175488": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175488", "variance": "INVARIANT"}}, ".-5.140553024175488": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024175488", "variance": "INVARIANT"}}, "140553024356416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, {"nodeId": "140552944783136"}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140552944783136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140553024356864": {"type": "Function", "content": {"typeVars": [".0.140553024356864"], "argTypes": [{"nodeId": ".0.140553024356864"}], "returnType": {"nodeId": ".0.140553024356864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553024356864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}, "def": "140553024356864", "variance": "INVARIANT"}}, "140553024357312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965480768", "args": [{"nodeId": ".1.140552965480768"}]}], "returnType": {"nodeId": ".1.140552965480768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961241888": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024368064"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140552961241888"}], "bases": [{"nodeId": "140552982708288", "args": [{"nodeId": ".1.140552961241888"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140552961241888": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552961241888", "variance": "CONTRAVARIANT"}}, "140553024368064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961241888", "args": [{"nodeId": ".1.140552961241888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982708288": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050071648"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140552982708288"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["write"]}}, ".1.140552982708288": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982708288", "variance": "CONTRAVARIANT"}}, "140553050071648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982708288", "args": [{"nodeId": ".1.140552982708288"}]}, {"nodeId": ".1.140552982708288"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552987170016": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024369408"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140552987170016"}, {"nodeId": ".2.140552987170016"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__pow__"]}}, ".1.140552987170016": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170016", "variance": "CONTRAVARIANT"}}, ".2.140552987170016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170016", "variance": "COVARIANT"}}, "140553024369408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987170016", "args": [{"nodeId": ".1.140552987170016"}, {"nodeId": ".2.140552987170016"}]}, {"nodeId": ".1.140552987170016"}], "returnType": {"nodeId": ".2.140552987170016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552987170368": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024369856"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140552987170368"}, {"nodeId": ".2.140552987170368"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__pow__"]}}, ".1.140552987170368": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170368", "variance": "CONTRAVARIANT"}}, ".2.140552987170368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170368", "variance": "COVARIANT"}}, "140553024369856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987170368", "args": [{"nodeId": ".1.140552987170368"}, {"nodeId": ".2.140552987170368"}]}, {"nodeId": ".1.140552987170368"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140552987170368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552987170720": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024370304"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140552987170720"}, {"nodeId": ".2.140552987170720"}, {"nodeId": ".3.140552987170720"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__pow__"]}}, ".1.140552987170720": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170720", "variance": "CONTRAVARIANT"}}, ".2.140552987170720": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170720", "variance": "CONTRAVARIANT"}}, ".3.140552987170720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987170720", "variance": "COVARIANT"}}, "140553024370304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987170720", "args": [{"nodeId": ".1.140552987170720"}, {"nodeId": ".2.140552987170720"}, {"nodeId": ".3.140552987170720"}]}, {"nodeId": ".1.140552987170720"}, {"nodeId": ".2.140552987170720"}], "returnType": {"nodeId": ".3.140552987170720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552965481120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944916672"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024533248"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024533696"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024534144"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140552965481120"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965481120"}]}], "isAbstract": false}}, ".1.140552965481120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965481120", "variance": "INVARIANT"}}, "140552944916672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553024532352"}, {"nodeId": "140553024532800"}]}}, "140553024532352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481120", "args": [{"nodeId": ".1.140552965481120"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".1.140552965481120"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553024532800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481120", "args": [{"nodeId": ".1.140552965481120"}]}, {"nodeId": "140552986685888", "args": [{"nodeId": ".1.140552965481120"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552986685888": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050065376"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050065824"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140552986685888"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140552986685888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986685888", "variance": "COVARIANT"}}, "140553050065376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986685888", "args": [{"nodeId": ".1.140552986685888"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553050065824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986685888", "args": [{"nodeId": ".1.140552986685888"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552986685888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553024533248": {"type": "Function", "content": {"typeVars": [".0.140553024533248"], "argTypes": [{"nodeId": ".0.140553024533248"}], "returnType": {"nodeId": ".0.140553024533248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553024533248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965481120", "args": [{"nodeId": ".1.140552965481120"}]}, "def": "140553024533248", "variance": "INVARIANT"}}, "140553024533696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481120", "args": [{"nodeId": ".1.140552965481120"}]}], "returnType": {"nodeId": ".1.140552965481120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553024534144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481120", "args": [{"nodeId": ".1.140552965481120"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987171072": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024535040"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140552987171072"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__round__"]}}, ".1.140552987171072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987171072", "variance": "COVARIANT"}}, "140553024535040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987171072", "args": [{"nodeId": ".1.140552987171072"}]}], "returnType": {"nodeId": ".1.140552987171072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987171424": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024535488"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140552987171424"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__round__"]}}, ".1.140552987171424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552987171424", "variance": "COVARIANT"}}, "140553024535488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987171424", "args": [{"nodeId": ".1.140552987171424"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552987171424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961242240": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140552986683072", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140552986683424", "args": [{"nodeId": "140553057844064"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140552986683072": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019800288"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140552986683072"}, {"nodeId": ".2.140552986683072"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__add__"]}}, ".1.140552986683072": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986683072", "variance": "CONTRAVARIANT"}}, ".2.140552986683072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986683072", "variance": "COVARIANT"}}, "140553019800288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986683072", "args": [{"nodeId": ".1.140552986683072"}, {"nodeId": ".2.140552986683072"}]}, {"nodeId": ".1.140552986683072"}], "returnType": {"nodeId": ".2.140552986683072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986683424": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019800736"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140552986683424"}, {"nodeId": ".2.140552986683424"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__radd__"]}}, ".1.140552986683424": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986683424", "variance": "CONTRAVARIANT"}}, ".2.140552986683424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986683424", "variance": "COVARIANT"}}, "140553019800736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986683424", "args": [{"nodeId": ".1.140552986683424"}, {"nodeId": ".2.140552986683424"}]}, {"nodeId": ".1.140552986683424"}], "returnType": {"nodeId": ".2.140552986683424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965481472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552944920144"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024727168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024727616"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140552965481472"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965481472"}]}], "isAbstract": false}}, ".1.140552965481472": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965481472", "variance": "COVARIANT"}}, "140552944920144": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553024721792"}, {"nodeId": "140553024722240"}, {"nodeId": "140553024722688"}, {"nodeId": "140553024723136"}, {"nodeId": "140553024723584"}, {"nodeId": "140553024724032"}]}}, "140553024721792": {"type": "Function", "content": {"typeVars": [".-1.140553024721792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024721792"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552965481472", "args": [{"nodeId": "140552944921376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140553024721792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024721792", "variance": "INVARIANT"}}, "140552944921376": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140553024721792"}]}}, "140553024722240": {"type": "Function", "content": {"typeVars": [".-1.140553024722240", ".-2.140553024722240"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024722240"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024722240"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552965481472", "args": [{"nodeId": "140552944921600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140553024722240": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024722240", "variance": "INVARIANT"}}, ".-2.140553024722240": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024722240", "variance": "INVARIANT"}}, "140552944921600": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140553024722240"}, {"nodeId": ".-2.140553024722240"}]}}, "140553024722688": {"type": "Function", "content": {"typeVars": [".-1.140553024722688", ".-2.140553024722688", ".-3.140553024722688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024722688"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024722688"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-3.140553024722688"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552965481472", "args": [{"nodeId": "140552944921824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140553024722688": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024722688", "variance": "INVARIANT"}}, ".-2.140553024722688": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024722688", "variance": "INVARIANT"}}, ".-3.140553024722688": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024722688", "variance": "INVARIANT"}}, "140552944921824": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140553024722688"}, {"nodeId": ".-2.140553024722688"}, {"nodeId": ".-3.140553024722688"}]}}, "140553024723136": {"type": "Function", "content": {"typeVars": [".-1.140553024723136", ".-2.140553024723136", ".-3.140553024723136", ".-4.140553024723136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024723136"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024723136"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-3.140553024723136"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-4.140553024723136"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552965481472", "args": [{"nodeId": "140552944922048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140553024723136": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723136", "variance": "INVARIANT"}}, ".-2.140553024723136": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723136", "variance": "INVARIANT"}}, ".-3.140553024723136": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723136", "variance": "INVARIANT"}}, ".-4.140553024723136": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723136", "variance": "INVARIANT"}}, "140552944922048": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140553024723136"}, {"nodeId": ".-2.140553024723136"}, {"nodeId": ".-3.140553024723136"}, {"nodeId": ".-4.140553024723136"}]}}, "140553024723584": {"type": "Function", "content": {"typeVars": [".-1.140553024723584", ".-2.140553024723584", ".-3.140553024723584", ".-4.140553024723584", ".-5.140553024723584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553024723584"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-2.140553024723584"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-3.140553024723584"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-4.140553024723584"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-5.140553024723584"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552965481472", "args": [{"nodeId": "140552944922272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140553024723584": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723584", "variance": "INVARIANT"}}, ".-2.140553024723584": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723584", "variance": "INVARIANT"}}, ".-3.140553024723584": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723584", "variance": "INVARIANT"}}, ".-4.140553024723584": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723584", "variance": "INVARIANT"}}, ".-5.140553024723584": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553024723584", "variance": "INVARIANT"}}, "140552944922272": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140553024723584"}, {"nodeId": ".-2.140553024723584"}, {"nodeId": ".-3.140553024723584"}, {"nodeId": ".-4.140553024723584"}, {"nodeId": ".-5.140553024723584"}]}}, "140553024724032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552965481472", "args": [{"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140553024727168": {"type": "Function", "content": {"typeVars": [".0.140553024727168"], "argTypes": [{"nodeId": ".0.140553024727168"}], "returnType": {"nodeId": ".0.140553024727168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553024727168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965481472", "args": [{"nodeId": ".1.140552965481472"}]}, "def": "140553024727168", "variance": "INVARIANT"}}, "140553024727616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481472", "args": [{"nodeId": ".1.140552965481472"}]}], "returnType": {"nodeId": ".1.140552965481472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987171776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552987172480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987172128"}], "isAbstract": false}}, "140552987172832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987172128"}], "isAbstract": false}}, "140552987173184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987069232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987172128"}], "isAbstract": false}}, "140552987069232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965595072"}}}, "140552965595072": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552987173536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987172128"}], "isAbstract": false}}, "140552987173888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987174240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987174592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987174944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987175296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024730752"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057832448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140553024730752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987175296"}, {"nodeId": "140553057832448"}, {"nodeId": "140552944924736"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140552944924736": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987175648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987176000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987176352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024731200"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553012207328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987066880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140553024731200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987176352"}, {"nodeId": "140553057832448"}, {"nodeId": "140552944924848"}, {"nodeId": "140552944924960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140552944924848": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552944924960": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553012207328": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987066880": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987176704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987177056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987177408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987177760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987178112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987178464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987178816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987077856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987069120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987071360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987069008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987081552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987071920"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987077856": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552987069120": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552987071360": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987069008": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987081552": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552987071920": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552987179168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987179520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987179872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552987180224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174592"}], "isAbstract": false}}, "140552987180576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174592"}], "isAbstract": false}}, "140552965292096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174592"}], "isAbstract": false}}, "140552965292448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987176352"}], "isAbstract": false}}, "140552965292800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987176704"}], "isAbstract": false}}, "140552965293152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987176704"}], "isAbstract": false}}, "140552965293504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987177408"}], "isAbstract": false}}, "140552965293856": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965294208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965294560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965294912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965294560"}], "isAbstract": false}}, "140552965295264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965294560"}], "isAbstract": false}}, "140552965295616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965294560"}], "isAbstract": false}}, "140552965295968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965294560"}], "isAbstract": false}}, "140552965296320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965296672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965297024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965297376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965297728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965298080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965298432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965298784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}], "isAbstract": false}}, "140552965299136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987178112"}], "isAbstract": false}}, "140552965299488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987178112"}], "isAbstract": false}}, "140552965299840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987178816"}], "isAbstract": false}}, "140552965300192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965299840"}], "isAbstract": false}}, "140552965300544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987179872"}], "isAbstract": false}}, "140552965300896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024731648"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552965300544"}], "isAbstract": false}}, "140553024731648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965300896"}, {"nodeId": "140552987165440"}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140552965301248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024732096"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552965300544"}], "isAbstract": false}}, "140553024732096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965301248"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140552965301600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553024732544"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552965300544"}], "isAbstract": false}}, "140553024732544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965301600"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140552965301952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552965302304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965302656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965303008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965303360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965303712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965304064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965304416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965304768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965305120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965305472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552965305824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965301952"}], "isAbstract": false}}, "140552982711104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898558464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019795808"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961610400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982838544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982838432"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552898558464": {"type": "Tuple", "content": {"items": []}}, "140553019795808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982711104"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140552961610400": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552982838544": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552982838432": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982711456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982711808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982712160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898792128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711808"}], "isAbstract": false}}, "140552898792128": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982712512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898793136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711456"}], "isAbstract": false}}, "140552898793136": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982723072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982712864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898794144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982712160"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711456"}], "isAbstract": false}}, "140552898794144": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982713920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982713216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898795488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711456"}], "isAbstract": false}}, "140552898795488": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982713568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898796384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711456"}], "isAbstract": false}}, "140552898796384": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982714272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898798960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961235200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961608048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898798960": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961235200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894191808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961235552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961235552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982833728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961235552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982833616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961610064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894191808": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961235552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894193040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961610176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894193040": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961610176": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982833728": {"type": "Union", "content": {"items": [{"nodeId": "140552961235552"}, {"nodeId": "N"}]}}, "140552982833616": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961610064": {"type": "Union", "content": {"items": [{"nodeId": "140552961235552"}, {"nodeId": "N"}]}}, "140552961608048": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982714624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898801536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961235200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961608944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898801536": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961608944": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982714976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898803888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961235904"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898803888": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961235904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894193936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982831936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894193936": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982831936": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982715328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898804896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898804896": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961609056": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982715680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898937008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898937008": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982716032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898938352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898938352": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982716384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898939472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961141472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898939472": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961609168": {"type": "Union", "content": {"items": [{"nodeId": "140552961137952"}, {"nodeId": "140552961136544"}, {"nodeId": "140552961137248"}]}}, "140552961137952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894020208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961139008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894020208": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961139008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552961136544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894014832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961139008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894014832": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961137248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894018304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961139008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894018304": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961141472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982716736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898940816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898940816": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961609280": {"type": "Union", "content": {"items": [{"nodeId": "140552961137952"}, {"nodeId": "140552961136544"}, {"nodeId": "140552961137248"}]}}, "140552961609392": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982717088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898942272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898942272": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982717440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898943616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898943616": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982717792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898944512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898944512": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982718144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898945632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898945632": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982718496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898946752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961236608"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898946752": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961236608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894195952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982832048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894195952": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982832048": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982718848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898947872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961236608"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898947872": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982719200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898948768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898948768": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961609504": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961609616": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982719552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898950224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961234848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898950224": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961234848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894189792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982834512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982834288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961234496"}], "isAbstract": false}}, "140552894189792": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982834512": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982834288": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961234496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982719904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898951568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609840"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898951568": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961609840": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982720256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552898952352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961236256"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552898952352": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961236256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894194944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982835184"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894194944": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982835184": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982720608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899101296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961609952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961236256"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552899101296": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961609952": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982720960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899101968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552899101968": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982721312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899102864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552899102864": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982721664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899103760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552899103760": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982722016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552982722368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552982722720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552982723424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899104880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961140416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899104880": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961140416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982723776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899106112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961141472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899106112": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982724128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899107008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961146400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899107008": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961146400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552961130560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899108016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961235200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899108016": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961130912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899109248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899109248": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961131264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899110144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982835744"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899110144": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982835744": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961131616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899110928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899110928": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961131968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899112048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961234144"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899112048": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961234144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894188784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894188784": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961132320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899113056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961234144"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899113056": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961132672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899114288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961234144"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899114288": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961133024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899115184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961234144"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899115184": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961133376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899115968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899115968": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961133728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552899116864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961608608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552899116864": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961608608": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961134080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894006096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894006096": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961134432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894007440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961230272"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894007440": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961230272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552961134784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894008560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961235904"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894008560": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961135136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894009680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982835520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894009680": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982835520": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961135488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894010352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894010352": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961135840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894012032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982837200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982834624"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894012032": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982837200": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982834624": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844768"}]}}, "140552961136192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894013600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961137952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894013600": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961136896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894016624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982834960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982835072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982834736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894016624": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982834960": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982835072": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552982834736": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961137600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894019200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961139008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894019200": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961138304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894021216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961139008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894021216": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961138656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894186208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961139008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982723072"}], "isAbstract": false}}, "140552894186208": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961139360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961139008"}], "isAbstract": false}}, "140552961139712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961139008"}], "isAbstract": false}}, "140552961140064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961139008"}], "isAbstract": false}}, "140552961140768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961140416"}], "isAbstract": false}}, "140552961141120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961140416"}], "isAbstract": false}}, "140552961141824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961142176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961142528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961142880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961143232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961143584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961143936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961144288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961144640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961144992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961145344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961145696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961146048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961141472"}], "isAbstract": false}}, "140552961228864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961146400"}], "isAbstract": false}}, "140552961229216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961146400"}], "isAbstract": false}}, "140552961229568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961146400"}], "isAbstract": false}}, "140552961229920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961146400"}], "isAbstract": false}}, "140552961230624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961230976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961231328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961231680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961232032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961232384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961232736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961233088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961233440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961233792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961230272"}], "isAbstract": false}}, "140552961236960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894196960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961237664"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982713920"}], "isAbstract": false}}, "140552894196960": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961237664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894197632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961237312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982832160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982713920"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552894197632": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961237312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140552982711104"}], "isAbstract": false}}, "140552982832160": {"type": "Union", "content": {"items": [{"nodeId": "140552982723072"}, {"nodeId": "N"}]}}, "140552961238016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894197744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894197744": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961238368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894198080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982832272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894198080": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982832272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140552961238720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894198416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961237312"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894198416": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552961239072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894198752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982832720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894198752": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552982832720": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961239424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894199536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552982723072"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961237312"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982832832"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894199536": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982832832": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961239776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894200320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982723072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961237312"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961237312"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894200320": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961240128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894200544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982832944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552982833168"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894200544": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982832944": {"type": "Union", "content": {"items": [{"nodeId": "140552961237312"}, {"nodeId": "N"}]}}, "140552982833168": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961240480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552894200768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961237312"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961237312"}], "isAbstract": false}}, "140552894200768": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140552986680256": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019797152"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553019797152": {"type": "Function", "content": {"typeVars": [".-1.140553019797152"], "argTypes": [{"nodeId": "140552986680256"}, {"nodeId": ".-1.140553019797152"}], "returnType": {"nodeId": ".-1.140553019797152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140553019797152": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553019797152", "variance": "INVARIANT"}}, "140552986680608": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019797600"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140552986680608"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__next__"]}}, ".1.140552986680608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986680608", "variance": "COVARIANT"}}, "140553019797600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986680608", "args": [{"nodeId": ".1.140552986680608"}]}], "returnType": {"nodeId": ".1.140552986680608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552986680960": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019798048"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140552986680960"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__anext__"]}}, ".1.140552986680960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986680960", "variance": "COVARIANT"}}, "140553019798048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986680960", "args": [{"nodeId": ".1.140552986680960"}]}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".1.140552986680960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552986682016": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019799392"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140552986682016"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__le__"]}}, ".1.140552986682016": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986682016", "variance": "CONTRAVARIANT"}}, "140553019799392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986682016", "args": [{"nodeId": ".1.140552986682016"}]}, {"nodeId": ".1.140552986682016"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986682368": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019799840"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140552986682368"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__ge__"]}}, ".1.140552986682368": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986682368", "variance": "CONTRAVARIANT"}}, "140553019799840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986682368", "args": [{"nodeId": ".1.140552986682368"}]}, {"nodeId": ".1.140552986682368"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986682720": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140552986681312", "args": [{"nodeId": "A"}]}, {"nodeId": "140552986681664", "args": [{"nodeId": "A"}]}, {"nodeId": "140552986682016", "args": [{"nodeId": "A"}]}, {"nodeId": "140552986682368", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140552986683776": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553019801184"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140552986683776"}, {"nodeId": ".2.140552986683776"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__sub__"]}}, ".1.140552986683776": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986683776", "variance": "CONTRAVARIANT"}}, ".2.140552986683776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986683776", "variance": "COVARIANT"}}, "140553019801184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986683776", "args": [{"nodeId": ".1.140552986683776"}, {"nodeId": ".2.140552986683776"}]}, {"nodeId": ".1.140552986683776"}], "returnType": {"nodeId": ".2.140552986683776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986684128": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050063136"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140552986684128"}, {"nodeId": ".2.140552986684128"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__rsub__"]}}, ".1.140552986684128": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986684128", "variance": "CONTRAVARIANT"}}, ".2.140552986684128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986684128", "variance": "COVARIANT"}}, "140553050063136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986684128", "args": [{"nodeId": ".1.140552986684128"}, {"nodeId": ".2.140552986684128"}]}, {"nodeId": ".1.140552986684128"}], "returnType": {"nodeId": ".2.140552986684128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986684480": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050063584"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140552986684480"}, {"nodeId": ".2.140552986684480"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__divmod__"]}}, ".1.140552986684480": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986684480", "variance": "CONTRAVARIANT"}}, ".2.140552986684480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986684480", "variance": "COVARIANT"}}, "140553050063584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986684480", "args": [{"nodeId": ".1.140552986684480"}, {"nodeId": ".2.140552986684480"}]}, {"nodeId": ".1.140552986684480"}], "returnType": {"nodeId": ".2.140552986684480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986684832": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050064032"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140552986684832"}, {"nodeId": ".2.140552986684832"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140552986684832": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986684832", "variance": "CONTRAVARIANT"}}, ".2.140552986684832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986684832", "variance": "COVARIANT"}}, "140553050064032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986684832", "args": [{"nodeId": ".1.140552986684832"}, {"nodeId": ".2.140552986684832"}]}, {"nodeId": ".1.140552986684832"}], "returnType": {"nodeId": ".2.140552986684832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552986685184": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050064480"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140552986685184"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__iter__"]}}, ".1.140552986685184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986685184", "variance": "COVARIANT"}}, "140553050064480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986685184", "args": [{"nodeId": ".1.140552986685184"}]}], "returnType": {"nodeId": ".1.140552986685184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986685536": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050064928"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140552986685536"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__aiter__"]}}, ".1.140552986685536": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986685536", "variance": "COVARIANT"}}, "140553050064928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986685536", "args": [{"nodeId": ".1.140552986685536"}]}], "returnType": {"nodeId": ".1.140552986685536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552986686592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050066720"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140552986686592"}, {"nodeId": ".2.140552986686592"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["items"]}}, ".1.140552986686592": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986686592", "variance": "COVARIANT"}}, ".2.140552986686592": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986686592", "variance": "COVARIANT"}}, "140553050066720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986686592", "args": [{"nodeId": ".1.140552986686592"}, {"nodeId": ".2.140552986686592"}]}], "returnType": {"nodeId": "140553057841600", "args": [{"nodeId": "140552948926272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948926272": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552986686592"}, {"nodeId": ".2.140552986686592"}]}}, "140552986687296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050068064"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050068512"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140552986687296"}, {"nodeId": ".2.140552986687296"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140552986687296": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986687296", "variance": "CONTRAVARIANT"}}, ".2.140552986687296": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986687296", "variance": "COVARIANT"}}, "140553050068064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986687296", "args": [{"nodeId": ".1.140552986687296"}, {"nodeId": ".2.140552986687296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553050068512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986687296", "args": [{"nodeId": ".1.140552986687296"}, {"nodeId": ".2.140552986687296"}]}, {"nodeId": ".1.140552986687296"}], "returnType": {"nodeId": ".2.140552986687296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986687648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050068960"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050069408"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140552986687648"}, {"nodeId": ".2.140552986687648"}], "bases": [{"nodeId": "140552986687296", "args": [{"nodeId": ".1.140552986687648"}, {"nodeId": ".2.140552986687648"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140552986687648": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986687648", "variance": "CONTRAVARIANT"}}, ".2.140552986687648": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986687648", "variance": "INVARIANT"}}, "140553050068960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986687648", "args": [{"nodeId": ".1.140552986687648"}, {"nodeId": ".2.140552986687648"}]}, {"nodeId": ".1.140552986687648"}, {"nodeId": ".2.140552986687648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553050069408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986687648", "args": [{"nodeId": ".1.140552986687648"}, {"nodeId": ".2.140552986687648"}]}, {"nodeId": ".1.140552986687648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986688000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050069856"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["fileno"]}}, "140553050069856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986688000"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552986688352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050070304"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140552986688352"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["read"]}}, ".1.140552986688352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986688352", "variance": "COVARIANT"}}, "140553050070304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986688352", "args": [{"nodeId": ".1.140552986688352"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552986688352"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552986688704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050070752"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140552986688704"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["readline"]}}, ".1.140552986688704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986688704", "variance": "COVARIANT"}}, "140553050070752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986688704", "args": [{"nodeId": ".1.140552986688704"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552986688704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552986689056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050071200"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140552986689056"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["readline"]}}, ".1.140552986689056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986689056", "variance": "COVARIANT"}}, "140553050071200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986689056", "args": [{"nodeId": ".1.140552986689056"}]}], "returnType": {"nodeId": ".1.140552986689056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982708640": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050072096"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140552965487808"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140553050072096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982708640"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140553057840896", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982708992": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050072544"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140552965487808"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140553050072544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982708992"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982709344": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050072992"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948653568"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140552982708640"}, {"nodeId": "140552982708992"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140553050072992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982709344"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552948653568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553050073440"}, {"nodeId": "140553050073888"}]}}, "140553050073440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982709344"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": "140553057840896", "args": [{"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553050073888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982709344"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982709696": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965474080"}, {"nodeId": "140552965487808"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140552982710048": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050074784"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140552982710048"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552982710048": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982710048", "variance": "COVARIANT"}}, "140553050074784": {"type": "Function", "content": {"typeVars": [".-1.140553050074784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552982710048"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140553050074784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140553050074784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553050074784", "variance": "INVARIANT"}}, "140552982710400": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552978623200", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__dataclass_fields__"]}}, "140552978623200": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973695936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973696384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973696608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965735168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973696832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012227744"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012228640"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012229088"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552978623200"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552978623200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978623200", "variance": "INVARIANT"}}, "140552973695936": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552978623200"}, {"nodeId": "0"}]}}, "140552973696384": {"type": "Union", "content": {"items": [{"nodeId": "140552978622848", "args": [{"nodeId": ".1.140552978623200"}]}, {"nodeId": "0"}]}}, "140552978622848": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012227296"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140552978622848"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, ".1.140552978622848": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978622848", "variance": "COVARIANT"}}, "140553012227296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978622848", "args": [{"nodeId": ".1.140552978622848"}]}], "returnType": {"nodeId": ".1.140552978622848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552973696608": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552973696832": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "0"}]}}, "140553012227744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978623200", "args": [{"nodeId": ".1.140552978623200"}]}, {"nodeId": ".1.140552978623200"}, {"nodeId": "140552953497632"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552953441056"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057842304", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140552953497632": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140552978623200"}, "argKinds": [], "argNames": []}}, "140552953441056": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140553012228640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978623200", "args": [{"nodeId": ".1.140552978623200"}]}, {"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140553012229088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140552965742560": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553050076128"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["find_spec"]}}, "140553050076128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965742560"}, {"nodeId": "140552987165440"}, {"nodeId": "140552956951040"}, {"nodeId": "140552956951152"}], "returnType": {"nodeId": "140552956951264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140552956951040": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552956951152": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552965736224": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552986635600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936408448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965593056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965593280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057841248", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965593392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036768288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036768736"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552986635600": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552936408448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965593056": {"type": "Union", "content": {"items": [{"nodeId": "140552965735872"}, {"nodeId": "N"}]}}, "140552965735872": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036767392"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["load_module"]}}, "140553036767392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735872"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552965736224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140552965593280": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552965593392": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140553020545280": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020313376"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961389984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961390208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973917696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973917808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915477536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020314272"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553020313376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020545280"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952934496"}, {"nodeId": "140552952934608"}, {"nodeId": "140552952934832"}, {"nodeId": "140552952934944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140552952934496": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140553020546336": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003789984"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003790432"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003790880"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003791328"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553003789984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020546336"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552965736224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140553003790432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020546336"}, {"nodeId": "140552965736224"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140553003790880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020546336"}, {"nodeId": "140553020545280"}], "returnType": {"nodeId": "140552953200704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140552953200704": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140553003791328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020546336"}, {"nodeId": "140552965736224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140552952934608": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952934832": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552952934944": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552961389984": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140552961390208": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552973917696": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552973917808": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552915477536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020545280"}], "returnType": {"nodeId": "140552952935056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952935056": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553020314272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020545280"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553036768288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}, {"nodeId": "140552987165440"}, {"nodeId": "140552956938384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140552956938384": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553036768736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552956951264": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140552961243648": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936842048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936843616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936843840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936844288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936844512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936844736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936844960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936845184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936845408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936845632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936845856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936846080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936846304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936846528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936847200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "A"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552936842048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956951488"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956951488": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936843616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956951600"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956951600": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936843840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956951712"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956951712": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936844064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956951824"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956951824": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936844288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956951936"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956951936": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936844512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956952048"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956952048": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936844736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956952160"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956952160": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936844960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956952272"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956952272": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936845184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552956952384"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956952384": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936845408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957165632"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957165632": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936845632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957165744"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957165744": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936845856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957165856"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957165856": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936846080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957165968"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957165968": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936846304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166080"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166080": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936846528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166192"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166192": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552936847200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166304"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166304": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552961244000": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936840704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931655968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931656192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931656416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931656640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931656864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931657088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931657312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931657536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931657760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931657984"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844416"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}], "isAbstract": false}}, "140552936840704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166416"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166416": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931655968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166528"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166528": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931656192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166640"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166640": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931656416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166752"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166752": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931656640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166864"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166864": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931656864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957166976"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957166976": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931657088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167088"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167088": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931657312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167200"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167200": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931657536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167312"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167312": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931657760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167424"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167424": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931657984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167536"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167536": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552961244352": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931660000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931660224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931660448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931660672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931660896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931661120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931661344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931661568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931661792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140552965994336"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}], "isAbstract": false}}, "140552931660000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167648"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167648": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931660224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167760"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167760": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931660448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167872"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167872": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931660672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957167984"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957167984": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931660896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168096"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168096": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931661120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168208"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168208": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931661344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168320"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168320": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931661568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168432"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168432": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931661792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168544"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168544": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552965994336": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140553057844064"}]}}, "140552965742912": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965994224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041016672"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552965994224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961611520"}}}, "140552961611520": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140553041016672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965742912"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552961244704": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931664256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931664480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931664704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931664928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552931664256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168768"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168768": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931664480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168880"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168880": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931664704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957168992"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957168992": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552931664928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957169104"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957169104": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552961425472": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931665376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931666720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931666944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "A"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}], "isAbstract": false}}, "140552931665376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957169328"}], "returnType": {"nodeId": "140552957169440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957169328": {"type": "Tuple", "content": {"items": [{"nodeId": "140552965993440"}, {"nodeId": "140552965990080"}, {"nodeId": "140552957169216"}]}}, "140552965993440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965598544"}}}, "140552965598544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552965990080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965598096"}}}, "140552965598096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140552957169216": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957169440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965598544"}}}, "140552931666720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957169664"}], "returnType": {"nodeId": "140552957169776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957169664": {"type": "Tuple", "content": {"items": [{"nodeId": "140552965993440"}, {"nodeId": "140552965990080"}, {"nodeId": "140552957169552"}]}}, "140552957169552": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957169776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965598096"}}}, "140552931666944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957170000"}], "returnType": {"nodeId": "140552957170112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957170000": {"type": "Tuple", "content": {"items": [{"nodeId": "140552965993440"}, {"nodeId": "140552965990080"}, {"nodeId": "140552957169888"}]}}, "140552957169888": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957170112": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961425824": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931666272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931668736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931668960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931669184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931669408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "A"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}], "isAbstract": false}}, "140552931666272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957170224"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957170224": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552931668736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957170336"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957170336": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552931668960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957170448"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957170448": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552931669184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957170560"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957170560": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552931669408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957170672"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957170672": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552965743264": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961615664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961378336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961378560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057832448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140552961615664": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552961378336": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552961378560": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961426176": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931739008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552931739456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140552965989968"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552973922288"}]}], "isAbstract": false}}, "140552931739008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957173136"}], "returnType": {"nodeId": "140552957173248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957173136": {"type": "Tuple", "content": {"items": [{"nodeId": "140552961613760"}, {"nodeId": "140552961378672"}]}}, "140552961613760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600336"}}}, "140552965600336": {"type": "Union", "content": {"items": [{"nodeId": "140552986426528"}, {"nodeId": "N"}]}}, "140552986426528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553057839840": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015626656"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940617312"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961917888"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015628448"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940683328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940684224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940684448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940684672"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}], "bases": [{"nodeId": "140553057839488", "args": [{"nodeId": ".1.140553057839840"}]}], "isAbstract": true}}, ".1.140553057839840": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057839840", "variance": "COVARIANT"}}, ".2.140553057839840": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057839840", "variance": "CONTRAVARIANT"}}, "140553015626656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".1.140553057839840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940617312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}, {"nodeId": ".2.140553057839840"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".1.140553057839840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961917888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015627552"}, {"nodeId": "140553015628000"}]}}, "140553015627552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}, {"nodeId": "0"}, {"nodeId": "140552961919680"}, {"nodeId": "140552961919792"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".1.140553057839840"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552961919680": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}]}}, "140552961919792": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553015628000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}, {"nodeId": "140552987172128"}, {"nodeId": "N"}, {"nodeId": "140552961919904"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".1.140553057839840"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552961919904": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553015628448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940683328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940684224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}], "returnType": {"nodeId": "140552965734816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940684448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}], "returnType": {"nodeId": "140552965740448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940684672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140553057839840"}, {"nodeId": ".2.140553057839840"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057839488": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940614848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553015626208"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140553057839488"}], "bases": [{"nodeId": "140553057839136", "args": [{"nodeId": ".1.140553057839488"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140553057839488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057839488", "variance": "COVARIANT"}}, "140552940614848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839488", "args": [{"nodeId": ".1.140553057839488"}]}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".1.140553057839488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553015626208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839488", "args": [{"nodeId": ".1.140553057839488"}]}], "returnType": {"nodeId": "140553057839488", "args": [{"nodeId": ".1.140553057839488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057839136": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940609024"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057839136"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__aiter__"]}}, ".1.140553057839136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057839136", "variance": "COVARIANT"}}, "140552940609024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839136", "args": [{"nodeId": ".1.140553057839136"}]}], "returnType": {"nodeId": "140553057839488", "args": [{"nodeId": ".1.140553057839136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961378672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600336"}}}, "140552957173248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600336"}}}, "140552931739456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957173360"}], "returnType": {"nodeId": "140552957173472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957173360": {"type": "Tuple", "content": {"items": [{"nodeId": "140552961613760"}, {"nodeId": "140552961378672"}]}}, "140552957173472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600336"}}}, "140552965989968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600336"}}}, "140552973922288": {"type": "Union", "content": {"items": [{"nodeId": "140552944790528"}, {"nodeId": "N"}]}}, "140552944790528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057839840", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965734464": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936190272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965734816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552986635824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936190720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936191392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041463776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041464224"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961929872"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936190272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}], "returnType": {"nodeId": "140552961932560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961932560": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140552965488160"}]}, {"nodeId": "N"}]}}, "140552986635824": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140552936190720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936191392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041463776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}, {"nodeId": "140552965734816"}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "140552961933008"}, {"nodeId": "140552961933120"}, {"nodeId": "140552956936256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140552961933008": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961933120": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}, {"nodeId": "N"}]}}, "140552956936256": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140552965488160"}]}, {"nodeId": "N"}]}}, "140553041464224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140552961929872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553041464672"}, {"nodeId": "140553041465120"}]}}, "140553041464672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}, {"nodeId": "N"}, {"nodeId": "140553057843360"}], "returnType": {"nodeId": "140552965734464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553041465120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965734464"}, {"nodeId": "140553057832448"}, {"nodeId": "140552956936816"}], "returnType": {"nodeId": "140552965737984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552956936816": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140552965737984": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936543552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936544000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936544224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936544448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936544672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936544896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037012256"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037012704"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936543552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}], "returnType": {"nodeId": "140552956942192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956942192": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140552965488160"}]}, {"nodeId": "N"}]}}, "140552936544000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}], "returnType": {"nodeId": "140552956942416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956942416": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140552936544224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}], "returnType": {"nodeId": "140552965737632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965737632": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037009120"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553037009120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737632"}, {"nodeId": "140553057832448"}, {"nodeId": "140552956942080"}], "returnType": {"nodeId": "140552965734464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140552956942080": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140552936544448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936544672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936544896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037012256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}, {"nodeId": "140552990669984"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552990669984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140553037012704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140552965735520": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036765600"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036766048"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036766496"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036766944"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553036765600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735520"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140553036766048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735520"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553036766496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735520"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553036766944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965735520"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965736576": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936409568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036770080"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036770528"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036770976"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961931552"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}], "bases": [{"nodeId": "140553057838080", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}], "isAbstract": false}}, ".1.140552965736576": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965736576", "variance": "COVARIANT"}}, ".2.140552965736576": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965736576", "variance": "CONTRAVARIANT"}}, ".3.140552965736576": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965736576", "variance": "COVARIANT"}}, "140552936409568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}], "returnType": {"nodeId": "140552956938720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956938720": {"type": "Union", "content": {"items": [{"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140553036770080": {"type": "Function", "content": {"typeVars": [".0.140553036770080"], "argTypes": [{"nodeId": ".0.140553036770080"}], "returnType": {"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553036770080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}, "def": "140553036770080", "variance": "INVARIANT"}}, "140553036770528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}], "returnType": {"nodeId": ".1.140552965736576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036770976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}, {"nodeId": ".2.140552965736576"}], "returnType": {"nodeId": ".1.140552965736576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961931552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553036771424"}, {"nodeId": "140553036771872"}]}}, "140553036771424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}, {"nodeId": "0"}, {"nodeId": "140552956939056"}, {"nodeId": "140552956939168"}], "returnType": {"nodeId": ".1.140552965736576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552956939056": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}]}}, "140552956939168": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553036771872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736576", "args": [{"nodeId": ".1.140552965736576"}, {"nodeId": ".2.140552965736576"}, {"nodeId": ".3.140552965736576"}]}, {"nodeId": "140552987172128"}, {"nodeId": "N"}, {"nodeId": "140552956939280"}], "returnType": {"nodeId": ".1.140552965736576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552956939280": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552965736928": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936416736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036773216"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036773664"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036774112"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552956938832"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037005088"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037005536"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}], "bases": [{"nodeId": "140553057839840", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}], "isAbstract": false}}, ".1.140552965736928": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965736928", "variance": "COVARIANT"}}, ".2.140552965736928": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965736928", "variance": "CONTRAVARIANT"}}, "140552936416736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}], "returnType": {"nodeId": "140552956939504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956939504": {"type": "Union", "content": {"items": [{"nodeId": "140553057838432", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140553036773216": {"type": "Function", "content": {"typeVars": [".0.140553036773216"], "argTypes": [{"nodeId": ".0.140553036773216"}], "returnType": {"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553036773216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}, "def": "140553036773216", "variance": "INVARIANT"}}, "140553036773664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140552965736928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057838784": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940606560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940606784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940607008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940607232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940607456"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961917776"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940607680"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}], "bases": [{"nodeId": "140553057838432", "args": [{"nodeId": ".3.140553057838784"}]}], "isAbstract": true}}, ".1.140553057838784": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838784", "variance": "COVARIANT"}}, ".2.140553057838784": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838784", "variance": "CONTRAVARIANT"}}, ".3.140553057838784": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057838784", "variance": "COVARIANT"}}, "140552940606560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}], "returnType": {"nodeId": "140552961919008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961919008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552940606784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}], "returnType": {"nodeId": "140552965734816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940607008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}], "returnType": {"nodeId": "140552965740448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940607232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940607456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}, {"nodeId": ".2.140553057838784"}], "returnType": {"nodeId": ".1.140553057838784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961917776": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553015623968"}, {"nodeId": "140553015624416"}]}}, "140553015623968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}, {"nodeId": "0"}, {"nodeId": "140552961919232"}, {"nodeId": "140552961919344"}], "returnType": {"nodeId": ".1.140553057838784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552961919232": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}]}}, "140552961919344": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553015624416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}, {"nodeId": "140552987172128"}, {"nodeId": "N"}, {"nodeId": "140552961919456"}], "returnType": {"nodeId": ".1.140553057838784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552961919456": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552940607680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140553057838784"}, {"nodeId": ".2.140553057838784"}, {"nodeId": ".3.140553057838784"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036774112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}, {"nodeId": ".2.140552965736928"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140552965736928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552956938832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552990670208"}, {"nodeId": "140553036774560"}]}}, "140552990670208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}, {"nodeId": "0"}, {"nodeId": "140552956940288"}, {"nodeId": "140552956940400"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140552965736928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552956940288": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}]}}, "140552956940400": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553036774560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}, {"nodeId": "140552987172128"}, {"nodeId": "N"}, {"nodeId": "140552956940624"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140552965736928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552956940624": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553037005088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736928", "args": [{"nodeId": ".1.140552965736928"}, {"nodeId": ".2.140552965736928"}]}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037005536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552965737280": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936421664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037006880"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037007328"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037007776"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552956940512"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}], "bases": [{"nodeId": "140553057838784", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}], "isAbstract": false}}, ".1.140552965737280": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965737280", "variance": "COVARIANT"}}, ".2.140552965737280": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965737280", "variance": "CONTRAVARIANT"}}, ".3.140552965737280": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965737280", "variance": "COVARIANT"}}, "140552936421664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737280", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}], "returnType": {"nodeId": "140552956941408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956941408": {"type": "Union", "content": {"items": [{"nodeId": "140552987167200", "args": [{"nodeId": "140552956941296"}]}, {"nodeId": "N"}]}}, "140552956941296": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140553037006880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737280", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037007328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737280", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140552965737280"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037007776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737280", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}, {"nodeId": ".2.140552965737280"}], "returnType": {"nodeId": ".1.140552965737280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552956940512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553037008224"}, {"nodeId": "140553037008672"}]}}, "140553037008224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737280", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}, {"nodeId": "0"}, {"nodeId": "140552956941744"}, {"nodeId": "140552956941856"}], "returnType": {"nodeId": ".1.140552965737280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552956941744": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "140553057832448"}]}}, "140552956941856": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553037008672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965737280", "args": [{"nodeId": ".1.140552965737280"}, {"nodeId": ".2.140552965737280"}, {"nodeId": ".3.140552965737280"}]}, {"nodeId": "140552987172128"}, {"nodeId": "N"}, {"nodeId": "140552956941968"}], "returnType": {"nodeId": ".1.140552965737280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140552956941968": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552965738336": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936546464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936546688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936546912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037014496"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936546464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738336"}], "returnType": {"nodeId": "140552956943088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552956943088": {"type": "Union", "content": {"items": [{"nodeId": "140553057832448"}, {"nodeId": "140552965736224"}]}}, "140552936546688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738336"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936546912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738336"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037014496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738336"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140552965738688": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936548704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936549152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936549376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037016288"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037016736"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936548704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738688"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936549152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738688"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936549376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738688"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037016288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738688"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140553037016736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965738688"}, {"nodeId": "A"}, {"nodeId": "140552956943984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552956943984": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140552965739040": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936551168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936551392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936551616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936551840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037018976"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037019424"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037019872"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936551168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936551392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936551616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936551840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037018976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140553037019424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553037019872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739040"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965739392": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936603936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936604160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936604384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037120224"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037120672"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936603936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739392"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936604160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739392"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936604384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739392"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037120224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739392"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140553037120672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739392"}, {"nodeId": "A"}, {"nodeId": "140552956944992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552956944992": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140552965739744": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936606176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936606400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936606624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037122464"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037122912"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936606176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739744"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936606400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739744"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936606624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739744"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037122464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739744"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140553037122912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965739744"}, {"nodeId": "A"}, {"nodeId": "140552956945664"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552956945664": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140552965740800": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936613792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936613568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936614016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037130080"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037130528"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037130976"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936613792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740800"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936613568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740800"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936614016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740800"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037130080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740800"}, {"nodeId": "A"}, {"nodeId": "140552956946784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552956946784": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140553037130528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740800"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553037130976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965740800"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552965741152": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936615808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936616032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552936616256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037132768"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037133216"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037133664"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552936615808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936616032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552936616256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741152"}], "returnType": {"nodeId": "140553057843360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037132768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741152"}, {"nodeId": "A"}, {"nodeId": "140552956947456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552956947456": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140553037133216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741152"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553037133664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741152"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552965741856": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037288096"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553037288096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965741856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965748896": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987174240"}, {"nodeId": "140552987179872"}], "isAbstract": false}}, "140552965749248": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037293920"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037294368"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037294816"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037295264"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037295712"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037296160"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037296608"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037297056"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037297504"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973628160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037297952"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037298400"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037298848"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553037299296"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036529952"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036530400"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973629280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036530848"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036531296"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036531744"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919640192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036532640"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553037293920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553037294368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037294816": {"type": "Function", "content": {"typeVars": [".0.140553037294816"], "argTypes": [{"nodeId": ".0.140553037294816"}], "returnType": {"nodeId": ".0.140553037294816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553037294816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965749248"}, "def": "140553037294816", "variance": "INVARIANT"}}, "140553037295264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140552952923968"}, {"nodeId": "140552952924080"}, {"nodeId": "140552952924192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552952923968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552952924080": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552952924192": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553037295712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037296160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037296608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037297056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037297504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552973628160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140553037297952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553037298400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553037298848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553037299296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036529952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140552952924304"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552952924304": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553036530400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552973629280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140553036530848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552965487808"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553036531296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140552952924416"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552952924416": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553036531744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552919640192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036532640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749248"}, {"nodeId": "140552952924528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140552952924528": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552965749600": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036533088"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036533536"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036533984"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036534432"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140552965749248"}], "isAbstract": false}}, "140553036533088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749600"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036533536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749600"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552952924640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552952924640": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553036533984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749600"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552952924752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552952924752": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553036534432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749600"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552952924864"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552952924864": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552965749952": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965749600"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036534880"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036535328"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036535776"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036536224"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036536672"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036537120"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140552965749248"}], "isAbstract": false}}, "140553036534880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749952"}], "returnType": {"nodeId": "140552965749600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036535328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749952"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553036535776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749952"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553036536224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749952"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553036536672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749952"}, {"nodeId": "140552952924976"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552952924976": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553036537120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965749952"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552965750304": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961388752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036537568"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919635040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036538464"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036538912"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036539360"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140552965749600"}, {"nodeId": "140552965476896"}], "isAbstract": false}}, "140552961388752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977845712"}}}, "140552977845712": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552977843920"}]}}, "140552977843920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552978552800": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "140552961426880", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552961426880", "args": [{"nodeId": "140552987165792"}]}]}}, "140552961426880": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552923770304"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552961426880"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__fspath__"]}}, ".1.140552961426880": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552961426880", "variance": "COVARIANT"}}, "140552923770304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961426880", "args": [{"nodeId": ".1.140552961426880"}]}], "returnType": {"nodeId": ".1.140552961426880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036537568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965750304"}, {"nodeId": "140552952925088"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}, {"nodeId": "140552952925312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140552952925088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977845712"}}}, "140552952925312": {"type": "Union", "content": {"items": [{"nodeId": "140552952925200"}, {"nodeId": "N"}]}}, "140552952925200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552986419136"}}}, "140552986419136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552919635040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965750304"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036538464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965750304"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553036538912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965750304"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553036539360": {"type": "Function", "content": {"typeVars": [".0.140553036539360"], "argTypes": [{"nodeId": ".0.140553036539360"}], "returnType": {"nodeId": ".0.140553036539360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553036539360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965750304"}, "def": "140553036539360", "variance": "INVARIANT"}}, "140552965476896": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935840160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165792"}]}], "isAbstract": true}}, "140552935840160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476896"}], "returnType": {"nodeId": "140552965476896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965476544": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940933344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940934464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940935360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940936032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940936704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940937376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940938048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940938720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940939392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940940288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940940960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940941856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940942752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940943424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940944096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940944768"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961926848"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961927184"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935836576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935837248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935838144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935839264"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552965476544"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965476544"}]}], "isAbstract": true}}, ".1.140552965476544": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965476544", "variance": "INVARIANT"}}, "140552940933344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940934464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940935360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940936032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940936704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940937376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940938048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940938720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552965476544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552940939392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940940288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552965476544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552940940960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965476544"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552940941856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552940942752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940943424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940944096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140552961927520"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552961927520": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552940944768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961926848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553016056672"}, {"nodeId": "140552978276960"}, {"nodeId": "140553016057568"}]}}, "140553016056672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552978276960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553016057568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": ".1.140552965476544"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552961927184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553016058016"}, {"nodeId": "140552978276064"}, {"nodeId": "140553016058912"}]}}, "140553016058016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552978276064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552965487808"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553016058912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552935836576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": ".1.140552965476544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552935837248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965476544"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552935838144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}], "returnType": {"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552935839264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965476544"}]}, {"nodeId": "140552961927856"}, {"nodeId": "140552961927968"}, {"nodeId": "140552961928080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552961927856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552961927968": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552961928080": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553020538944": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036539808"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036540256"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036540704"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036541152"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036541600"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140552965749952"}, {"nodeId": "140552965476896"}], "isAbstract": false}}, "140553036539808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020538944"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140553036540256": {"type": "Function", "content": {"typeVars": [".0.140553036540256"], "argTypes": [{"nodeId": ".0.140553036540256"}], "returnType": {"nodeId": ".0.140553036540256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553036540256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020538944"}, "def": "140553036540256", "variance": "INVARIANT"}}, "140553036540704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020538944"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036541152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020538944"}], "returnType": {"nodeId": "140552987166496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553036541600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020538944"}, {"nodeId": "140552952925648"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552952925648": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553020539296": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036542048"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036542496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036542944"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140552965749952"}, {"nodeId": "140552965476896"}], "isAbstract": false}}, "140553036542048": {"type": "Function", "content": {"typeVars": [".0.140553036542048"], "argTypes": [{"nodeId": ".0.140553036542048"}], "returnType": {"nodeId": ".0.140553036542048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553036542048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020539296"}, "def": "140553036542048", "variance": "INVARIANT"}}, "140553036542496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020539296"}, {"nodeId": "140552965749600"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140553036542944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020539296"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553020539648": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036543392"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036543840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036544288"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140552965749952"}, {"nodeId": "140552965476896"}], "isAbstract": false}}, "140553036543392": {"type": "Function", "content": {"typeVars": [".0.140553036543392"], "argTypes": [{"nodeId": ".0.140553036543392"}], "returnType": {"nodeId": ".0.140553036543392"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553036543392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020539648"}, "def": "140553036543392", "variance": "INVARIANT"}}, "140553036543840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020539648"}, {"nodeId": "140552965749600"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140553036544288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020539648"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553020540000": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036544736"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036545184"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140553020539296"}, {"nodeId": "140553020539648"}], "isAbstract": false}}, "140553036544736": {"type": "Function", "content": {"typeVars": [".0.140553036544736"], "argTypes": [{"nodeId": ".0.140553036544736"}], "returnType": {"nodeId": ".0.140553036544736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553036544736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020540000"}, "def": "140553036544736", "variance": "INVARIANT"}}, "140553036545184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540000"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140553020540352": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553036545632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041658144"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140552965749952"}], "isAbstract": false}}, "140553036545632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540352"}, {"nodeId": "140552965749600"}, {"nodeId": "140552965749600"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140553041658144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540352"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553020540704": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961621600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961388864"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041658592"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041659040"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041659488"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041659936"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041660384"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041660832"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041661280"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041661728"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140552965749248"}], "isAbstract": false}}, "140552961621600": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961388864": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140553041658592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553041659040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041659488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}], "returnType": {"nodeId": "140552965476896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041659936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553041660384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553041660832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553041661280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553041661728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020540704"}, {"nodeId": "140552952926096"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552952926096": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553020541056": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041662176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552920077184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552920077632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552920077856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552920078304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041664416"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041664864"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041665312"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041665760"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041666208"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041666656"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041667104"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041667552"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140553020540704"}, {"nodeId": "140552965477248"}], "isAbstract": false}}, "140553041662176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}, {"nodeId": "140552965476544", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552952926208"}, {"nodeId": "140552952926320"}, {"nodeId": "140552952926432"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140552952926208": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952926320": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952926432": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552920077184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}], "returnType": {"nodeId": "140552965476896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552920077632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552920077856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552920078304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041664416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}, {"nodeId": "140552952926544"}, {"nodeId": "140552952926656"}, {"nodeId": "140552952926768"}, {"nodeId": "140552952926880"}, {"nodeId": "140552952926992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140552952926544": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952926656": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952926768": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952926880": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552952926992": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140553041664864": {"type": "Function", "content": {"typeVars": [".0.140553041664864"], "argTypes": [{"nodeId": ".0.140553041664864"}], "returnType": {"nodeId": ".0.140553041664864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553041664864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020541056"}, "def": "140553041664864", "variance": "INVARIANT"}}, "140553041665312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553041665760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041666208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553041666656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553041667104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553041667552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541056"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140552965477248": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552935841728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552935842176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552935842400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552935842624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552935842848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935843072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165440"}]}], "isAbstract": true}}, "140552935841728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477248"}], "returnType": {"nodeId": "140552965476896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552935842176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477248"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552935842400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477248"}], "returnType": {"nodeId": "140552961928192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961928192": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552935842624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477248"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552935842848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552935843072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477248"}], "returnType": {"nodeId": "140552965477248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553020541408": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041668000"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041668448"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140553020541056"}], "isAbstract": false}}, "140553041668000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541408"}, {"nodeId": "140552952927216"}, {"nodeId": "140552952927328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140552952927216": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552952927328": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553041668448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541408"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961438144": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041668896"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041669344"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552914947200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041670240"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140552986679552"}], "isAbstract": false}}, "140553041668896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438144"}, {"nodeId": "140552952927440"}, {"nodeId": "140553057833152"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140552952927440": {"type": "Union", "content": {"items": [{"nodeId": "140552986679552"}, {"nodeId": "N"}]}}, "140552986679552": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007727328"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552902788256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007728224"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007728672"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007729120"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": true}}, "140553007727328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679552"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140552902788256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679552"}, {"nodeId": "140552965487808"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140553007728224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553007728672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679552"}], "returnType": {"nodeId": "140552948658832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948658832": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140553007729120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679552"}, {"nodeId": "140552948659056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140552948659056": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140553041669344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438144"}, {"nodeId": "140552952927552"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140552952927552": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552987165440"}]}}, "140552914947200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438144"}], "returnType": {"nodeId": "140552952927664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952927664": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140553041670240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438144"}, {"nodeId": "140552952927888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552952927888": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140552965486752": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940095744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940096192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940096416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940096640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940096864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940097088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020081760"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940097312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940097536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552940095744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940096192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140552961747968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961747968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552940096416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940096640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940096864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940097088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140552961748192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961748192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553020081760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}, {"nodeId": "140552987165440"}, {"nodeId": "140552961748416"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552961748640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140552961748416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140552987165440"}]}}, "140552961748640": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552940097312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140553057834560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057834560": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940287168"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041108704"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552940287168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834560"}], "returnType": {"nodeId": "140553057835264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057835264": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940422304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940422528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940422752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940422976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041112736"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940423648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940423200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041114976"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041115424"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552940422304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940422528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}], "returnType": {"nodeId": "140552961752224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961752224": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552940422752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940422976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041112736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}, {"nodeId": "140552987165440"}, {"nodeId": "140552961752448"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140552961752448": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552940423648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}], "returnType": {"nodeId": "140553057834560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940423200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}], "returnType": {"nodeId": "140553057834912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057834912": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940288288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041109600"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552940288288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834912"}], "returnType": {"nodeId": "140553057835264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041109600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834912"}, {"nodeId": "140553057835264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140553041114976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057834208": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041103776"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041104224"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041104672"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553041103776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834208"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553041104224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834208"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553041104672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834208"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553041115424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835264"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553041108704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057834560"}, {"nodeId": "140553057835264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140552940097536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486752"}], "returnType": {"nodeId": "140553057834912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057833856": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940280896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940281344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940281568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940281792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940282016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041101984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041102432"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041102880"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552940280896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940281344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}], "returnType": {"nodeId": "140552961750992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961750992": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552940281568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940281792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940282016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553041101984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}, {"nodeId": "140552961751440"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140552961751440": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553041102432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553041102880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057833856"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057835616": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041115872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041116320"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553041116768"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020719392"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057843360"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553041115872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835616"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140553041116320": {"type": "Function", "content": {"typeVars": [".-1.140553041116320"], "argTypes": [{"nodeId": "140553057835616"}, {"nodeId": ".-1.140553041116320"}], "returnType": {"nodeId": ".-1.140553041116320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140553041116320": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553041116320", "variance": "INVARIANT"}}, "140553041116768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835616"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553020719392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835616"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057834208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553057835968": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020721184"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553020721184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057835968"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965307936": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140552965306176"}], "isAbstract": false}}, "140552965306176": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965479712", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007243424"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007243872"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007244320"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007244768"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007245216"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140553057843360"}], "isAbstract": false}}, "140553007243424": {"type": "Function", "content": {"typeVars": [".-1.140553007243424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140553007243424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140553007243424": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553007243424", "variance": "INVARIANT"}}, "140553007243872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965306176"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140553007244320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965306176"}, {"nodeId": "140553057843360"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140553007244768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965306176"}, {"nodeId": "140552948925600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140552948925600": {"type": "Union", "content": {"items": [{"nodeId": "140552982708288", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140553007245216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965306176"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140552965473728": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940433728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__index__"]}}, "140552940433728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965473728"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553057836320": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940435744"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140553057836320"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__abs__"]}}, ".1.140553057836320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057836320", "variance": "COVARIANT"}}, "140552940435744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057836320", "args": [{"nodeId": ".1.140553057836320"}]}], "returnType": {"nodeId": ".1.140553057836320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553057836672": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961563264"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140553057836672"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__round__"]}}, ".1.140553057836672": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553057836672", "variance": "COVARIANT"}}, "140552961563264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553020724768"}, {"nodeId": "140553020725216"}]}}, "140553020724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057836672", "args": [{"nodeId": ".1.140553057836672"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020725216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057836672", "args": [{"nodeId": ".1.140553057836672"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140553057836672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552965474432": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552940508032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__hash__"]}}, "140552940508032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965474432"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965474784": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140552965474784"}, {"nodeId": ".2.140552965474784"}, {"nodeId": ".3.140552965474784"}, {"nodeId": ".4.140552965474784"}], "bases": [{"nodeId": "140553057838432", "args": [{"nodeId": ".3.140552965474784"}]}, {"nodeId": "140553057838080", "args": [{"nodeId": ".1.140552965474784"}, {"nodeId": ".2.140552965474784"}, {"nodeId": ".3.140552965474784"}]}], "isAbstract": true}}, ".1.140552965474784": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965474784", "variance": "COVARIANT"}}, ".2.140552965474784": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965474784", "variance": "CONTRAVARIANT"}}, ".3.140552965474784": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965474784", "variance": "COVARIANT"}}, ".4.140552965474784": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965474784", "variance": "INVARIANT"}}, "140552965477600": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961929312"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552935845760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977812160"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977812384"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140552961929312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552978275616"}, {"nodeId": "140552978275392"}]}}, "140552978275616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477600"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552961930880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552961930880": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}}, "140552978275392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477600"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140552935845760": {"type": "Function", "content": {"typeVars": [".0.140552935845760"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140552935845760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140552935845760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965477600"}, "def": "140552935845760", "variance": "INVARIANT"}}, "140552977812160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477600"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552977812384": {"type": "Function", "content": {"typeVars": [".0.140552977812384"], "argTypes": [{"nodeId": ".0.140552977812384"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140552977812384"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140552977812384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965477600"}, "def": "140552977812384", "variance": "INVARIANT"}}, "140552965477952": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965479712", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965479712", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977811712"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977811936"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977811264"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977810816"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977812608"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977811040"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977810368"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977810592"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977809696"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977810144"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}], "isAbstract": true}}, "140552977811712": {"type": "Function", "content": {"typeVars": [".0.140552977811712"], "argTypes": [{"nodeId": ".0.140552977811712"}], "returnType": {"nodeId": ".0.140552977811712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552977811712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965477952"}, "def": "140552977811712", "variance": "INVARIANT"}}, "140552977811936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477952"}, {"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140552977811264": {"type": "Function", "content": {"typeVars": [".-1.140552977811264"], "argTypes": [{"nodeId": "140552965477952"}, {"nodeId": "0"}, {"nodeId": ".-1.140552977811264"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140552977811264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552977811264", "variance": "INVARIANT"}}, "140552977810816": {"type": "Function", "content": {"typeVars": [".-1.140552977810816"], "argTypes": [{"nodeId": ".-1.140552977810816"}, {"nodeId": ".-1.140552977810816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140552977810816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552977810816", "variance": "INVARIANT"}}, "140552977812608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477952"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552977811040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477952"}], "returnType": {"nodeId": "140552965479008", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552977810368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477952"}], "returnType": {"nodeId": "140552965478304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552977810592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965477952"}], "returnType": {"nodeId": "140552965478656", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552977809696": {"type": "Function", "content": {"typeVars": [".0.140552977809696"], "argTypes": [{"nodeId": ".0.140552977809696"}, {"nodeId": ".0.140552977809696"}], "returnType": {"nodeId": ".0.140552977809696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552977809696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965477952"}, "def": "140552977809696", "variance": "INVARIANT"}}, "140552977810144": {"type": "Function", "content": {"typeVars": [".0.140552977810144"], "argTypes": [{"nodeId": ".0.140552977810144"}, {"nodeId": ".0.140552977810144"}], "returnType": {"nodeId": ".0.140552977810144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552977810144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965477952"}, "def": "140552977810144", "variance": "INVARIANT"}}, "140553057843008": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965734816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965590368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987075392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977809920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977811488"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552977809472"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552965590368": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552987075392": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552977809920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843008"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}, {"nodeId": "140552961931776"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140552961931776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552977811488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843008"}, {"nodeId": "140552961932000"}, {"nodeId": "140552961932224"}, {"nodeId": "140552965479712", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552961932448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140552961932000": {"type": "Union", "content": {"items": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140552961932224": {"type": "Union", "content": {"items": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140552961932448": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552977809472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057843008"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965484992": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016368416"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016368864"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016369312"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553016368416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484992"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553016368864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484992"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965484992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553016369312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484992"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965484992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965485344": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965479712", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965479712", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016371104"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016371552"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016372000"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016372448"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016372896"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016373344"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016373792"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016374240"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016374688"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016375136"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}], "isAbstract": true}}, "140553016371104": {"type": "Function", "content": {"typeVars": [".0.140553016371104"], "argTypes": [{"nodeId": ".0.140553016371104"}], "returnType": {"nodeId": ".0.140553016371104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553016371104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965485344"}, "def": "140553016371104", "variance": "INVARIANT"}}, "140553016371552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485344"}, {"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140553016372000": {"type": "Function", "content": {"typeVars": [".-1.140553016372000"], "argTypes": [{"nodeId": "140552965485344"}, {"nodeId": "0"}, {"nodeId": ".-1.140553016372000"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140553016372000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553016372000", "variance": "INVARIANT"}}, "140553016372448": {"type": "Function", "content": {"typeVars": [".-1.140553016372448"], "argTypes": [{"nodeId": ".-1.140553016372448"}, {"nodeId": ".-1.140553016372448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140553016372448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553016372448", "variance": "INVARIANT"}}, "140553016372896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485344"}], "returnType": {"nodeId": "140552965479008", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553016373344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485344"}], "returnType": {"nodeId": "140552965478304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553016373792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485344"}], "returnType": {"nodeId": "140552965478656", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553016374240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485344"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553016374688": {"type": "Function", "content": {"typeVars": [".0.140553016374688"], "argTypes": [{"nodeId": ".0.140553016374688"}, {"nodeId": ".0.140553016374688"}], "returnType": {"nodeId": ".0.140553016374688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553016374688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965485344"}, "def": "140553016374688", "variance": "INVARIANT"}}, "140553016375136": {"type": "Function", "content": {"typeVars": [".0.140553016375136"], "argTypes": [{"nodeId": ".0.140553016375136"}, {"nodeId": ".0.140553016375136"}], "returnType": {"nodeId": ".0.140553016375136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553016375136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965485344"}, "def": "140553016375136", "variance": "INVARIANT"}}, "140552965486048": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552961566176"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552945137056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016566368"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016567264"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140552961566176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553016565024"}, {"nodeId": "140553016565472"}]}}, "140553016565024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486048"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552961745504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140552961745504": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}}, "140553016565472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486048"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140552945137056": {"type": "Function", "content": {"typeVars": [".0.140552945137056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140552945137056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140552945137056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965486048"}, "def": "140552945137056", "variance": "INVARIANT"}}, "140553016566368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486048"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553016567264": {"type": "Function", "content": {"typeVars": [".0.140553016567264"], "argTypes": [{"nodeId": ".0.140553016567264"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553016567264"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140553016567264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965486048"}, "def": "140553016567264", "variance": "INVARIANT"}}, "140552965486400": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552945137952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552945138400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552945138624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552945138848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552945139072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552945139296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940093504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016570848"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016571296"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553016571744"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552945137952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552945138400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140552961746400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961746400": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552945138624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552945138848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552945139072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552945139296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940093504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}], "returnType": {"nodeId": "140552961746736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961746736": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553016570848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}, {"nodeId": "140552961747072"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552961747296"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140552961747072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552961747296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553016571296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965484992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553016571744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965486400"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965484992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965487104": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940099104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940099328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020084000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020084448"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552940099104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487104"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940099328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487104"}], "returnType": {"nodeId": "140552961748864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961748864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553020084000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487104"}, {"nodeId": "140552987165440"}, {"nodeId": "140552961749088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140552961749088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553020084448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965487456": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020086240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940101120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940101568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940101792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940102016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552940102240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020088928"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020089376"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020089824"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553020086240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552961749872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140552961749872": {"type": "Union", "content": {"items": [{"nodeId": "140552965486400"}, {"nodeId": "140552965486752"}, {"nodeId": "140552965487104"}]}}, "140552940101120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940101568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552961750096"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961750096": {"type": "Union", "content": {"items": [{"nodeId": "140552965486400"}, {"nodeId": "140552965486752"}, {"nodeId": "140552965487104"}]}}, "140552940101792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940102016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552940102240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}], "returnType": {"nodeId": "140552961750320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961750320": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553020088928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553020089376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965484992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553020089824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965487456"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965484992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965481824": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953585040"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011413504"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011413952"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011414400"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011414848"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011415296"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011415744"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011416192"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011416640"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953585152"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011417984"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011418432"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953586384"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}], "bases": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}], "isAbstract": false}}, ".1.140552965481824": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965481824", "variance": "INVARIANT"}}, ".2.140552965481824": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965481824", "variance": "INVARIANT"}}, "140552953585040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553020093184"}, {"nodeId": "140552999082400"}, {"nodeId": "140553020094080"}, {"nodeId": "140553020093632"}, {"nodeId": "140553020094976"}, {"nodeId": "140553020094528"}, {"nodeId": "140553020095424"}, {"nodeId": "140553020095872"}]}}, "140553020093184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552999082400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "N"}, {"nodeId": ".2.140552965481824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553020094080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553020093632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": ".2.140552965481824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553020094976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552953586048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552953586048": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}}, "140553020094528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552953586272"}]}, {"nodeId": ".2.140552965481824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140552953586272": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965481824"}]}}, "140553020095424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553020095872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": "140552987165792"}, {"nodeId": "140552987165792"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011413504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011413952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": ".1.140552965481824"}], "returnType": {"nodeId": ".2.140552965481824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011414400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553011414848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": ".1.140552965481824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011415296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965481824"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011415744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011416192": {"type": "Function", "content": {"typeVars": [".0.140553011416192"], "argTypes": [{"nodeId": ".0.140553011416192"}], "returnType": {"nodeId": ".0.140553011416192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011416192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, "def": "140553011416192", "variance": "INVARIANT"}}, "140553011416640": {"type": "Function", "content": {"typeVars": [".0.140553011416640"], "argTypes": [{"nodeId": ".0.140553011416640"}], "returnType": {"nodeId": ".0.140553011416640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011416640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, "def": "140553011416640", "variance": "INVARIANT"}}, "140552953585152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011417088"}, {"nodeId": "140553011417536"}]}}, "140553011417088": {"type": "Function", "content": {"typeVars": [".-1.140553011417088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553011417088"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965481824", "args": [{"nodeId": ".-1.140553011417088"}, {"nodeId": "140552953586720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140553011417088": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011417088", "variance": "INVARIANT"}}, "140552953586720": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553011417536": {"type": "Function", "content": {"typeVars": [".-1.140553011417536", ".-2.140553011417536"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553011417536"}]}, {"nodeId": ".-2.140553011417536"}], "returnType": {"nodeId": "140552965481824", "args": [{"nodeId": ".-1.140553011417536"}, {"nodeId": ".-2.140553011417536"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140553011417536": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011417536", "variance": "INVARIANT"}}, ".-2.140553011417536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011417536", "variance": "INVARIANT"}}, "140553011417984": {"type": "Function", "content": {"typeVars": [".-1.140553011417984", ".-2.140553011417984"], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140552953586832"}], "returnType": {"nodeId": "140552965481824", "args": [{"nodeId": "140552953586944"}, {"nodeId": "140552953587056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953586832": {"type": "Union", "content": {"items": [{"nodeId": "140552965481824", "args": [{"nodeId": ".-1.140553011417984"}, {"nodeId": ".-2.140553011417984"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": ".-1.140553011417984"}, {"nodeId": ".-2.140553011417984"}]}]}}, ".-1.140553011417984": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011417984", "variance": "INVARIANT"}}, ".-2.140553011417984": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011417984", "variance": "INVARIANT"}}, "140552953586944": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".-1.140553011417984"}]}}, "140552953587056": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965481824"}, {"nodeId": ".-2.140553011417984"}]}}, "140553011418432": {"type": "Function", "content": {"typeVars": [".-1.140553011418432", ".-2.140553011418432"], "argTypes": [{"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, {"nodeId": "140552953587168"}], "returnType": {"nodeId": "140552965481824", "args": [{"nodeId": "140552953587280"}, {"nodeId": "140552953587392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953587168": {"type": "Union", "content": {"items": [{"nodeId": "140552965481824", "args": [{"nodeId": ".-1.140553011418432"}, {"nodeId": ".-2.140553011418432"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": ".-1.140553011418432"}, {"nodeId": ".-2.140553011418432"}]}]}}, ".-1.140553011418432": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011418432", "variance": "INVARIANT"}}, ".-2.140553011418432": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011418432", "variance": "INVARIANT"}}, "140552953587280": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".-1.140553011418432"}]}}, "140552953587392": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965481824"}, {"nodeId": ".-2.140553011418432"}]}}, "140552953586384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011418880"}, {"nodeId": "140553011419328"}]}}, "140553011418880": {"type": "Function", "content": {"typeVars": [".0.140553011418880"], "argTypes": [{"nodeId": ".0.140553011418880"}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}], "returnType": {"nodeId": ".0.140553011418880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011418880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, "def": "140553011418880", "variance": "INVARIANT"}}, "140553011419328": {"type": "Function", "content": {"typeVars": [".0.140553011419328"], "argTypes": [{"nodeId": ".0.140553011419328"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552953587728"}]}], "returnType": {"nodeId": ".0.140553011419328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011419328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965481824", "args": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}, "def": "140553011419328", "variance": "INVARIANT"}}, "140552953587728": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965481824"}, {"nodeId": ".2.140552965481824"}]}}, "140552965482176": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965482176"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953586496"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011420672"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011421120"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011421568"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011422016"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011422464"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011422912"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011423360"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953587504"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953587840"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011425600"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011426048"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011426496"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011426944"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011427392"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011427840"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011428288"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011428736"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011560512"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011560960"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011561408"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011561856"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011562304"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011562752"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011563200"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953588512"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011564544"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140552965482176"}], "bases": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140552965482176"}]}], "isAbstract": false}}, ".1.140552965482176": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965482176", "variance": "INVARIANT"}}, "140552953586496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011419776"}, {"nodeId": "140553011420224"}]}}, "140553011419776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140553011420224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140553011420672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552953587952"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953587952": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}]}}, "140553011421120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552953588064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953588064": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}]}}, "140553011421568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552953588176"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953588176": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}]}}, "140553011422016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552953588288"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953588288": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}]}}, "140553011422464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011422912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011423360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552953587504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011423808"}, {"nodeId": "140553011424256"}]}}, "140553011423808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".1.140552965482176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011424256": {"type": "Function", "content": {"typeVars": [".0.140553011424256"], "argTypes": [{"nodeId": ".0.140553011424256"}, {"nodeId": "140552987166848"}], "returnType": {"nodeId": ".0.140553011424256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011424256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011424256", "variance": "INVARIANT"}}, "140552953587840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011424704"}, {"nodeId": "140553011425152"}]}}, "140553011424704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552965485696"}, {"nodeId": ".1.140552965482176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553011425152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552987166848"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553011425600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552953588736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953588736": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552987166848"}]}}, "140553011426048": {"type": "Function", "content": {"typeVars": [".0.140553011426048"], "argTypes": [{"nodeId": ".0.140553011426048"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": ".0.140553011426048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011426048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011426048", "variance": "INVARIANT"}}, "140553011426496": {"type": "Function", "content": {"typeVars": [".0.140553011426496"], "argTypes": [{"nodeId": ".0.140553011426496"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": ".0.140553011426496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011426496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011426496", "variance": "INVARIANT"}}, "140553011426944": {"type": "Function", "content": {"typeVars": [".0.140553011426944"], "argTypes": [{"nodeId": ".0.140553011426944"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": ".0.140553011426944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011426944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011426944", "variance": "INVARIANT"}}, "140553011427392": {"type": "Function", "content": {"typeVars": [".0.140553011427392"], "argTypes": [{"nodeId": ".0.140553011427392"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011427392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011427392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011427392", "variance": "INVARIANT"}}, "140553011427840": {"type": "Function", "content": {"typeVars": [".0.140553011427840"], "argTypes": [{"nodeId": ".0.140553011427840"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011427840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011427840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011427840", "variance": "INVARIANT"}}, "140553011428288": {"type": "Function", "content": {"typeVars": [".0.140553011428288"], "argTypes": [{"nodeId": ".0.140553011428288"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011428288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011428288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011428288", "variance": "INVARIANT"}}, "140553011428736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": ".1.140552965482176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140553011560512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140553057844064"}, {"nodeId": ".1.140552965482176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140553011560960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552965482176"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140553011561408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": ".1.140552965482176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140553011561856": {"type": "Function", "content": {"typeVars": [".0.140553011561856"], "argTypes": [{"nodeId": ".0.140553011561856"}], "returnType": {"nodeId": ".0.140553011561856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011561856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011561856", "variance": "INVARIANT"}}, "140553011562304": {"type": "Function", "content": {"typeVars": [".0.140553011562304"], "argTypes": [{"nodeId": ".0.140553011562304"}], "returnType": {"nodeId": ".0.140553011562304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011562304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, "def": "140553011562304", "variance": "INVARIANT"}}, "140553011562752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": ".1.140552965482176"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140553011563200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": ".1.140552965482176"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140552953588512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011413056"}, {"nodeId": "140553011564096"}]}}, "140553011413056": {"type": "Function", "content": {"typeVars": [".-1.140553011413056"], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".-1.140553011413056"}]}, {"nodeId": "N"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140553011413056": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140552978553024"}, "def": "140553011413056", "variance": "INVARIANT"}}, "140553011564096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140552953501888"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140552953501888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140552965482176"}], "returnType": {"nodeId": "140552953589184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552953589184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552912"}}}, "140553011564544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482176", "args": [{"nodeId": ".1.140552965482176"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140552965482528": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011564992"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011565440"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011565888"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011566336"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011566784"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011567232"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011567680"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011568128"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011568576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011569024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011569472"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011569920"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011570368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011570816"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011571264"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011571712"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011572160"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011572608"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011573056"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011573504"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011573952"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011574848"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011575296"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011575744"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011576192"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011675200"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011676096"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011676544"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011676992"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011677440"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011677888"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011678336"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011678784"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011679232"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011679680"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011680128"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011680576"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011681024"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011681472"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011681920"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011682368"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011682816"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011683264"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011683712"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011684160"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011684608"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011685056"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011685504"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552907152448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011685952"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011686400"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011686848"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011687296"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011687744"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011688192"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011688640"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011689088"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011689536"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011689984"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011690432"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011690880"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011806272"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011806720"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011807168"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011807616"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011808064"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011808512"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011808960"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552965482528"}]}], "isAbstract": false}}, "140553011564992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140553011565440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011565888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011566336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057844768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011566784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140552953589296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953589296": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140553011567232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953589408"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953589408": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011567680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953589520"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953589520": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011568128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953589632"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953589632": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011568576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953589744"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953589744": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011569024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011569472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011569920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011570368": {"type": "Function", "content": {"typeVars": [".0.140553011570368"], "argTypes": [{"nodeId": ".0.140553011570368"}, {"nodeId": "140552953589968"}], "returnType": {"nodeId": ".0.140553011570368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011570368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011570368", "variance": "INVARIANT"}}, "140552953589968": {"type": "Union", "content": {"items": [{"nodeId": "140552965485696"}, {"nodeId": "140552987166848"}]}}, "140553011570816": {"type": "Function", "content": {"typeVars": [".0.140553011570816"], "argTypes": [{"nodeId": ".0.140553011570816"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".0.140553011570816"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553011570816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011570816", "variance": "INVARIANT"}}, "140553011571264": {"type": "Function", "content": {"typeVars": [".0.140553011571264"], "argTypes": [{"nodeId": ".0.140553011571264"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".0.140553011571264"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553011571264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011571264", "variance": "INVARIANT"}}, "140553011571712": {"type": "Function", "content": {"typeVars": [".0.140553011571712"], "argTypes": [{"nodeId": ".0.140553011571712"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": ".0.140553011571712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011571712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011571712", "variance": "INVARIANT"}}, "140553011572160": {"type": "Function", "content": {"typeVars": [".0.140553011572160"], "argTypes": [{"nodeId": ".0.140553011572160"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": ".0.140553011572160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011572160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011572160", "variance": "INVARIANT"}}, "140553011572608": {"type": "Function", "content": {"typeVars": [".0.140553011572608"], "argTypes": [{"nodeId": ".0.140553011572608"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011572608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011572608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011572608", "variance": "INVARIANT"}}, "140553011573056": {"type": "Function", "content": {"typeVars": [".0.140553011573056"], "argTypes": [{"nodeId": ".0.140553011573056"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011573056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011573056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011573056", "variance": "INVARIANT"}}, "140553011573504": {"type": "Function", "content": {"typeVars": [".0.140553011573504"], "argTypes": [{"nodeId": ".0.140553011573504"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553011573504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011573504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011573504", "variance": "INVARIANT"}}, "140553011573952": {"type": "Function", "content": {"typeVars": [".0.140553011573952"], "argTypes": [{"nodeId": ".0.140553011573952"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": ".0.140553011573952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011573952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011573952", "variance": "INVARIANT"}}, "140553011574848": {"type": "Function", "content": {"typeVars": [".0.140553011574848"], "argTypes": [{"nodeId": ".0.140553011574848"}], "returnType": {"nodeId": ".0.140553011574848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011574848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011574848", "variance": "INVARIANT"}}, "140553011575296": {"type": "Function", "content": {"typeVars": [".0.140553011575296"], "argTypes": [{"nodeId": ".0.140553011575296"}], "returnType": {"nodeId": ".0.140553011575296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011575296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011575296", "variance": "INVARIANT"}}, "140553011575744": {"type": "Function", "content": {"typeVars": [".0.140553011575744"], "argTypes": [{"nodeId": ".0.140553011575744"}, {"nodeId": "140553057844064"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553011575744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140553011575744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011575744", "variance": "INVARIANT"}}, "140553011576192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953590304"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140552953590304": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011675200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953590416"}, {"nodeId": "140552953590528"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140552953590416": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953590528": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553011676096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953590640"}, {"nodeId": "140552953590752"}, {"nodeId": "140552953590864"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140552953590640": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}]}}, "140552953590752": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953590864": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553011676544": {"type": "Function", "content": {"typeVars": [".0.140553011676544"], "argTypes": [{"nodeId": ".0.140553011676544"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011676544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140553011676544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011676544", "variance": "INVARIANT"}}, "140553011676992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953590976"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140552953590976": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011677440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140553011677888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140553011678336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140553011678784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011679232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011679680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011680128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011680576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011681024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011681472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011681920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011682368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011682816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011683264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011683712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011684160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140553011684608": {"type": "Function", "content": {"typeVars": [".0.140553011684608"], "argTypes": [{"nodeId": ".0.140553011684608"}, {"nodeId": "140553057844064"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553011684608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140553011684608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011684608", "variance": "INVARIANT"}}, "140553011685056": {"type": "Function", "content": {"typeVars": [".0.140553011685056"], "argTypes": [{"nodeId": ".0.140553011685056"}], "returnType": {"nodeId": ".0.140553011685056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011685056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011685056", "variance": "INVARIANT"}}, "140553011685504": {"type": "Function", "content": {"typeVars": [".0.140553011685504"], "argTypes": [{"nodeId": ".0.140553011685504"}, {"nodeId": "140552953591536"}], "returnType": {"nodeId": ".0.140553011685504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140553011685504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011685504", "variance": "INVARIANT"}}, "140552953591536": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552907152448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552907228768"}, {"nodeId": "140552907228992"}, {"nodeId": "140552907229216"}]}}, "140552907228768": {"type": "Function", "content": {"typeVars": [".-1.140552907228768"], "argTypes": [{"nodeId": "140552907152112"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": ".-1.140552907228768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552907152112": {"type": "Union", "content": {"items": [{"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": ".-1.140552907228768"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140552907228768"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552907151776"}, {"nodeId": ".-1.140552907228768"}]}]}}, ".-1.140552907228768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552907228768", "variance": "INVARIANT"}}, "140552907151776": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552907228992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552907229216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140552907152224"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552907152224": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553011685952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953591760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140552953591760": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140553011686400": {"type": "Function", "content": {"typeVars": [".0.140553011686400"], "argTypes": [{"nodeId": ".0.140553011686400"}, {"nodeId": "140552953591872"}], "returnType": {"nodeId": ".0.140553011686400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140553011686400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011686400", "variance": "INVARIANT"}}, "140552953591872": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011686848": {"type": "Function", "content": {"typeVars": [".0.140553011686848"], "argTypes": [{"nodeId": ".0.140553011686848"}, {"nodeId": "140552953591984"}], "returnType": {"nodeId": ".0.140553011686848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140553011686848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011686848", "variance": "INVARIANT"}}, "140552953591984": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011687296": {"type": "Function", "content": {"typeVars": [".0.140553011687296"], "argTypes": [{"nodeId": ".0.140553011687296"}, {"nodeId": "140552953592096"}, {"nodeId": "140552953592208"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011687296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140553011687296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011687296", "variance": "INVARIANT"}}, "140552953592096": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140552953592208": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011687744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953592320"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140552953592320": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011688192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953592432"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140552953592432": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552965482528"}]}}, "140553011688640": {"type": "Function", "content": {"typeVars": [".0.140553011688640"], "argTypes": [{"nodeId": ".0.140553011688640"}, {"nodeId": "140553057844064"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553011688640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140553011688640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011688640", "variance": "INVARIANT"}}, "140553011689088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953592768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140552953592768": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140553011689536": {"type": "Function", "content": {"typeVars": [".0.140553011689536"], "argTypes": [{"nodeId": ".0.140553011689536"}, {"nodeId": "140552953592880"}], "returnType": {"nodeId": ".0.140553011689536"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140553011689536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011689536", "variance": "INVARIANT"}}, "140552953592880": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553011689984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953592992"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552953592992": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553011690432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953593104"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140552953593104": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553011690880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140553011806272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482528"}, {"nodeId": "140552953593216"}, {"nodeId": "140552953593328"}, {"nodeId": "140552953593440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140552953593216": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}]}}, "140552953593328": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953593440": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553011806720": {"type": "Function", "content": {"typeVars": [".0.140553011806720"], "argTypes": [{"nodeId": ".0.140553011806720"}, {"nodeId": "140552953593552"}], "returnType": {"nodeId": ".0.140553011806720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140553011806720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011806720", "variance": "INVARIANT"}}, "140552953593552": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553011807168": {"type": "Function", "content": {"typeVars": [".0.140553011807168"], "argTypes": [{"nodeId": ".0.140553011807168"}], "returnType": {"nodeId": ".0.140553011807168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011807168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011807168", "variance": "INVARIANT"}}, "140553011807616": {"type": "Function", "content": {"typeVars": [".0.140553011807616"], "argTypes": [{"nodeId": ".0.140553011807616"}], "returnType": {"nodeId": ".0.140553011807616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011807616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011807616", "variance": "INVARIANT"}}, "140553011808064": {"type": "Function", "content": {"typeVars": [".0.140553011808064"], "argTypes": [{"nodeId": ".0.140553011808064"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140553011808064"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140553011808064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011808064", "variance": "INVARIANT"}}, "140553011808512": {"type": "Function", "content": {"typeVars": [".0.140553011808512"], "argTypes": [{"nodeId": ".0.140553011808512"}], "returnType": {"nodeId": ".0.140553011808512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011808512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011808512", "variance": "INVARIANT"}}, "140553011808960": {"type": "Function", "content": {"typeVars": [".0.140553011808960"], "argTypes": [{"nodeId": ".0.140553011808960"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011808960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140553011808960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482528"}, "def": "140553011808960", "variance": "INVARIANT"}}, "140552965482880": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552907230336"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953588624"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011810752"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011811200"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011811648"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011812096"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011812544"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011812992"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011813440"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011813888"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011814336"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011814784"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011815232"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011815680"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011816128"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011816576"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011817024"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011817472"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011817920"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011818368"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011818816"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011819264"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011819712"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011820160"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011820608"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011821056"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011821504"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011821952"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011904576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011905024"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965482880"}], "bases": [{"nodeId": "140553057841248", "args": [{"nodeId": ".1.140552965482880"}]}], "isAbstract": false}}, ".1.140552965482880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965482880", "variance": "INVARIANT"}}, "140552907230336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "140552948645952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948645952": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953588624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011809856"}, {"nodeId": "140553011810304"}]}}, "140553011809856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552948646176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140552948646176": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553011810304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552948646288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140552948646288": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553011810752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": ".1.140552965482880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011811200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": ".1.140552965482880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011811648": {"type": "Function", "content": {"typeVars": [".0.140553011811648"], "argTypes": [{"nodeId": ".0.140553011811648"}], "returnType": {"nodeId": ".0.140553011811648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011811648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011811648", "variance": "INVARIANT"}}, "140553011812096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": ".1.140552965482880"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011812544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011812992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011813440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140553057844064"}, {"nodeId": ".1.140552965482880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553011813888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": ".1.140552965482880"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140553011814336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": ".1.140552965482880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011814784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": ".1.140552965482880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011815232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": ".1.140552965482880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011815680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553011816128": {"type": "Function", "content": {"typeVars": [".0.140553011816128"], "argTypes": [{"nodeId": ".0.140553011816128"}], "returnType": {"nodeId": ".0.140553011816128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011816128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011816128", "variance": "INVARIANT"}}, "140553011816576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011817024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": ".1.140552965482880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011817472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965485696"}, {"nodeId": ".1.140552965482880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553011817920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011818368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011818816": {"type": "Function", "content": {"typeVars": [".0.140553011818816"], "argTypes": [{"nodeId": ".0.140553011818816"}], "returnType": {"nodeId": "140552948646848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011818816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011818816", "variance": "INVARIANT"}}, "140552948646848": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140552948646624"}, {"nodeId": "N"}, {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965482880"}]}]}}, "140552948646624": {"type": "Tuple", "content": {"items": []}}, "140553011819264": {"type": "Function", "content": {"typeVars": [".0.140553011819264"], "argTypes": [{"nodeId": ".0.140553011819264"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": ".0.140553011819264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011819264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011819264", "variance": "INVARIANT"}}, "140553011819712": {"type": "Function", "content": {"typeVars": [".0.140553011819712"], "argTypes": [{"nodeId": ".0.140553011819712"}, {"nodeId": ".0.140553011819712"}], "returnType": {"nodeId": ".0.140553011819712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011819712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011819712", "variance": "INVARIANT"}}, "140553011820160": {"type": "Function", "content": {"typeVars": [".0.140553011820160"], "argTypes": [{"nodeId": ".0.140553011820160"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011820160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011820160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011820160", "variance": "INVARIANT"}}, "140553011820608": {"type": "Function", "content": {"typeVars": [".0.140553011820608"], "argTypes": [{"nodeId": ".0.140553011820608"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140553011820608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011820608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, "def": "140553011820608", "variance": "INVARIANT"}}, "140553011821056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011821504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011821952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011904576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}, {"nodeId": "140552965482880", "args": [{"nodeId": ".1.140552965482880"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011905024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140552965307232": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953589856"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011907264"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011907712"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011908160"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552907330880"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948646400"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948647184"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011911744"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011912192"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011912640"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011913088"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011913536"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011913984"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011914432"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011914880"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011915328"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011915776"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011916224"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011916672"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011917120"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011917568"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011918016"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011918464"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011918912"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011919360"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011919808"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140552965307232"}], "bases": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "isAbstract": false}}, ".1.140552965307232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965307232", "variance": "INVARIANT"}}, "140552953589856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011905472"}, {"nodeId": "140553011905920"}, {"nodeId": "140553011906368"}, {"nodeId": "140553011906816"}]}}, "140553011905472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553011905920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553011906368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011906816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011907264": {"type": "Function", "content": {"typeVars": [".0.140553011907264"], "argTypes": [{"nodeId": ".0.140553011907264"}], "returnType": {"nodeId": ".0.140553011907264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553011907264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "def": "140553011907264", "variance": "INVARIANT"}}, "140553011907712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965307232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011908160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552948647296"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552948647520"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140552948647296": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552948647520": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}}, "140552907330880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140552948647744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140552948647744": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552948646400": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011909056"}, {"nodeId": "140553011909504"}, {"nodeId": "140553011909952"}]}}, "140553011909056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553011909504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553011909952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552948647184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553011910400"}, {"nodeId": "140553011910848"}, {"nodeId": "140553011911296"}]}}, "140553011910400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553011910848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553011911296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "N"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140553011911744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": ".1.140552965307232"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140553011912192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011912640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011913088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011913536": {"type": "Function", "content": {"typeVars": [".-1.140553011913536"], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": ".-1.140553011913536"}]}], "returnType": {"nodeId": "140552965307232", "args": [{"nodeId": "140552948648080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553011913536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011913536", "variance": "INVARIANT"}}, "140552948648080": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965307232"}, {"nodeId": ".-1.140553011913536"}]}}, "140553011913984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011914432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011914880": {"type": "Function", "content": {"typeVars": [".-1.140553011914880"], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": ".-1.140553011914880"}]}], "returnType": {"nodeId": "140552965307232", "args": [{"nodeId": "140552948648192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553011914880": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553011914880", "variance": "INVARIANT"}}, "140552948648192": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965307232"}, {"nodeId": ".-1.140553011914880"}]}}, "140553011915328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011915776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553011916224": {"type": "Function", "content": {"typeVars": [".0.140553011916224"], "argTypes": [{"nodeId": ".0.140553011916224"}, {"nodeId": "140552986686592", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "returnType": {"nodeId": ".0.140553011916224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011916224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "def": "140553011916224", "variance": "INVARIANT"}}, "140553011916672": {"type": "Function", "content": {"typeVars": [".0.140553011916672"], "argTypes": [{"nodeId": ".0.140553011916672"}, {"nodeId": "140552986686592", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "returnType": {"nodeId": ".0.140553011916672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011916672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "def": "140553011916672", "variance": "INVARIANT"}}, "140553011917120": {"type": "Function", "content": {"typeVars": [".0.140553011917120"], "argTypes": [{"nodeId": ".0.140553011917120"}, {"nodeId": "140552986686592", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "returnType": {"nodeId": ".0.140553011917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011917120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "def": "140553011917120", "variance": "INVARIANT"}}, "140553011917568": {"type": "Function", "content": {"typeVars": [".0.140553011917568"], "argTypes": [{"nodeId": ".0.140553011917568"}, {"nodeId": "140552986686592", "args": [{"nodeId": ".1.140552965307232"}, {"nodeId": "140553057844064"}]}], "returnType": {"nodeId": ".0.140553011917568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553011917568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, "def": "140553011917568", "variance": "INVARIANT"}}, "140553011918016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553011918464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011918912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011919360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553011919808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307232", "args": [{"nodeId": ".1.140552965307232"}]}, {"nodeId": "140552965307232", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986674976": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553011920256"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552986674976"}], "bases": [{"nodeId": "140552965475840", "args": [{"nodeId": ".1.140552986674976"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".1.140552986674976"}]}], "isAbstract": false}}, ".1.140552986674976": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986674976", "variance": "COVARIANT"}}, "140553011920256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674976", "args": [{"nodeId": ".1.140552986674976"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552986674976"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986675328": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012035648"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552986675328"}, {"nodeId": ".2.140552986675328"}], "bases": [{"nodeId": "140552965475488", "args": [{"nodeId": ".1.140552986675328"}, {"nodeId": ".2.140552986675328"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": "140552987080320"}]}], "isAbstract": false}}, ".1.140552986675328": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986675328", "variance": "COVARIANT"}}, ".2.140552986675328": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986675328", "variance": "COVARIANT"}}, "140553012035648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986675328", "args": [{"nodeId": ".1.140552986675328"}, {"nodeId": ".2.140552986675328"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552948648864"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552948648864": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552986675328"}, {"nodeId": ".2.140552986675328"}]}}, "140552987080320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552986675328"}, {"nodeId": ".2.140552986675328"}]}}, "140552986675680": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012036096"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552986675680"}], "bases": [{"nodeId": "140552965476192", "args": [{"nodeId": ".1.140552986675680"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".1.140552986675680"}]}], "isAbstract": false}}, ".1.140552986675680": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986675680", "variance": "COVARIANT"}}, "140553012036096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986675680", "args": [{"nodeId": ".1.140552986675680"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552986675680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965483232": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012036544"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552965483232"}, {"nodeId": ".2.140552965483232"}], "bases": [{"nodeId": "140552965478304", "args": [{"nodeId": ".1.140552965483232"}, {"nodeId": ".2.140552965483232"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".1.140552965483232"}]}], "isAbstract": false}}, ".1.140552965483232": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965483232", "variance": "COVARIANT"}}, ".2.140552965483232": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965483232", "variance": "COVARIANT"}}, "140553012036544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965483232", "args": [{"nodeId": ".1.140552965483232"}, {"nodeId": ".2.140552965483232"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965483232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965483584": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012036992"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552965483584"}, {"nodeId": ".2.140552965483584"}], "bases": [{"nodeId": "140552965479008", "args": [{"nodeId": ".1.140552965483584"}, {"nodeId": ".2.140552965483584"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": "140552965588016"}]}], "isAbstract": false}}, ".1.140552965483584": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965483584", "variance": "COVARIANT"}}, ".2.140552965483584": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965483584", "variance": "COVARIANT"}}, "140553012036992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965483584", "args": [{"nodeId": ".1.140552965483584"}, {"nodeId": ".2.140552965483584"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552948649088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552948649088": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965483584"}, {"nodeId": ".2.140552965483584"}]}}, "140552965588016": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965483584"}, {"nodeId": ".2.140552965483584"}]}}, "140552965483936": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012037440"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140552965483936"}, {"nodeId": ".2.140552965483936"}], "bases": [{"nodeId": "140552965478656", "args": [{"nodeId": ".1.140552965483936"}, {"nodeId": ".2.140552965483936"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".2.140552965483936"}]}], "isAbstract": false}}, ".1.140552965483936": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965483936", "variance": "COVARIANT"}}, ".2.140552965483936": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965483936", "variance": "COVARIANT"}}, "140553012037440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965483936", "args": [{"nodeId": ".1.140552965483936"}, {"nodeId": ".2.140552965483936"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".2.140552965483936"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552965484288": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012037888"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012038336"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012038784"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012039232"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012039680"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012040128"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012040576"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948647856"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948649424"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}], "bases": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, {"nodeId": "140553057837728", "args": [{"nodeId": ".1.140552965484288"}]}], "isAbstract": false}}, ".1.140552965484288": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965484288", "variance": "INVARIANT"}}, ".2.140552965484288": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965484288", "variance": "INVARIANT"}}, "140553012037888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552948649312"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140552948649312": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}}, "140553012038336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, {"nodeId": ".1.140552965484288"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140553012038784": {"type": "Function", "content": {"typeVars": [".0.140553012038784"], "argTypes": [{"nodeId": ".0.140553012038784"}], "returnType": {"nodeId": ".0.140553012038784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553012038784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, "def": "140553012038784", "variance": "INVARIANT"}}, "140553012039232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965484288"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553012039680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}], "returnType": {"nodeId": "140552965483232", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553012040128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}], "returnType": {"nodeId": "140552965483584", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553012040576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}], "returnType": {"nodeId": "140552965483936", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948647856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012041024"}, {"nodeId": "140553012041472"}]}}, "140553012041024": {"type": "Function", "content": {"typeVars": [".-1.140553012041024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553012041024"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965484288", "args": [{"nodeId": ".-1.140553012041024"}, {"nodeId": "140552948649760"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140553012041024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012041024", "variance": "INVARIANT"}}, "140552948649760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553012041472": {"type": "Function", "content": {"typeVars": [".-1.140553012041472", ".-2.140553012041472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553012041472"}]}, {"nodeId": ".-2.140553012041472"}], "returnType": {"nodeId": "140552965484288", "args": [{"nodeId": ".-1.140553012041472"}, {"nodeId": ".-2.140553012041472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140553012041472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012041472", "variance": "INVARIANT"}}, ".-2.140553012041472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012041472", "variance": "INVARIANT"}}, "140552948649424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012041920"}, {"nodeId": "140553012042368"}]}}, "140553012041920": {"type": "Function", "content": {"typeVars": [".-1.140553012041920"], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": "140552948649984"}]}, {"nodeId": ".1.140552965484288"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552948650096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140552948649984": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553012041920"}, {"nodeId": "N"}]}}, ".-1.140553012041920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012041920", "variance": "INVARIANT"}}, "140552948650096": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553012041920"}, {"nodeId": "N"}]}}, "140553012042368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484288", "args": [{"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}]}, {"nodeId": ".1.140552965484288"}, {"nodeId": ".2.140552965484288"}], "returnType": {"nodeId": ".2.140552965484288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140552965307584": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965588240"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948649536"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012046400"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012046848"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012047296"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}], "bases": [{"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}], "isAbstract": false}}, ".1.140552965307584": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965307584", "variance": "INVARIANT"}}, ".2.140552965307584": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965307584", "variance": "INVARIANT"}}, "140552965588240": {"type": "Union", "content": {"items": [{"nodeId": "140552973626368"}, {"nodeId": "N"}]}}, "140552973626368": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140552948649536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012042816"}, {"nodeId": "140553012043264"}, {"nodeId": "140553012043712"}, {"nodeId": "140553012044160"}, {"nodeId": "140553012044608"}, {"nodeId": "140553012045056"}, {"nodeId": "140553012045504"}, {"nodeId": "140553012045952"}]}}, "140553012042816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553012043264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": ".2.140552965307584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140553012043712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": "140552948650320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552948650320": {"type": "Union", "content": {"items": [{"nodeId": "140552953502560"}, {"nodeId": "N"}]}}, "140552953502560": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140553012044160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": "140552948650432"}, {"nodeId": ".2.140552965307584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140552948650432": {"type": "Union", "content": {"items": [{"nodeId": "140552953502784"}, {"nodeId": "N"}]}}, "140552953502784": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140553012044608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": "140552948650544"}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552948650544": {"type": "Union", "content": {"items": [{"nodeId": "140552953502112"}, {"nodeId": "N"}]}}, "140552953502112": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140553012045056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": "140552948650656"}, {"nodeId": "140552986686944", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": ".2.140552965307584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140552948650656": {"type": "Union", "content": {"items": [{"nodeId": "140552953503008"}, {"nodeId": "N"}]}}, "140552953503008": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140553012045504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": "140552948650768"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552948650992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140552948650768": {"type": "Union", "content": {"items": [{"nodeId": "140552953503232"}, {"nodeId": "N"}]}}, "140552953503232": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140552948650992": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}}, "140553012045952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": "140552948651104"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552948651328"}]}, {"nodeId": ".2.140552965307584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140552948651104": {"type": "Union", "content": {"items": [{"nodeId": "140552953503456"}, {"nodeId": "N"}]}}, "140552953503456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": [], "argNames": []}}, "140552948651328": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".2.140552965307584"}]}}, "140553012046400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}, {"nodeId": ".1.140552965307584"}], "returnType": {"nodeId": ".2.140552965307584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553012046848": {"type": "Function", "content": {"typeVars": [".0.140553012046848"], "argTypes": [{"nodeId": ".0.140553012046848"}], "returnType": {"nodeId": ".0.140553012046848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553012046848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}, "def": "140553012046848", "variance": "INVARIANT"}}, "140553012047296": {"type": "Function", "content": {"typeVars": [".0.140553012047296"], "argTypes": [{"nodeId": ".0.140553012047296"}], "returnType": {"nodeId": ".0.140553012047296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553012047296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965307584", "args": [{"nodeId": ".1.140552965307584"}, {"nodeId": ".2.140552965307584"}]}, "def": "140553012047296", "variance": "INVARIANT"}}, "140552965484640": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012047744"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012048192"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902462592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012049088"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012049536"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012049984"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012050432"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012050880"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012051328"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012215872"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012216320"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948649872"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948651552"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012218560"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552902465280"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948651776"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012219904"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012220352"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552948652112"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}], "bases": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}], "isAbstract": false}}, ".1.140552965484640": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965484640", "variance": "INVARIANT"}}, ".2.140552965484640": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965484640", "variance": "INVARIANT"}}, "140553012047744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140553012048192": {"type": "Function", "content": {"typeVars": [".0.140553012048192"], "argTypes": [{"nodeId": ".0.140553012048192"}, {"nodeId": "140552948651664"}], "returnType": {"nodeId": ".0.140553012048192"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140553012048192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, "def": "140553012048192", "variance": "INVARIANT"}}, "140552948651664": {"type": "Union", "content": {"items": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": "N"}]}}, "140552902462592": {"type": "Function", "content": {"typeVars": [".0.140552902462592"], "argTypes": [{"nodeId": ".0.140552902462592"}], "returnType": {"nodeId": ".0.140552902462592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552902462592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, "def": "140552902462592", "variance": "INVARIANT"}}, "140553012049088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553012049536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553012049984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}], "returnType": {"nodeId": ".2.140552965484640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553012050432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965484640"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553012050880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553012051328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553012215872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}], "returnType": {"nodeId": ".2.140552965484640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140553012216320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948649872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012216768"}, {"nodeId": "140553012217216"}]}}, "140553012216768": {"type": "Function", "content": {"typeVars": [".-1.140553012216768"], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": "140552948651888"}]}, {"nodeId": ".1.140552965484640"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552948652000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140552948651888": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553012216768"}, {"nodeId": "N"}]}}, ".-1.140553012216768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012216768", "variance": "INVARIANT"}}, "140552948652000": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140553012216768"}, {"nodeId": "N"}]}}, "140553012217216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}], "returnType": {"nodeId": ".2.140552965484640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140552948651552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012217664"}, {"nodeId": "140553012218112"}]}}, "140553012217664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}], "returnType": {"nodeId": ".2.140552965484640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140553012218112": {"type": "Function", "content": {"typeVars": [".-1.140553012218112"], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": ".1.140552965484640"}, {"nodeId": "140552948652224"}], "returnType": {"nodeId": "140552948652336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140552948652224": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965484640"}, {"nodeId": ".-1.140553012218112"}]}}, ".-1.140553012218112": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012218112", "variance": "INVARIANT"}}, "140552948652336": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965484640"}, {"nodeId": ".-1.140553012218112"}]}}, "140553012218560": {"type": "Function", "content": {"typeVars": [".0.140553012218560"], "argTypes": [{"nodeId": ".0.140553012218560"}], "returnType": {"nodeId": ".0.140553012218560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140553012218560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, "def": "140553012218560", "variance": "INVARIANT"}}, "140552902465280": {"type": "Function", "content": {"typeVars": [".0.140552902465280"], "argTypes": [{"nodeId": ".0.140552902465280"}], "returnType": {"nodeId": ".0.140552902465280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552902465280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, "def": "140552902465280", "variance": "INVARIANT"}}, "140552948651776": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012219008"}, {"nodeId": "140553012219456"}]}}, "140553012219008": {"type": "Function", "content": {"typeVars": [".-1.140553012219008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553012219008"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965484640", "args": [{"nodeId": ".-1.140553012219008"}, {"nodeId": "140552948652672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140553012219008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012219008", "variance": "INVARIANT"}}, "140552948652672": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140553012219456": {"type": "Function", "content": {"typeVars": [".-1.140553012219456", ".-2.140553012219456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": ".-1.140553012219456"}]}, {"nodeId": ".-2.140553012219456"}], "returnType": {"nodeId": "140552965484640", "args": [{"nodeId": ".-1.140553012219456"}, {"nodeId": ".-2.140553012219456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140553012219456": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012219456", "variance": "INVARIANT"}}, ".-2.140553012219456": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012219456", "variance": "INVARIANT"}}, "140553012219904": {"type": "Function", "content": {"typeVars": [".-1.140553012219904", ".-2.140553012219904"], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553012219904"}, {"nodeId": ".-2.140553012219904"}]}], "returnType": {"nodeId": "140552965484640", "args": [{"nodeId": "140552948652784"}, {"nodeId": "140552948652896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553012219904": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012219904", "variance": "INVARIANT"}}, ".-2.140553012219904": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012219904", "variance": "INVARIANT"}}, "140552948652784": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".-1.140553012219904"}]}}, "140552948652896": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965484640"}, {"nodeId": ".-2.140553012219904"}]}}, "140553012220352": {"type": "Function", "content": {"typeVars": [".-1.140553012220352", ".-2.140553012220352"], "argTypes": [{"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553012220352"}, {"nodeId": ".-2.140553012220352"}]}], "returnType": {"nodeId": "140552965484640", "args": [{"nodeId": "140552948653008"}, {"nodeId": "140552948653120"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553012220352": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012220352", "variance": "INVARIANT"}}, ".-2.140553012220352": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012220352", "variance": "INVARIANT"}}, "140552948653008": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".-1.140553012220352"}]}}, "140552948653120": {"type": "Union", "content": {"items": [{"nodeId": ".2.140552965484640"}, {"nodeId": ".-2.140553012220352"}]}}, "140552948652112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012220800"}, {"nodeId": "140553012221248"}]}}, "140553012220800": {"type": "Function", "content": {"typeVars": [".0.140553012220800"], "argTypes": [{"nodeId": ".0.140553012220800"}, {"nodeId": "140552986686944", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}], "returnType": {"nodeId": ".0.140553012220800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553012220800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, "def": "140553012220800", "variance": "INVARIANT"}}, "140553012221248": {"type": "Function", "content": {"typeVars": [".0.140553012221248"], "argTypes": [{"nodeId": ".0.140553012221248"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552948653456"}]}], "returnType": {"nodeId": ".0.140553012221248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553012221248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965484640", "args": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}, "def": "140553012221248", "variance": "INVARIANT"}}, "140552948653456": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965484640"}, {"nodeId": ".2.140552965484640"}]}}, "140552978622144": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553020552320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020550912"}], "isAbstract": false}}, "140553020552320": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910847360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990190368"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140553020551968"}], "isAbstract": false}}, "140552910847360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990190368": {"type": "Function", "content": {"typeVars": [".0.140552990190368"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140552990190368"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140552990190368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020552320"}, "def": "140552990190368", "variance": "INVARIANT"}}, "140553020551968": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990188128"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990188576"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990189024"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990189472"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910841760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910844448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910845568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057844064"}, {"nodeId": "140553020551616"}], "isAbstract": false}}, "140552990188128": {"type": "Function", "content": {"typeVars": [".0.140552990188128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552990188128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140552990188128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552990188128", "variance": "INVARIANT"}}, "140552990188576": {"type": "Function", "content": {"typeVars": [".0.140552990188576"], "argTypes": [{"nodeId": ".0.140552990188576"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552990188576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990188576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552990188576", "variance": "INVARIANT"}}, "140552990189024": {"type": "Function", "content": {"typeVars": [".0.140552990189024"], "argTypes": [{"nodeId": ".0.140552990189024"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552990189024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990189024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552990189024", "variance": "INVARIANT"}}, "140552990189472": {"type": "Function", "content": {"typeVars": [".0.140552990189472"], "argTypes": [{"nodeId": ".0.140552990189472"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552990189472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990189472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552990189472", "variance": "INVARIANT"}}, "140552910841760": {"type": "Function", "content": {"typeVars": [".0.140552910841760"], "argTypes": [{"nodeId": ".0.140552910841760"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552910841760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552910841760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552910841760", "variance": "INVARIANT"}}, "140552910844448": {"type": "Function", "content": {"typeVars": [".0.140552910844448"], "argTypes": [{"nodeId": ".0.140552910844448"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552910844448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552910844448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552910844448", "variance": "INVARIANT"}}, "140552910845568": {"type": "Function", "content": {"typeVars": [".0.140552910845568"], "argTypes": [{"nodeId": ".0.140552910845568"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552910845568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552910845568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551968"}, "def": "140552910845568", "variance": "INVARIANT"}}, "140553020551616": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973913216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910833696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910835040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999730336"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999730784"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990179616"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990180064"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990180512"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990180960"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140553020550912"}], "isAbstract": false}}, "140552973913216": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552910833696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020551616"}], "returnType": {"nodeId": "140552953210560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953210560": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552910835040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020551616"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999730336": {"type": "Function", "content": {"typeVars": [".0.140552999730336"], "argTypes": [{"nodeId": ".0.140552999730336"}, {"nodeId": ".0.140552999730336"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552999730336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551616"}, "def": "140552999730336", "variance": "INVARIANT"}}, "140552999730784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020551616"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990179616": {"type": "Function", "content": {"typeVars": [".0.140552990179616"], "argTypes": [{"nodeId": ".0.140552990179616"}, {"nodeId": ".0.140552990179616"}], "returnType": {"nodeId": ".0.140552990179616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990179616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551616"}, "def": "140552990179616", "variance": "INVARIANT"}}, "140552990180064": {"type": "Function", "content": {"typeVars": [".0.140552990180064"], "argTypes": [{"nodeId": ".0.140552990180064"}, {"nodeId": ".0.140552990180064"}], "returnType": {"nodeId": ".0.140552990180064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990180064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551616"}, "def": "140552990180064", "variance": "INVARIANT"}}, "140552990180512": {"type": "Function", "content": {"typeVars": [".0.140552990180512"], "argTypes": [{"nodeId": ".0.140552990180512"}, {"nodeId": ".0.140552990180512"}], "returnType": {"nodeId": ".0.140552990180512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990180512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551616"}, "def": "140552990180512", "variance": "INVARIANT"}}, "140552990180960": {"type": "Function", "content": {"typeVars": [".0.140552990180960"], "argTypes": [{"nodeId": ".0.140552990180960"}], "returnType": {"nodeId": ".0.140552990180960"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552990180960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551616"}, "def": "140552990180960", "variance": "INVARIANT"}}, "140553020550912": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910697888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910698560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973912992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910698784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910699008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999726304"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999726752"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999727200"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999727648"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552910697888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550912"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552910698560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552973912992": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}]}}, "140552910698784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140552910699008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140552999726304": {"type": "Function", "content": {"typeVars": [".0.140552999726304"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": ".0.140552999726304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140552999726304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020550912"}, "def": "140552999726304", "variance": "INVARIANT"}}, "140552999726752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550912"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999727200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550912"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140552999727648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550912"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140552978622496": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552978623552": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987175296"}], "isAbstract": false}}, "140552978623904": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012283872"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953441616"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552978623904"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552978623904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978623904", "variance": "INVARIANT"}}, "140553012283872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978623904", "args": [{"nodeId": ".1.140552978623904"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140552953441616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012284320"}, {"nodeId": "140553012284768"}]}}, "140553012284320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140552978623904", "args": [{"nodeId": ".1.140552978623904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140553012284768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552978623904", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140552965748192": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012288352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012289248"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012289696"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012290144"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012290592"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012291040"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012291488"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012291936"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012292384"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553012292832"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957665552"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140552965748192"}], "bases": [{"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}]}], "isAbstract": false}}, ".1.140552965748192": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965748192", "variance": "INVARIANT"}}, "140553012288352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": "140553057842656", "args": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140553012289248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}], "returnType": {"nodeId": ".1.140552965748192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140553012289696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553012290144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": ".1.140552965748192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553012290592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": ".1.140552965748192"}], "returnType": {"nodeId": ".1.140552965748192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140553012291040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553012291488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552965748192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553012291936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553012292384": {"type": "Function", "content": {"typeVars": [".-1.140553012292384", ".-2.140553012292384"], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553012292384"}, {"nodeId": ".-2.140553012292384"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552957670816"}, {"nodeId": "140552957670928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553012292384": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012292384", "variance": "INVARIANT"}}, ".-2.140553012292384": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012292384", "variance": "INVARIANT"}}, "140552957670816": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".-1.140553012292384"}]}}, "140552957670928": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".-2.140553012292384"}]}}, "140553012292832": {"type": "Function", "content": {"typeVars": [".-1.140553012292832", ".-2.140553012292832"], "argTypes": [{"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": ".-1.140553012292832"}, {"nodeId": ".-2.140553012292832"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552957671040"}, {"nodeId": "140552957671152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140553012292832": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012292832", "variance": "INVARIANT"}}, ".-2.140553012292832": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140553012292832", "variance": "INVARIANT"}}, "140552957671040": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".-1.140553012292832"}]}}, "140552957671152": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".-2.140553012292832"}]}}, "140552957665552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012293280"}, {"nodeId": "140553012293728"}]}}, "140553012293280": {"type": "Function", "content": {"typeVars": [".0.140553012293280"], "argTypes": [{"nodeId": ".0.140553012293280"}, {"nodeId": "140553057842304", "args": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}]}], "returnType": {"nodeId": ".0.140553012293280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553012293280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, "def": "140553012293280", "variance": "INVARIANT"}}, "140553012293728": {"type": "Function", "content": {"typeVars": [".0.140553012293728"], "argTypes": [{"nodeId": ".0.140553012293728"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552957671600"}]}], "returnType": {"nodeId": ".0.140553012293728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140553012293728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965748192", "args": [{"nodeId": ".1.140552965748192"}]}, "def": "140553012293728", "variance": "INVARIANT"}}, "140552957671600": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965748192"}, {"nodeId": ".1.140552965748192"}]}}, "140552961242592": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552924011808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923793216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923792096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923791872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923791424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923791648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923773216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923774336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923774560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923773888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923774112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923773440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923773664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923772768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923772096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923771872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923772320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844416"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}], "isAbstract": false}}, "140552924011808": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923793216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957671824"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957671824": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923792096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957671936"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957671936": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923791872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672048"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672048": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923791424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672160"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672160": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923791648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672272"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672272": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923773216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672384"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672384": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923774336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672496"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672496": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923774560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672608"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672608": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923773888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672720"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672720": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923774112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672832"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672832": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923773440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957672944"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957672944": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923773664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957673056"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957673056": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923772768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957673168"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957673168": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923772096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552957673280"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957673280": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923771872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952643648"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952643648": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552923772320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952643760"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952643760": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552965748544": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923766720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923764928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008013920"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008014368"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008014816"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008015264"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008015712"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008016160"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553008016608"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965748544"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552965748544": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965748544", "variance": "INVARIANT"}}, "140552923766720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}], "returnType": {"nodeId": ".1.140552965748544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923764928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}], "returnType": {"nodeId": ".1.140552965748544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553008013920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553008014368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140553008014816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140553008015264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553008015712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552952644208"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140552952644208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961619584"}}}, "140552961619584": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140553008016160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552965748544"}]}], "returnType": {"nodeId": ".1.140552965748544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553008016608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140552961427232": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552924020096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923741120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923740448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923739776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923739552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923738880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923738656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923737312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923736640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923735968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923735296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923733504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552924020096": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923741120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952644544"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952644544": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923740448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952644656"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952644656": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923739776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952644768"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952644768": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923739552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952644880"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952644880": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923738880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952644992"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952644992": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923738656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952645104"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952645104": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923737312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952645216"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952645216": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923736640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952645328"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952645328": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923735968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952645440"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952645440": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923735296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952645552"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952645552": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923733504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952645664"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952645664": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552961427584": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552924234912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923732384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923731712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923730816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923731264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923730144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}], "isAbstract": false}}, "140552924234912": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923732384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952646224"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952646224": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923731712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952646336"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952646336": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923730816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952646448"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952646448": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923731264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952646560"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952646560": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923730144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952646672"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952646672": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552961427936": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552924241296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923692416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923691072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552924241296": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923692416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952654400"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952654400": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552923691072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952654512"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952654512": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552961428288": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003331232"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003331680"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003332128"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140552961428288"}], "bases": [{"nodeId": "140553057837376", "args": [{"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552961428288"}]}]}, {"nodeId": "140552978624256", "args": [{"nodeId": "140552961428288", "args": [{"nodeId": ".1.140552961428288"}]}]}], "isAbstract": false}}, ".1.140552961428288": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552961428288", "variance": "INVARIANT"}}, "140553003331232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961428288", "args": [{"nodeId": ".1.140552961428288"}]}], "returnType": {"nodeId": "140552965748544", "args": [{"nodeId": ".1.140552961428288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553003331680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961428288", "args": [{"nodeId": ".1.140552961428288"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140553003332128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961428288", "args": [{"nodeId": ".1.140552961428288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552978624256": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998962784"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552911697088"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552978624256"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140552978624256": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978624256", "variance": "COVARIANT"}}, "140552998962784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978624256", "args": [{"nodeId": ".1.140552978624256"}]}], "returnType": {"nodeId": ".1.140552978624256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552911697088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978624256", "args": [{"nodeId": ".1.140552978624256"}]}, {"nodeId": "140552953445536"}, {"nodeId": "140552953445648"}, {"nodeId": "140552953445760"}], "returnType": {"nodeId": "140552953445872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552953445536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953445648": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953445760": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552953445872": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552961428640": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003511456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003511904"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140553020541056"}], "isAbstract": false}}, "140553003511456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961428640"}, {"nodeId": "140553020541056"}, {"nodeId": "140552965745024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140552965745024": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961612304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961618800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961381472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965602352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965602464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957174256"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974155840"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974156288"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974156736"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974157184"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974157632"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974158080"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974158528"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974158976"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974159424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965745024"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552965745024": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965745024", "variance": "INVARIANT"}}, "140552961612304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552961380912": {"type": "Union", "content": {"items": [{"nodeId": "140552961380464"}, {"nodeId": "140553057840896", "args": [{"nodeId": "140552961380128"}]}]}}, "140552961380464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552961380128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552961618800": {"type": "Union", "content": {"items": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "N"}]}}, "140552961381472": {"type": "Union", "content": {"items": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "N"}]}}, "140552965602352": {"type": "Union", "content": {"items": [{"nodeId": "140552965476544", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "N"}]}}, "140552965602464": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "A"}]}}, "140552957174256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552990659904"}, {"nodeId": "140552973623680"}, {"nodeId": "140552973624128"}, {"nodeId": "140552973624576"}, {"nodeId": "140552973625024"}, {"nodeId": "140552973625472"}]}}, "140552990659904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552957376240"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957376464"}, {"nodeId": "140552957376688"}, {"nodeId": "140552957376912"}, {"nodeId": "140552957377136"}, {"nodeId": "140552957377248"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552957377584"}, {"nodeId": "140552957377808"}, {"nodeId": "140552957377920"}, {"nodeId": "140552957378144"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057840544", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552957378256"}, {"nodeId": "140552987165440"}, {"nodeId": "140552957378368"}, {"nodeId": "140552957411392"}, {"nodeId": "140552957411504"}, {"nodeId": "140552957411728"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140552957376240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957376464": {"type": "Union", "content": {"items": [{"nodeId": "140552957376352"}, {"nodeId": "N"}]}}, "140552957376352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957376688": {"type": "Union", "content": {"items": [{"nodeId": "140552957376576"}, {"nodeId": "N"}]}}, "140552957376576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552965600896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140553057844064"}, {"nodeId": "140552965476544", "args": [{"nodeId": "A"}]}]}}, "140552957376912": {"type": "Union", "content": {"items": [{"nodeId": "140552957376800"}, {"nodeId": "N"}]}}, "140552957376800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957377136": {"type": "Union", "content": {"items": [{"nodeId": "140552957377024"}, {"nodeId": "N"}]}}, "140552957377024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957377248": {"type": "Union", "content": {"items": [{"nodeId": "140552990662368"}, {"nodeId": "N"}]}}, "140552990662368": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140552957377584": {"type": "Union", "content": {"items": [{"nodeId": "140552957377472"}, {"nodeId": "N"}]}}, "140552957377472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957377808": {"type": "Union", "content": {"items": [{"nodeId": "140552957377696"}, {"nodeId": "N"}]}}, "140552957377696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961381696"}}}, "140552961381696": {"type": "Union", "content": {"items": [{"nodeId": "140553057842304", "args": [{"nodeId": "140552987165792"}, {"nodeId": "140552961381248"}]}, {"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552961380800"}]}]}}, "140552961381248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552961380800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957377920": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957378144": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552957378256": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957378368": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957411392": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957411504": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957411728": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552957411616"}]}, {"nodeId": "N"}]}}, "140552957411616": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552973623680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552957411840"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957412064"}, {"nodeId": "140552957412288"}, {"nodeId": "140552957412512"}, {"nodeId": "140552957412736"}, {"nodeId": "140552957412848"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552957413184"}, {"nodeId": "140552957413408"}, {"nodeId": "140552957413520"}, {"nodeId": "140552957413744"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057840544", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552957413856"}, {"nodeId": "140552957413968"}, {"nodeId": "140552987165440"}, {"nodeId": "140552957414080"}, {"nodeId": "140552957414192"}, {"nodeId": "140552957414416"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140552957411840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957412064": {"type": "Union", "content": {"items": [{"nodeId": "140552957411952"}, {"nodeId": "N"}]}}, "140552957411952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957412288": {"type": "Union", "content": {"items": [{"nodeId": "140552957412176"}, {"nodeId": "N"}]}}, "140552957412176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957412512": {"type": "Union", "content": {"items": [{"nodeId": "140552957412400"}, {"nodeId": "N"}]}}, "140552957412400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957412736": {"type": "Union", "content": {"items": [{"nodeId": "140552957412624"}, {"nodeId": "N"}]}}, "140552957412624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957412848": {"type": "Union", "content": {"items": [{"nodeId": "140552990663264"}, {"nodeId": "N"}]}}, "140552990663264": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140552957413184": {"type": "Union", "content": {"items": [{"nodeId": "140552957413072"}, {"nodeId": "N"}]}}, "140552957413072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957413408": {"type": "Union", "content": {"items": [{"nodeId": "140552957413296"}, {"nodeId": "N"}]}}, "140552957413296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961381696"}}}, "140552957413520": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957413744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552957413856": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957413968": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957414080": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957414192": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957414416": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552957414304"}]}, {"nodeId": "N"}]}}, "140552957414304": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552973624128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552957414528"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957414752"}, {"nodeId": "140552957414976"}, {"nodeId": "140552957415200"}, {"nodeId": "140552957415424"}, {"nodeId": "140552957415536"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552957415872"}, {"nodeId": "140552957416096"}, {"nodeId": "0"}, {"nodeId": "140552957416432"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057840544", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552957416544"}, {"nodeId": "140552957416656"}, {"nodeId": "140552957416768"}, {"nodeId": "140552957416880"}, {"nodeId": "140552957416992"}, {"nodeId": "140552957417216"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140552957414528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957414752": {"type": "Union", "content": {"items": [{"nodeId": "140552957414640"}, {"nodeId": "N"}]}}, "140552957414640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957414976": {"type": "Union", "content": {"items": [{"nodeId": "140552957414864"}, {"nodeId": "N"}]}}, "140552957414864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957415200": {"type": "Union", "content": {"items": [{"nodeId": "140552957415088"}, {"nodeId": "N"}]}}, "140552957415088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957415424": {"type": "Union", "content": {"items": [{"nodeId": "140552957415312"}, {"nodeId": "N"}]}}, "140552957415312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957415536": {"type": "Union", "content": {"items": [{"nodeId": "140552990660128"}, {"nodeId": "N"}]}}, "140552990660128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140552957415872": {"type": "Union", "content": {"items": [{"nodeId": "140552957415760"}, {"nodeId": "N"}]}}, "140552957415760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957416096": {"type": "Union", "content": {"items": [{"nodeId": "140552957415984"}, {"nodeId": "N"}]}}, "140552957415984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961381696"}}}, "140552957416432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552957416544": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957416656": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957416768": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957416880": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957416992": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957417216": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552957417104"}]}, {"nodeId": "N"}]}}, "140552957417104": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552973624576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552957417328"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957417552"}, {"nodeId": "140552957417776"}, {"nodeId": "140552957418000"}, {"nodeId": "140552957418224"}, {"nodeId": "140552957418336"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552957418672"}, {"nodeId": "140552957418896"}, {"nodeId": "140552957419008"}, {"nodeId": "140552957419232"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057840544", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "0"}, {"nodeId": "140552957419456"}, {"nodeId": "140552957419568"}, {"nodeId": "140552957419680"}, {"nodeId": "140552957419792"}, {"nodeId": "140552957420016"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140552957417328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957417552": {"type": "Union", "content": {"items": [{"nodeId": "140552957417440"}, {"nodeId": "N"}]}}, "140552957417440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957417776": {"type": "Union", "content": {"items": [{"nodeId": "140552957417664"}, {"nodeId": "N"}]}}, "140552957417664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957418000": {"type": "Union", "content": {"items": [{"nodeId": "140552957417888"}, {"nodeId": "N"}]}}, "140552957417888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957418224": {"type": "Union", "content": {"items": [{"nodeId": "140552957418112"}, {"nodeId": "N"}]}}, "140552957418112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957418336": {"type": "Union", "content": {"items": [{"nodeId": "140552990659680"}, {"nodeId": "N"}]}}, "140552990659680": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140552957418672": {"type": "Union", "content": {"items": [{"nodeId": "140552957418560"}, {"nodeId": "N"}]}}, "140552957418560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957418896": {"type": "Union", "content": {"items": [{"nodeId": "140552957418784"}, {"nodeId": "N"}]}}, "140552957418784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961381696"}}}, "140552957419008": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957419232": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552957419456": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957419568": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957419680": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957419792": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957420016": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552957419904"}]}, {"nodeId": "N"}]}}, "140552957419904": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552973625024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552957420128"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957420352"}, {"nodeId": "140552957420576"}, {"nodeId": "140552957420800"}, {"nodeId": "140552957421024"}, {"nodeId": "140552957421136"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552957421472"}, {"nodeId": "140552957421696"}, {"nodeId": "140552957422032"}, {"nodeId": "140552957422144"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057840544", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552957422480"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140552957422368"}, {"nodeId": "140552957422592"}, {"nodeId": "140552957422816"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140552957420128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957420352": {"type": "Union", "content": {"items": [{"nodeId": "140552957420240"}, {"nodeId": "N"}]}}, "140552957420240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957420576": {"type": "Union", "content": {"items": [{"nodeId": "140552957420464"}, {"nodeId": "N"}]}}, "140552957420464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957420800": {"type": "Union", "content": {"items": [{"nodeId": "140552957420688"}, {"nodeId": "N"}]}}, "140552957420688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957421024": {"type": "Union", "content": {"items": [{"nodeId": "140552957420912"}, {"nodeId": "N"}]}}, "140552957420912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957421136": {"type": "Union", "content": {"items": [{"nodeId": "140552990660800"}, {"nodeId": "N"}]}}, "140552990660800": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140552957421472": {"type": "Union", "content": {"items": [{"nodeId": "140552957421360"}, {"nodeId": "N"}]}}, "140552957421360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957421696": {"type": "Union", "content": {"items": [{"nodeId": "140552957421584"}, {"nodeId": "N"}]}}, "140552957421584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961381696"}}}, "140552957422032": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552957422144": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552957422480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552957422368": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957422592": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957422816": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552957422704"}]}, {"nodeId": "N"}]}}, "140552957422704": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552973625472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": "A"}]}, {"nodeId": "140552957423040"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957423264"}, {"nodeId": "140552957423488"}, {"nodeId": "140552957423712"}, {"nodeId": "140552957423936"}, {"nodeId": "140552957424048"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552957424384"}, {"nodeId": "140552957424608"}, {"nodeId": "140552957424720"}, {"nodeId": "140552957424944"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057840544", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552957425056"}, {"nodeId": "140552957425168"}, {"nodeId": "140552957425280"}, {"nodeId": "140552957425392"}, {"nodeId": "140552957425504"}, {"nodeId": "140552957425728"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140552957423040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957423264": {"type": "Union", "content": {"items": [{"nodeId": "140552957423152"}, {"nodeId": "N"}]}}, "140552957423152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957423488": {"type": "Union", "content": {"items": [{"nodeId": "140552957423376"}, {"nodeId": "N"}]}}, "140552957423376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957423712": {"type": "Union", "content": {"items": [{"nodeId": "140552957423600"}, {"nodeId": "N"}]}}, "140552957423600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957423936": {"type": "Union", "content": {"items": [{"nodeId": "140552957423824"}, {"nodeId": "N"}]}}, "140552957423824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552965600896"}}}, "140552957424048": {"type": "Union", "content": {"items": [{"nodeId": "140552990661248"}, {"nodeId": "N"}]}}, "140552990661248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140552957424384": {"type": "Union", "content": {"items": [{"nodeId": "140552957424272"}, {"nodeId": "N"}]}}, "140552957424272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552957424608": {"type": "Union", "content": {"items": [{"nodeId": "140552957424496"}, {"nodeId": "N"}]}}, "140552957424496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961381696"}}}, "140552957424720": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957424944": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140552957425056": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552957425168": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957425280": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957425392": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957425504": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552957425728": {"type": "Union", "content": {"items": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552957425616"}]}, {"nodeId": "N"}]}}, "140552957425616": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552974155840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}], "returnType": {"nodeId": "140552957425840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957425840": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552974156288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "140552957425952"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140552957425952": {"type": "Union", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "N"}]}}, "140552974156736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "140552957426064"}, {"nodeId": "140552957426176"}], "returnType": {"nodeId": "140552957426400"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140552957426064": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965745024"}, {"nodeId": "N"}]}}, "140552957426176": {"type": "Union", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "N"}]}}, "140552957426400": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965745024"}, {"nodeId": ".1.140552965745024"}]}}, "140552974157184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140552974157632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552974158080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552974158528": {"type": "Function", "content": {"typeVars": [".0.140552974158528"], "argTypes": [{"nodeId": ".0.140552974158528"}], "returnType": {"nodeId": ".0.140552974158528"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552974158528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}, "def": "140552974158528", "variance": "INVARIANT"}}, "140552974158976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745024", "args": [{"nodeId": ".1.140552965745024"}]}, {"nodeId": "140552957426624"}, {"nodeId": "140552957426736"}, {"nodeId": "140552957426848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552957426624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552957426736": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552957426848": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552974159424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140553003511904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961428640"}], "returnType": {"nodeId": "140552952814656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952814656": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552961428992": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552919175392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923905184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919220512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919220736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919220960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919221184"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844416"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844416"}]}], "isAbstract": false}}, "140552919175392": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552923905184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952816448"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952816448": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552919220512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952816336"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952816336": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552919220736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952816672"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952816672": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552919220960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952817008"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952817008": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552919221184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952817120"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952817120": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}, {"nodeId": "140553057844416"}]}}, "140552961429344": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552919177856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919221632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919223872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919224096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919224320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919224544"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552919177856": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552919221632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952818576"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952818576": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552919223872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952818912"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952818912": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552919224096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952819248"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952819248": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552919224320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952819360"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952819360": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552919224544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952819472"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952819472": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552961429696": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552919179760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003661600"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552919226336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552982710048", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057844064"}]}], "isAbstract": false}}, "140552919179760": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}]}}, "140553003661600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552952821936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140552952821936": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}]}}, "140552919226336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952822944"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952822944": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}]}}, "140553020545984": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553020546688": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915730496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020546336"}], "isAbstract": true}}, "140552915730496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020546688"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140553020547040": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003792224"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003792672"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915516352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003793568"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915515904"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020546336"}], "isAbstract": true}}, "140553003792224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547040"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140553003792672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547040"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953200816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140552953200816": {"type": "Union", "content": {"items": [{"nodeId": "140552965734816"}, {"nodeId": "N"}]}}, "140552915516352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547040"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953200928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140552953200928": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553003793568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547040"}, {"nodeId": "140552965736224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140552915515904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552953201040"}, {"nodeId": "140552953201264"}], "returnType": {"nodeId": "140552965734816"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140552953201040": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552987165440"}, {"nodeId": "140552982712864"}, {"nodeId": "140552982713568"}, {"nodeId": "140552982713216"}]}}, "140552953201264": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140552953201152"}]}}, "140552953201152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552987081664": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552961426880", "args": [{"nodeId": "140552987165440"}]}]}}, "140553020547392": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915514560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020547040"}], "isAbstract": true}}, "140552915514560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547392"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140553020547744": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003975392"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003975840"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003976288"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003976736"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140553020546688"}, {"nodeId": "140553020547392"}], "isAbstract": true}}, "140553003975392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547744"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057844416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140553003975840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547744"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140553003976288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547744"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953201376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140552953201376": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553003976736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020547744"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140553020548096": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003977184"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003977632"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003978080"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140553020545984"}], "isAbstract": false}}, "140553003977184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548096"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953201600"}], "returnType": {"nodeId": "140552953201712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140552953201600": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552953201712": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140553003977632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553003978080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548096"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953201824"}, {"nodeId": "140552953201936"}], "returnType": {"nodeId": "140552953202048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140552953201824": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552953201936": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552953202048": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140553020548448": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003978528"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003978976"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003979424"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003979872"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140553020545984"}], "isAbstract": false}}, "140553003978528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548448"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953202160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140552953202160": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140553003978976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548448"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953202496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140552953202496": {"type": "Tuple", "content": {"items": [{"nodeId": "140552953202272"}, {"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}]}}, "140552953202272": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140553003979424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553003979872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548448"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953202608"}], "returnType": {"nodeId": "140552953202720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140552953202608": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552953202720": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140553020548800": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003980320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003980768"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003981216"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553003981664"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140553020546688"}, {"nodeId": "140553020547392"}], "isAbstract": true}}, "140553003980320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548800"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140553003980768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548800"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140553003981216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548800"}, {"nodeId": "140552953202832"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140552953202832": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553003981664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020548800"}, {"nodeId": "140552953202944"}], "returnType": {"nodeId": "140552965736224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140552953202944": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553020549152": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915510080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915509632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915508960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915509408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": true}}, "140552915510080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549152"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552965476544", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140552915509632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549152"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140552915508960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549152"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140552915509408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549152"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020549504": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915508064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915507616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915507392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915506720"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552952938192"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915507168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915506496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915506272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915506048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140552915508064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915507616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915507392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553020549504"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915506720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553020549504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140552952938192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553003986592"}, {"nodeId": "140553003987040"}, {"nodeId": "140553003987488"}, {"nodeId": "140553003987936"}, {"nodeId": "140553003988384"}, {"nodeId": "140553003988832"}, {"nodeId": "140553003989280"}]}}, "140553003986592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953203168"}, {"nodeId": "140553057844064"}, {"nodeId": "140552953203280"}, {"nodeId": "140552953203392"}, {"nodeId": "140552953203504"}], "returnType": {"nodeId": "140553020541056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953203168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978317008"}}}, "140552978317008": {"type": "Union", "content": {"items": [{"nodeId": "140552978314544"}, {"nodeId": "140552978316112"}, {"nodeId": "140552978316896"}]}}, "140552978314544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978316448"}}}, "140552978316448": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552978316112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978315888"}}}, "140552978315888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552978316896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978313872"}}}, "140552978313872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552953203280": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953203392": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953203504": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553003987040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953203616"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965750304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953203616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844592"}}}, "140552977844592": {"type": "Union", "content": {"items": [{"nodeId": "140552977844928"}, {"nodeId": "140552977845040"}, {"nodeId": "140552977845936"}]}}, "140552977844928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977847840"}}}, "140552977847840": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552977845040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977843472"}}}, "140552977843472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552977845936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844480"}}}, "140552977844480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140553003987488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953203056"}, {"nodeId": "140552953204176"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553020540000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953203056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977847840"}}}, "140552953204176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140553003987936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953204288"}, {"nodeId": "140552953204624"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553020539648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953204288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844480"}}}, "140552953204624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140553003988384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953204736"}, {"nodeId": "140552953205072"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553020539296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953204736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977843472"}}}, "140552953205072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140553003988832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953205184"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965476896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953205184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844592"}}}, "140553003989280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140552953203952"}, {"nodeId": "140552953205296"}, {"nodeId": "140552953205520"}], "returnType": {"nodeId": "140552965476544", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552953203952": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953205296": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953205520": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552915507168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915506496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553020549504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552915506272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915506048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549504"}, {"nodeId": "140552953205744"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140552953205744": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553020549856": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915504480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020310688"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020311136"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020311584"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553020312032"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140553020549152"}], "isAbstract": true}}, "140552915504480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549856"}], "returnType": {"nodeId": "140553020549504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020310688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549856"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553020539296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140553020311136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549856"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140553020311584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549856"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140553020312032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020549856"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961431104": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915475744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915474848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915474400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915473952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915473504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915473280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915472832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915469920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915471264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020548096"}, {"nodeId": "140553020547040"}], "isAbstract": false}}, "140552915475744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952935168"}], "returnType": {"nodeId": "140552952935280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140552952935168": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952935280": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140552915474848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952935392"}, {"nodeId": "140552952935504"}], "returnType": {"nodeId": "140552952935616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140552952935392": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952935504": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552952935616": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140552915474400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915473952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552965736224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915473504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915473280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915472832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140552915469920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020545280"}], "returnType": {"nodeId": "140552952935728"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140552952935728": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552915471264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140552961431456": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915469248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915469696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915468800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915468352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915451264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915450816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915450368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915449248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915449024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020548096"}, {"nodeId": "140553020547040"}], "isAbstract": false}}, "140552915469248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952935840"}], "returnType": {"nodeId": "140552952935952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140552952935840": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952935952": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140552915469696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952936064"}, {"nodeId": "140552952936176"}], "returnType": {"nodeId": "140552952936288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140552952936064": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952936176": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552952936288": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140552915468800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915468352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552965736224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915451264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915450816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140552915450368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140552915449248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020545280"}], "returnType": {"nodeId": "140552952936400"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140552952936400": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552915449024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965736224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140552961431808": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915447904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915447456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020548096"}], "isAbstract": false}}, "140552915447904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952936512"}], "returnType": {"nodeId": "140552952936624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140552952936512": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952936624": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140552915447456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952936736"}, {"nodeId": "140552952936848"}], "returnType": {"nodeId": "140552952936960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140552952936736": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952936848": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552952936960": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140553020545632": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915445888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915445440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915446336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915444992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552915445888": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140552915445440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961430400"}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": "140553020544928"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140552961430400": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961737552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999168576"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915081632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552961737552": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552999168576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961430400"}, {"nodeId": "140552952932032"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140552952932032": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552915081632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961430400"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020544928": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999170816"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999171264"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999171712"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140553020544576"}], "isAbstract": false}}, "140552999170816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544928"}, {"nodeId": "140552961437088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140552961437088": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991005312"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991005760"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991006208"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552923481248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991007104"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991007552"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991010240"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991010688"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991011136"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991011584"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991012032"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991012480"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991012928"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991013376"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991013824"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991014272"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991048192"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991048640"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991049088"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991049536"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957663088"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991053120"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991053568"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991054016"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991054464"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991054912"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991055360"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991056704"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991057152"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991057600"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991058048"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991058496"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991058944"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552923486176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991060288"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991060736"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991061184"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991061632"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991062080"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991062528"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991062976"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990507072"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140552961436032"}], "isAbstract": false}}, "140552991005312": {"type": "Function", "content": {"typeVars": [".0.140552991005312"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552957665664"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140552991005312"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140552957665664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, ".0.140552991005312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991005312", "variance": "INVARIANT"}}, "140552991005760": {"type": "Function", "content": {"typeVars": [".0.140552991005760"], "argTypes": [{"nodeId": ".0.140552991005760"}], "returnType": {"nodeId": ".0.140552991005760"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552991005760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991005760", "variance": "INVARIANT"}}, "140552991006208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957665888"}, {"nodeId": "140552957666000"}, {"nodeId": "140552957666112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552957665888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552957666000": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552957666112": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552923481248": {"type": "Function", "content": {"typeVars": [".0.140552923481248"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140552923481248"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140552923481248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552923481248", "variance": "INVARIANT"}}, "140552991007104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552957666224"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140552957666224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961619584"}}}, "140552991007552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140552991010240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991010688": {"type": "Function", "content": {"typeVars": [".0.140552991010688"], "argTypes": [{"nodeId": ".0.140552991010688"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": ".0.140552991010688"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140552991010688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991010688", "variance": "INVARIANT"}}, "140552991011136": {"type": "Function", "content": {"typeVars": [".0.140552991011136"], "argTypes": [{"nodeId": ".0.140552991011136"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": ".0.140552991011136"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140552991011136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991011136", "variance": "INVARIANT"}}, "140552991011584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991012032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991012928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991013376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991013824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991014272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991048192": {"type": "Function", "content": {"typeVars": [".0.140552991048192"], "argTypes": [{"nodeId": ".0.140552991048192"}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": ".0.140552991048192"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552991048192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991048192", "variance": "INVARIANT"}}, "140552991048640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140552991049088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140552957666336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957666336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961619584"}}}, "140552991049536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140552957663088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552991049984"}, {"nodeId": "140552991050432"}, {"nodeId": "140552991050880"}, {"nodeId": "140552991051328"}, {"nodeId": "140552991051776"}, {"nodeId": "140552991052224"}, {"nodeId": "140552991052672"}]}}, "140552991049984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957666560"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957666672"}, {"nodeId": "140552957666784"}, {"nodeId": "140552957666896"}], "returnType": {"nodeId": "140553020541056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957666560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978317008"}}}, "140552957666672": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957666784": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957666896": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552991050432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957667008"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965750304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957667008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844592"}}}, "140552991050880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957666448"}, {"nodeId": "140552957667568"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553020540000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957666448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977847840"}}}, "140552957667568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140552991051328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957667680"}, {"nodeId": "140552957668016"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553020539648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957667680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844480"}}}, "140552957668016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140552991051776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957668128"}, {"nodeId": "140552957668464"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140553020539296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957668128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977843472"}}}, "140552957668464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140552991052224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957668576"}, {"nodeId": "140553057844064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552965476896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957668576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552977844592"}}}, "140552991052672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957667344"}, {"nodeId": "140552957668688"}, {"nodeId": "140552957668912"}], "returnType": {"nodeId": "140552965476544", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140552957667344": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957668688": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957668912": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552991053120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991053568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991054016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991054464": {"type": "Function", "content": {"typeVars": [".0.140552991054464"], "argTypes": [{"nodeId": ".0.140552991054464"}], "returnType": {"nodeId": ".0.140552991054464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552991054464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991054464", "variance": "INVARIANT"}}, "140552991054912": {"type": "Function", "content": {"typeVars": [".0.140552991054912"], "argTypes": [{"nodeId": ".0.140552991054912"}, {"nodeId": "140552957669136"}], "returnType": {"nodeId": ".0.140552991054912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140552991054912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991054912", "variance": "INVARIANT"}}, "140552957669136": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552961436032"}]}}, "140552961436032": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923389216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923388768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923388544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923388320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923388096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923387872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923387648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923387424"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990436352"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990436800"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990437248"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990437696"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990438144"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990438592"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990439040"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990439488"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990439936"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990440384"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990440832"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990998592"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990999040"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990999488"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990999936"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991000832"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991001280"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991001728"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991002176"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991002624"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991003072"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923396608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552923382720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552991004416"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140552961426880", "args": [{"nodeId": "140552987165440"}]}], "isAbstract": false}}, "140552923389216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923388768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923388544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923388320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923388096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923387872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923387648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552923387424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990436352": {"type": "Function", "content": {"typeVars": [".0.140552990436352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552957664768"}], "returnType": {"nodeId": ".0.140552990436352"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140552957664768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, ".0.140552990436352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552990436352", "variance": "INVARIANT"}}, "140552990436800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552990437248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990437696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140552961436032"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552990438144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140552961436032"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552990438592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140552961436032"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552990439040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140552961436032"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552990439488": {"type": "Function", "content": {"typeVars": [".0.140552990439488"], "argTypes": [{"nodeId": ".0.140552990439488"}, {"nodeId": "140552957664880"}], "returnType": {"nodeId": ".0.140552990439488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990439488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552990439488", "variance": "INVARIANT"}}, "140552957664880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552990439936": {"type": "Function", "content": {"typeVars": [".0.140552990439936"], "argTypes": [{"nodeId": ".0.140552990439936"}, {"nodeId": "140552957664992"}], "returnType": {"nodeId": ".0.140552990439936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140552990439936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552990439936", "variance": "INVARIANT"}}, "140552957664992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552990440384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990440832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990998592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990999040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990999488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990999936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140552957665104"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140552957665104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552991000832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961436032"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140552991001280": {"type": "Function", "content": {"typeVars": [".0.140552991001280"], "argTypes": [{"nodeId": ".0.140552991001280"}, {"nodeId": "140552957665216"}], "returnType": {"nodeId": ".0.140552991001280"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140552991001280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552991001280", "variance": "INVARIANT"}}, "140552957665216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552991001728": {"type": "Function", "content": {"typeVars": [".0.140552991001728"], "argTypes": [{"nodeId": ".0.140552991001728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552991001728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140552991001728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552991001728", "variance": "INVARIANT"}}, "140552991002176": {"type": "Function", "content": {"typeVars": [".0.140552991002176"], "argTypes": [{"nodeId": ".0.140552991002176"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552991002176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140552991002176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552991002176", "variance": "INVARIANT"}}, "140552991002624": {"type": "Function", "content": {"typeVars": [".0.140552991002624"], "argTypes": [{"nodeId": ".0.140552991002624"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552991002624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140552991002624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552991002624", "variance": "INVARIANT"}}, "140552991003072": {"type": "Function", "content": {"typeVars": [".0.140552991003072"], "argTypes": [{"nodeId": ".0.140552991003072"}, {"nodeId": "140552957665328"}], "returnType": {"nodeId": ".0.140552991003072"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140552991003072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552991003072", "variance": "INVARIANT"}}, "140552957665328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552923396608": {"type": "Function", "content": {"typeVars": [".0.140552923396608"], "argTypes": [{"nodeId": ".0.140552923396608"}], "returnType": {"nodeId": "140553057840896", "args": [{"nodeId": ".0.140552923396608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552923396608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552923396608", "variance": "INVARIANT"}}, "140552923382720": {"type": "Function", "content": {"typeVars": [".0.140552923382720"], "argTypes": [{"nodeId": ".0.140552923382720"}], "returnType": {"nodeId": ".0.140552923382720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552923382720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961436032"}, "def": "140552923382720", "variance": "INVARIANT"}}, "140552991004416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140552991055360": {"type": "Function", "content": {"typeVars": [".0.140552991055360"], "argTypes": [{"nodeId": ".0.140552991055360"}, {"nodeId": "140552957669248"}], "returnType": {"nodeId": ".0.140552991055360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140552991055360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991055360", "variance": "INVARIANT"}}, "140552957669248": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552961436032"}]}}, "140552991056704": {"type": "Function", "content": {"typeVars": [".0.140552991056704"], "argTypes": [{"nodeId": ".0.140552991056704"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": ".0.140552991056704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140552991056704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991056704", "variance": "INVARIANT"}}, "140552991057152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991057600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957669360"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140552957669360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552991058048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957669472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140552957669472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552991058496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140552991058944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140552923486176": {"type": "Function", "content": {"typeVars": [".0.140552923486176"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140552923486176"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140552923486176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552923486176", "variance": "INVARIANT"}}, "140552991060288": {"type": "Function", "content": {"typeVars": [".0.140552991060288"], "argTypes": [{"nodeId": ".0.140552991060288"}], "returnType": {"nodeId": ".0.140552991060288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552991060288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991060288", "variance": "INVARIANT"}}, "140552991060736": {"type": "Function", "content": {"typeVars": [".0.140552991060736"], "argTypes": [{"nodeId": ".0.140552991060736"}], "returnType": {"nodeId": ".0.140552991060736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552991060736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961437088"}, "def": "140552991060736", "variance": "INVARIANT"}}, "140552991061184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552991061632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957669584"}, {"nodeId": "140552957669696"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140552957669584": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957669696": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552991062080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957669808"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140552957669808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552991062528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140552991062976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552987165440"}, {"nodeId": "140552957669920"}, {"nodeId": "140552957670032"}, {"nodeId": "140552957670144"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140552957669920": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957670032": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552957670144": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990507072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961437088"}, {"nodeId": "140552957670256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140552957670256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552978552800"}}}, "140552999171264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544928"}, {"nodeId": "140552952932256"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140552952932256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552999171712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544928"}, {"nodeId": "140552952932368"}], "returnType": {"nodeId": "140552961426880", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140552952932368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140553020544576": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915084992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915084096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915083872"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552952930800"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915083648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915082976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915083424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915082752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915082528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915082304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915081184"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": true}}, "140552915084992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552952931136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140552952931136": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552915084096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}, {"nodeId": "140552952931248"}], "returnType": {"nodeId": "140552961426880", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140552952931248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552915083872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553020544576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140552952930800": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999163648"}, {"nodeId": "140552999164096"}]}}, "140552999163648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552961430400"}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": "140553020544576"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140552999164096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140552952931472"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": "140553020544576"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140552952931472": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552915083648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952931696"}], "returnType": {"nodeId": "140553020544928"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140552952931696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987081664"}}}, "140552915082976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}], "returnType": {"nodeId": "140553020541760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020541760": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982629504"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982629952"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982630400"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982630848"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982631296"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915141792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140552982629504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541760"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552982629952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541760"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982630400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541760"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982630848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541760"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552982631296": {"type": "Function", "content": {"typeVars": [".-1.140552982631296"], "argTypes": [{"nodeId": "140553020541760"}, {"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982631296"}], "returnType": {"nodeId": "140552952928672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140552982631296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982631296", "variance": "INVARIANT"}}, "140552952928672": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140552982631296"}]}}, "140552915141792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020541760"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552952928784"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952928784": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}]}}, "140552915083424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}], "returnType": {"nodeId": "140553020543520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020543520": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974170624"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974171072"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915109472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915111488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552973916912"}]}], "isAbstract": false}}, "140552974170624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543520"}, {"nodeId": "140552952929904"}], "returnType": {"nodeId": "140552952930688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552952929904": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140552952930688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961388416"}}}, "140552961388416": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552974171072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543520"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140553020543520"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140552915109472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543520"}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915111488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543520"}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552973916912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961388416"}}}, "140552915082752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915082528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}], "returnType": {"nodeId": "140552952931808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952931808": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552961438496"}]}, {"nodeId": "N"}]}}, "140552961438496": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999160512"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999160960"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999161408"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961388640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961386848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553020544576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552961436384"}], "isAbstract": false}}, "140552999160512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438496"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140552999160960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438496"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999161408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961438496"}], "returnType": {"nodeId": "140552961426880", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961388640": {"type": "Union", "content": {"items": [{"nodeId": "140553020544224"}, {"nodeId": "N"}]}}, "140553020544224": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999161856"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552999161856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544224"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140552961386848": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552961436384": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961436032"}], "isAbstract": false}}, "140552915082304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}], "returnType": {"nodeId": "140552952931920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952931920": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552915081184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020544576"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915446336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952937072"}, {"nodeId": "140552952937184"}], "returnType": {"nodeId": "140552952937296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140552952937072": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952937184": {"type": "Union", "content": {"items": [{"nodeId": "140552965736224"}, {"nodeId": "N"}]}}, "140552952937296": {"type": "Union", "content": {"items": [{"nodeId": "140553020545280"}, {"nodeId": "N"}]}}, "140552915444992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952937408"}], "returnType": {"nodeId": "140552952937520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140552952937408": {"type": "Union", "content": {"items": [{"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552952937520": {"type": "Union", "content": {"items": [{"nodeId": "140553020546336"}, {"nodeId": "N"}]}}, "140552961432160": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007237600"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915444320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020548448"}], "isAbstract": false}}, "140553007237600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961432160"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952937744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140552952937744": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}]}}, "140552915444320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552952937968"}], "returnType": {"nodeId": "140552952856640"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140552952937968": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}]}}, "140552952856640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553020548448"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552961432512": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007238496"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140553020548800"}, {"nodeId": "140553020547744"}], "isAbstract": false}}, "140553007238496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961432512"}, {"nodeId": "140552987165440"}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140552961432864": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140553020548800"}, {"nodeId": "140553020547744"}], "isAbstract": false}}, "140552961433216": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007238944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007239392"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007239840"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007240288"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007240736"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007241184"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007241632"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140553020547392"}], "isAbstract": false}}, "140553007238944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140553007239392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140552952938080"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140552952938080": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140553007239840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140553007240288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140553020545280"}], "returnType": {"nodeId": "140552965736224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140553007240736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140552965736224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140553007241184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140553007241632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961433216"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552965306528": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552987168608"}], "isAbstract": false}}, "140552965306880": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552986676032": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007248800"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007249248"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007249696"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["close", "seek", "write"]}}, "140553007248800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676032"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140553007249248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676032"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553007249696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676032"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552986676384": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007250144"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007250592"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007251040"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["close", "read", "seek"]}}, "140553007250144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676384"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140553007250592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676384"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140553007251040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676384"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552961433568": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140552986676032"}, {"nodeId": "140552986676384"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140552986676736": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007563040"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553007563040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986676736"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552948653904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140552948653904": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140552986677088": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007563488"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553007563488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986677088"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552948654128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140552948654128": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552986677440": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007563936"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553007563936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986677440"}, {"nodeId": "140552986676384"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552961435328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140552961435328": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552986676384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007735392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007735840"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007736288"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007736736"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007737184"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007737632"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007738080"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007738528"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007738976"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007739424"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140552986678848"}], "isAbstract": false}}, "140553007735392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}, {"nodeId": "140552986676384"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140553007735840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140553007736288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}, {"nodeId": "140552948660288"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140552948660288": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553007736736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}, {"nodeId": "140552948660400"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140552948660400": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553007737184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553007737632": {"type": "Function", "content": {"typeVars": [".0.140553007737632"], "argTypes": [{"nodeId": ".0.140553007737632"}], "returnType": {"nodeId": ".0.140553007737632"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553007737632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961435328"}, "def": "140553007737632", "variance": "INVARIANT"}}, "140553007738080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}, {"nodeId": "140552948660624"}, {"nodeId": "140552948660736"}, {"nodeId": "140552948660848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552948660624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552948660736": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552948660848": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553007738528": {"type": "Function", "content": {"typeVars": [".0.140553007738528"], "argTypes": [{"nodeId": ".0.140553007738528"}], "returnType": {"nodeId": ".0.140553007738528"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553007738528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961435328"}, "def": "140553007738528", "variance": "INVARIANT"}}, "140553007738976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553007739424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435328"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953504352"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552953504352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986678848": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007576480"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007576928"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553007576480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986678848"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552948658160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140552948658160": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140553007576928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986678848"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552948658384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140552948658384": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552986677792": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007564384"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553007564384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986677792"}, {"nodeId": "140552986676032"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552961434976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140552961434976": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552986676032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007732256"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007732704"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007733152"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007733600"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007734048"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007734496"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007734944"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140552986678848"}], "isAbstract": false}}, "140553007732256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434976"}, {"nodeId": "140552986676032"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140553007732704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434976"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140553007733152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434976"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140553007733600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553007734048": {"type": "Function", "content": {"typeVars": [".0.140553007734048"], "argTypes": [{"nodeId": ".0.140553007734048"}], "returnType": {"nodeId": ".0.140553007734048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553007734048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961434976"}, "def": "140553007734048", "variance": "INVARIANT"}}, "140553007734496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434976"}, {"nodeId": "140552948659728"}, {"nodeId": "140552948659840"}, {"nodeId": "140552948659952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552948659728": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552948659840": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552948659952": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140553007734944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434976"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953503904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552953503904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986678144": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007564832"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553007564832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986678144"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552986679200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140552986679200": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007577376"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552902789152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007578272"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007578720"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007726880"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": true}}, "140553007577376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679200"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140552902789152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679200"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140553007578272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553007578720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679200"}], "returnType": {"nodeId": "140552948658496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948658496": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140553007726880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679200"}, {"nodeId": "140552948658608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140552948658608": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140552986678496": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007565280"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__call__"]}}, "140553007565280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986678496"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552986679552"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140552961433920": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902865440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902862304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902862080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902861184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902861632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552902859840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007568416"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140552987167200", "args": [{"nodeId": "140553057832448"}]}], "isAbstract": false}}, "140552902865440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552948654352"}], "returnType": {"nodeId": "140552986676736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948654352": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140552902862304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552948654464"}], "returnType": {"nodeId": "140552986677088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948654464": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140552902862080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552948654576"}], "returnType": {"nodeId": "140552986677440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948654576": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140552902861184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552948654688"}], "returnType": {"nodeId": "140552986677792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948654688": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140552902861632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552948654800"}], "returnType": {"nodeId": "140552986678144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948654800": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140552902859840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552948654912"}], "returnType": {"nodeId": "140552986678496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552948654912": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140553007568416": {"type": "Function", "content": {"typeVars": [".0.140553007568416"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552948655136"}, {"nodeId": "140552948655248"}, {"nodeId": "140552948655360"}, {"nodeId": "140552948655472"}, {"nodeId": "140552948655584"}, {"nodeId": "140552948655696"}], "returnType": {"nodeId": ".0.140553007568416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140552948655136": {"type": "Union", "content": {"items": [{"nodeId": "140552986677440"}, {"nodeId": "N"}]}}, "140552948655248": {"type": "Union", "content": {"items": [{"nodeId": "140552986677792"}, {"nodeId": "N"}]}}, "140552948655360": {"type": "Union", "content": {"items": [{"nodeId": "140552986678144"}, {"nodeId": "N"}]}}, "140552948655472": {"type": "Union", "content": {"items": [{"nodeId": "140552986678496"}, {"nodeId": "N"}]}}, "140552948655584": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552948655696": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, ".0.140553007568416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552948653680"}, "def": "140553007568416", "variance": "INVARIANT"}}, "140552948653680": {"type": "Tuple", "content": {"items": [{"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}]}}, "140552961434272": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007729568"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552902787360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007730464"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140552986679200"}], "isAbstract": true}}, "140553007729568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434272"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140552902787360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434272"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552948659280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140552948659280": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140553007730464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434272"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140552961434624": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007730912"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552902753216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007731808"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140552986679552"}], "isAbstract": true}}, "140553007730912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434624"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140552902753216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434624"}, {"nodeId": "140552965487808"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552948659504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140552948659504": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140553007731808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961434624"}, {"nodeId": "140552965487808"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140552961435680": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961433568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007739872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007740320"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007740768"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007741216"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007741664"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007742112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140553007742560"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998813984"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998814432"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998814880"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998815328"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998815776"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998816224"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998816672"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998817120"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998817568"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998818016"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998818464"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998818912"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998819360"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998819808"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998820256"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140552965477248"}], "isAbstract": false}}, "140553007739872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552961433568"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140553007740320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140553007740768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552948661184"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140552948661184": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553007741216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552948661296"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140552948661296": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140553007741664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553007742112": {"type": "Function", "content": {"typeVars": [".0.140553007742112"], "argTypes": [{"nodeId": ".0.140553007742112"}], "returnType": {"nodeId": ".0.140553007742112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140553007742112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961435680"}, "def": "140553007742112", "variance": "INVARIANT"}}, "140553007742560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140552998813984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140552998814432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998814880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140552998815328": {"type": "Function", "content": {"typeVars": [".0.140552998815328"], "argTypes": [{"nodeId": ".0.140552998815328"}], "returnType": {"nodeId": ".0.140552998815328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552998815328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552961435680"}, "def": "140552998815328", "variance": "INVARIANT"}}, "140552998815776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552948661520"}, {"nodeId": "140552948661632"}, {"nodeId": "140552948661744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552948661520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552948661632": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552948661744": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552998816224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552998816672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998817120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998817568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998818016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998818464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998818912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}, {"nodeId": "140552948661968"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140552948661968": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552998819360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998819808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998820256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961435680"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552986679904": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998820704"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998821152"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998821600"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998822048"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998822496"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998822944"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998823392"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998823840"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998824288"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998824736"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998825184"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998825632"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998826080"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998826528"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998826976"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998827424"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998827872"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998828320"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998828768"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998829216"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998829664"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998961440"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140552965476896"}], "isAbstract": false}}, "140552998820704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552961433568"}, {"nodeId": "140552986676736"}, {"nodeId": "140552986677088"}, {"nodeId": "140552986677440"}, {"nodeId": "140552986677792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140552998821152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140552998821600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552948662080"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140552948662080": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552998822048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552948924480"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165792"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140552948924480": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552998822496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998822944": {"type": "Function", "content": {"typeVars": [".0.140552998822944"], "argTypes": [{"nodeId": ".0.140552998822944"}], "returnType": {"nodeId": ".0.140552998822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552998822944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552986679904"}, "def": "140552998822944", "variance": "INVARIANT"}}, "140552998823392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552987165792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140552998823840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140552998824288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998824736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552998825184": {"type": "Function", "content": {"typeVars": [".0.140552998825184"], "argTypes": [{"nodeId": ".0.140552998825184"}], "returnType": {"nodeId": ".0.140552998825184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552998825184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552986679904"}, "def": "140552998825184", "variance": "INVARIANT"}}, "140552998825632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552948924816"}, {"nodeId": "140552948924928"}, {"nodeId": "140552948925040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552948924816": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552948924928": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552948925040": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552998826080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140552998826528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998826976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998827424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998827872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998828320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998828768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}, {"nodeId": "140552948925152"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140552948925152": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552998829216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998829664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998961440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986679904"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552978624608": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552952861344"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552911705408"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140552978624608"}], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140552978624608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978624608", "variance": "COVARIANT"}}, "140552952861344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978624608", "args": [{"nodeId": ".1.140552978624608"}]}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140552978624608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552911705408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978624608", "args": [{"nodeId": ".1.140552978624608"}]}, {"nodeId": "140552953446096"}, {"nodeId": "140552953446208"}, {"nodeId": "140552953577536"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140552953577648"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140552953446096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953446208": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953577536": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552953577648": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552978624960": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998964576"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552998964576": {"type": "Function", "content": {"typeVars": [".-1.140552998964576"], "argTypes": [{"nodeId": "140552978624960"}, {"nodeId": ".-1.140552998964576"}], "returnType": {"nodeId": ".-1.140552998964576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140552998964576": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140552973627712"}, "def": "140552998964576", "variance": "INVARIANT"}}, "140552973627712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552978625312": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998965024"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057838080", "args": [{"nodeId": ".1.140552978625312"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973627040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998965472"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140552978625312"}], "bases": [{"nodeId": "140552978624256", "args": [{"nodeId": ".1.140552978625312"}]}, {"nodeId": "140552978624960"}], "isAbstract": false}}, ".1.140552978625312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978625312", "variance": "COVARIANT"}}, "140552998965024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978625312", "args": [{"nodeId": ".1.140552978625312"}]}, {"nodeId": "140552953497856"}, {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140552953497856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".1.140552978625312"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552973627040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": ".1.140552978625312"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552998965472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978625312", "args": [{"nodeId": ".1.140552978625312"}]}, {"nodeId": "140552953578208"}, {"nodeId": "140552953578320"}, {"nodeId": "140552953578432"}], "returnType": {"nodeId": "140552953578544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552953578208": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953578320": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953578432": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552953578544": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552978625664": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998966816"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552998966816": {"type": "Function", "content": {"typeVars": [".-1.140552998966816"], "argTypes": [{"nodeId": "140552978625664"}, {"nodeId": ".-1.140552998966816"}], "returnType": {"nodeId": ".-1.140552998966816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140552998966816": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140552986421376"}, "def": "140552998966816", "variance": "INVARIANT"}}, "140552986421376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552978626016": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998967264"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057839840", "args": [{"nodeId": ".1.140552978626016"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552986425632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998964128"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140552978626016"}], "bases": [{"nodeId": "140552978624608", "args": [{"nodeId": ".1.140552978626016"}]}, {"nodeId": "140552978625664"}], "isAbstract": false}}, ".1.140552978626016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552978626016", "variance": "COVARIANT"}}, "140552998967264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978626016", "args": [{"nodeId": ".1.140552978626016"}]}, {"nodeId": "140552953499200"}, {"nodeId": "140552987167200", "args": [{"nodeId": "A"}]}, {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140552953499200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057839488", "args": [{"nodeId": ".1.140552978626016"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552986425632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140553057839840", "args": [{"nodeId": ".1.140552978626016"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552998964128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978626016", "args": [{"nodeId": ".1.140552978626016"}]}, {"nodeId": "140552953579440"}, {"nodeId": "140552953579552"}, {"nodeId": "140552953579664"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140552953579776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140552953579440": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953579552": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953579664": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552953579776": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552978626368": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998969504"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["close"]}}, "140552998969504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978626368"}], "returnType": {"nodeId": "140553057832448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552978626720": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998969952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998970400"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140552978626720"}], "bases": [{"nodeId": "140552978624256", "args": [{"nodeId": ".1.140552978626720"}]}], "isAbstract": false}}, ".1.140552978626720": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140552978626368"}, "def": "140552978626720", "variance": "INVARIANT"}}, "140552998969952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978626720", "args": [{"nodeId": ".1.140552978626720"}]}, {"nodeId": ".1.140552978626720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140552998970400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978626720", "args": [{"nodeId": ".1.140552978626720"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140552978627072": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998970848"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["aclose"]}}, "140552998970848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978627072"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": "140553057832448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552978627424": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998971296"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552953500544"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140552978627424"}], "bases": [{"nodeId": "140552978624608", "args": [{"nodeId": ".1.140552978627424"}]}], "isAbstract": false}}, ".1.140552978627424": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140552978627072"}, "def": "140552978627424", "variance": "INVARIANT"}}, "140552998971296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978627424", "args": [{"nodeId": ".1.140552978627424"}]}, {"nodeId": ".1.140552978627424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140552953500544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978627424", "args": [{"nodeId": ".1.140552978627424"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140552978627776": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998972192"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998972640"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140552978624256", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140552998972192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978627776"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140552998972640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978627776"}, {"nodeId": "140552953580560"}, {"nodeId": "140552953580672"}, {"nodeId": "140552953580784"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552953580560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953580672": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953580784": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552978628128": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998973088"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998973536"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140552978628128"}], "bases": [{"nodeId": "140552978624256", "args": [{"nodeId": ".1.140552978628128"}]}], "isAbstract": false}}, ".1.140552978628128": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140552961557104"}, "def": "140552978628128", "variance": "INVARIANT"}}, "140552961557104": {"type": "Union", "content": {"items": [{"nodeId": "140552965476544", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552998973088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978628128", "args": [{"nodeId": ".1.140552978628128"}]}, {"nodeId": ".1.140552978628128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140552998973536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978628128", "args": [{"nodeId": ".1.140552978628128"}]}, {"nodeId": "140552953580896"}, {"nodeId": "140552953581008"}, {"nodeId": "140552953581120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552953580896": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953581008": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953581120": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552986673216": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140552986673216"}], "bases": [{"nodeId": "140552978628128", "args": [{"nodeId": ".1.140552986673216"}]}], "isAbstract": false}}, ".1.140552986673216": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140552961557104"}, "def": "140552986673216", "variance": "INVARIANT"}}, "140552986673568": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140552986673568"}], "bases": [{"nodeId": "140552978628128", "args": [{"nodeId": ".1.140552986673568"}]}], "isAbstract": false}}, ".1.140552986673568": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140552961557104"}, "def": "140552986673568", "variance": "INVARIANT"}}, "140552986673920": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998973984"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998974432"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998974880"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998975328"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998975776"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998976224"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998976672"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552998973984": {"type": "Function", "content": {"typeVars": [".-1.140552998973984"], "argTypes": [{"nodeId": "140552986673920"}, {"nodeId": "140552978624256", "args": [{"nodeId": ".-1.140552998973984"}]}], "returnType": {"nodeId": ".-1.140552998973984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140552998973984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552998973984", "variance": "INVARIANT"}}, "140552998974432": {"type": "Function", "content": {"typeVars": [".-1.140552998974432"], "argTypes": [{"nodeId": "140552986673920"}, {"nodeId": ".-1.140552998974432"}], "returnType": {"nodeId": ".-1.140552998974432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140552998974432": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140552961558224"}, "def": "140552998974432", "variance": "INVARIANT"}}, "140552961558224": {"type": "Union", "content": {"items": [{"nodeId": "140552978624256", "args": [{"nodeId": "A"}]}, {"nodeId": "140552961557664"}]}}, "140552961557664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552986422720"}}}, "140552986422720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552973695040"}, {"nodeId": "140552973694480"}, {"nodeId": "140552973694592"}], "returnType": {"nodeId": "140552973694816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552973695040": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552973694480": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552973694592": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552973694816": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552998974880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986673920"}, {"nodeId": "140552953499872"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140552953500768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140552953499872": {"type": "Function", "content": {"typeVars": [".-2.140552953499872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140552953499872"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140552953499872": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953499872", "variance": "INVARIANT"}}, "140552953500768": {"type": "Function", "content": {"typeVars": [".-2.140552953500768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140552953500768"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140552953500768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953500768", "variance": "INVARIANT"}}, "140552998975328": {"type": "Function", "content": {"typeVars": [".0.140552998975328"], "argTypes": [{"nodeId": ".0.140552998975328"}], "returnType": {"nodeId": ".0.140552998975328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552998975328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552986673920"}, "def": "140552998975328", "variance": "INVARIANT"}}, "140552998975776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986673920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552998976224": {"type": "Function", "content": {"typeVars": [".0.140552998976224"], "argTypes": [{"nodeId": ".0.140552998976224"}], "returnType": {"nodeId": ".0.140552998976224"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140552998976224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552986673920"}, "def": "140552998976224", "variance": "INVARIANT"}}, "140552998976672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986673920"}, {"nodeId": "140552953582128"}, {"nodeId": "140552953582240"}, {"nodeId": "140552953582352"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140552953582128": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953582240": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953582352": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552986674272": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998977120"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552998971744"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999076576"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999077024"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999077472"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999077920"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999078368"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999076128"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999078816"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999079264"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552998977120": {"type": "Function", "content": {"typeVars": [".-1.140552998977120"], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": "140552978624256", "args": [{"nodeId": ".-1.140552998977120"}]}], "returnType": {"nodeId": ".-1.140552998977120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140552998977120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552998977120", "variance": "INVARIANT"}}, "140552998971744": {"type": "Function", "content": {"typeVars": [".-1.140552998971744"], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": "140552978624608", "args": [{"nodeId": ".-1.140552998971744"}]}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140552998971744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140552998971744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552998971744", "variance": "INVARIANT"}}, "140552999076576": {"type": "Function", "content": {"typeVars": [".-1.140552999076576"], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": ".-1.140552999076576"}], "returnType": {"nodeId": ".-1.140552999076576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140552999076576": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140552961558224"}, "def": "140552999076576", "variance": "INVARIANT"}}, "140552999077024": {"type": "Function", "content": {"typeVars": [".-1.140552999077024"], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": ".-1.140552999077024"}], "returnType": {"nodeId": ".-1.140552999077024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140552999077024": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140552961558784"}, "def": "140552999077024", "variance": "INVARIANT"}}, "140552961558784": {"type": "Union", "content": {"items": [{"nodeId": "140552978624608", "args": [{"nodeId": "A"}]}, {"nodeId": "140552961559008"}]}}, "140552961559008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552986417568"}}}, "140552986417568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978556944"}, {"nodeId": "140552978558400"}, {"nodeId": "140552978558176"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": "140552978557616"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552978556944": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552978558400": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552978558176": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552978557616": {"type": "Union", "content": {"items": [{"nodeId": "140553057833152"}, {"nodeId": "N"}]}}, "140552999077472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": "140552953500320"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140552953501216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140552953500320": {"type": "Function", "content": {"typeVars": [".-2.140552953500320"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140552953500320"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140552953500320": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953500320", "variance": "INVARIANT"}}, "140552953501216": {"type": "Function", "content": {"typeVars": [".-2.140552953501216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140552953501216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140552953501216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953501216", "variance": "INVARIANT"}}, "140552999077920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": "140552953500992"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140552953501664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140552953500992": {"type": "Function", "content": {"typeVars": [".-2.140552953500992"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".-2.140552953500992"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140552953500992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953500992", "variance": "INVARIANT"}}, "140552953501664": {"type": "Function", "content": {"typeVars": [".-2.140552953501664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140553057838432", "args": [{"nodeId": ".-2.140552953501664"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140552953501664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552953501664", "variance": "INVARIANT"}}, "140552999078368": {"type": "Function", "content": {"typeVars": [".0.140552999078368"], "argTypes": [{"nodeId": ".0.140552999078368"}], "returnType": {"nodeId": ".0.140552999078368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552999078368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552986674272"}, "def": "140552999078368", "variance": "INVARIANT"}}, "140552999076128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674272"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999078816": {"type": "Function", "content": {"typeVars": [".0.140552999078816"], "argTypes": [{"nodeId": ".0.140552999078816"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140552999078816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552999078816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552986674272"}, "def": "140552999078816", "variance": "INVARIANT"}}, "140552999079264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674272"}, {"nodeId": "140552953584480"}, {"nodeId": "140552953584592"}, {"nodeId": "140552953584704"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140553057833152"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140552953584480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140552953584592": {"type": "Union", "content": {"items": [{"nodeId": "140552987172128"}, {"nodeId": "N"}]}}, "140552953584704": {"type": "Union", "content": {"items": [{"nodeId": "140552965740096"}, {"nodeId": "N"}]}}, "140552986674624": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140552986674624"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953584368"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999081056"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999081504"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552953501440"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552953502336"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140552986674624"}], "bases": [{"nodeId": "140552978624256", "args": [{"nodeId": ".1.140552986674624"}]}, {"nodeId": "140552978624608", "args": [{"nodeId": ".1.140552986674624"}]}], "isAbstract": false}}, ".1.140552986674624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552986674624", "variance": "INVARIANT"}}, "140552953584368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999079712"}, {"nodeId": "140552999080160"}]}}, "140552999079712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674624", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140552999080160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674624", "args": [{"nodeId": ".1.140552986674624"}]}, {"nodeId": ".1.140552986674624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140552999081056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674624", "args": [{"nodeId": ".1.140552986674624"}]}], "returnType": {"nodeId": ".1.140552986674624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552999081504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674624", "args": [{"nodeId": ".1.140552986674624"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140552953501440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674624", "args": [{"nodeId": ".1.140552986674624"}]}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140552986674624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953502336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986674624", "args": [{"nodeId": ".1.140552986674624"}]}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057838784", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140552965747488": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927445728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927446848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927447296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927449760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552932669952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927549856"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957426512"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957496224"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957496896"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957497008"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999340064"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999340512"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999340960"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927556352"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957498128"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999342752"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999343200"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999343648"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965747488"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552965747488": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965747488", "variance": "INVARIANT"}}, "140552927445728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552927446848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552927447296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552957496672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957496672": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552927449760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552957496784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957496784": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552932669952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": ".1.140552965747488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552927549856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965747840": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927773184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927775424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927776320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552927776992"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957498576"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957499808"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957500592"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957501040"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957501488"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957501936"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957502720"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552957503056"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999504352"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999504800"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999505248"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965747840"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552965747840": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965747840", "variance": "INVARIANT"}}, "140552927773184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552927775424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552927776320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552927776992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": ".1.140552965747840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957498576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999345888"}, {"nodeId": "140553012226848"}, {"nodeId": "140552999346784"}]}}, "140552999345888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957500704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957500704": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140553012226848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957500816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957500816": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "N"}]}}, "140552999346784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957500928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957500928": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": "N"}]}}, "140552957499808": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999347232"}, {"nodeId": "140553012225728"}, {"nodeId": "140552999348128"}]}}, "140552999347232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957501152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501152": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140553012225728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957501264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501264": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "N"}]}}, "140552999348128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957501376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501376": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": "N"}]}}, "140552957500592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012225280"}, {"nodeId": "140552999348576"}, {"nodeId": "140552999349472"}]}}, "140553012225280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957501600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501600": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140552999348576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957501712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501712": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "N"}]}}, "140552999349472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957501824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501824": {"type": "Union", "content": {"items": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": "N"}]}}, "140552957501040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553012225056"}, {"nodeId": "140552999349920"}, {"nodeId": "140552999350816"}]}}, "140553012225056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552957502160"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140552957502160": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}}, "140552999349920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552957502384"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140552957502384": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "A"}]}}, "140552999350816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552957502608"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140552957502608": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747840"}, {"nodeId": "A"}]}}, "140552957501488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999351264"}, {"nodeId": "140553016195808"}, {"nodeId": "140552999352160"}]}}, "140552999351264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140553016195808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552999352160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552965747840"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957501936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999352608"}, {"nodeId": "140553016194016"}, {"nodeId": "140552999353504"}]}}, "140552999352608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140553016194016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552999353504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140552957502720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999353952"}, {"nodeId": "140553016192672"}, {"nodeId": "140552999502560"}]}}, "140552999353952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552957503280"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140552957503280": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553016193568"}]}}, "140553016193568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553016192672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552957503392"}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140552957503392": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140553016193120"}]}}, "140553016193120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}], "returnType": {"nodeId": "140552965487808"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552999502560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": "140552957503504"}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".1.140552965747840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140552957503504": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747840"}, {"nodeId": "140553016194912"}]}}, "140553016194912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": ".1.140552965747840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552957503056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999503008"}, {"nodeId": "140553016190880"}, {"nodeId": "140552999503904"}]}}, "140552999503008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552957503728"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957503952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140552957503728": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553016192224"}]}}, "140553016192224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552957503952": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140553016190880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552957504064"}, {"nodeId": "140552965487808"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957504288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140552957504064": {"type": "Union", "content": {"items": [{"nodeId": "140552965487808"}, {"nodeId": "140553016191776"}]}}, "140553016191776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}], "returnType": {"nodeId": "140552965487808"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552957504288": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140553057844064"}]}}, "140552999503904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": "140552957504400"}, {"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552957504624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140552957504400": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747840"}, {"nodeId": "140553016191328"}]}}, "140553016191328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": ".1.140552965747840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552957504624": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140552965747840"}, {"nodeId": "140553057844064"}]}}, "140552999504352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}], "returnType": {"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999504800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965747840", "args": [{"nodeId": ".1.140552965747840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552999505248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140552957426512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999089568"}, {"nodeId": "140553012226176"}, {"nodeId": "140552999090464"}]}}, "140552999089568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140553012226176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": "140552987165792"}]}, {"nodeId": "140552965487808"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140552999090464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": ".1.140552965747488"}], "returnType": {"nodeId": ".1.140552965747488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140552957496224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999090912"}, {"nodeId": "140552999091360"}, {"nodeId": "140552999091808"}]}}, "140552999090912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140552965747488"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552999091360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "140552957497232"}], "returnType": {"nodeId": "140552957497456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552957497232": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552957497456": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": "A"}]}}, "140552999091808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "140552957497568"}, {"nodeId": "140552957497680"}, {"nodeId": "140552957497792"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552957498016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140552957497568": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552957497680": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552957497792": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}}, "140552957498016": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": "A"}]}}, "140552957496896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999338272"}, {"nodeId": "140552999338720"}]}}, "140552999338272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552957498352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957498352": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": "A"}]}}, "140552999338720": {"type": "Function", "content": {"typeVars": [".-1.140552999338720"], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": ".-1.140552999338720"}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552957498464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140552999338720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999338720", "variance": "INVARIANT"}}, "140552957498464": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": ".-1.140552999338720"}]}}, "140552957497008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999339168"}, {"nodeId": "140552999339616"}]}}, "140552999339168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552957498800"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957498800": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": "A"}]}}, "140552999339616": {"type": "Function", "content": {"typeVars": [".-1.140552999339616"], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": ".-1.140552999339616"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140552957498912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140552999339616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999339616", "variance": "INVARIANT"}}, "140552957498912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": ".-1.140552999339616"}]}}, "140552999340064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "140552957499024"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552957499024": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140552999340512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "140552957499136"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552957499136": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140552999340960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "140552957499248"}], "returnType": {"nodeId": "140552957499472"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140552957499248": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140552957499472": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552927556352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552987167200", "args": [{"nodeId": "140552957499696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957499696": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552957498128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999341856"}, {"nodeId": "140552999342304"}]}}, "140552999341856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140552965747488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552999342304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "140552957500032"}], "returnType": {"nodeId": "140552957500256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552957500032": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}]}}, "140552957500256": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965747488"}, {"nodeId": "A"}]}}, "140552999342752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}], "returnType": {"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999343200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965747488", "args": [{"nodeId": ".1.140552965747488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140552999343648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140552961426528": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020551968"}], "isAbstract": false}}, "140553020550208": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999516896"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999517344"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140552999516896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999517344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550208"}, {"nodeId": "140552987165440"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140553020550560": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999716000"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910692288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999717792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999718240"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999719584"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999720480"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910696544"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999721376"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999721824"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999722272"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953205408"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553020550912"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "A"}, {"nodeId": "140553020550912"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552965306176"}], "isAbstract": false}}, "140552999716000": {"type": "Function", "content": {"typeVars": [".-1.140552999716000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, {"nodeId": "140553020550208"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140552999716000"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140552999716000": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999716000", "variance": "INVARIANT"}}, "140552910692288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140553057843360"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140553020550208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140552999717792": {"type": "Function", "content": {"typeVars": [".-1.140552999717792"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".-1.140552999717792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140552999717792": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999717792", "variance": "INVARIANT"}}, "140552999718240": {"type": "Function", "content": {"typeVars": [".-1.140552999718240"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": ".-1.140552999718240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140552999718240": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999718240", "variance": "INVARIANT"}}, "140552999719584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552999720480": {"type": "Function", "content": {"typeVars": [".-1.140552999720480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".-1.140552999720480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140552999720480": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999720480", "variance": "INVARIANT"}}, "140552910696544": {"type": "Function", "content": {"typeVars": [".-1.140552910696544"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140552965735168", "args": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140552910696544"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140552910696544": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552910696544", "variance": "INVARIANT"}}, "140552999721376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550560"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552999721824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999722272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550560"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953205408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999722720"}, {"nodeId": "140552999723616"}]}}, "140552999722720": {"type": "Function", "content": {"typeVars": [".-1.140552999722720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140552999722720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140552999722720": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552999722720", "variance": "INVARIANT"}}, "140552999723616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020550560"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953209328"}, {"nodeId": "140552953209440"}, {"nodeId": "140552953209552"}, {"nodeId": "140552953209664"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140552953209328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973912880"}}}, "140552973912880": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "140553057837024", "args": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552973915120"}]}]}, {"nodeId": "140553057842304", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}]}}, "140552973915120": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}}, "140552953209440": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953209552": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953209664": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "N"}]}}, "140553020551264": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552910832576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999728544"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140553057844064"}, {"nodeId": "140553020550912"}], "isAbstract": false}}, "140552910832576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020551264"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552999728544": {"type": "Function", "content": {"typeVars": [".0.140552999728544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": ".0.140552999728544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140552999728544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020551264"}, "def": "140552999728544", "variance": "INVARIANT"}}, "140552965743616": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140552965743616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140552965743616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990193728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990194176"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990194624"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140552965743616"}], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, ".1.140552965743616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552965743616", "variance": "INVARIANT"}}, "140552990193728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965743616", "args": [{"nodeId": ".1.140552965743616"}]}, {"nodeId": "140552957173808"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957173920"}, {"nodeId": "140552957174032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140552957173808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957173920": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965743616"}, {"nodeId": "N"}]}}, "140552957174032": {"type": "Union", "content": {"items": [{"nodeId": ".1.140552965743616"}, {"nodeId": "N"}]}}, "140552990194176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965743616", "args": [{"nodeId": ".1.140552965743616"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990194624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140552965741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140552965743968": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552965744320": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552978279424"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961612976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961381808"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552965743968"}], "isAbstract": false}}, "140552978279424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965744320"}, {"nodeId": "140552957375456"}, {"nodeId": "140553057844416"}, {"nodeId": "140552957375568"}, {"nodeId": "140552957375680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140552957375456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957375568": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552957375680": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552961612976": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552961381808": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552965744672": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552978279872"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552965743968"}], "isAbstract": false}}, "140552978279872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965744672"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957375792"}, {"nodeId": "140552957375904"}, {"nodeId": "140552957376016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140552957375792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961380912"}}}, "140552957375904": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552957376016": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140553020542464": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915123808"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140552965292448"}], "isAbstract": false}}, "140552915123808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020542464"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020543168": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965747840", "args": [{"nodeId": "140552987165440"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974168384"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915114848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915114176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915114624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973916800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974170176"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140553020542816"}], "isAbstract": false}}, "140552974168384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952930016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952930016": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552915114848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952930240"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952930240": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552915114176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952930352"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952930352": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552915114624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952930464"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952930464": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552973916800": {"type": "Union", "content": {"items": [{"nodeId": "140553020544576"}, {"nodeId": "N"}]}}, "140552974170176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552952930576"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140552952930576": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140553020542816": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973919376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973920272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986420032"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986419584"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986420928"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552986420704"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140552987167200", "args": [{"nodeId": "140552987165440"}]}], "isAbstract": false}}, "140552973919376": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552973920272": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140552986420032": {"type": "Function", "content": {"typeVars": [".-1.140552986420032"], "argTypes": [{"nodeId": ".-1.140552986420032"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".-1.140552986420032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140552986420032": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140552973919152"}, "def": "140552986420032", "variance": "INVARIANT"}}, "140552973919152": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552986419584": {"type": "Function", "content": {"typeVars": [".-1.140552986419584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".-1.140552986419584"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140552986419584": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140552973919152"}, "def": "140552986419584", "variance": "INVARIANT"}}, "140552986420928": {"type": "Function", "content": {"typeVars": [".-1.140552986420928"], "argTypes": [{"nodeId": ".-1.140552986420928"}], "returnType": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140552986420928": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140552973919152"}, "def": "140552986420928", "variance": "INVARIANT"}}, "140552986420704": {"type": "Function", "content": {"typeVars": [".-1.140552986420704"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140552986420704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140552986420704": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140552973919152"}, "def": "140552986420704", "variance": "INVARIANT"}}, "140553020543872": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915087680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915087232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552915087008"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552952929344"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553020543520"}]}], "isAbstract": false}}, "140552915087680": {"type": "Function", "content": {"typeVars": [".0.140552915087680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552952930912"}]}], "returnType": {"nodeId": ".0.140552915087680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140552952930912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961388416"}}}, ".0.140552915087680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020543872"}, "def": "140552915087680", "variance": "INVARIANT"}}, "140552915087232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543872"}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552915087008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543872"}], "returnType": {"nodeId": "140552965479360", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552952929344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552999159616"}, {"nodeId": "140552999160064"}]}}, "140552999159616": {"type": "Function", "content": {"typeVars": [".0.140552999159616"], "argTypes": [{"nodeId": ".0.140552999159616"}], "returnType": {"nodeId": ".0.140552999159616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552999159616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020543872"}, "def": "140552999159616", "variance": "INVARIANT"}}, "140552999160064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020543872"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140553020543520"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140552961430048": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140552961430400"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915081408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553020548096"}], "isAbstract": true}}, "140552915081408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961430048"}, {"nodeId": "140552961430400"}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": "140553020544576"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140552961430752": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552915079616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552999170368"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140552961430048"}], "isAbstract": false}}, "140552915079616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140552961430400"}], "returnType": {"nodeId": "140553057837024", "args": [{"nodeId": "140553020544928"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140552999170368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552961430752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140552982710752": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552974307328"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552974307328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552982710752"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552965746784": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965982912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965983024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982102080"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552965982912": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552965983024": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552982102080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746784"}, {"nodeId": "140552987165440"}, {"nodeId": "140552957496112"}, {"nodeId": "140552957495776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140552957496112": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "N"}]}}, "140552957495776": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552965747136": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982102528"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140553057844064"}], "isAbstract": false}}, "140552982102528": {"type": "Function", "content": {"typeVars": [".0.140552982102528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140553057844064"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": ".0.140552982102528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140552982102528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140552965747136"}, "def": "140552982102528", "variance": "INVARIANT"}}, "140553020542112": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982632192"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982632640"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982633088"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982633536"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140552982632192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020542112"}], "returnType": {"nodeId": "140553020542112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982632640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020542112"}], "returnType": {"nodeId": "140553020542112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982633088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020542112"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982633536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020542112"}], "returnType": {"nodeId": "140553020542112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140553020553728": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553020552672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961737440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961556880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552978614400"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982634880"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982635328"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982635776"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982636224"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982636672"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982637120"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982637568"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982638016"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982638464"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982638912"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982639360"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982639808"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982640256"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982640704"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982641152"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982641600"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982642048"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953206528"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953211344"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982185792"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982186240"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982186688"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982187136"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982187584"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982188032"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982188480"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953214816"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953215376"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982190720"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982191168"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953216160"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953430864"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982193408"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953430752"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140552953430976"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982195648"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982196096"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982196544"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982196992"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982197440"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982197888"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982198336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982198784"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982199232"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140553020552672": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973913440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973913888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986974400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986974848"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986975296"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986975744"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986976192"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910991904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910991456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910991232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910991008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552910990784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": true}}, "140552973913440": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552973913888": {"type": "Union", "content": {"items": [{"nodeId": "140552973626816"}, {"nodeId": "N"}]}}, "140552973626816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}], "returnType": {"nodeId": "140553020553728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986974400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552953211120"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552953211232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140552953211120": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953211232": {"type": "Union", "content": {"items": [{"nodeId": "140552952864480"}, {"nodeId": "N"}]}}, "140552952864480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}], "returnType": {"nodeId": "140553020553728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552986974848": {"type": "Function", "content": {"typeVars": [".0.140552986974848"], "argTypes": [{"nodeId": ".0.140552986974848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140552986974848"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140552986974848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020552672"}, "def": "140552986974848", "variance": "INVARIANT"}}, "140552986975296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140553020553728"}, {"nodeId": "140552978614400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140552978614400": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986972832"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552987179872"}], "isAbstract": false}}, "140552986972832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978614400"}, {"nodeId": "140552953437696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140552953437696": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552986975744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140553020553728"}, {"nodeId": "140552978614400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140552986976192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953211568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140552953211568": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552910991904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552953211792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140552953211792": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552910991456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953212016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552953212016": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552910991232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552910991008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552910990784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552961737440": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552961556880": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982634880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982635328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140552982635776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552953213360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953213360": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982636224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140553020553728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140552982636672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552953213472"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140552953213472": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552982637120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552953213696"}, {"nodeId": "140552953213920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140552953213696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973914672"}}}, "140552973914672": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553020553728"}]}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}]}}, "140552953213920": {"type": "Union", "content": {"items": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552978621792": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973911312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973911536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973911648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987111296"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987111744"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987112192"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987112640"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987113088"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987113536"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987113984"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552987114432"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552973911312": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552973911536": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552973911648": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987111296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140552987111744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552987112192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}], "returnType": {"nodeId": "140552953439264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953439264": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552987112640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140552987113088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057837376", "args": [{"nodeId": "140553057844064"}]}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140552987113536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140552987113984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552987114432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621792"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982637568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552953213808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140552953213808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973913664"}}}, "140552973913664": {"type": "Union", "content": {"items": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982638016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552953214032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953214032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973913664"}}}, "140552982638464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552982638912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982639360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552982639808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953214144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552953214144": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982640256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953214256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552953214256": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982640704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552982641152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982641600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552953214368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953214368": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982642048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552953214704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953214704": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552953214480"}]}}, "140552953214480": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552953206528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982184000"}, {"nodeId": "140552982184448"}]}}, "140552982184000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552953215040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140552953215040": {"type": "Union", "content": {"items": [{"nodeId": "140552953214928"}, {"nodeId": "N"}]}}, "140552953214928": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982184448": {"type": "Function", "content": {"typeVars": [".-1.140552982184448"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982184448"}], "returnType": {"nodeId": "140552953215264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140552982184448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982184448", "variance": "INVARIANT"}}, "140552953215264": {"type": "Union", "content": {"items": [{"nodeId": "140552953215152"}, {"nodeId": ".-1.140552982184448"}]}}, "140552953215152": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552953211344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982184896"}, {"nodeId": "140552982185344"}]}}, "140552982184896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552953215600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140552953215600": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552953215488"}]}, {"nodeId": "N"}]}}, "140552953215488": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982185344": {"type": "Function", "content": {"typeVars": [".-1.140552982185344"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982185344"}], "returnType": {"nodeId": "140552953215824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140552982185344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982185344", "variance": "INVARIANT"}}, "140552953215824": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552953215712"}]}, {"nodeId": ".-1.140552982185344"}]}}, "140552953215712": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982185792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953215936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140552953215936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973910416"}}}, "140552973910416": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}, {"nodeId": "140552973910192"}]}}, "140552973910192": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552973910528"}, {"nodeId": "140552987165440"}]}}, "140552973910528": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982186240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953216048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140552953216048": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982186688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982187136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982187584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982188032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982188480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140552953214816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982188928"}, {"nodeId": "140552982189376"}]}}, "140552982188928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "N"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552953216496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140552953216496": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552953216384"}]}, {"nodeId": "N"}]}}, "140552953216384": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552982189376": {"type": "Function", "content": {"typeVars": [".-1.140552982189376"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": ".-1.140552982189376"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552953216832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140552982189376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982189376", "variance": "INVARIANT"}}, "140552953216832": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552953216720"}]}, {"nodeId": ".-1.140552982189376"}]}}, "140552953216720": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552953215376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982189824"}, {"nodeId": "140552982190272"}]}}, "140552982189824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552953430304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140552953430304": {"type": "Union", "content": {"items": [{"nodeId": "140552953430192"}, {"nodeId": "N"}]}}, "140552953430192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973912208"}}}, "140552973912208": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552973910976"}]}}, "140552973910976": {"type": "Tuple", "content": {"items": [{"nodeId": "140552973911984"}, {"nodeId": "140552973912320"}, {"nodeId": "140552987165440"}]}}, "140552973911984": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552973912320": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982190272": {"type": "Function", "content": {"typeVars": [".-1.140552982190272"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982190272"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "140552953430640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140552982190272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982190272", "variance": "INVARIANT"}}, "140552953430640": {"type": "Union", "content": {"items": [{"nodeId": "140552953430080"}, {"nodeId": ".-1.140552982190272"}]}}, "140552953430080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552973912208"}}}, "140552982190720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140552982191168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140552953216160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982191616"}, {"nodeId": "140552982192064"}]}}, "140552982191616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552953430416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140552953430416": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982192064": {"type": "Function", "content": {"typeVars": [".-1.140552982192064"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": ".-1.140552982192064"}], "returnType": {"nodeId": "140552953430528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140552982192064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982192064", "variance": "INVARIANT"}}, "140552953430528": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982192064"}]}}, "140552953430864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982192512"}, {"nodeId": "140552982192960"}]}}, "140552982192512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552953431088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140552953431088": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982192960": {"type": "Function", "content": {"typeVars": [".-1.140552982192960"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": ".-1.140552982192960"}], "returnType": {"nodeId": "140552953431200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140552982192960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982192960", "variance": "INVARIANT"}}, "140552953431200": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982192960"}]}}, "140552982193408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140552953430752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982193856"}, {"nodeId": "140552982194304"}]}}, "140552982193856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552953431424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953431424": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982194304": {"type": "Function", "content": {"typeVars": [".-1.140552982194304"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": ".-1.140552982194304"}], "returnType": {"nodeId": "140552953431536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140552982194304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982194304", "variance": "INVARIANT"}}, "140552953431536": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982194304"}]}}, "140552953430976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552982194752"}, {"nodeId": "140552982195200"}]}}, "140552982194752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "N"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552953431760"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140552953431760": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982195200": {"type": "Function", "content": {"typeVars": [".-1.140552982195200"], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": ".-1.140552982195200"}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": "140552953431872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140552982195200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140553057832448"}, "def": "140552982195200", "variance": "INVARIANT"}}, "140552953431872": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": ".-1.140552982195200"}]}}, "140552982195648": {"type": "Function", "content": {"typeVars": [".0.140552982195648"], "argTypes": [{"nodeId": ".0.140552982195648"}], "returnType": {"nodeId": "140553057838080", "args": [{"nodeId": ".0.140552982195648"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140552982195648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140553020553728"}, "def": "140552982195648", "variance": "INVARIANT"}}, "140552982196096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552953432096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953432096": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982196544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057844064"}, {"nodeId": "140552953432208"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140552953432208": {"type": "Union", "content": {"items": [{"nodeId": "140553020552672"}, {"nodeId": "N"}]}}, "140552982196992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140553057833152"}, {"nodeId": "140552953432320"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140552953432320": {"type": "Union", "content": {"items": [{"nodeId": "140553020552672"}, {"nodeId": "N"}]}}, "140552982197440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552982197888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}, {"nodeId": "140552953432432"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140552953432432": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552982198336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140553020552672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140552982198784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953432544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552953432544": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140552982199232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553728"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140552953432880"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552953432880": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552953432656"}]}}, "140552953432656": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140553020554080": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552982199680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990425152"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990425600"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990426048"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990426496"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990426944"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990427392"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990427840"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990428288"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990428736"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990429184"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990429632"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990430080"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990430528"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990430976"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990431424"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140553020553728"}], "isAbstract": false}}, "140552982199680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "140552953432992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140552953432992": {"type": "Union", "content": {"items": [{"nodeId": "140553020552672"}, {"nodeId": "N"}]}}, "140552990425152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "140553057840896", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552953433104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140552953433104": {"type": "Union", "content": {"items": [{"nodeId": "140553020553728"}, {"nodeId": "N"}]}}, "140552990425600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553020553728"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990426048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}], "returnType": {"nodeId": "140553057837376", "args": [{"nodeId": "140553020553728"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990426496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "A"}, {"nodeId": "140552953433328"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140552953433328": {"type": "Union", "content": {"items": [{"nodeId": "140552978621440"}, {"nodeId": "N"}]}}, "140552978621440": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986969920"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986970368"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986970816"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986971264"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552986969920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621440"}, {"nodeId": "140553020553728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140552986970368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621440"}, {"nodeId": "140553020553728"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140552986970816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621440"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953495616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140552953495616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552986971264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978621440"}, {"nodeId": "140553057843360"}, {"nodeId": "140552953495840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140552953495840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140552990426944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "A"}, {"nodeId": "140552953433776"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140552953433776": {"type": "Union", "content": {"items": [{"nodeId": "140552978621440"}, {"nodeId": "N"}]}}, "140552990427392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "140552953434000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140552953434000": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990427840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "140552953434112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140552953434112": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990428288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "140552953434224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140552953434224": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990428736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "A"}, {"nodeId": "140552953434448"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140552953434448": {"type": "Union", "content": {"items": [{"nodeId": "140552978621440"}, {"nodeId": "N"}]}}, "140552990429184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "A"}, {"nodeId": "140552953434784"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140552953434784": {"type": "Union", "content": {"items": [{"nodeId": "140552978621440"}, {"nodeId": "N"}]}}, "140552990429632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "A"}, {"nodeId": "140552953435120"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140552953435120": {"type": "Union", "content": {"items": [{"nodeId": "140552978621440"}, {"nodeId": "N"}]}}, "140552990430080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990430528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990430976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}, {"nodeId": "140553057833152"}, {"nodeId": "140552953435344"}, {"nodeId": "140552953435456"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140552953435344": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953435456": {"type": "Union", "content": {"items": [{"nodeId": "140553020552672"}, {"nodeId": "N"}]}}, "140552990431424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554080"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140553020554432": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140553020554080"}], "isAbstract": false}}, "140552961436736": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961436032"}], "isAbstract": false}}, "140552961437440": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961437088"}, {"nodeId": "140552961436384"}], "isAbstract": false}}, "140552961437792": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140552961437088"}, {"nodeId": "140552961436736"}], "isAbstract": false}}, "140552965745376": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552965745728": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552965603024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961614096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552932538656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990509312"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990509760"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990510208"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990510656"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552965603024": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552961614096": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552932538656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745728"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990509312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745728"}, {"nodeId": "140552957493312"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140552957493312": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990509760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745728"}, {"nodeId": "140553057844064"}, {"nodeId": "140552965746080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140552965746080": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552961616784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961570768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552965745728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990511104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990512000"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990512448"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990512896"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990513344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990513792"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990514240"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990514688"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990515136"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552961616784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961618016"}}}, "140552961618016": {"type": "Tuple", "content": {"items": [{"nodeId": "140552965747136"}, {"nodeId": "140552961616896"}]}}, "140552961616896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961617792"}}}, "140552961617792": {"type": "Union", "content": {"items": [{"nodeId": "140552961616000"}, {"nodeId": "140552961616560"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552965746080"}]}, {"nodeId": "140552961617456"}, {"nodeId": "140552961617680"}]}}, "140552961616000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552987167552", "args": [{"nodeId": "140552965602912"}]}}}, "140552965602912": {"type": "Tuple", "content": {"items": [{"nodeId": "140552965747136"}, {"nodeId": "140553057844064"}]}}, "140552961616560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961382928"}}}, "140552961382928": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552965746080"}]}]}}, "140552961617456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961382816"}}}, "140552961382816": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552965746080"}, {"nodeId": "140552965746080"}]}}, "140552961617680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961612864"}}}, "140552961612864": {"type": "Tuple", "content": {"items": [{"nodeId": "140552965601680"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}, {"nodeId": "140552965746080"}]}}, "140552965601680": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552961570768": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552990511104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140552965745728"}, {"nodeId": "140552957493536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140552957493536": {"type": "Union", "content": {"items": [{"nodeId": "140552987167552", "args": [{"nodeId": "140552957493424"}]}, {"nodeId": "N"}]}}, "140552957493424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961618016"}}}, "140552990512000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140552990512448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552990512896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140552957494096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552957494096": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987166848"}]}}, "140552990513344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140552957493760"}], "returnType": {"nodeId": "140552957493984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552957493760": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987166848"}]}}, "140552957493984": {"type": "Union", "content": {"items": [{"nodeId": "140552965746080"}, {"nodeId": "140552957493648"}]}}, "140552957493648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961618016"}}}, "140552990513792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140552957494544"}, {"nodeId": "140552957494208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140552957494544": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140552987166848"}]}}, "140552957494208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961618016"}}}, "140552990514240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140553057844064"}, {"nodeId": "140552957494768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140552957494768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961618016"}}}, "140552990514688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}, {"nodeId": "140552957494880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140552957494880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552961618016"}}}, "140552990515136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746080"}], "returnType": {"nodeId": "140552957494432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957494432": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552990510208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745728"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140552990510656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965745728"}, {"nodeId": "140553057844064"}, {"nodeId": "140552965746432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140552965746432": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057844064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552961618464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990515584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990516032"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990516480"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990516928"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990517376"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140552932533056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990518720"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990519168"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552990519616"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552961618464": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990515584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140552990516032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140552990516480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}], "returnType": {"nodeId": "140552957494656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552957494656": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552990516928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}, {"nodeId": "140553057844064"}, {"nodeId": "140553057837024", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140552990517376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140552932533056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990518720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140552990519168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140552990519616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965746432"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "140552965746784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140552978612288": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552987173536"}], "isAbstract": false}}, "140552978612640": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978612288"}], "isAbstract": false}}, "140552978612992": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978612640"}], "isAbstract": false}}, "140552978613344": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978612640"}], "isAbstract": false}}, "140552978613696": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978612288"}, {"nodeId": "140552987179520"}], "isAbstract": false}}, "140552978614048": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978612288"}], "isAbstract": false}}, "140552978614752": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978615104": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978615456": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978615808": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978616160": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978616512": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978616864": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978617216": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978617568": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978617920": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978618272": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978618624": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978618976": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978614400"}], "isAbstract": false}}, "140552978619328": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978618976"}], "isAbstract": false}}, "140552978619680": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978618976"}], "isAbstract": false}}, "140552978620032": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986973280"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140552978618976"}], "isAbstract": false}}, "140552986973280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552978620032"}, {"nodeId": "140552953437808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140552953437808": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552978620384": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978618976"}], "isAbstract": false}}, "140552978620736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978618976"}], "isAbstract": false}}, "140552978621088": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140552978618976"}], "isAbstract": false}}, "140553020553024": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986978880"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986979328"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986979776"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986980224"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986980672"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140553020552672"}], "isAbstract": false}}, "140552986978880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553024"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552953212240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140552953212240": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552986979328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553024"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953212464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552953212464": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552986979776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553024"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953212576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552953212576": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140553020554784"}]}}, "140553020554784": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986411520"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986411968"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986412416"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986412864"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986413312"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140553057832448"}], "isAbstract": false}}, "140552986411520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554784"}, {"nodeId": "140552953435568"}, {"nodeId": "140552953435680"}, {"nodeId": "140552953435792"}, {"nodeId": "140552953435904"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140552953435568": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953435680": {"type": "Union", "content": {"items": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552953435792": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953435904": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552986411968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554784"}, {"nodeId": "140552953436016"}, {"nodeId": "140552953436128"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140552953436016": {"type": "Union", "content": {"items": [{"nodeId": "140552987165792"}, {"nodeId": "140552987166144"}, {"nodeId": "140552987165440"}]}}, "140552953436128": {"type": "Union", "content": {"items": [{"nodeId": "140552978621792"}, {"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552986412416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554784"}, {"nodeId": "140552987165440"}, {"nodeId": "140552953436240"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140552953436240": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552986412864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554784"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986413312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020554784"}, {"nodeId": "140553057832448"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986980224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553024"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552986980672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553024"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140553020553376": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140553057833152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552973627264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552978621440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986981120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986981568"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986982016"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986982464"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986982912"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140552986983360"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140553020552672"}], "isAbstract": false}}, "140552973627264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986981120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553376"}, {"nodeId": "140552953212688"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}, {"nodeId": "140553057833152"}, {"nodeId": "140553057833152"}, {"nodeId": "140552953212800"}, {"nodeId": "140553057833152"}, {"nodeId": "140552987165440"}, {"nodeId": "140552952869408"}, {"nodeId": "140552978621440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140552953212688": {"type": "Union", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "N"}]}}, "140552953212800": {"type": "Union", "content": {"items": [{"nodeId": "140552952869184"}, {"nodeId": "N"}]}}, "140552952869184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020552672"}], "returnType": {"nodeId": "140553020553728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552952869408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552986981568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553376"}, {"nodeId": "140552987167552", "args": [{"nodeId": "140552987165440"}]}], "returnType": {"nodeId": "140552953213024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140552953213024": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552986982016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553376"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552953213248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552953213248": {"type": "Tuple", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}]}}, "140552986982464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553376"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552986982912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553376"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552986983360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553020553376"}, {"nodeId": "140552987165440"}, {"nodeId": "140552987165440"}], "returnType": {"nodeId": "140552987165792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140552885575616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552885576288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140552885574496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140552885572032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140552885567552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "140553057844064"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140552885517024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140552890676080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552885511200"}, {"nodeId": "140552885511648"}]}}, "140552885511200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987168256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552885511648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}, {"nodeId": "140552965485696"}], "returnType": {"nodeId": "140552987168256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140552890669584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552885510080"}, {"nodeId": "140552885509856"}, {"nodeId": "140552885509408"}]}}, "140552885510080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552986686944", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140552885509856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057837024", "args": [{"nodeId": "140552890669808"}]}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140552890669808": {"type": "Tuple", "content": {"items": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, "140552885509408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR_2"], "argNames": ["kwargs"]}}, "140552885510976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552944780672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552944645312"}], "returnType": {"nodeId": "140553057833152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140552944645312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552986638960"}}}, "140552986638960": {"type": "Union", "content": {"items": [{"nodeId": "140553057843360"}, {"nodeId": "140552965742208"}, {"nodeId": "140552987167200", "args": [{"nodeId": "140552986634592"}]}]}}, "140552986634592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140552986638960"}}}, "140552890663200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140552890613120"}, {"nodeId": "140552890612224"}]}}, "140552890613120": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": [], "argNames": []}}, "140552890612224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057837024", "args": [{"nodeId": ".1.140552987167552"}]}], "returnType": {"nodeId": "140552987167552", "args": [{"nodeId": ".1.140552987167552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140552890612000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}, {"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["component_size", "u_node", "v_node"]}}, "140552944911184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140553024368512"}, {"nodeId": "140553024368960"}]}}, "140553024368512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552944916784"}, {"nodeId": "140552944916896"}, {"nodeId": "140552944917008"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["values", "sep", "end", "file", "flush"]}}, "140552944916784": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552944916896": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552944917008": {"type": "Union", "content": {"items": [{"nodeId": "140552982708288", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}, "140553024368960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140553057832448"}, {"nodeId": "140552944917232"}, {"nodeId": "140552944917344"}, {"nodeId": "140552944917456"}, {"nodeId": "140553057833152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED"], "argNames": ["values", "sep", "end", "file", "flush"]}}, "140552944917232": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552944917344": {"type": "Union", "content": {"items": [{"nodeId": "140552987165440"}, {"nodeId": "N"}]}}, "140552944917456": {"type": "Union", "content": {"items": [{"nodeId": "140552961241888", "args": [{"nodeId": "140552987165440"}]}, {"nodeId": "N"}]}}}, "exprTypes": {"boruvka": [{"startOffset": 440, "endOffset": 451, "line": 13, "type": {"nodeId": "140553057844064"}}, {"startOffset": 418, "endOffset": 436, "line": 13, "type": {"nodeId": "140553057844064"}}, {"startOffset": 418, "endOffset": 421, "line": 13, "type": {"nodeId": "140552961438848"}}, {"startOffset": 461, "endOffset": 472, "line": 14, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}]}}, {"startOffset": 461, "endOffset": 464, "line": 14, "type": {"nodeId": "140552961438848"}}, {"startOffset": 504, "endOffset": 519, "line": 15, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 504, "endOffset": 507, "line": 15, "type": {"nodeId": "140552961438848"}}, {"startOffset": 703, "endOffset": 721, "line": 20, "type": {"nodeId": "140552885575616"}}, {"startOffset": 703, "endOffset": 714, "line": 20, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}]}}, {"startOffset": 703, "endOffset": 706, "line": 20, "type": {"nodeId": "140552961438848"}}, {"startOffset": 724, "endOffset": 729, "line": 20, "type": {"nodeId": "140553057844064"}}, {"startOffset": 732, "endOffset": 737, "line": 20, "type": {"nodeId": "140553057844064"}}, {"startOffset": 740, "endOffset": 745, "line": 20, "type": {"nodeId": "140553057844064"}}, {"startOffset": 883, "endOffset": 898, "line": 25, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 883, "endOffset": 886, "line": 25, "type": {"nodeId": "140552961438848"}}, {"startOffset": 900, "endOffset": 905, "line": 25, "type": {"nodeId": "140553057844064"}}, {"startOffset": 911, "endOffset": 916, "line": 25, "type": {"nodeId": "140553057844064"}}, {"startOffset": 938, "endOffset": 943, "line": 26, "type": {"nodeId": "140553057844064"}}, {"startOffset": 960, "endOffset": 978, "line": 27, "type": {"nodeId": "140552885576288"}}, {"startOffset": 960, "endOffset": 963, "line": 27, "type": {"nodeId": "140552961438848"}}, {"startOffset": 980, "endOffset": 995, "line": 27, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 980, "endOffset": 983, "line": 27, "type": {"nodeId": "140552961438848"}}, {"startOffset": 997, "endOffset": 1002, "line": 27, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1125, "endOffset": 1140, "line": 32, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 1125, "endOffset": 1128, "line": 32, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1142, "endOffset": 1147, "line": 32, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1153, "endOffset": 1158, "line": 32, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1177, "endOffset": 1177, "line": 33, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1182, "endOffset": 1197, "line": 33, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 1182, "endOffset": 1185, "line": 33, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1238, "endOffset": 1256, "line": 34, "type": {"nodeId": "140552885574496"}}, {"startOffset": 1238, "endOffset": 1241, "line": 34, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1258, "endOffset": 1258, "line": 34, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1216, "endOffset": 1231, "line": 34, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 1216, "endOffset": 1219, "line": 34, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1233, "endOffset": 1233, "line": 34, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1551, "endOffset": 1564, "line": 41, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1566, "endOffset": 1571, "line": 41, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1577, "endOffset": 1590, "line": 41, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1592, "endOffset": 1597, "line": 41, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1640, "endOffset": 1645, "line": 42, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1613, "endOffset": 1628, "line": 42, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 1613, "endOffset": 1616, "line": 42, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1630, "endOffset": 1635, "line": 42, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1685, "endOffset": 1698, "line": 43, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1700, "endOffset": 1705, "line": 43, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1659, "endOffset": 1672, "line": 43, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1674, "endOffset": 1679, "line": 43, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1720, "endOffset": 1737, "line": 44, "type": {"nodeId": "140552885572032"}}, {"startOffset": 1720, "endOffset": 1723, "line": 44, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1739, "endOffset": 1744, "line": 44, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1761, "endOffset": 1774, "line": 46, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1776, "endOffset": 1781, "line": 46, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1787, "endOffset": 1800, "line": 46, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1802, "endOffset": 1807, "line": 46, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1850, "endOffset": 1868, "line": 47, "type": {"nodeId": "140552885567552"}}, {"startOffset": 1850, "endOffset": 1853, "line": 47, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1870, "endOffset": 1875, "line": 47, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1823, "endOffset": 1838, "line": 47, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 1823, "endOffset": 1826, "line": 47, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1840, "endOffset": 1845, "line": 47, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1916, "endOffset": 1929, "line": 48, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1931, "endOffset": 1936, "line": 48, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1890, "endOffset": 1903, "line": 48, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 1905, "endOffset": 1910, "line": 48, "type": {"nodeId": "140553057844064"}}, {"startOffset": 1951, "endOffset": 1968, "line": 49, "type": {"nodeId": "140552885517024"}}, {"startOffset": 1951, "endOffset": 1954, "line": 49, "type": {"nodeId": "140552961438848"}}, {"startOffset": 1970, "endOffset": 1975, "line": 49, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2136, "endOffset": 2149, "line": 55, "type": {"nodeId": "0"}}, {"startOffset": 2164, "endOffset": 2173, "line": 56, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2223, "endOffset": 2241, "line": 58, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2223, "endOffset": 2226, "line": 58, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2188, "endOffset": 2206, "line": 58, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 2321, "endOffset": 2324, "line": 61, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2329, "endOffset": 2333, "line": 61, "type": {"nodeId": "140552890676080"}}, {"startOffset": 2335, "endOffset": 2353, "line": 61, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2335, "endOffset": 2338, "line": 61, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2369, "endOffset": 2391, "line": 62, "type": {"nodeId": "140552890669584"}}, {"startOffset": 2369, "endOffset": 2384, "line": 62, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 2369, "endOffset": 2372, "line": 62, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2393, "endOffset": 2397, "line": 62, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2400, "endOffset": 2403, "line": 62, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2419, "endOffset": 2439, "line": 63, "type": {"nodeId": "140552885510976"}}, {"startOffset": 2419, "endOffset": 2432, "line": 63, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 2473, "endOffset": 2491, "line": 65, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2473, "endOffset": 2476, "line": 65, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2453, "endOffset": 2469, "line": 65, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2508, "endOffset": 2524, "line": 67, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2547, "endOffset": 2550, "line": 68, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 2555, "endOffset": 2566, "line": 68, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}]}}, {"startOffset": 2555, "endOffset": 2558, "line": 68, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2595, "endOffset": 2598, "line": 69, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 2585, "endOffset": 2585, "line": 69, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2588, "endOffset": 2588, "line": 69, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2591, "endOffset": 2591, "line": 69, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2631, "endOffset": 2646, "line": 71, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 2631, "endOffset": 2634, "line": 71, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2648, "endOffset": 2648, "line": 71, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2617, "endOffset": 2627, "line": 71, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2681, "endOffset": 2696, "line": 72, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 2681, "endOffset": 2684, "line": 72, "type": {"nodeId": "140552961438848"}}, {"startOffset": 2698, "endOffset": 2698, "line": 72, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2667, "endOffset": 2677, "line": 72, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2721, "endOffset": 2731, "line": 74, "type": {"nodeId": "140553057844064"}}, {"startOffset": 2736, "endOffset": 2746, "line": 74, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3326, "endOffset": 3334, "line": 85, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3340, "endOffset": 3350, "line": 85, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3353, "endOffset": 3363, "line": 85, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3428, "endOffset": 3446, "line": 87, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 3448, "endOffset": 3456, "line": 87, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3500, "endOffset": 3518, "line": 88, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 3520, "endOffset": 3528, "line": 88, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3536, "endOffset": 3536, "line": 88, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3627, "endOffset": 3627, "line": 90, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3630, "endOffset": 3630, "line": 90, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3633, "endOffset": 3633, "line": 90, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3593, "endOffset": 3611, "line": 90, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 3613, "endOffset": 3621, "line": 90, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3661, "endOffset": 3679, "line": 92, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 3701, "endOffset": 3710, "line": 93, "type": {"nodeId": "140552944780672"}}, {"startOffset": 3718, "endOffset": 3721, "line": 93, "type": {"nodeId": "140552890663200"}}, {"startOffset": 3755, "endOffset": 3758, "line": 94, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 3745, "endOffset": 3745, "line": 94, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3748, "endOffset": 3748, "line": 94, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3751, "endOffset": 3751, "line": 94, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3795, "endOffset": 3810, "line": 96, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 3795, "endOffset": 3798, "line": 96, "type": {"nodeId": "140552961438848"}}, {"startOffset": 3812, "endOffset": 3812, "line": 96, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3781, "endOffset": 3791, "line": 96, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3849, "endOffset": 3864, "line": 97, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140553057844064"}, {"nodeId": "140553057844064"}]}}, {"startOffset": 3849, "endOffset": 3852, "line": 97, "type": {"nodeId": "140552961438848"}}, {"startOffset": 3866, "endOffset": 3866, "line": 97, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3835, "endOffset": 3845, "line": 97, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3893, "endOffset": 3903, "line": 99, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3908, "endOffset": 3918, "line": 99, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3959, "endOffset": 3959, "line": 100, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3945, "endOffset": 3954, "line": 100, "type": {"nodeId": "140553057844064"}}, {"startOffset": 3985, "endOffset": 3994, "line": 101, "type": {"nodeId": "140552890612000"}}, {"startOffset": 3985, "endOffset": 3988, "line": 101, "type": {"nodeId": "140552961438848"}}, {"startOffset": 3996, "endOffset": 4009, "line": 101, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "140553057844064"}]}}, {"startOffset": 4012, "endOffset": 4022, "line": 101, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4025, "endOffset": 4035, "line": 101, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4062, "endOffset": 4066, "line": 102, "type": {"nodeId": "140552944911184"}}, {"startOffset": 4068, "endOffset": 4083, "line": 102, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4068, "endOffset": 4089, "line": 102, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4068, "endOffset": 4109, "line": 102, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4140, "endOffset": 4156, "line": 103, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4205, "endOffset": 4223, "line": 105, "type": {"nodeId": "140553057844064"}}, {"startOffset": 4205, "endOffset": 4208, "line": 105, "type": {"nodeId": "140552961438848"}}, {"startOffset": 4176, "endOffset": 4194, "line": 105, "type": {"nodeId": "140552987167552", "args": [{"nodeId": "A"}]}}, {"startOffset": 4233, "endOffset": 4237, "line": 106, "type": {"nodeId": "140552944911184"}}, {"startOffset": 4239, "endOffset": 4301, "line": 106, "type": {"nodeId": "140553057844064"}}]}, "definitions": {"boruvka": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987165440"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140552987167904", "args": [{"nodeId": "140552987165440"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "Graph": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961438848"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057832448"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057833152"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057833504"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057843360"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057843712"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057844064"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057844416"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057844768"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987164736"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987165088"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987165440"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987165792"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987166144"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987166496"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987166848"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987167200"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987167552"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987167904"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965479360"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965479712"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965480064"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987168256"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987168608"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987168960"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961241536"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987169312"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965480416"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987169664"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965480768"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961241888"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987170016"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987170368"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987170720"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965481120"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987171072"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987171424"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961242240"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965481472"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987171776"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987172128"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987172480"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987172832"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987173184"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987173536"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987173888"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987174240"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987174592"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987174944"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987175296"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987175648"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987176000"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987176352"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987176704"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987177056"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987177408"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987177760"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987178112"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987178464"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987178816"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987179168"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987179520"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987179872"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987180224"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552987180576"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965292096"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965292448"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965292800"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965293152"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965293504"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965293856"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965294208"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965294560"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965294912"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965295264"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965295616"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965295968"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965296320"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965296672"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965297024"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965297376"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965297728"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965298080"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965298432"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965298784"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965299136"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965299488"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965299840"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965300192"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965300544"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965300896"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965301248"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965301600"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965301952"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965302304"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965302656"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965303008"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965303360"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965303712"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965304064"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965304416"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965304768"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965305120"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965305472"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965305824"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982711104"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982711456"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982711808"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982712160"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982712512"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982712864"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982713216"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982713568"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982713920"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982714272"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982714624"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982714976"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982715328"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982715680"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982716032"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982716384"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982716736"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982717088"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982717440"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982717792"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982718144"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982718496"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982718848"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982719200"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982719552"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982719904"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982720256"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982720608"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982720960"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982721312"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982721664"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982722016"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982722368"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982722720"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982723072"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982723424"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982723776"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982724128"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961130560"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961130912"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961131264"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961131616"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961131968"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961132320"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961132672"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961133024"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961133376"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961133728"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961134080"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961134432"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961134784"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961135136"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961135488"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961135840"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961136192"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961136544"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961136896"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961137248"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961137600"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961137952"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961138304"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961138656"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961139008"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961139360"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961139712"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961140064"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961140416"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961140768"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961141120"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961141472"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961141824"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961142176"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961142528"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961142880"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961143232"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961143584"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961143936"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961144288"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961144640"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961144992"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961145344"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961145696"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961146048"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961146400"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961228864"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961229216"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961229568"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961229920"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961230272"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961230624"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961230976"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961231328"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961231680"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961232032"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961232384"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961232736"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961233088"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961233440"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961233792"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961234144"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961234496"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961234848"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961235200"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961235552"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961235904"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961236256"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961236608"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961236960"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961237312"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961237664"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961238016"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961238368"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961238720"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961239072"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961239424"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961239776"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961240128"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961240480"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986680256"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986680608"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986680960"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986681312"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986681664"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986682016"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986682368"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986682720"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986683072"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986683424"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986683776"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986684128"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986684480"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986684832"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986685184"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986685536"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986685888"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986686240"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986686592"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986686944"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986687296"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986687648"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986688000"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986688352"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986688704"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986689056"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982708288"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982708640"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982708992"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982709344"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982709696"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982710048"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982710400"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965742560"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961243648"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961244000"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961244352"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965742912"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961244704"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961425472"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961425824"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965743264"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961426176"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965488160"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965734464"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965734816"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965735168"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965735520"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965735872"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965736224"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965736576"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965736928"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965737280"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965737632"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965737984"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965738336"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965738688"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965739040"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965739392"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965739744"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965740096"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965740448"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965740800"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965741152"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965741504"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965741856"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965742208"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965478304"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965478656"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965479008"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965748896"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965749248"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965749600"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965749952"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965750304"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020538944"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020539296"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020539648"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020540000"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020540352"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020540704"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020541056"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020541408"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961438144"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965486752"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057833856"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057834208"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057834560"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057834912"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057835264"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057835616"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057835968"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965307936"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965472320"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965472672"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965473024"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965473376"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965473728"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057836320"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057836672"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965474080"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965474432"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057837024"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057837376"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057837728"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057838080"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057838432"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057838784"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965474784"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057839136"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057839488"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057839840"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057840192"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057840544"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057840896"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057841248"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057841600"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057841952"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965475136"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965475488"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965475840"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965476192"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057842304"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057842656"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965476544"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965476896"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965477248"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965477600"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965477952"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553057843008"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965484992"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965485344"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965485696"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965486048"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965486400"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965486752"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965487104"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965487456"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965487808"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965481824"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965482176"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965482528"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965482880"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965307232"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986674976"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986675328"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986675680"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965483232"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965483584"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965483936"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965484288"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965307584"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965484640"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978622144"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978622496"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978622848"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978623200"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978623552"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978623904"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965748192"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961242592"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961426880"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965748544"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961427232"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961427584"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961427936"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961428288"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961428640"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961428992"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961429344"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961429696"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020545984"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020546336"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020546688"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020547040"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020547392"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020547744"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020548096"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020548448"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020548800"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020549152"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020549504"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020549856"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020545280"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961431104"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961431456"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961431808"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020545632"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961432160"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961432512"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961432864"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961433216"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965306176"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965306528"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965306880"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986676032"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986676384"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961433568"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986676736"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986677088"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986677440"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986677792"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986678144"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986678496"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961433920"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986678848"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986679200"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986679552"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961434272"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961434624"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961434976"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961435328"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961435680"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986679904"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978624256"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978624608"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978624960"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978625312"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978625664"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978626016"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978626368"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978626720"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978627072"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978627424"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978627776"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978628128"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986673216"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986673568"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986673920"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986674272"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552986674624"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965747488"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965747840"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961426528"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020550208"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020550560"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020550912"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020551264"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020551616"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020551968"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020552320"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965743616"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965743968"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965744320"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965744672"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965745024"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020546336"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020541760"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020542464"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020543168"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020543520"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020543872"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961438496"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020544224"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020544576"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961430048"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961430752"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020544928"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552982710752"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965746784"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965747136"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020541760"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020542112"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020553728"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020554080"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020554432"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961436032"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961436384"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961436736"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961437088"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961437440"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552961437792"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965745376"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965745728"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965746080"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552965746432"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020553728"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020552672"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978621792"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978621440"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978612288"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978612640"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978612992"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978613344"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978613696"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978614048"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978614400"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978614752"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978615104"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978615456"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978615808"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978616160"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978616512"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978616864"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978617216"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978617568"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978617920"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978618272"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978618624"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978618976"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978619328"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978619680"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978620032"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978620384"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978620736"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140552978621088"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020552672"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020553024"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020553376"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140553020554784"}}}}}, "names": {"boruvka": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Graph", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}]}} \ No newline at end of file +{"nodeStorage": {"140097428308736": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391192416"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474781120"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474781568"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474782016"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474782464"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474782912"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474783360"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474783808"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474784704"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474785152"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474785600"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474786048"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474786496"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474786944"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474787392"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474787840"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474788288"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474788736"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474936896"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474937344"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474937792"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474938240"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474938688"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474939136"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474939584"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474940032"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474940480"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474940928"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474941376"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474941824"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474942272"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474942720"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474943168"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474943616"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474944064"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474944512"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474944960"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474945408"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474945856"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474946304"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474946752"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474947200"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474947648"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474948096"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474948544"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474948992"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474949440"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391192640"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474951232"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474951680"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474952128"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474952576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475067968"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475068416"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475068864"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475069312"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475069760"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475070208"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475070656"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475071104"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475071552"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475072000"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475072448"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097391192416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474780224"}, {"nodeId": "140097474780672"}]}}, "140097474780224": {"type": "Function", "content": {"typeVars": [".0.140097474780224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097474780224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140097499811328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424809024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390906160"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336513408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491618496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491618944"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491619392"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491619840"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491620288"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491620736"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491621184"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491621632"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491622080"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491622528"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491622976"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491623424"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491623872"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491624320"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491625664"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491626112"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336510720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140097424809024": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140097428311200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386297408"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470830784"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470831232"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470831680"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470832128"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470832576"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386297856"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386298640"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386298976"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470835712"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470836160"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470836608"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470837056"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470837504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470837952"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470838400"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470838848"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470839296"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386610752"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "isAbstract": false}}, ".1.140097428311200": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428311200", "variance": "INVARIANT"}}, ".2.140097428311200": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428311200", "variance": "INVARIANT"}}, "140097386297408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470827200"}, {"nodeId": "140097470827648"}, {"nodeId": "140097470828096"}, {"nodeId": "140097470828544"}, {"nodeId": "140097470828992"}, {"nodeId": "140097470829440"}, {"nodeId": "140097470829888"}, {"nodeId": "140097470830336"}]}}, "140097470827200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470827648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097470828096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097419752928": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492046048"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492046496"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097419752928"}, {"nodeId": ".2.140097419752928"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140097419752928": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752928", "variance": "INVARIANT"}}, ".2.140097419752928": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752928", "variance": "COVARIANT"}}, "140097492046048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097419752928"}, {"nodeId": ".2.140097419752928"}]}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097419752928"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499815904": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382455936"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499815904"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__iter__"]}}, ".1.140097499815904": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499815904", "variance": "COVARIANT"}}, "140097382455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499815904"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499815904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499816256": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382459520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462706336"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140097499816256"}], "bases": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499816256"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140097499816256": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816256", "variance": "COVARIANT"}}, "140097382459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816256"}]}], "returnType": {"nodeId": ".1.140097499816256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462706336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816256"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816256"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140097492046496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097419752928"}, {"nodeId": ".2.140097419752928"}]}, {"nodeId": ".1.140097419752928"}], "returnType": {"nodeId": ".2.140097419752928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470828544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097470828992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386298304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386298304": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}}, "140097470829440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386298528"}]}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097386298528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097428311200"}]}}, "140097470829888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428310848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386295616"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470649664"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470650112"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470650560"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470651008"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470651456"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470651904"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470652352"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470652800"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386295728"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470654144"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470654592"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386296848"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386296960"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470656832"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386297184"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470658176"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470658624"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470659072"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470659520"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470659968"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470824512"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470824960"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470825408"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470825856"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470826304"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470826752"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428310848"}], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097428310848"}]}], "isAbstract": false}}, ".1.140097428310848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428310848", "variance": "INVARIANT"}}, "140097386295616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470648768"}, {"nodeId": "140097470649216"}]}}, "140097470648768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470649216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470649664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470650112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470650560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470651008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097428310848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097407464576": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097387080256"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__index__"]}}, "140097387080256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499822944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391185472"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487007168"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336173824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336174496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336172928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336172704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487009408"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487009856"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487010304"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474428992"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340462624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474430336"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474430784"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474431232"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474431680"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474432128"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474432576"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474433024"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474433472"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474433920"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474434368"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474434816"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474435264"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474435712"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474436160"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391186592"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474439296"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474439744"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474440192"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474440640"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474441088"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474441536"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474441984"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474442432"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474442880"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474443328"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474443776"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474444224"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474444672"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474527296"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474527744"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474528192"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474528640"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474529088"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474529536"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474529984"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474530432"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474530880"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474531328"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474531776"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474532224"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474532672"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474533120"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474533568"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474534016"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474534464"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097391185472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097487006272"}, {"nodeId": "140097487006720"}]}}, "140097487006272": {"type": "Function", "content": {"typeVars": [".0.140097487006272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391187264"}], "returnType": {"nodeId": ".0.140097487006272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140097391187264": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407451200"}, {"nodeId": "140097407464576"}, {"nodeId": "140097419752224"}]}}, "140097407466688": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462052768"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__buffer__"]}}, "140097462052768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428309792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331894240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331894912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331895808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331896928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097331897152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470407488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470407936"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470408384"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470408832"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386291024"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470410176"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470410624"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470411072"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386292032"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470412416"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470413760"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470414208"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470529600"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470530048"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470530944"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470531392"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097331894240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331894912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331895136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097386291696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386291696": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "N"}]}}, "140097428310496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470540800"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470541248"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470541696"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386294048"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470543040"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470543488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470543936"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470544384"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470544832"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386295504"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470644736"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470645184"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470645632"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470646080"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470646528"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428310496"}], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097428310496"}]}], "isAbstract": false}}, ".1.140097428310496": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428310496", "variance": "COVARIANT"}}, "140097470540800": {"type": "Function", "content": {"typeVars": [".0.140097470540800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": ".0.140097470540800"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140097470540800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "def": "140097470540800", "variance": "INVARIANT"}}, "140097470541248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470541696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499812032": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470531840"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386292592"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293376"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293488"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293600"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293712"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293824"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470537664"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}], "isAbstract": false}}, "140097470531840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140097386292592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470532288"}, {"nodeId": "140097470532736"}]}}, "140097470532288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470532736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470533184"}, {"nodeId": "140097470533632"}]}}, "140097470533184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470533632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470534080"}, {"nodeId": "140097470534528"}]}}, "140097470534080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470534528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470534976"}, {"nodeId": "140097470535424"}]}}, "140097470534976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470535424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470535872"}, {"nodeId": "140097470536320"}]}}, "140097470535872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470536320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386293824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470536768"}, {"nodeId": "140097470537216"}]}}, "140097470536768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470537216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470537664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097386294272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386294272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097386294048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470542144"}, {"nodeId": "140097470542592"}]}}, "140097470542144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097428310496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470542592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428310144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332009152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332009600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332010720"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386293936"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470540352"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097332009152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332009600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332010720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386293936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470539456"}, {"nodeId": "140097470539904"}]}}, "140097470539456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470539904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470540352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310144"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097386295392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386295392": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097470543040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470543488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470543936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470544384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470544832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386295504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470545280"}, {"nodeId": "140097470644288"}]}}, "140097470545280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470644288": {"type": "Function", "content": {"typeVars": [".-1.140097470644288"], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": ".-1.140097470644288"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097386295840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470644288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470644288", "variance": "INVARIANT"}}, "140097386295840": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428310496"}, {"nodeId": ".-1.140097470644288"}]}}, "140097470644736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470645184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470645632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470646080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310496", "args": [{"nodeId": ".1.140097428310496"}]}, {"nodeId": "A"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470646528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407720384": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378548672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378549120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378549344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479281120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479281568"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479282912"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378548672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499822240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336179648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336179200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336178528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336177632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336177408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336177184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390906496"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391181888"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487001344"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395489952"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487002240"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487002688"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487003136"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336176960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487004032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097487004480"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097336179648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336179200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336178976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407714048": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478722272"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478722720"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478723168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478723616"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478724064"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478724512"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478724960"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478725408"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478725856"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478726304"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478726752"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478727200"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478727648"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "isAbstract": false}}, ".1.140097407714048": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407714048", "variance": "INVARIANT"}}, ".2.140097407714048": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407714048", "variance": "COVARIANT"}}, "140097478722272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097478722720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": ".1.140097407714048"}], "returnType": {"nodeId": ".2.140097407714048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478723168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097478723616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097478724064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478724512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478724960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407454720": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457881376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457881824"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457882272"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457882720"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457883168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457883616"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457884064"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457884512"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457884960"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457885408"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457885856"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457886304"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140097407454720"}], "bases": [{"nodeId": "140097407454016"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407454720"}]}], "isAbstract": false}}, ".1.140097407454720": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407454720", "variance": "COVARIANT"}}, "140097457881376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407454720"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097499821184": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382776416"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403899456"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457889888"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457890336"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457890784"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457891232"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457891680"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}], "bases": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499821184"}]}], "isAbstract": true}}, ".1.140097499821184": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821184", "variance": "INVARIANT"}}, ".2.140097499821184": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821184", "variance": "COVARIANT"}}, "140097382776416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": ".1.140097499821184"}], "returnType": {"nodeId": ".2.140097499821184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403899456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457888992"}, {"nodeId": "140097457889440"}]}}, "140097457888992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": ".1.140097499821184"}], "returnType": {"nodeId": "140097403904832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403904832": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821184"}, {"nodeId": "N"}]}}, "140097457889440": {"type": "Function", "content": {"typeVars": [".-1.140097457889440"], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": ".1.140097499821184"}, {"nodeId": "140097403904944"}], "returnType": {"nodeId": "140097403905056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140097403904944": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821184"}, {"nodeId": ".-1.140097457889440"}]}}, ".-1.140097457889440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457889440", "variance": "INVARIANT"}}, "140097403905056": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821184"}, {"nodeId": ".-1.140097457889440"}]}}, "140097457889888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}], "returnType": {"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407454368": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457777440"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457777888"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457778336"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457778784"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457779232"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457779680"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457780128"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457780576"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457781024"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457781472"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457781920"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457782368"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}], "bases": [{"nodeId": "140097407454016"}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097407570928"}]}], "isAbstract": false}}, ".1.140097407454368": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407454368", "variance": "COVARIANT"}}, ".2.140097407454368": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407454368", "variance": "COVARIANT"}}, "140097457777440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097457777888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403901584"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407458240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386611200"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470956480"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470956928"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470957376"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470957824"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470958272"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470958720"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470959168"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470959616"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470960064"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470960512"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470960960"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470961408"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470961856"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470962304"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470962752"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470963200"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470963648"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470964096"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470964544"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470964992"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470965440"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470965888"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470966336"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470966784"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470967232"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470967680"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470968128"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470968576"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470969024"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470969472"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470969920"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407458240"}], "bases": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097407458240"}]}], "isAbstract": false}}, ".1.140097407458240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407458240", "variance": "INVARIANT"}}, "140097386611200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470955584"}, {"nodeId": "140097470956032"}]}}, "140097470955584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470956032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470956480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": ".1.140097407458240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470956928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470957376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470957824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470958272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": ".1.140097407458240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470958720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470959168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470959616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470960064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470960960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": ".1.140097407458240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470961408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470961856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470962304": {"type": "Function", "content": {"typeVars": [".-1.140097470962304"], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097470962304"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097386613328"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140097470962304": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470962304", "variance": "INVARIANT"}}, "140097386613328": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": ".-1.140097470962304"}]}}, "140097470962752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097470963200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470963648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470964096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470964544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499820480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382641760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457768032"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457768480"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457768928"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457769376"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457769824"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457770272"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457770720"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457771168"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457771616"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457772064"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140097499820480"}], "bases": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499820480"}]}], "isAbstract": true}}, ".1.140097499820480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499820480", "variance": "COVARIANT"}}, "140097382641760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457768032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457768480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457768928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457769376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457769824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457770272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457770720": {"type": "Function", "content": {"typeVars": [".-1.140097457770720"], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097457770720"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": "140097403900352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457770720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457770720", "variance": "INVARIANT"}}, "140097403900352": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097499820480"}, {"nodeId": ".-1.140097457770720"}]}}, "140097457771168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457771616": {"type": "Function", "content": {"typeVars": [".-1.140097457771616"], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097457771616"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": "140097403900576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457771616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457771616", "variance": "INVARIANT"}}, "140097403900576": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097499820480"}, {"nodeId": ".-1.140097457771616"}]}}, "140097457772064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820480"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140097499819424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382634816"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499819424"}], "bases": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499819424"}]}, {"nodeId": "140097499819072", "args": [{"nodeId": ".1.140097499819424"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140097499819424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499819424", "variance": "COVARIANT"}}, "140097382634816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499819424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499819072": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382631456"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499819072"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__contains__"]}}, ".1.140097499819072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499819072", "variance": "COVARIANT"}}, "140097382631456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819072", "args": [{"nodeId": ".1.140097499819072"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470964992": {"type": "Function", "content": {"typeVars": [".0.140097470964992"], "argTypes": [{"nodeId": ".0.140097470964992"}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": ".0.140097470964992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470964992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470964992", "variance": "INVARIANT"}}, "140097470965440": {"type": "Function", "content": {"typeVars": [".-1.140097470965440"], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097470965440"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097386613552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470965440": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470965440", "variance": "INVARIANT"}}, "140097386613552": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": ".-1.140097470965440"}]}}, "140097470965888": {"type": "Function", "content": {"typeVars": [".0.140097470965888"], "argTypes": [{"nodeId": ".0.140097470965888"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": ".0.140097470965888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470965888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470965888", "variance": "INVARIANT"}}, "140097470966336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097386613664"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386613664": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": "N"}]}}, "140097470966784": {"type": "Function", "content": {"typeVars": [".0.140097470966784"], "argTypes": [{"nodeId": ".0.140097470966784"}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": ".0.140097470966784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470966784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470966784", "variance": "INVARIANT"}}, "140097470967232": {"type": "Function", "content": {"typeVars": [".-1.140097470967232"], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097470967232"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097386613776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470967232": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470967232", "variance": "INVARIANT"}}, "140097386613776": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458240"}, {"nodeId": ".-1.140097470967232"}]}}, "140097470967680": {"type": "Function", "content": {"typeVars": [".0.140097470967680"], "argTypes": [{"nodeId": ".0.140097470967680"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458240"}]}], "returnType": {"nodeId": ".0.140097470967680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470967680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, "def": "140097470967680", "variance": "INVARIANT"}}, "140097470968128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470968576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470969024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470969472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407458240"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470969920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097499820832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382679936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382685088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457773408"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457773856"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457774304"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457774752"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457775200"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457775648"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457776096"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140097499820832"}], "bases": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820832"}]}], "isAbstract": true}}, ".1.140097499820832": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499820832", "variance": "INVARIANT"}}, "140097382679936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, {"nodeId": ".1.140097499820832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097382685088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, {"nodeId": ".1.140097499820832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457773408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457773856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": ".1.140097499820832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457774304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, {"nodeId": ".1.140097499820832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457774752": {"type": "Function", "content": {"typeVars": [".0.140097457774752"], "argTypes": [{"nodeId": ".0.140097457774752"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": ".0.140097457774752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457774752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457774752", "variance": "INVARIANT"}}, "140097457775200": {"type": "Function", "content": {"typeVars": [".0.140097457775200"], "argTypes": [{"nodeId": ".0.140097457775200"}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097457775200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457775200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457775200", "variance": "INVARIANT"}}, "140097457775648": {"type": "Function", "content": {"typeVars": [".0.140097457775648"], "argTypes": [{"nodeId": ".0.140097457775648"}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097499820832"}]}], "returnType": {"nodeId": ".0.140097457775648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457775648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457775648", "variance": "INVARIANT"}}, "140097457776096": {"type": "Function", "content": {"typeVars": [".0.140097457776096"], "argTypes": [{"nodeId": ".0.140097457776096"}, {"nodeId": "140097499820480", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097457776096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457776096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820832", "args": [{"nodeId": ".1.140097499820832"}]}, "def": "140097457776096", "variance": "INVARIANT"}}, "140097403901584": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457778336": {"type": "Function", "content": {"typeVars": [".-1.140097457778336"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457778336"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457778336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457778336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457778336", "variance": "INVARIANT"}}, "140097457778784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457779232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097403901808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097403901808": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457779680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097403902032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097403902032": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457780128": {"type": "Function", "content": {"typeVars": [".-1.140097457780128"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457780128"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403902368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457780128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457780128", "variance": "INVARIANT"}}, "140097403902368": {"type": "Union", "content": {"items": [{"nodeId": "140097403902256"}, {"nodeId": ".-1.140097457780128"}]}}, "140097403902256": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457780576": {"type": "Function", "content": {"typeVars": [".-1.140097457780576"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457780576"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403902704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457780576": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457780576", "variance": "INVARIANT"}}, "140097403902704": {"type": "Union", "content": {"items": [{"nodeId": "140097403902592"}, {"nodeId": ".-1.140097457780576"}]}}, "140097403902592": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457781024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403903040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403903040": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457781472": {"type": "Function", "content": {"typeVars": [".-1.140097457781472"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457781472"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457781472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457781472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457781472", "variance": "INVARIANT"}}, "140097457781920": {"type": "Function", "content": {"typeVars": [".-1.140097457781920"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457781920"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403903376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457781920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457781920", "variance": "INVARIANT"}}, "140097403903376": {"type": "Union", "content": {"items": [{"nodeId": "140097403903264"}, {"nodeId": ".-1.140097457781920"}]}}, "140097403903264": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457782368": {"type": "Function", "content": {"typeVars": [".-1.140097457782368"], "argTypes": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457782368"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403903712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457782368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457782368", "variance": "INVARIANT"}}, "140097403903712": {"type": "Union", "content": {"items": [{"nodeId": "140097403903600"}, {"nodeId": ".-1.140097457782368"}]}}, "140097403903600": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097407454016": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457776544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457776992"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140097407452960"}], "isAbstract": false}}, "140097457776544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454016"}, {"nodeId": "140097499821184", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097457776992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454016"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407452960": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382453696"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__len__"]}}, "140097382453696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407452960"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407570928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407454368"}, {"nodeId": ".2.140097407454368"}]}}, "140097457890336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}], "returnType": {"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097499821184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457890784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}], "returnType": {"nodeId": "140097407455072", "args": [{"nodeId": ".2.140097499821184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407455072": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457886752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457887200"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457887648"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457888096"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407455072"}], "bases": [{"nodeId": "140097407454016"}, {"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097407455072"}]}], "isAbstract": false}}, ".1.140097407455072": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407455072", "variance": "COVARIANT"}}, "140097457886752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": "A"}, {"nodeId": ".1.140097407455072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097457887200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457887648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457888096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097407455072"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457891232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457891680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821184"}, {"nodeId": ".2.140097499821184"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457881824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457882272": {"type": "Function", "content": {"typeVars": [".-1.140097457882272"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457882272"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457882272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457882272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457882272", "variance": "INVARIANT"}}, "140097457882720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457883168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457883616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457884064": {"type": "Function", "content": {"typeVars": [".-1.140097457884064"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457884064"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904048"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457884064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457884064", "variance": "INVARIANT"}}, "140097403904048": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457884064"}]}}, "140097457884512": {"type": "Function", "content": {"typeVars": [".-1.140097457884512"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457884512"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457884512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457884512", "variance": "INVARIANT"}}, "140097403904160": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457884512"}]}}, "140097457884960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".1.140097407454720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457885408": {"type": "Function", "content": {"typeVars": [".-1.140097457885408"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457885408"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": ".-1.140097457885408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457885408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457885408", "variance": "INVARIANT"}}, "140097457885856": {"type": "Function", "content": {"typeVars": [".-1.140097457885856"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457885856"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457885856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457885856", "variance": "INVARIANT"}}, "140097403904384": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457885856"}]}}, "140097457886304": {"type": "Function", "content": {"typeVars": [".-1.140097457886304"], "argTypes": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407454720"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097457886304"}]}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097403904496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097457886304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457886304", "variance": "INVARIANT"}}, "140097403904496": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407454720"}, {"nodeId": ".-1.140097457886304"}]}}, "140097478725408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097407455072", "args": [{"nodeId": ".2.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478725856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478726304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097478726752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407714048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097478727200": {"type": "Function", "content": {"typeVars": [".-1.140097478727200", ".-2.140097478727200"], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097478727200"}, {"nodeId": ".-2.140097478727200"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097398916368"}, {"nodeId": "140097398916480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097478727200": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727200", "variance": "INVARIANT"}}, ".-2.140097478727200": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727200", "variance": "INVARIANT"}}, "140097398916368": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".-1.140097478727200"}]}}, "140097398916480": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407714048"}, {"nodeId": ".-2.140097478727200"}]}}, "140097478727648": {"type": "Function", "content": {"typeVars": [".-1.140097478727648", ".-2.140097478727648"], "argTypes": [{"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".2.140097407714048"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097478727648"}, {"nodeId": ".-2.140097478727648"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097398916592"}, {"nodeId": "140097398916704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097478727648": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727648", "variance": "INVARIANT"}}, ".-2.140097478727648": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097478727648", "variance": "INVARIANT"}}, "140097398916592": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407714048"}, {"nodeId": ".-1.140097478727648"}]}}, "140097398916704": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407714048"}, {"nodeId": ".-2.140097478727648"}]}}, "140097336178080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336178304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336178528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336177632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336177408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097391185024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391185024": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097336177184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390906496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097486999552"}, {"nodeId": "140097487000000"}]}}, "140097486999552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097487000000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140097391181888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097487000448"}, {"nodeId": "140097395485248"}]}}, "140097487000448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097395485248": {"type": "Function", "content": {"typeVars": [".-1.140097395485248"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140097395485248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140097395485248": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395485248", "variance": "INVARIANT"}}, "140097487001344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140097395489952": {"type": "Function", "content": {"typeVars": [".-1.140097395489952"], "argTypes": [{"nodeId": ".-1.140097395489952"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".-1.140097395489952"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140097395489952": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395489952", "variance": "INVARIANT"}}, "140097487002240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487002688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097487003136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097336176960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140097487004032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407721088": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378618048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479284256"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479284704"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378618048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721088"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479284256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097479284704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097487004480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407721088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097378549120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378549344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479281120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}, {"nodeId": "140097499822240"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140097479281568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097479282912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720384"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499819776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403898000"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457611360"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457611808"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457612256"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457612704"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457613152"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097499819776"}], "bases": [{"nodeId": "140097499819424", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097499819776"}]}], "isAbstract": true}}, ".1.140097499819776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499819776", "variance": "COVARIANT"}}, "140097403898000": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457610464"}, {"nodeId": "140097457610912"}]}}, "140097457610464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499819776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457610912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457611360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "A"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140097457611808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457612256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457612704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499819776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097457613152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499819776"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499819776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499816608": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382462208"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499816608"}], "bases": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499816608"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140097499816608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816608", "variance": "COVARIANT"}}, "140097382462208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097499816608"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816608"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097331895360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097386291808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386291808": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "N"}]}}, "140097331895584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097386291920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386291920": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "N"}]}}, "140097331895808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097407466688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331896928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097331897152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470407488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140097470407936": {"type": "Function", "content": {"typeVars": [".0.140097470407936"], "argTypes": [{"nodeId": ".0.140097470407936"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097470407936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309792"}, "def": "140097470407936", "variance": "INVARIANT"}}, "140097470408384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097386292144"}, {"nodeId": "140097386292256"}, {"nodeId": "140097386292368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097386292144": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097386292256": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097428315424": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429055392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429048336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429056176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466707840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466708288"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466708736"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097429055392": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097429048336": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097429056176": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407718976": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479102240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378538144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378538368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378538592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097479102240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}, {"nodeId": "140097398924768"}, {"nodeId": "140097407719328"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140097398924768": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407719328": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378540160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378540608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378540832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378541728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479107168"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378540160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097398924880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398924880": {"type": "Union", "content": {"items": [{"nodeId": "140097407719328"}, {"nodeId": "N"}]}}, "140097378540608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378540832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407713696": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378106304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378106976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378205984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378206880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378207776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378208896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378209568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483370144"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483372384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483374176"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378106304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378205984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378206880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428309088": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391193424"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475074240"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475074688"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475075136"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475075584"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475076032"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475076480"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475077376"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475077824"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475078720"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475079168"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475079616"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475080064"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475080512"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475080960"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475081408"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475081856"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475082304"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475082752"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475083200"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475083648"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475199040"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475199488"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475199936"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475200384"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475200832"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475201280"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475201728"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475202176"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475202624"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475203072"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475203520"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475203968"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475204416"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475204864"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475205312"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475205760"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475206208"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475206656"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475207104"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475207552"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336835680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097331757792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475208896"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475209344"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391196336"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475210688"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475211136"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475211584"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475212032"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475212480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475212928"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475213376"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475213824"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475214272"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097475214720"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470087232"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470087680"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470088576"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097391193424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097475072896"}, {"nodeId": "140097475073344"}, {"nodeId": "140097475073792"}]}}, "140097475072896": {"type": "Function", "content": {"typeVars": [".0.140097475072896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391197456"}], "returnType": {"nodeId": ".0.140097475072896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097391197456": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097407464576"}, {"nodeId": "140097407452256"}, {"nodeId": "140097407466688"}]}}, "140097407452256": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382378496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__bytes__"]}}, "140097382378496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407452256"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097475072896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097475072896", "variance": "INVARIANT"}}, "140097475073344": {"type": "Function", "content": {"typeVars": [".0.140097475073344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097475073344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140097475073344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097475073344", "variance": "INVARIANT"}}, "140097475073792": {"type": "Function", "content": {"typeVars": [".0.140097475073792"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097475073792"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097475073792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097475073792", "variance": "INVARIANT"}}, "140097475074240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475074688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097475075136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097391197568"}, {"nodeId": "140097391197680"}, {"nodeId": "140097391197792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391197568": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097391197680": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391197792": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475075584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097475076032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097391197904"}, {"nodeId": "140097391198016"}, {"nodeId": "140097386283072"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391197904": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097391198016": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386283072": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475076480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140097475077376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386283184"}, {"nodeId": "140097386283296"}, {"nodeId": "140097386283408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386283184": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386283296": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386283408": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475077824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386283520"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140097386283520": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}]}}, "140097475078720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386283632"}, {"nodeId": "140097386283744"}, {"nodeId": "140097386283856"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386283632": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386283744": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386283856": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475079168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475079616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475080064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475080512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475080960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475081408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475081856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475082304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475082752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097475083200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386283968"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386283968": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097428309440": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391197344"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470090368"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470090816"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470091264"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470091712"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470092160"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470092608"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470093056"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470093504"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470094400"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470094848"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470095296"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470096192"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470096640"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470097088"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470097536"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470097984"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470098432"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470098880"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470099328"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470099776"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470100224"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470100672"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470101120"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470101568"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470102016"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470102464"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470102912"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470218304"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470218752"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470219200"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470219648"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470220096"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470220544"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470220992"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470221440"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470221888"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470222336"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470222784"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470223232"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470223680"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470224128"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470224576"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470225024"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470225472"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470225920"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470226368"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097331767424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097331766304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470227712"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470228160"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386286320"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386290912"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470230400"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470230848"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470231296"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470231744"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470232192"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470232640"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470233088"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470233536"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470233984"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470398528"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470398976"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470399424"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470399872"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470400320"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470400768"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470401216"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470401664"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097391197344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470089024"}, {"nodeId": "140097470089472"}, {"nodeId": "140097470089920"}]}}, "140097470089024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470089472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386286992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386286992": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097407464576"}, {"nodeId": "140097407466688"}]}}, "140097470089920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140097470090368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470090816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470091264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097470091712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386287104"}, {"nodeId": "140097386287216"}, {"nodeId": "140097386287328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386287104": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386287216": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386287328": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470092160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470092608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097470093056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386287440"}, {"nodeId": "140097386287552"}, {"nodeId": "140097386287664"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386287440": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097386287552": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386287664": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470093504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140097470094400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470094848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386287776"}, {"nodeId": "140097386287888"}, {"nodeId": "140097386288000"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386287776": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386287888": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386288000": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470095296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386288112"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140097386288112": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}]}}, "140097470096192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386288224"}, {"nodeId": "140097386288336"}, {"nodeId": "140097386288448"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386288224": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386288336": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386288448": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470096640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097470097088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470097536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470097984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470098432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470098880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470099328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470099776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470100224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470100672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470101120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386288560"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386288560": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097470101568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470102016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386288672"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386288672": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470102464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386288896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386288896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}]}}, "140097470102912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097470218304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470218752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470219200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470219648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470220096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386289008"}, {"nodeId": "140097386289120"}, {"nodeId": "140097386289232"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386289008": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386289120": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386289232": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470220544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386289344"}, {"nodeId": "140097386289456"}, {"nodeId": "140097386289568"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386289344": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386289456": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386289568": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470220992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386289680"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386289680": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097470221440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386289904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386289904": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428309440"}]}}, "140097470221888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290016"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386290016": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470222336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290128"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386290128": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470222784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290240"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309440"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386290240": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470223232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309440"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097470223680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290352"}, {"nodeId": "140097386290464"}, {"nodeId": "140097386290576"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386290352": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097386290464": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386290576": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097470224128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386290688": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470224576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470225024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470225472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386290800"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140097386290800": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097470225920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470226368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097331767424": {"type": "Function", "content": {"typeVars": [".0.140097331767424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097331767424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097331767424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309440"}, "def": "140097331767424", "variance": "INVARIANT"}}, "140097331766304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470227712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470228160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386286320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470228608"}, {"nodeId": "140097470229056"}]}}, "140097470228608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470229056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386290912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470229504"}, {"nodeId": "140097470229952"}]}}, "140097470229504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470229952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428310144"}, {"nodeId": "140097386291248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097386291248": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097428309088"}]}}, "140097470230400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386291360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386291360": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097470230848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470231296": {"type": "Function", "content": {"typeVars": [".0.140097470231296"], "argTypes": [{"nodeId": ".0.140097470231296"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": ".0.140097470231296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470231296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309440"}, "def": "140097470231296", "variance": "INVARIANT"}}, "140097470231744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470232192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470232640": {"type": "Function", "content": {"typeVars": [".0.140097470232640"], "argTypes": [{"nodeId": ".0.140097470232640"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".0.140097470232640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470232640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309440"}, "def": "140097470232640", "variance": "INVARIANT"}}, "140097470233088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470233536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097386291584"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386291584": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097407466688"}]}}, "140097470233984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470398528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470398976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470399424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470399872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470400320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470400768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470401216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470401664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309440"}, {"nodeId": "140097428309792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097499820128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382639072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403898448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403899008"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403899344"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457616736"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457617184"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457617632"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457618080"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457618528"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457766688"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457767136"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140097499820128"}], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": ".1.140097499820128"}]}], "isAbstract": true}}, ".1.140097499820128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499820128", "variance": "INVARIANT"}}, "140097382639072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140097403898448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457614048"}, {"nodeId": "140097457614496"}]}}, "140097457614048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499820128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457614496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403899008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457614944"}, {"nodeId": "140097457615392"}]}}, "140097457614944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097457615392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097428310144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097403899344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457615840"}, {"nodeId": "140097457616288"}]}}, "140097457615840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457616288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457616736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457617184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457617632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140097457618080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457618528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499820128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140097457766688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, {"nodeId": ".1.140097499820128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140097457767136": {"type": "Function", "content": {"typeVars": [".0.140097457767136"], "argTypes": [{"nodeId": ".0.140097457767136"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097499820128"}]}], "returnType": {"nodeId": ".0.140097457767136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097457767136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097499820128"}]}, "def": "140097457767136", "variance": "INVARIANT"}}, "140097475083648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475199040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386284080"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386284080": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475199488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386284304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386284304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}}, "140097475199936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097475200384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097475200832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097475201280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386284416"}, {"nodeId": "140097386284528"}, {"nodeId": "140097386284640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386284416": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386284528": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386284640": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475201728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386284752"}, {"nodeId": "140097386284864"}, {"nodeId": "140097386284976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386284752": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097407464576"}]}}, "140097386284864": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386284976": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475202176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}, {"nodeId": "140097386285088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386285088": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097475202624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097386285312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386285312": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}}, "140097475203072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285424"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386285424": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475203520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285536"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386285536": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475203968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285648"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097386285648": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475204416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097475204864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386285760"}, {"nodeId": "140097386285872"}, {"nodeId": "140097386285984"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097386285760": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097407466688"}]}]}}, "140097386285872": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097386285984": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097475205312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386286096"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097386286096": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475205760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475206208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475206656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386286208"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140097386286208": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "N"}]}}, "140097475207104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097475207552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097336835680": {"type": "Function", "content": {"typeVars": [".0.140097336835680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097336835680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097336835680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428309088"}, "def": "140097336835680", "variance": "INVARIANT"}}, "140097331757792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466688"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475208896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097475209344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097391196336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097475209792"}, {"nodeId": "140097475210240"}]}}, "140097475209792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475210240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475210688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475211136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475211584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475212032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475212480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097386286544"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386286544": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097407466688"}]}}, "140097475212928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475213376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475213824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475214272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475214720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470087232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470087680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097386286768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386286768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}]}}, "140097470088576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097378207104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378207328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378207552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378207776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378208896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378209568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483370144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097398916144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398916144": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097398915920"}]}}, "140097398915920": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097483372384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140097483374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713696"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140097378541056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378541280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378541504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097398925328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398925328": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "A"}]}}, "140097378541728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407572720": {"type": "Union", "content": {"items": [{"nodeId": "140097428394656"}, {"nodeId": "N"}]}}, "140097428394656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097479107168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407572496": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097378538144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378538368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378538592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097466707840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140097466708288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428315424"}, {"nodeId": "140097386903280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386903280": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097466708736": {"type": "Function", "content": {"typeVars": [".0.140097466708736"], "argTypes": [{"nodeId": ".0.140097466708736"}, {"nodeId": "140097386903504"}], "returnType": {"nodeId": ".0.140097466708736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140097466708736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428315424"}, "def": "140097466708736", "variance": "INVARIANT"}}, "140097386903504": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097386292368": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097470408832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428308736"}, {"nodeId": "140097386292480"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140097386292480": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}]}}, "140097386291024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470409280"}, {"nodeId": "140097470409728"}]}}, "140097470409280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470409728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470410176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470410624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470411072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386292032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470411520"}, {"nodeId": "140097470411968"}]}}, "140097470411520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428310144"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470411968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470412416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097386293264"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140097386293264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140097470413760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470414208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470529600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470530048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097386293152"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140097386293152": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}]}}, "140097470530944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470531392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428309792"}, {"nodeId": "140097428309792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407451200": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382373568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__int__"]}}, "140097382373568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407451200"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419752224": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492045152"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__trunc__"]}}, "140097492045152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752224"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097487006272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499822944"}, "def": "140097487006272", "variance": "INVARIANT"}}, "140097487006720": {"type": "Function", "content": {"typeVars": [".0.140097487006720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391187376"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".0.140097487006720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140097391187376": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, ".0.140097487006720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499822944"}, "def": "140097487006720", "variance": "INVARIANT"}}, "140097487007168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391187712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391187712": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "0"}]}}, "140097336173824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336174496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336172928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336172704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487009408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487009856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097487010304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474428992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097407464576"}, {"nodeId": "140097391188272"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140097391188272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097340462624": {"type": "Function", "content": {"typeVars": [".0.140097340462624"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391188384"}, {"nodeId": "140097391188720"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": ".0.140097340462624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140097391188384": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097407464576"}]}, {"nodeId": "140097407452256"}, {"nodeId": "140097407466688"}]}}, "140097391188720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140097340462624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499822944"}, "def": "140097340462624", "variance": "INVARIANT"}}, "140097474430336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474430784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474431232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474431680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474432128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499823296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474534912"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474535360"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474535808"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474536256"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097336664672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336665120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336663776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474538048"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474538496"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474538944"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474539392"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474539840"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474540288"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474540736"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474541184"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391187152"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474542528"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474542976"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474658368"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474658816"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474659264"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474659712"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474660160"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391190624"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474661952"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474662400"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474662848"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474663296"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391191296"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474664640"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474665088"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474665536"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474665984"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474666432"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474666880"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474667328"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474667776"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474668224"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474668672"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474669120"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474669568"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097474534912": {"type": "Function", "content": {"typeVars": [".0.140097474534912"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391190736"}], "returnType": {"nodeId": ".0.140097474534912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140097391190736": {"type": "Union", "content": {"items": [{"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}]}}, "140097407451552": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382375360"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__float__"]}}, "140097382375360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407451552"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097474534912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823296"}, "def": "140097474534912", "variance": "INVARIANT"}}, "140097474535360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391190960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391190960": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097474535808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474536256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336664672": {"type": "Function", "content": {"typeVars": [".0.140097336664672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097336664672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097336664672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823296"}, "def": "140097336664672", "variance": "INVARIANT"}}, "140097336665120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336663776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474538048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474538496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474538944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474539392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474540288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474540736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474541184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391191184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391191184": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097391187152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474541632"}, {"nodeId": "140097474542080"}]}}, "140097474541632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474542080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474542528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474542976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474658368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474658816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474659264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474659712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474660160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391191632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391191632": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097391190624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474660608"}, {"nodeId": "140097474661056"}, {"nodeId": "140097474661504"}]}}, "140097474660608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097391191856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391191856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097424808240"}}}, "140097424808240": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097474661056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097391191968"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391191968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097441665808"}}}, "140097441665808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097499823648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391191744"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336670944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097336820224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474672704"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474673152"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474673600"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474674048"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474773056"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474773504"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474773952"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474774400"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474774848"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474775296"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474775744"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474776192"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474776640"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474777088"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474777536"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474777984"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474778432"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097391191744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474670016"}, {"nodeId": "140097474670464"}]}}, "140097474670016": {"type": "Function", "content": {"typeVars": [".0.140097474670016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391192752"}, {"nodeId": "140097391192864"}], "returnType": {"nodeId": ".0.140097474670016"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140097391192752": {"type": "Union", "content": {"items": [{"nodeId": "140097499823648"}, {"nodeId": "140097407451904"}, {"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}]}}, "140097407451904": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382376928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__complex__"]}}, "140097382376928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407451904"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097391192864": {"type": "Union", "content": {"items": [{"nodeId": "140097499823648"}, {"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}]}}, ".0.140097474670016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823648"}, "def": "140097474670016", "variance": "INVARIANT"}}, "140097474670464": {"type": "Function", "content": {"typeVars": [".0.140097474670464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097391192976"}], "returnType": {"nodeId": ".0.140097474670464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140097391192976": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407451904"}, {"nodeId": "140097407451552"}, {"nodeId": "140097407464576"}, {"nodeId": "140097499823648"}]}}, ".0.140097474670464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499823648"}, "def": "140097474670464", "variance": "INVARIANT"}}, "140097336670944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097336820224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474672704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474673152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474673600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474674048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474773056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474773504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474773952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474774400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474774848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474775296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474775744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474776192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474776640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474777088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474777536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474777984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474778432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823648"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474661504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474661952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097391192304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391192304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}]}}, "140097474662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474662848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474663296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391191296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474663744"}, {"nodeId": "140097474664192"}]}}, "140097474663744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097474664192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474664640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474665088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474665536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474665984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474666432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474666880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474667328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474667776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474668224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474668672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474669120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474669568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499823296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474432576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474433024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391188944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391188944": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097474433472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474433920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474434368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474434816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474435264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474435712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474436160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391189168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391189168": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097391186592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474436608"}, {"nodeId": "140097474437056"}, {"nodeId": "140097474437504"}, {"nodeId": "140097474437952"}, {"nodeId": "140097474438400"}, {"nodeId": "140097474438848"}]}}, "140097474436608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474437056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097474437504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097391189840"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391189840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097424808240"}}}, "140097474437952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097391189952"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391189952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097441665808"}}}, "140097474438400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097474438848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097474439296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097391190176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097391190176": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097474439744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474440192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474440640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474441088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474441536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474441984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474442432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474442880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474443328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474443776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474444224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474444672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474527296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474527744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474528192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474528640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474529088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097474529536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391190512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391190512": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097474529984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474530432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474530880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474531328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474531776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474532224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474532672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474533120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474533568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097474534016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474534464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470651456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097470651904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097470652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386295728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470653248"}, {"nodeId": "140097470653696"}]}}, "140097470653248": {"type": "Function", "content": {"typeVars": [".-1.140097470653248"], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".-1.140097470653248"}]}, {"nodeId": "N"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140097470653248": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140097420531904"}, "def": "140097470653248", "variance": "INVARIANT"}}, "140097420531904": {"type": "Union", "content": {"items": [{"nodeId": "140097419747296", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419747648", "args": [{"nodeId": "A"}]}]}}, "140097419747296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461777376"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140097419747296"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__lt__"]}}, ".1.140097419747296": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419747296", "variance": "CONTRAVARIANT"}}, "140097461777376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419747296", "args": [{"nodeId": ".1.140097419747296"}]}, {"nodeId": ".1.140097419747296"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419747648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461777824"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140097419747648"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__gt__"]}}, ".1.140097419747648": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419747648", "variance": "CONTRAVARIANT"}}, "140097461777824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419747648", "args": [{"nodeId": ".1.140097419747648"}]}, {"nodeId": ".1.140097419747648"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470653696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097391261984"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140097391261984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "140097386297296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386297296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531792"}}}, "140097420531792": {"type": "Union", "content": {"items": [{"nodeId": "140097419747296", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419747648", "args": [{"nodeId": "A"}]}]}}, "140097470654144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470654592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386296848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470655040"}, {"nodeId": "140097470655488"}]}}, "140097470655040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097428310848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470655488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386296960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470655936"}, {"nodeId": "140097470656384"}]}}, "140097470655936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097428310848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470656384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470656832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097386297520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386297520": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097386297184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470657280"}, {"nodeId": "140097470657728"}]}}, "140097470657280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470657728": {"type": "Function", "content": {"typeVars": [".-1.140097470657728"], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".-1.140097470657728"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097386297744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470657728": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470657728", "variance": "INVARIANT"}}, "140097386297744": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097470657728"}, {"nodeId": ".1.140097428310848"}]}}, "140097470658176": {"type": "Function", "content": {"typeVars": [".0.140097470658176"], "argTypes": [{"nodeId": ".0.140097470658176"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": ".0.140097470658176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470658176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "def": "140097470658176", "variance": "INVARIANT"}}, "140097470658624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470659072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470659520": {"type": "Function", "content": {"typeVars": [".0.140097470659520"], "argTypes": [{"nodeId": ".0.140097470659520"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".0.140097470659520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470659520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "def": "140097470659520", "variance": "INVARIANT"}}, "140097470659968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470824512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470824960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470825408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470825856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470826304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097470830336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470830784": {"type": "Function", "content": {"typeVars": [".0.140097470830784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097470830784"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140097470830784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "def": "140097470830784", "variance": "INVARIANT"}}, "140097470831232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470831680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097407457184", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407457184": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097340148864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407457184"}, {"nodeId": ".2.140097407457184"}], "bases": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097407457184"}]}], "isAbstract": false}}, ".1.140097407457184": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457184", "variance": "COVARIANT"}}, ".2.140097407457184": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457184", "variance": "COVARIANT"}}, "140097340148864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407457184", "args": [{"nodeId": ".1.140097407457184"}, {"nodeId": ".2.140097407457184"}]}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407457184"}, {"nodeId": ".2.140097407457184"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470832128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097407457536", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407457536": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097340050112"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407457536"}, {"nodeId": ".2.140097407457536"}], "bases": [{"nodeId": "140097407455072", "args": [{"nodeId": ".2.140097407457536"}]}], "isAbstract": false}}, ".1.140097407457536": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457536", "variance": "COVARIANT"}}, ".2.140097407457536": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457536", "variance": "COVARIANT"}}, "140097340050112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407457536", "args": [{"nodeId": ".1.140097407457536"}, {"nodeId": ".2.140097407457536"}]}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407457536"}, {"nodeId": ".2.140097407457536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470832576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097407457888", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407457888": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097340051456"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}], "bases": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}]}], "isAbstract": false}}, ".1.140097407457888": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457888", "variance": "COVARIANT"}}, ".2.140097407457888": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407457888", "variance": "COVARIANT"}}, "140097340051456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407457888", "args": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}]}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": ".1.140097407457888"}, {"nodeId": ".2.140097407457888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386297856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470833024"}, {"nodeId": "140097470833472"}]}}, "140097470833024": {"type": "Function", "content": {"typeVars": [".-1.140097470833024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097470833024"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097470833024"}, {"nodeId": "140097386299200"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140097470833024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470833024", "variance": "INVARIANT"}}, "140097386299200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097470833472": {"type": "Function", "content": {"typeVars": [".-1.140097470833472", ".-2.140097470833472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097470833472"}]}, {"nodeId": ".-2.140097470833472"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097470833472"}, {"nodeId": ".-2.140097470833472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140097470833472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470833472", "variance": "INVARIANT"}}, ".-2.140097470833472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470833472", "variance": "INVARIANT"}}, "140097386298640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470833920"}, {"nodeId": "140097470834368"}]}}, "140097470833920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": "140097386610864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386610864": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": "N"}]}}, "140097470834368": {"type": "Function", "content": {"typeVars": [".-1.140097470834368"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}, {"nodeId": "140097386610976"}], "returnType": {"nodeId": "140097386611088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386610976": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470834368"}]}}, ".-1.140097470834368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470834368", "variance": "INVARIANT"}}, "140097386611088": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470834368"}]}}, "140097386298976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470834816"}, {"nodeId": "140097470835264"}]}}, "140097470834816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": ".2.140097428311200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097470835264": {"type": "Function", "content": {"typeVars": [".-1.140097470835264"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}, {"nodeId": "140097386611312"}], "returnType": {"nodeId": "140097386611424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386611312": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470835264"}]}}, ".-1.140097470835264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470835264", "variance": "INVARIANT"}}, "140097386611424": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-1.140097470835264"}]}}, "140097470835712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470836160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": ".2.140097428311200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470836608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097470837056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": ".1.140097428311200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097470837504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470837952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428311200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097470838400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097470838848": {"type": "Function", "content": {"typeVars": [".-1.140097470838848", ".-2.140097470838848"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097470838848"}, {"nodeId": ".-2.140097470838848"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097386611648"}, {"nodeId": "140097386611760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470838848": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470838848", "variance": "INVARIANT"}}, ".-2.140097470838848": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470838848", "variance": "INVARIANT"}}, "140097386611648": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".-1.140097470838848"}]}}, "140097386611760": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-2.140097470838848"}]}}, "140097470839296": {"type": "Function", "content": {"typeVars": [".-1.140097470839296", ".-2.140097470839296"], "argTypes": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097470839296"}, {"nodeId": ".-2.140097470839296"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097386611872"}, {"nodeId": "140097386611984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097470839296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470839296", "variance": "INVARIANT"}}, ".-2.140097470839296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097470839296", "variance": "INVARIANT"}}, "140097386611872": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".-1.140097470839296"}]}}, "140097386611984": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097428311200"}, {"nodeId": ".-2.140097470839296"}]}}, "140097386610752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470839744"}, {"nodeId": "140097470840192"}]}}, "140097470839744": {"type": "Function", "content": {"typeVars": [".0.140097470839744"], "argTypes": [{"nodeId": ".0.140097470839744"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}], "returnType": {"nodeId": ".0.140097470839744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470839744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "def": "140097470839744", "variance": "INVARIANT"}}, "140097470840192": {"type": "Function", "content": {"typeVars": [".0.140097470840192"], "argTypes": [{"nodeId": ".0.140097470840192"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386612320"}]}], "returnType": {"nodeId": ".0.140097470840192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097470840192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}, "def": "140097470840192", "variance": "INVARIANT"}}, "140097386612320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097428311200"}, {"nodeId": ".2.140097428311200"}]}}, "140097499821536": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382876992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382877440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457893024"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403900800"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457894368"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403904720"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403905168"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}], "isAbstract": true}}, ".1.140097499821536": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821536", "variance": "INVARIANT"}}, ".2.140097499821536": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499821536", "variance": "INVARIANT"}}, "140097382876992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097382877440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097457893024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403900800": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457893472"}, {"nodeId": "140097457893920"}]}}, "140097457893472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}], "returnType": {"nodeId": ".2.140097499821536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097457893920": {"type": "Function", "content": {"typeVars": [".-1.140097457893920"], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": "140097403905280"}], "returnType": {"nodeId": "140097403905392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140097403905280": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821536"}, {"nodeId": ".-1.140097457893920"}]}}, ".-1.140097457893920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457893920", "variance": "INVARIANT"}}, "140097403905392": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097499821536"}, {"nodeId": ".-1.140097457893920"}]}}, "140097457894368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}], "returnType": {"nodeId": "140097403905616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403905616": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}}, "140097403904720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457894816"}, {"nodeId": "140097457895264"}]}}, "140097457894816": {"type": "Function", "content": {"typeVars": [".-1.140097457894816"], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": "140097403905840"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097403905952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097403905840": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097457894816"}, {"nodeId": "N"}]}}, ".-1.140097457894816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097457894816", "variance": "INVARIANT"}}, "140097403905952": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097457894816"}, {"nodeId": "N"}]}}, "140097457895264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": ".2.140097499821536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097403905168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457895712"}, {"nodeId": "140097457896160"}, {"nodeId": "140097457896608"}]}}, "140097457895712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097457896160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097403906288"}]}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097403906288": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}}, "140097457896608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097499821536"}, {"nodeId": ".2.140097499821536"}]}, {"nodeId": ".2.140097499821536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097390906160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097491617600"}]}}, "140097491617600": {"type": "Function", "content": {"typeVars": [".0.140097491617600"], "argTypes": [{"nodeId": ".0.140097491617600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097491617600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097491617600", "variance": "INVARIANT"}}, "140097336513408": {"type": "Function", "content": {"typeVars": [".0.140097336513408"], "argTypes": [{"nodeId": ".0.140097336513408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097336513408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097336513408", "variance": "INVARIANT"}}, "140097491618496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491618944": {"type": "Function", "content": {"typeVars": [".0.140097491618944"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097491618944"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097491618944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097491618944", "variance": "INVARIANT"}}, "140097491619392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097491619840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491620288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491620736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491621184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097491621632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097491622080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491622528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097491622976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097491623424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491623872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097391182336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391182336": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}]}}, "140097491624320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097391182560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391182560": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}]}}, "140097491625664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097491626112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140097336510720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097474780224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428308736"}, "def": "140097474780224", "variance": "INVARIANT"}}, "140097474780672": {"type": "Function", "content": {"typeVars": [".0.140097474780672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097474780672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140097474780672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097428308736"}, "def": "140097474780672", "variance": "INVARIANT"}}, "140097474781120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474781568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474782016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097474782464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391193536"}, {"nodeId": "140097391193648"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140097391193536": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391193648": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474782912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097474783360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391193760"}, {"nodeId": "140097391193872"}, {"nodeId": "140097391193984"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391193760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097391193872": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391193984": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474783808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140097474784704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391194096"}, {"nodeId": "140097391194208"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391194096": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391194208": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474785152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097474785600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140097428308032": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474779328"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__"]}}, "140097474779328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474786048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391194320"}, {"nodeId": "140097391194432"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391194320": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391194432": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474786496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474786944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474787392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474787840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474788288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474788736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474936896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474937344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474937792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474938240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474938688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474939136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474939584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474940032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097474940480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474940928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391194544"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097391194544": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474941376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097391194768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391194768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097474941824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097474942272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474942720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097474943168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391194880"}, {"nodeId": "140097391194992"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391194880": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391194992": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474943616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097391195104"}, {"nodeId": "140097391195216"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391195104": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391195216": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474944064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097474944512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097391195440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391195440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097474944960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195552"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097391195552": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474945408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195664"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097391195664": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474945856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195776"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097391195776": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474946304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097474946752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391195888"}, {"nodeId": "140097391196000"}, {"nodeId": "140097391196112"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097391195888": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097391196000": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097391196112": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "N"}]}}, "140097474947200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391196224"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097391196224": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097474947648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474948096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474948544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308384"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428308384": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097474779776"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__"]}}, "140097474779776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308384"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097391193200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391193200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097474948992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097474949440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097391192640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097474949888"}, {"nodeId": "140097474950336"}, {"nodeId": "140097474950784"}]}}, "140097474949888": {"type": "Function", "content": {"typeVars": [".-1.140097474949888"], "argTypes": [{"nodeId": "140097391196560"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097474949888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097391196560": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097474949888"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097474949888"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097391196448"}, {"nodeId": ".-1.140097474949888"}]}]}}, ".-1.140097474949888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097474949888", "variance": "INVARIANT"}}, "140097391196448": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097474950336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474950784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097391196672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097391196672": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097474951232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474951680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474952128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097474952576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475067968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097391196784"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097391196784": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097475068416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475068864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097475069312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475069760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097475070208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475070656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475071104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475071552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475072000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097475072448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097391197120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097391197120": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403417728": {"type": "Concrete", "content": {"module": "boruvka", "simpleName": "Graph", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495476352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weight", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495480608"}, "name": "add_edge"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495481056"}, "name": "find_component"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495481504"}, "name": "set_component"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "component_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "u_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v_node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097495481952"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097491616032"}, "name": "boruvka"}}, {"kind": "Variable", "content": {"name": "m_num_of_nodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m_edges", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m_component", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097495476352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "num_of_nodes"]}}, "140097495480608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "u_node", "v_node", "weight"]}}, "140097495481056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}}, "140097495481504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "u_node"]}}, "140097495481952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "component_size", "u_node", "v_node"]}}, "140097491616032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499812384": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332016992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407713696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407965824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332017664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332018336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470648320"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097332016992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}], "returnType": {"nodeId": "140097386296288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386296288": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097407467040": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483358944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097483358944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407467040"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097407965824": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097332017664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332018336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097470648320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812384"}, {"nodeId": "140097499811328"}, {"nodeId": "140097386296624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386296624": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097499822592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097391185136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097391185136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097487004928"}, {"nodeId": "140097487005376"}, {"nodeId": "140097487005824"}]}}, "140097487004928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822592"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097487005376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822592"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097487005824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407458592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386612096"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097470971264"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471086656"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471087104"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471087552"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471088000"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471088448"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471088896"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471089344"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471089792"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471090240"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471090688"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471091136"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471091584"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471092032"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471092480"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471092928"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471093376"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471093824"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471094272"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471094720"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407458592"}], "bases": [{"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458592"}]}], "isAbstract": false}}, ".1.140097407458592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407458592", "variance": "COVARIANT"}}, "140097386612096": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097470970368"}, {"nodeId": "140097470970816"}]}}, "140097470970368": {"type": "Function", "content": {"typeVars": [".0.140097470970368"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097470970368"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097470970368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "def": "140097470970368", "variance": "INVARIANT"}}, "140097470970816": {"type": "Function", "content": {"typeVars": [".0.140097470970816"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": ".0.140097470970816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140097470970816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "def": "140097470970816", "variance": "INVARIANT"}}, "140097470971264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097471086656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097471087104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140097471087552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471088000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471088448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471088896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471089344": {"type": "Function", "content": {"typeVars": [".-1.140097471089344"], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097471089344"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": "140097386614224"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140097471089344": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097471089344", "variance": "INVARIANT"}}, "140097386614224": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458592"}, {"nodeId": ".-1.140097471089344"}]}}, "140097471089792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097471090240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471090688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097471091136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471091584": {"type": "Function", "content": {"typeVars": [".-1.140097471091584"], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097471091584"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": "140097386614336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097471091584": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097471091584", "variance": "INVARIANT"}}, "140097386614336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458592"}, {"nodeId": ".-1.140097471091584"}]}}, "140097471092032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".1.140097407458592"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471092480": {"type": "Function", "content": {"typeVars": [".-1.140097471092480"], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": ".-1.140097471092480"}]}], "returnType": {"nodeId": "140097407458592", "args": [{"nodeId": "140097386614448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097471092480": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097471092480", "variance": "INVARIANT"}}, "140097386614448": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407458592"}, {"nodeId": ".-1.140097471092480"}]}}, "140097471092928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471093376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471093824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471094272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458592", "args": [{"nodeId": ".1.140097407458592"}]}, {"nodeId": "140097499820480", "args": [{"nodeId": "140097499811328"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471094720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407458944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471095168"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471095616"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471096064"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471096512"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407458944"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": "140097407568240"}]}], "isAbstract": false}}, ".1.140097407458944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407458944", "variance": "INVARIANT"}}, "140097471095168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458944", "args": [{"nodeId": ".1.140097407458944"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407458944"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140097471095616": {"type": "Function", "content": {"typeVars": [".0.140097471095616"], "argTypes": [{"nodeId": ".0.140097471095616"}], "returnType": {"nodeId": ".0.140097471095616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097471095616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407458944", "args": [{"nodeId": ".1.140097407458944"}]}, "def": "140097471095616", "variance": "INVARIANT"}}, "140097471096064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407458944", "args": [{"nodeId": ".1.140097407458944"}]}], "returnType": {"nodeId": "140097386614896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386614896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": ".1.140097407458944"}]}}, "140097471096512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407568240": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": ".1.140097407458944"}]}}, "140097428311552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332522656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332523104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097332523328"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386613440"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471099200"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471099648"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471100096"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471100544"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471100992"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386614672"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097471102336"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097332522656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332523104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097332523328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097386613440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097471098304"}, {"nodeId": "140097471098752"}]}}, "140097471098304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471098752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097471099200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471099648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097471100096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097471100544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471100992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386614672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097471101440"}, {"nodeId": "140097471101888"}]}}, "140097471101440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471101888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097428311552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097471102336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311552"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097428311904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407974560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407968624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407975232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465991232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465991680"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465992128"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465992576"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465993024"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465993472"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465993920"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407974560": {"type": "Union", "content": {"items": [{"nodeId": "140097428395776"}, {"nodeId": "N"}]}}, "140097428395776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407968624": {"type": "Union", "content": {"items": [{"nodeId": "140097415604800"}, {"nodeId": "N"}]}}, "140097415604800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407975232": {"type": "Union", "content": {"items": [{"nodeId": "140097415605472"}, {"nodeId": "N"}]}}, "140097415605472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097465991232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386615344"}, {"nodeId": "140097386615680"}, {"nodeId": "140097386616016"}, {"nodeId": "140097386616240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140097386615344": {"type": "Union", "content": {"items": [{"nodeId": "140097391262880"}, {"nodeId": "N"}]}}, "140097391262880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386615680": {"type": "Union", "content": {"items": [{"nodeId": "140097391263104"}, {"nodeId": "N"}]}}, "140097391263104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386616016": {"type": "Union", "content": {"items": [{"nodeId": "140097391263328"}, {"nodeId": "N"}]}}, "140097391263328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386616240": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097465991680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386758208"}], "returnType": {"nodeId": "140097428311904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386758208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097465992128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386758432"}], "returnType": {"nodeId": "140097428311904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386758432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097465992576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "140097386758656"}], "returnType": {"nodeId": "140097428311904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097386758656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097465993024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "A"}, {"nodeId": "140097386617024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097386617024": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097465993472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097465993920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428311904"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428312256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403220416": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465997952"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140097403220416"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__fspath__"]}}, ".1.140097403220416": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403220416", "variance": "COVARIANT"}}, "140097465997952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403220416", "args": [{"nodeId": ".1.140097403220416"}]}], "returnType": {"nodeId": ".1.140097403220416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428312608": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097465998848"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140097428312608"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__anext__"]}}, ".1.140097428312608": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140097499817312", "args": [{"nodeId": "A"}]}, "def": "140097428312608", "variance": "COVARIANT"}}, "140097499817312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382533376"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499817312"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__await__"]}}, ".1.140097499817312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817312", "variance": "COVARIANT"}}, "140097382533376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499817312"}]}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140097499817312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499816960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462707232"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382464000"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403703744"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462709024"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462709472"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382531360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382531808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382532480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382532704"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097499816960"}]}], "isAbstract": true}}, ".1.140097499816960": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816960", "variance": "COVARIANT"}}, ".2.140097499816960": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816960", "variance": "CONTRAVARIANT"}}, ".3.140097499816960": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499816960", "variance": "COVARIANT"}}, "140097462707232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382464000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, {"nodeId": ".2.140097499816960"}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403703744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462708128"}, {"nodeId": "140097462708576"}]}}, "140097462708128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, {"nodeId": "0"}, {"nodeId": "140097403896880"}, {"nodeId": "140097403896992"}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403896880": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097403896992": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097462708576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097403897104"}], "returnType": {"nodeId": ".1.140097499816960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403897104": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097462709024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462709472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097382531360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382531808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382532480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382532704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097499816960"}, {"nodeId": ".2.140097499816960"}, {"nodeId": ".3.140097499816960"}]}], "returnType": {"nodeId": "140097403897552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403897552": {"type": "Union", "content": {"items": [{"nodeId": "140097499816960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097465998848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428312608", "args": [{"nodeId": ".1.140097428312608"}]}], "returnType": {"nodeId": ".1.140097428312608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407459296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386618368"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466140928"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466141376"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097407459296"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407459296"}]}], "isAbstract": false}}, ".1.140097407459296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407459296", "variance": "INVARIANT"}}, "140097386618368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466139584"}, {"nodeId": "140097466140032"}, {"nodeId": "140097466140480"}]}}, "140097466139584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, {"nodeId": "N"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097386621504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386621504": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407459296"}, {"nodeId": "N"}]}}, "140097466140032": {"type": "Function", "content": {"typeVars": [".-1.140097466140032"], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, {"nodeId": "140097386758880"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466140032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386758880": {"type": "Function", "content": {"typeVars": [".-1.140097386758880"], "argTypes": [{"nodeId": ".-1.140097386758880"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097386758880": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386758880", "variance": "INVARIANT"}}, ".-1.140097466140032": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466140032", "variance": "INVARIANT"}}, "140097466140480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, {"nodeId": "140097386759104"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407459296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386759104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140097407459296"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097466140928": {"type": "Function", "content": {"typeVars": [".0.140097466140928"], "argTypes": [{"nodeId": ".0.140097466140928"}], "returnType": {"nodeId": ".0.140097466140928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466140928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}, "def": "140097466140928", "variance": "INVARIANT"}}, "140097466141376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459296", "args": [{"nodeId": ".1.140097407459296"}]}], "returnType": {"nodeId": ".1.140097407459296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428312960": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466148096"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097428312960"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__"]}}, ".1.140097428312960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428312960", "variance": "COVARIANT"}}, "140097466148096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428312960", "args": [{"nodeId": ".1.140097428312960"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097428312960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407459648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386621840"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466319360"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466319808"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097407459648"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407459648"}]}], "isAbstract": false}}, ".1.140097407459648": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407459648", "variance": "INVARIANT"}}, "140097386621840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466152576"}, {"nodeId": "140097466153024"}, {"nodeId": "140097466153472"}, {"nodeId": "140097466153920"}, {"nodeId": "140097466154368"}, {"nodeId": "140097466318912"}]}}, "140097466152576": {"type": "Function", "content": {"typeVars": [".-1.140097466152576"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386761344"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466152576"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097386761344": {"type": "Function", "content": {"typeVars": [".-1.140097386761344"], "argTypes": [{"nodeId": ".-1.140097386761344"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097386761344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761344", "variance": "INVARIANT"}}, ".-1.140097466152576": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466152576", "variance": "INVARIANT"}}, "140097466153024": {"type": "Function", "content": {"typeVars": [".-1.140097466153024", ".-2.140097466153024"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386760672"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466153024"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466153024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140097386760672": {"type": "Function", "content": {"typeVars": [".-1.140097386760672", ".-2.140097386760672"], "argTypes": [{"nodeId": ".-1.140097386760672"}, {"nodeId": ".-2.140097386760672"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097386760672": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760672", "variance": "INVARIANT"}}, ".-2.140097386760672": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760672", "variance": "INVARIANT"}}, ".-1.140097466153024": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153024", "variance": "INVARIANT"}}, ".-2.140097466153024": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153024", "variance": "INVARIANT"}}, "140097466153472": {"type": "Function", "content": {"typeVars": [".-1.140097466153472", ".-2.140097466153472", ".-3.140097466153472"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386760896"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466153472"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466153472"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466153472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140097386760896": {"type": "Function", "content": {"typeVars": [".-1.140097386760896", ".-2.140097386760896", ".-3.140097386760896"], "argTypes": [{"nodeId": ".-1.140097386760896"}, {"nodeId": ".-2.140097386760896"}, {"nodeId": ".-3.140097386760896"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140097386760896": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760896", "variance": "INVARIANT"}}, ".-2.140097386760896": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760896", "variance": "INVARIANT"}}, ".-3.140097386760896": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386760896", "variance": "INVARIANT"}}, ".-1.140097466153472": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153472", "variance": "INVARIANT"}}, ".-2.140097466153472": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153472", "variance": "INVARIANT"}}, ".-3.140097466153472": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153472", "variance": "INVARIANT"}}, "140097466153920": {"type": "Function", "content": {"typeVars": [".-1.140097466153920", ".-2.140097466153920", ".-3.140097466153920", ".-4.140097466153920"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386761568"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466153920"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466153920"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466153920"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466153920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140097386761568": {"type": "Function", "content": {"typeVars": [".-1.140097386761568", ".-2.140097386761568", ".-3.140097386761568", ".-4.140097386761568"], "argTypes": [{"nodeId": ".-1.140097386761568"}, {"nodeId": ".-2.140097386761568"}, {"nodeId": ".-3.140097386761568"}, {"nodeId": ".-4.140097386761568"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140097386761568": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-2.140097386761568": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-3.140097386761568": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-4.140097386761568": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761568", "variance": "INVARIANT"}}, ".-1.140097466153920": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, ".-2.140097466153920": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, ".-3.140097466153920": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, ".-4.140097466153920": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466153920", "variance": "INVARIANT"}}, "140097466154368": {"type": "Function", "content": {"typeVars": [".-1.140097466154368", ".-2.140097466154368", ".-3.140097466154368", ".-4.140097466154368", ".-5.140097466154368"], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386761792"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466154368"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-5.140097466154368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140097386761792": {"type": "Function", "content": {"typeVars": [".-1.140097386761792", ".-2.140097386761792", ".-3.140097386761792", ".-4.140097386761792", ".-5.140097386761792"], "argTypes": [{"nodeId": ".-1.140097386761792"}, {"nodeId": ".-2.140097386761792"}, {"nodeId": ".-3.140097386761792"}, {"nodeId": ".-4.140097386761792"}, {"nodeId": ".-5.140097386761792"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140097386761792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-2.140097386761792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-3.140097386761792": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-4.140097386761792": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-5.140097386761792": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097386761792", "variance": "INVARIANT"}}, ".-1.140097466154368": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-2.140097466154368": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-3.140097466154368": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-4.140097466154368": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, ".-5.140097466154368": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466154368", "variance": "INVARIANT"}}, "140097466318912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, {"nodeId": "140097386762016"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140097386762016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097466319360": {"type": "Function", "content": {"typeVars": [".0.140097466319360"], "argTypes": [{"nodeId": ".0.140097466319360"}], "returnType": {"nodeId": ".0.140097466319360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466319360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}, "def": "140097466319360", "variance": "INVARIANT"}}, "140097466319808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407459648", "args": [{"nodeId": ".1.140097407459648"}]}], "returnType": {"nodeId": ".1.140097407459648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403220768": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466330560"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140097403220768"}], "bases": [{"nodeId": "140097402961984", "args": [{"nodeId": ".1.140097403220768"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140097403220768": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403220768", "variance": "CONTRAVARIANT"}}, "140097466330560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403220768", "args": [{"nodeId": ".1.140097403220768"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097402961984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492050528"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140097402961984"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["write"]}}, ".1.140097402961984": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097402961984", "variance": "CONTRAVARIANT"}}, "140097492050528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402961984", "args": [{"nodeId": ".1.140097402961984"}]}, {"nodeId": ".1.140097402961984"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097428313312": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466331904"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140097428313312"}, {"nodeId": ".2.140097428313312"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__pow__"]}}, ".1.140097428313312": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313312", "variance": "CONTRAVARIANT"}}, ".2.140097428313312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313312", "variance": "COVARIANT"}}, "140097466331904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428313312", "args": [{"nodeId": ".1.140097428313312"}, {"nodeId": ".2.140097428313312"}]}, {"nodeId": ".1.140097428313312"}], "returnType": {"nodeId": ".2.140097428313312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428313664": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466332352"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140097428313664"}, {"nodeId": ".2.140097428313664"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__pow__"]}}, ".1.140097428313664": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313664", "variance": "CONTRAVARIANT"}}, ".2.140097428313664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428313664", "variance": "COVARIANT"}}, "140097466332352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428313664", "args": [{"nodeId": ".1.140097428313664"}, {"nodeId": ".2.140097428313664"}]}, {"nodeId": ".1.140097428313664"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140097428313664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097428314016": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466332800"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140097428314016"}, {"nodeId": ".2.140097428314016"}, {"nodeId": ".3.140097428314016"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__pow__"]}}, ".1.140097428314016": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314016", "variance": "CONTRAVARIANT"}}, ".2.140097428314016": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314016", "variance": "CONTRAVARIANT"}}, ".3.140097428314016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314016", "variance": "COVARIANT"}}, "140097466332800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428314016", "args": [{"nodeId": ".1.140097428314016"}, {"nodeId": ".2.140097428314016"}, {"nodeId": ".3.140097428314016"}]}, {"nodeId": ".1.140097428314016"}, {"nodeId": ".2.140097428314016"}], "returnType": {"nodeId": ".3.140097428314016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097407460000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386895552"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466512128"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466512576"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466513024"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140097407460000"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407460000"}]}], "isAbstract": false}}, ".1.140097407460000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460000", "variance": "INVARIANT"}}, "140097386895552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466511232"}, {"nodeId": "140097466511680"}]}}, "140097466511232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097466511680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}, {"nodeId": "140097419751872", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097419751872": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492044256"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492044704"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097419751872"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140097419751872": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419751872", "variance": "COVARIANT"}}, "140097492044256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751872", "args": [{"nodeId": ".1.140097419751872"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097492044704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751872", "args": [{"nodeId": ".1.140097419751872"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097419751872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097466512128": {"type": "Function", "content": {"typeVars": [".0.140097466512128"], "argTypes": [{"nodeId": ".0.140097466512128"}], "returnType": {"nodeId": ".0.140097466512128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466512128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}, "def": "140097466512128", "variance": "INVARIANT"}}, "140097466512576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": ".1.140097407460000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097466513024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460000", "args": [{"nodeId": ".1.140097407460000"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428314368": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466513920"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140097428314368"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__round__"]}}, ".1.140097428314368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314368", "variance": "COVARIANT"}}, "140097466513920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428314368", "args": [{"nodeId": ".1.140097428314368"}]}], "returnType": {"nodeId": ".1.140097428314368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428314720": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466514368"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140097428314720"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__round__"]}}, ".1.140097428314720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428314720", "variance": "COVARIANT"}}, "140097466514368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428314720", "args": [{"nodeId": ".1.140097428314720"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097428314720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403221120": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140097419749056", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140097419749408", "args": [{"nodeId": "140097499822944"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140097419749056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461779168"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140097419749056"}, {"nodeId": ".2.140097419749056"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__add__"]}}, ".1.140097419749056": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749056", "variance": "CONTRAVARIANT"}}, ".2.140097419749056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749056", "variance": "COVARIANT"}}, "140097461779168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419749056", "args": [{"nodeId": ".1.140097419749056"}, {"nodeId": ".2.140097419749056"}]}, {"nodeId": ".1.140097419749056"}], "returnType": {"nodeId": ".2.140097419749056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419749408": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461779616"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140097419749408"}, {"nodeId": ".2.140097419749408"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__radd__"]}}, ".1.140097419749408": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749408", "variance": "CONTRAVARIANT"}}, ".2.140097419749408": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749408", "variance": "COVARIANT"}}, "140097461779616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419749408", "args": [{"nodeId": ".1.140097419749408"}, {"nodeId": ".2.140097419749408"}]}, {"nodeId": ".1.140097419749408"}], "returnType": {"nodeId": ".2.140097419749408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407460352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097386899024"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466706048"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466706496"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097407460352"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407460352"}]}], "isAbstract": false}}, ".1.140097407460352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460352", "variance": "COVARIANT"}}, "140097386899024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466700672"}, {"nodeId": "140097466701120"}, {"nodeId": "140097466701568"}, {"nodeId": "140097466702016"}, {"nodeId": "140097466702464"}, {"nodeId": "140097466702912"}]}}, "140097466700672": {"type": "Function", "content": {"typeVars": [".-1.140097466700672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466700672"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900256"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140097466700672": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466700672", "variance": "INVARIANT"}}, "140097386900256": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466700672"}]}}, "140097466701120": {"type": "Function", "content": {"typeVars": [".-1.140097466701120", ".-2.140097466701120"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466701120"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466701120"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900480"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140097466701120": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701120", "variance": "INVARIANT"}}, ".-2.140097466701120": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701120", "variance": "INVARIANT"}}, "140097386900480": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466701120"}, {"nodeId": ".-2.140097466701120"}]}}, "140097466701568": {"type": "Function", "content": {"typeVars": [".-1.140097466701568", ".-2.140097466701568", ".-3.140097466701568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466701568"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466701568"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466701568"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140097466701568": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701568", "variance": "INVARIANT"}}, ".-2.140097466701568": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701568", "variance": "INVARIANT"}}, ".-3.140097466701568": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466701568", "variance": "INVARIANT"}}, "140097386900704": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466701568"}, {"nodeId": ".-2.140097466701568"}, {"nodeId": ".-3.140097466701568"}]}}, "140097466702016": {"type": "Function", "content": {"typeVars": [".-1.140097466702016", ".-2.140097466702016", ".-3.140097466702016", ".-4.140097466702016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466702016"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466702016"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466702016"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466702016"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386900928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140097466702016": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, ".-2.140097466702016": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, ".-3.140097466702016": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, ".-4.140097466702016": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702016", "variance": "INVARIANT"}}, "140097386900928": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466702016"}, {"nodeId": ".-2.140097466702016"}, {"nodeId": ".-3.140097466702016"}, {"nodeId": ".-4.140097466702016"}]}}, "140097466702464": {"type": "Function", "content": {"typeVars": [".-1.140097466702464", ".-2.140097466702464", ".-3.140097466702464", ".-4.140097466702464", ".-5.140097466702464"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-2.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-3.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-4.140097466702464"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-5.140097466702464"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097386901152"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140097466702464": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-2.140097466702464": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-3.140097466702464": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-4.140097466702464": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, ".-5.140097466702464": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097466702464", "variance": "INVARIANT"}}, "140097386901152": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140097466702464"}, {"nodeId": ".-2.140097466702464"}, {"nodeId": ".-3.140097466702464"}, {"nodeId": ".-4.140097466702464"}, {"nodeId": ".-5.140097466702464"}]}}, "140097466702912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097407460352", "args": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140097466706048": {"type": "Function", "content": {"typeVars": [".0.140097466706048"], "argTypes": [{"nodeId": ".0.140097466706048"}], "returnType": {"nodeId": ".0.140097466706048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097466706048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460352", "args": [{"nodeId": ".1.140097407460352"}]}, "def": "140097466706048", "variance": "INVARIANT"}}, "140097466706496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460352", "args": [{"nodeId": ".1.140097407460352"}]}], "returnType": {"nodeId": ".1.140097407460352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428315072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428315776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097428316128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097428316480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429048112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097429048112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407573952"}}}, "140097407573952": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097428316832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428315424"}], "isAbstract": false}}, "140097428317184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428317536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428317888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428318240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428318592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466709632"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499811328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097466709632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428318592"}, {"nodeId": "140097499811328"}, {"nodeId": "140097386903616"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140097386903616": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428318944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428319296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428319648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466710080"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097454186208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429045760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097466710080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428319648"}, {"nodeId": "140097499811328"}, {"nodeId": "140097386903728"}, {"nodeId": "140097386903840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140097386903728": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386903840": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097454186208": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429045760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428320000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428320352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428320704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428321056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428321408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428321760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428322112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429056736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429048000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429050240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429047888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429060432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429050800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097429056736": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097429048000": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097429050240": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429047888": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429060432": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097429050800": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097428322464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428322816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428323168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428323520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317888"}], "isAbstract": false}}, "140097428323872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317888"}], "isAbstract": false}}, "140097407270976": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317888"}], "isAbstract": false}}, "140097407271328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428319648"}], "isAbstract": false}}, "140097407271680": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428320000"}], "isAbstract": false}}, "140097407272032": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428320000"}], "isAbstract": false}}, "140097407272384": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428320704"}], "isAbstract": false}}, "140097407272736": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407273088": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407273440": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407273792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407274144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407274496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407274848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407273440"}], "isAbstract": false}}, "140097407275200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407275552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407275904": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407276256": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407276608": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407276960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407277312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407277664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}], "isAbstract": false}}, "140097407278016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428321408"}], "isAbstract": false}}, "140097407278368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428321408"}], "isAbstract": false}}, "140097407278720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428322112"}], "isAbstract": false}}, "140097407279072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407278720"}], "isAbstract": false}}, "140097407279424": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428323168"}], "isAbstract": false}}, "140097407279776": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428309088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466710528"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407279424"}], "isAbstract": false}}, "140097466710528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407279776"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140097407280128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466710976"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407279424"}], "isAbstract": false}}, "140097466710976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407280128"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140097407280480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097466711424"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407279424"}], "isAbstract": false}}, "140097466711424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407280480"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140097407280832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407281184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407281536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407281888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407282240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407282592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407282944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407283296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407283648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407284000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407284352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097407284704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407280832"}], "isAbstract": false}}, "140097402964800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340372944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461774688"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403589280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424817424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424817312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097340372944": {"type": "Tuple", "content": {"items": []}}, "140097461774688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402964800"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097403589280": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424817424": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424817312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402965152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402965504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402965856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340491920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965504"}], "isAbstract": false}}, "140097340491920": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402966208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340492928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340492928": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402976768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402966560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340493936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402965856"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340493936": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402967616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402966912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340495280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340495280": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402967264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340496176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402965152"}], "isAbstract": false}}, "140097340496176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402967968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340498752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403214080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403586928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340498752": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403214080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335875216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214432"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214432"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424812608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214432"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097424812496"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335875216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403214432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335876448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403589056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335876448": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403589056": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424812608": {"type": "Union", "content": {"items": [{"nodeId": "140097403214432"}, {"nodeId": "N"}]}}, "140097424812496": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403588944": {"type": "Union", "content": {"items": [{"nodeId": "140097403214432"}, {"nodeId": "N"}]}}, "140097403586928": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402968320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340501328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403214080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403587824"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340501328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403587824": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402968672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340503680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340503680": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403214784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335877344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424810816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335877344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424810816": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402969024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340504688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403587936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340504688": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403587936": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402969376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340505584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340505584": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402969728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340638144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340638144": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402970080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340639264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403120352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340639264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588048": {"type": "Union", "content": {"items": [{"nodeId": "140097403116832"}, {"nodeId": "140097403115424"}, {"nodeId": "140097403116128"}]}}, "140097403116832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340962880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340962880": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403117888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097403115424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340957504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340957504": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403116128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340960976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340960976": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403120352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402970432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340640608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340640608": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588160": {"type": "Union", "content": {"items": [{"nodeId": "140097403116832"}, {"nodeId": "140097403115424"}, {"nodeId": "140097403116128"}]}}, "140097403588272": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402970784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340642064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340642064": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402971136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340643408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340643408": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402971488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340644304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340644304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402971840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340645424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340645424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402972192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340646544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215488"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340646544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403215488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335879360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424810928"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335879360": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424810928": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402972544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340647664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215488"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340647664": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402972896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340648560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588496"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340648560": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588384": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403588496": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402973248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340650016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213728"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340650016": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403213728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335873200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403213376"}], "isAbstract": false}}, "140097335873200": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424813392": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424813168": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403213376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402973600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340651360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340651360": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588720": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097402973952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340652144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215136"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340652144": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403215136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335878352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424814064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335878352": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424814064": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402974304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340784704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403588832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403215136"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340784704": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403588832": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097402974656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340785376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340785376": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402975008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340786272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340786272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402975360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340787168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097340787168": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097402975712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097402976064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097402976416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097402977120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340788288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403119296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340788288": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403119296": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097402977472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340789520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403120352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340789520": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097402977824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340790416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403125280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340790416": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403125280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097403109440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340791424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403214080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340791424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403109792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340792656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340792656": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403110144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340793552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097424814624"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340793552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424814624": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403110496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340794336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340794336": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403110848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340795456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340795456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403213024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335872192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335872192": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403111200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340796464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340796464": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403111552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340797696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340797696": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403111904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340798592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403213024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340798592": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403112256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340799376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340799376": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403112608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340800272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403587488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340800272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403587488": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403112960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340948768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340948768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403113312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340950112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403209152"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340950112": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403209152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097403113664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340951232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403214784"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340951232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403114016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340952352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424814400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340952352": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424814400": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403114368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340953024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340953024": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403114720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340954704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424816080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340954704": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424816080": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424813504": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823648"}]}}, "140097403115072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340956272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403116832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340956272": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403115776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340959296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424813616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340959296": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424813840": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424813952": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097424813616": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403116480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340961872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340961872": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403117184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097340963888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097340963888": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403117536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335869616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403117888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402976768"}], "isAbstract": false}}, "140097335869616": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403118240": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403117888"}], "isAbstract": false}}, "140097403118592": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403117888"}], "isAbstract": false}}, "140097403118944": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403117888"}], "isAbstract": false}}, "140097403119648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403119296"}], "isAbstract": false}}, "140097403120000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403119296"}], "isAbstract": false}}, "140097403120704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403121056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403121408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403121760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403122112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403122464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403122816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403123168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403123520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403123872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403124224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403124576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403124928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403120352"}], "isAbstract": false}}, "140097403207744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403208096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403208448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403208800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403125280"}], "isAbstract": false}}, "140097403209504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403209856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403210208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403210560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403210912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403211264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403211616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403211968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403212320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403212672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403209152"}], "isAbstract": false}}, "140097403215840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335880368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402967616"}], "isAbstract": false}}, "140097335880368": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403216544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403216192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402967616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097335881040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403216192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140097402964800"}], "isAbstract": false}}, "140097424811040": {"type": "Union", "content": {"items": [{"nodeId": "140097402976768"}, {"nodeId": "N"}]}}, "140097403216896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335881152": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403217248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335881488": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097424811152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140097403217600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335881824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335881824": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097403217952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335882160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335882160": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097424811600": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403218304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335882944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097402976768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811712"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335882944": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424811712": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403218656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335883728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097402976768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335883728": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403219008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335883952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424811824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097424812048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335883952": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424811824": {"type": "Union", "content": {"items": [{"nodeId": "140097403216192"}, {"nodeId": "N"}]}}, "140097424812048": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403219360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097335884176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403216192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403216192"}], "isAbstract": false}}, "140097335884176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097419746240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461776032"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097461776032": {"type": "Function", "content": {"typeVars": [".-1.140097461776032"], "argTypes": [{"nodeId": "140097419746240"}, {"nodeId": ".-1.140097461776032"}], "returnType": {"nodeId": ".-1.140097461776032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097461776032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097461776032", "variance": "INVARIANT"}}, "140097419746592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461776480"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140097419746592"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__next__"]}}, ".1.140097419746592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419746592", "variance": "COVARIANT"}}, "140097461776480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419746592", "args": [{"nodeId": ".1.140097419746592"}]}], "returnType": {"nodeId": ".1.140097419746592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419746944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461776928"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140097419746944"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__anext__"]}}, ".1.140097419746944": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419746944", "variance": "COVARIANT"}}, "140097461776928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419746944", "args": [{"nodeId": ".1.140097419746944"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097419746944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419748000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461778272"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140097419748000"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__le__"]}}, ".1.140097419748000": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419748000", "variance": "CONTRAVARIANT"}}, "140097461778272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419748000", "args": [{"nodeId": ".1.140097419748000"}]}, {"nodeId": ".1.140097419748000"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419748352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461778720"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140097419748352"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__ge__"]}}, ".1.140097419748352": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419748352", "variance": "CONTRAVARIANT"}}, "140097461778720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419748352", "args": [{"nodeId": ".1.140097419748352"}]}, {"nodeId": ".1.140097419748352"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419748704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140097419747296", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419747648", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419748000", "args": [{"nodeId": "A"}]}, {"nodeId": "140097419748352", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140097419749760": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097461780064"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140097419749760"}, {"nodeId": ".2.140097419749760"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__sub__"]}}, ".1.140097419749760": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749760", "variance": "CONTRAVARIANT"}}, ".2.140097419749760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419749760", "variance": "COVARIANT"}}, "140097461780064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419749760", "args": [{"nodeId": ".1.140097419749760"}, {"nodeId": ".2.140097419749760"}]}, {"nodeId": ".1.140097419749760"}], "returnType": {"nodeId": ".2.140097419749760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419750112": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492042016"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140097419750112"}, {"nodeId": ".2.140097419750112"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__rsub__"]}}, ".1.140097419750112": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750112", "variance": "CONTRAVARIANT"}}, ".2.140097419750112": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750112", "variance": "COVARIANT"}}, "140097492042016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419750112", "args": [{"nodeId": ".1.140097419750112"}, {"nodeId": ".2.140097419750112"}]}, {"nodeId": ".1.140097419750112"}], "returnType": {"nodeId": ".2.140097419750112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419750464": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492042464"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140097419750464"}, {"nodeId": ".2.140097419750464"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__divmod__"]}}, ".1.140097419750464": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750464", "variance": "CONTRAVARIANT"}}, ".2.140097419750464": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750464", "variance": "COVARIANT"}}, "140097492042464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419750464", "args": [{"nodeId": ".1.140097419750464"}, {"nodeId": ".2.140097419750464"}]}, {"nodeId": ".1.140097419750464"}], "returnType": {"nodeId": ".2.140097419750464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419750816": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492042912"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140097419750816"}, {"nodeId": ".2.140097419750816"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140097419750816": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750816", "variance": "CONTRAVARIANT"}}, ".2.140097419750816": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419750816", "variance": "COVARIANT"}}, "140097492042912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419750816", "args": [{"nodeId": ".1.140097419750816"}, {"nodeId": ".2.140097419750816"}]}, {"nodeId": ".1.140097419750816"}], "returnType": {"nodeId": ".2.140097419750816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097419751168": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492043360"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140097419751168"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__iter__"]}}, ".1.140097419751168": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419751168", "variance": "COVARIANT"}}, "140097492043360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751168", "args": [{"nodeId": ".1.140097419751168"}]}], "returnType": {"nodeId": ".1.140097419751168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419751520": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492043808"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140097419751520"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__aiter__"]}}, ".1.140097419751520": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419751520", "variance": "COVARIANT"}}, "140097492043808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419751520", "args": [{"nodeId": ".1.140097419751520"}]}], "returnType": {"nodeId": ".1.140097419751520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419752576": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492045600"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140097419752576"}, {"nodeId": ".2.140097419752576"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["items"]}}, ".1.140097419752576": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752576", "variance": "COVARIANT"}}, ".2.140097419752576": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419752576", "variance": "COVARIANT"}}, "140097492045600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097419752576"}, {"nodeId": ".2.140097419752576"}]}], "returnType": {"nodeId": "140097499820480", "args": [{"nodeId": "140097390905152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390905152": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097419752576"}, {"nodeId": ".2.140097419752576"}]}}, "140097419753280": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492046944"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492047392"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140097419753280"}, {"nodeId": ".2.140097419753280"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140097419753280": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753280", "variance": "CONTRAVARIANT"}}, ".2.140097419753280": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753280", "variance": "COVARIANT"}}, "140097492046944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753280", "args": [{"nodeId": ".1.140097419753280"}, {"nodeId": ".2.140097419753280"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097492047392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753280", "args": [{"nodeId": ".1.140097419753280"}, {"nodeId": ".2.140097419753280"}]}, {"nodeId": ".1.140097419753280"}], "returnType": {"nodeId": ".2.140097419753280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419753632": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492047840"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492048288"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}], "bases": [{"nodeId": "140097419753280", "args": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140097419753632": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753632", "variance": "CONTRAVARIANT"}}, ".2.140097419753632": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419753632", "variance": "INVARIANT"}}, "140097492047840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753632", "args": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}]}, {"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097492048288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753632", "args": [{"nodeId": ".1.140097419753632"}, {"nodeId": ".2.140097419753632"}]}, {"nodeId": ".1.140097419753632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419753984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492048736"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["fileno"]}}, "140097492048736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419753984"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419754336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492049184"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140097419754336"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["read"]}}, ".1.140097419754336": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419754336", "variance": "COVARIANT"}}, "140097492049184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419754336", "args": [{"nodeId": ".1.140097419754336"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097419754336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097419754688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492049632"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140097419754688"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["readline"]}}, ".1.140097419754688": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419754688", "variance": "COVARIANT"}}, "140097492049632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419754688", "args": [{"nodeId": ".1.140097419754688"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097419754688"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097419755040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492050080"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140097419755040"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["readline"]}}, ".1.140097419755040": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419755040", "variance": "COVARIANT"}}, "140097492050080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419755040", "args": [{"nodeId": ".1.140097419755040"}]}], "returnType": {"nodeId": ".1.140097419755040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097402962336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492050976"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097407466688"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140097492050976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402962336"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097402962688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492051424"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097407466688"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140097492051424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402962688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097402963040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492051872"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390632448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097402962336"}, {"nodeId": "140097402962688"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140097492051872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402963040"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097390632448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097492052320"}, {"nodeId": "140097492052768"}]}}, "140097492052320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402963040"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097492052768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402963040"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097402963392": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407452960"}, {"nodeId": "140097407466688"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140097402963744": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492053664"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140097402963744"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097402963744": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097402963744", "variance": "COVARIANT"}}, "140097492053664": {"type": "Function", "content": {"typeVars": [".-1.140097492053664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097402963744"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140097492053664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140097492053664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097492053664", "variance": "INVARIANT"}}, "140097402964096": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097428531936", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__dataclass_fields__"]}}, "140097428531936": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415674816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415675264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415675488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407714048", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415675712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454206624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454207520"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454207968"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428531936"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097428531936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428531936", "variance": "INVARIANT"}}, "140097415674816": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097428531936"}, {"nodeId": "0"}]}}, "140097415675264": {"type": "Union", "content": {"items": [{"nodeId": "140097428531584", "args": [{"nodeId": ".1.140097428531936"}]}, {"nodeId": "0"}]}}, "140097428531584": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454206176"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140097428531584"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, ".1.140097428531584": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428531584", "variance": "COVARIANT"}}, "140097454206176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428531584", "args": [{"nodeId": ".1.140097428531584"}]}], "returnType": {"nodeId": ".1.140097428531584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415675488": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097415675712": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "0"}]}}, "140097454206624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428531936", "args": [{"nodeId": ".1.140097428531936"}]}, {"nodeId": ".1.140097428531936"}, {"nodeId": "140097395476512"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395419936"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499821184", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140097395476512": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140097428531936"}, "argKinds": [], "argNames": []}}, "140097395419936": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097454207520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428531936", "args": [{"nodeId": ".1.140097428531936"}]}, {"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140097454207968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097407721440": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492055008"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["find_spec"]}}, "140097492055008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097398929920"}, {"nodeId": "140097398930032"}], "returnType": {"nodeId": "140097398930144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140097398929920": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097398930032": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097407715104": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428614480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378321792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407571936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499820128", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407572272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478730784"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478731232"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428614480": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097378321792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407571936": {"type": "Union", "content": {"items": [{"nodeId": "140097407714752"}, {"nodeId": "N"}]}}, "140097407714752": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478729888"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["load_module"]}}, "140097478729888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714752"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097407572160": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097407572272": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462524160": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462456096"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403368864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403369088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415896576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415896688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357259808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462456992"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462456096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394913376"}, {"nodeId": "140097394913488"}, {"nodeId": "140097394913712"}, {"nodeId": "140097394913824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140097394913376": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462525216": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445768864"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445769312"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445769760"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445770208"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097445768864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097445769312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097445769760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097395179584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140097395179584": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097445770208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525216"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097394913488": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394913712": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097394913824": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097403368864": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097403369088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415896576": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097415896688": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097357259808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097394913936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394913936": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462456992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478730784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}, {"nodeId": "140097428308736"}, {"nodeId": "140097398917264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140097398917264": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097478731232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097398930144": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097403222528": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378739008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378740576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378740800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378741920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378742816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378743040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378743264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378743488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378744160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097378739008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930368"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930368": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378740576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930480"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930480": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378740800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930592"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930592": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930704"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930704": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930816"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930816": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398930928"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398930928": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398931040"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398931040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378741920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398931152"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398931152": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097398931264"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398931264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144512"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144512": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144624"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144624": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378742816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144736": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378743040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144848"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144848": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378743264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399144960"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399144960": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378743488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145072"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145072": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378744160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145184"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145184": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403222880": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378737664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378795808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378796928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378797824"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499823296"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097378737664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145296"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145296": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378795808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145408": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145520"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145520": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145632"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145632": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145744"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145744": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145856"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145856": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378796928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399145968"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399145968": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146080"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146080": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146192"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146192": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146304"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146304": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378797824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146416"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146416": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403223232": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378799840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378800960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378801184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378801408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378801632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097407973216"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097378799840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146528"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146640": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146752"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146752": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146864"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146864": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399146976"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399146976": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378800960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147088"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147088": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378801184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147200"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147200": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378801408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147312": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378801632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147424"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097407973216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140097499822944"}]}}, "140097407721792": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407973104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097482930016"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407973104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403590400"}}}, "140097403590400": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097482930016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407721792"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097403223584": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378804768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097378804096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147648"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147648": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147760"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378804544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147872"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147872": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097378804768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399147984"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399147984": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403404352": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378805216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378806560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378806784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097378805216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399148208"}], "returnType": {"nodeId": "140097399148320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399148208": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407972320"}, {"nodeId": "140097407968960"}, {"nodeId": "140097399148096"}]}}, "140097407972320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407577424"}}}, "140097407577424": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097407968960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407576976"}}}, "140097407576976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399148096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399148320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407577424"}}}, "140097378806560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399148544"}], "returnType": {"nodeId": "140097399148656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399148544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407972320"}, {"nodeId": "140097407968960"}, {"nodeId": "140097399148432"}]}}, "140097399148432": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399148656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407576976"}}}, "140097378806784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399148880"}], "returnType": {"nodeId": "140097399148992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399148880": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407972320"}, {"nodeId": "140097407968960"}, {"nodeId": "140097399148768"}]}}, "140097399148768": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399148992": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403404704": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378806112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378808576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378808800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378809024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378809248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097378806112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149104"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149104": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378808576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149216"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378808800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149328"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378809024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149440"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097378809248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399149552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399149552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097407722144": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403594544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403357216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403357440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499811328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140097403594544": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097403357216": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097403357440": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403405056": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097373652352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097373652800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097407968848"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097415901168"}]}], "isAbstract": false}}, "140097373652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399152016"}], "returnType": {"nodeId": "140097399152128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399152016": {"type": "Tuple", "content": {"items": [{"nodeId": "140097403592640"}, {"nodeId": "140097403357552"}]}}, "140097403592640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097407579216": {"type": "Union", "content": {"items": [{"nodeId": "140097428405408"}, {"nodeId": "N"}]}}, "140097428405408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499818720": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457605536"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382547040"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403896768"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457607328"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382629440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382630336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382630560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382630784"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}], "bases": [{"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818720"}]}], "isAbstract": true}}, ".1.140097499818720": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818720", "variance": "COVARIANT"}}, ".2.140097499818720": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818720", "variance": "CONTRAVARIANT"}}, "140097457605536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382547040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}, {"nodeId": ".2.140097499818720"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403896768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457606432"}, {"nodeId": "140097457606880"}]}}, "140097457606432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}, {"nodeId": "0"}, {"nodeId": "140097403898560"}, {"nodeId": "140097403898672"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898560": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097403898672": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097457606880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097403898784"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898784": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097457607328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382629440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382630336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382630560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382630784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097499818720"}, {"nodeId": ".2.140097499818720"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499818368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382544576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097457605088"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140097499818368"}], "bases": [{"nodeId": "140097499818016", "args": [{"nodeId": ".1.140097499818368"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140097499818368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818368", "variance": "COVARIANT"}}, "140097382544576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818368"}]}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".1.140097499818368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097457605088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818368"}]}], "returnType": {"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499818016": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382538752"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499818016"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__aiter__"]}}, ".1.140097499818016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499818016", "variance": "COVARIANT"}}, "140097382538752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818016", "args": [{"nodeId": ".1.140097499818016"}]}], "returnType": {"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097499818016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403357552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097399152128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097373652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399152240"}], "returnType": {"nodeId": "140097399152352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399152240": {"type": "Tuple", "content": {"items": [{"nodeId": "140097403592640"}, {"nodeId": "140097403357552"}]}}, "140097399152352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097407968848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579216"}}}, "140097415901168": {"type": "Union", "content": {"items": [{"nodeId": "140097386769408"}, {"nodeId": "N"}]}}, "140097386769408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499818720", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407713344": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378103616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407713696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428614704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378104064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378104736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483360736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483361184"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403908752"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378103616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}], "returnType": {"nodeId": "140097403911440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403911440": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097428614704": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097378104064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378104736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483360736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "140097407713696"}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "140097403911888"}, {"nodeId": "140097403912000"}, {"nodeId": "140097398915136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140097403911888": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403912000": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}, {"nodeId": "N"}]}}, "140097398915136": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097483361184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097403908752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097483361632"}, {"nodeId": "140097483362080"}]}}, "140097483361632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "N"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097407713344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097483362080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407713344"}, {"nodeId": "140097499811328"}, {"nodeId": "140097398915696"}], "returnType": {"nodeId": "140097407716864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398915696": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407716864": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378456896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378457344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378457568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378457792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378458016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378458240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478958368"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478958816"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378456896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097398921072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398921072": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097407467040"}]}, {"nodeId": "N"}]}}, "140097378457344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097398921296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398921296": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097378457568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097407716512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407716512": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478955232"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097478955232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716512"}, {"nodeId": "140097499811328"}, {"nodeId": "140097398920960"}], "returnType": {"nodeId": "140097407713344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140097398920960": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097378457792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378458016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378458240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478958368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}, {"nodeId": "140097432648864"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097432648864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097478958816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716864"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097407714400": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478728096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478728544"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478728992"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478729440"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097478728096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097478728544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478728992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097478729440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407714400"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407715456": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378322912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478732576"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478733024"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478733472"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403910432"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}], "bases": [{"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}], "isAbstract": false}}, ".1.140097407715456": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715456", "variance": "COVARIANT"}}, ".2.140097407715456": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715456", "variance": "CONTRAVARIANT"}}, ".3.140097407715456": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715456", "variance": "COVARIANT"}}, "140097378322912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}], "returnType": {"nodeId": "140097398917600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398917600": {"type": "Union", "content": {"items": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097478732576": {"type": "Function", "content": {"typeVars": [".0.140097478732576"], "argTypes": [{"nodeId": ".0.140097478732576"}], "returnType": {"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097478732576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, "def": "140097478732576", "variance": "INVARIANT"}}, "140097478733024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478733472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, {"nodeId": ".2.140097407715456"}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403910432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097478733920"}, {"nodeId": "140097478734368"}]}}, "140097478733920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, {"nodeId": "0"}, {"nodeId": "140097398917936"}, {"nodeId": "140097398918048"}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398917936": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097398918048": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478734368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715456", "args": [{"nodeId": ".1.140097407715456"}, {"nodeId": ".2.140097407715456"}, {"nodeId": ".3.140097407715456"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097398918160"}], "returnType": {"nodeId": ".1.140097407715456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398918160": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407715808": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378330080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478735712"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478736160"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478736608"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097398917712"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478951200"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478951648"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}], "bases": [{"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "isAbstract": false}}, ".1.140097407715808": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715808", "variance": "COVARIANT"}}, ".2.140097407715808": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407715808", "variance": "CONTRAVARIANT"}}, "140097378330080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "returnType": {"nodeId": "140097398918384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398918384": {"type": "Union", "content": {"items": [{"nodeId": "140097499817312", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097478735712": {"type": "Function", "content": {"typeVars": [".0.140097478735712"], "argTypes": [{"nodeId": ".0.140097478735712"}], "returnType": {"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097478735712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, "def": "140097478735712", "variance": "INVARIANT"}}, "140097478736160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499817664": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382536960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382537184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403896656"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382537408"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}], "bases": [{"nodeId": "140097499817312", "args": [{"nodeId": ".3.140097499817664"}]}], "isAbstract": true}}, ".1.140097499817664": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817664", "variance": "COVARIANT"}}, ".2.140097499817664": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817664", "variance": "CONTRAVARIANT"}}, ".3.140097499817664": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499817664", "variance": "COVARIANT"}}, "140097382536288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097403897888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403897888": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382536512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382536736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097407719328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382536960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382537184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}, {"nodeId": ".2.140097499817664"}], "returnType": {"nodeId": ".1.140097499817664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403896656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097457602848"}, {"nodeId": "140097457603296"}]}}, "140097457602848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}, {"nodeId": "0"}, {"nodeId": "140097403898112"}, {"nodeId": "140097403898224"}], "returnType": {"nodeId": ".1.140097499817664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898112": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097403898224": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097457603296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097403898336"}], "returnType": {"nodeId": ".1.140097499817664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097403898336": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097382537408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097499817664"}, {"nodeId": ".2.140097499817664"}, {"nodeId": ".3.140097499817664"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478736608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, {"nodeId": ".2.140097407715808"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097398917712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097432649088"}, {"nodeId": "140097478737056"}]}}, "140097432649088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, {"nodeId": "0"}, {"nodeId": "140097398919168"}, {"nodeId": "140097398919280"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398919168": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097398919280": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478737056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097398919504"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097407715808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398919504": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478951200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715808", "args": [{"nodeId": ".1.140097407715808"}, {"nodeId": ".2.140097407715808"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478951648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407716160": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378335008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478952992"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478953440"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478953888"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097398919392"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}], "bases": [{"nodeId": "140097499817664", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "isAbstract": false}}, ".1.140097407716160": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407716160", "variance": "COVARIANT"}}, ".2.140097407716160": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407716160", "variance": "CONTRAVARIANT"}}, ".3.140097407716160": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407716160", "variance": "COVARIANT"}}, "140097378335008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "returnType": {"nodeId": "140097398920288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398920288": {"type": "Union", "content": {"items": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097398920176"}]}, {"nodeId": "N"}]}}, "140097398920176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097478952992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478953440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140097407716160"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478953888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}, {"nodeId": ".2.140097407716160"}], "returnType": {"nodeId": ".1.140097407716160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097398919392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097478954336"}, {"nodeId": "140097478954784"}]}}, "140097478954336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}, {"nodeId": "0"}, {"nodeId": "140097398920624"}, {"nodeId": "140097398920736"}], "returnType": {"nodeId": ".1.140097407716160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398920624": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "140097499811328"}]}}, "140097398920736": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097478954784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407716160", "args": [{"nodeId": ".1.140097407716160"}, {"nodeId": ".2.140097407716160"}, {"nodeId": ".3.140097407716160"}]}, {"nodeId": "140097428315424"}, {"nodeId": "N"}, {"nodeId": "140097398920848"}], "returnType": {"nodeId": ".1.140097407716160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097398920848": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097407717216": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378459808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378460032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378460256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478960608"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378459808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}], "returnType": {"nodeId": "140097398921968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097398921968": {"type": "Union", "content": {"items": [{"nodeId": "140097499811328"}, {"nodeId": "140097407715104"}]}}, "140097378460032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378460256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478960608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717216"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097407717568": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378462048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378462496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378462720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478962400"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478962848"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378462048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378462496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378462720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478962400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097478962848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717568"}, {"nodeId": "A"}, {"nodeId": "140097398922864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398922864": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407717920": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378464512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378464736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378464960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378465184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478965088"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478965536"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097478965984"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378464512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378464736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378464960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378465184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097478965088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097478965536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097478965984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407717920"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407718272": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378533664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378533888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378534112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479099104"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479099552"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378533664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378533888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378534112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479099104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097479099552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718272"}, {"nodeId": "A"}, {"nodeId": "140097398923872"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398923872": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407718624": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378535904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378536128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378536352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479101344"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479101792"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378535904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378536128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378536352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479101344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140097479101792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407718624"}, {"nodeId": "A"}, {"nodeId": "140097398924544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398924544": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097407719680": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378543520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378543296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378543744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479108960"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479109408"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479109856"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378543520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378543296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378543744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479108960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}, {"nodeId": "A"}, {"nodeId": "140097398925664"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398925664": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097479109408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097479109856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407719680"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407720032": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378545536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378545760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097378545984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479111648"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479112096"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479112544"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097378545536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378545760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097378545984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}], "returnType": {"nodeId": "140097499822240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479111648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}, {"nodeId": "A"}, {"nodeId": "140097398926336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097398926336": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097479112096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097479112544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720032"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407720736": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479283360"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097479283360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407720736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407727776": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428317536"}, {"nodeId": "140097428323168"}], "isAbstract": false}}, "140097407728128": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479289184"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479289632"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479290080"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479290528"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479290976"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479291424"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479291872"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479292320"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479292768"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415607040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479293216"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479293664"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479294112"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097479294560"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492009248"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492009696"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415608160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492010144"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492010592"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492011040"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361455232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492011936"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097479289184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097479289632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479290080": {"type": "Function", "content": {"typeVars": [".0.140097479290080"], "argTypes": [{"nodeId": ".0.140097479290080"}], "returnType": {"nodeId": ".0.140097479290080"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097479290080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407728128"}, "def": "140097479290080", "variance": "INVARIANT"}}, "140097479290528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394902848"}, {"nodeId": "140097394902960"}, {"nodeId": "140097394903072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097394902848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097394902960": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097394903072": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097479290976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479291424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479291872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479292320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479292768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415607040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097479293216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097479293664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097479294112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097479294560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492009248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394903184"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903184": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492009696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415608160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097492010144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492010592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394903296"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903296": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492011040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097361455232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492011936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728128"}, {"nodeId": "140097394903408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140097394903408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097407728480": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492012384"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492012832"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492013280"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492013728"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140097407728128"}], "isAbstract": false}}, "140097492012384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492012832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097394903520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097394903520": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492013280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097394903632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097394903632": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492013728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097394903744"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903744": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097407728832": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407728480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492014176"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492014624"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492015072"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492015520"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492015968"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492016416"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140097407728128"}], "isAbstract": false}}, "140097492014176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}], "returnType": {"nodeId": "140097407728480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492014624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492015072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492015520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492015968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097394903856"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394903856": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097492016416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407728832"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097407729184": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403367632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492016864"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361450080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492017760"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492018208"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492018656"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140097407728480"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097403367632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419824592"}}}, "140097419824592": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097419822800"}]}}, "140097419822800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097420531680": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097403405760", "args": [{"nodeId": "140097428309088"}]}]}}, "140097403405760": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365618112"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097403405760"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__fspath__"]}}, ".1.140097403405760": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403405760", "variance": "COVARIANT"}}, "140097365618112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403405760", "args": [{"nodeId": ".1.140097403405760"}]}], "returnType": {"nodeId": ".1.140097403405760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492016864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}, {"nodeId": "140097394903968"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097394904192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140097394903968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419824592"}}}, "140097394904192": {"type": "Union", "content": {"items": [{"nodeId": "140097394904080"}, {"nodeId": "N"}]}}, "140097394904080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428398464"}}}, "140097428398464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097361450080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492017760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097492018208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407729184"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097492018656": {"type": "Function", "content": {"typeVars": [".0.140097492018656"], "argTypes": [{"nodeId": ".0.140097492018656"}], "returnType": {"nodeId": ".0.140097492018656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492018656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407729184"}, "def": "140097492018656", "variance": "INVARIANT"}}, "140097407455776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383012768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}], "isAbstract": true}}, "140097383012768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455776"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407455424": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382879456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382880576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382881472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382882816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382883488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382884160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382884832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382885504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382886400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382887072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382887968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382888864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382889536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382890208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382890880"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403905728"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403906064"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383009184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383009856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383010752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383011872"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097407455424"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455424"}]}], "isAbstract": true}}, ".1.140097407455424": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407455424", "variance": "INVARIANT"}}, "140097382879456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382880576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382881472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382882144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382882816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382883488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382884160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382884832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407455424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097382885504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382886400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407455424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097382887072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407455424"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097382887968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097382888864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382889536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382890208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097403906400"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097403906400": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097382890880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403905728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097458035552"}, {"nodeId": "140097420255840"}, {"nodeId": "140097458036448"}]}}, "140097458035552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097420255840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097458036448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": ".1.140097407455424"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097403906064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097458036896"}, {"nodeId": "140097420254944"}, {"nodeId": "140097458037792"}]}}, "140097458036896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097420254944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407466688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097458037792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097383009184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": ".1.140097407455424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383009856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407455424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097383010752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097383011872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407455424"}]}, {"nodeId": "140097403906736"}, {"nodeId": "140097403906848"}, {"nodeId": "140097403906960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097403906736": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097403906848": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097403906960": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097462517824": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492019104"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492019552"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492020000"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492020448"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492020896"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097492019104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140097492019552": {"type": "Function", "content": {"typeVars": [".0.140097492019552"], "argTypes": [{"nodeId": ".0.140097492019552"}], "returnType": {"nodeId": ".0.140097492019552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492019552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462517824"}, "def": "140097492019552", "variance": "INVARIANT"}}, "140097492020000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492020448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}], "returnType": {"nodeId": "140097428309792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097492020896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462517824"}, {"nodeId": "140097394904528"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394904528": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097462518176": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492021344"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492021792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492022240"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097492021344": {"type": "Function", "content": {"typeVars": [".0.140097492021344"], "argTypes": [{"nodeId": ".0.140097492021344"}], "returnType": {"nodeId": ".0.140097492021344"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492021344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462518176"}, "def": "140097492021344", "variance": "INVARIANT"}}, "140097492021792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518176"}, {"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140097492022240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518176"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097462518528": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492022688"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492023136"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492023584"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}, {"nodeId": "140097407455776"}], "isAbstract": false}}, "140097492022688": {"type": "Function", "content": {"typeVars": [".0.140097492022688"], "argTypes": [{"nodeId": ".0.140097492022688"}], "returnType": {"nodeId": ".0.140097492022688"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492022688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462518528"}, "def": "140097492022688", "variance": "INVARIANT"}}, "140097492023136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518528"}, {"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140097492023584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518528"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097462518880": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492024032"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492024480"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140097462518176"}, {"nodeId": "140097462518528"}], "isAbstract": false}}, "140097492024032": {"type": "Function", "content": {"typeVars": [".0.140097492024032"], "argTypes": [{"nodeId": ".0.140097492024032"}], "returnType": {"nodeId": ".0.140097492024032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097492024032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462518880"}, "def": "140097492024032", "variance": "INVARIANT"}}, "140097492024480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462518880"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097462519232": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097492024928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483686176"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140097407728832"}], "isAbstract": false}}, "140097492024928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519232"}, {"nodeId": "140097407728480"}, {"nodeId": "140097407728480"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140097483686176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519232"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097462519584": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403600480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403367744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483686624"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483687072"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483687520"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483687968"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483688416"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483688864"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483689312"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483689760"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140097407728128"}], "isAbstract": false}}, "140097403600480": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403367744": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097483686624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097483687072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483687520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483687968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097483688416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097483688864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483689312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483689760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519584"}, {"nodeId": "140097394904976"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097394904976": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097462519936": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483690208"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361892224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361892672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361892896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361893344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483692448"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483692896"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483693344"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483693792"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483694240"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483694688"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483695136"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483695584"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140097462519584"}, {"nodeId": "140097407456128"}], "isAbstract": false}}, "140097483690208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097394905088"}, {"nodeId": "140097394905200"}, {"nodeId": "140097394905312"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140097394905088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097361892224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097361892672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097361892896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097361893344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483692448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097394905424"}, {"nodeId": "140097394905536"}, {"nodeId": "140097394905648"}, {"nodeId": "140097394905760"}, {"nodeId": "140097394905872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140097394905424": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905536": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905648": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394905760": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097394905872": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097483692896": {"type": "Function", "content": {"typeVars": [".0.140097483692896"], "argTypes": [{"nodeId": ".0.140097483692896"}], "returnType": {"nodeId": ".0.140097483692896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097483692896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462519936"}, "def": "140097483692896", "variance": "INVARIANT"}}, "140097483693344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097483693792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483694240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097483694688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483695136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097483695584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462519936"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140097407456128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383014336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383014784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383015008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383015232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097383015456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383015680"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": true}}, "140097383014336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383014784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383015008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097403907072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403907072": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097383015232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383015456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097383015680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456128"}], "returnType": {"nodeId": "140097407456128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097462520288": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483696032"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483696480"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140097462519936"}], "isAbstract": false}}, "140097483696032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520288"}, {"nodeId": "140097394906096"}, {"nodeId": "140097394906208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140097394906096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097394906208": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097483696480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520288"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403417024": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483696928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483697376"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097362021504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483698272"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140097419745536"}], "isAbstract": false}}, "140097483696928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}, {"nodeId": "140097394906320"}, {"nodeId": "140097499812032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140097394906320": {"type": "Union", "content": {"items": [{"nodeId": "140097419745536"}, {"nodeId": "N"}]}}, "140097419745536": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449722592"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344521376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449723488"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449723936"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449724384"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097449722592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344521376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097449723488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449723936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}], "returnType": {"nodeId": "140097390637712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390637712": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097449724384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745536"}, {"nodeId": "140097390637936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140097390637936": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097483697376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}, {"nodeId": "140097394906432"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097394906432": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}]}}, "140097362021504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}], "returnType": {"nodeId": "140097394906544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394906544": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097483698272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417024"}, {"nodeId": "140097394906768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097394906768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097407465632": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382025472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382025920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382026816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462044256"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382027040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382027264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382025472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382025920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097403710464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403710464": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382026144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382026368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382026592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382026816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097403710688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403710688": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097462044256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}, {"nodeId": "140097428308736"}, {"nodeId": "140097403710912"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097403711136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140097403710912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140097428308736"}]}}, "140097403711136": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097382027040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499813440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499813440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382216896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483464416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382216896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813440"}], "returnType": {"nodeId": "140097499814144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499814144": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382368416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382368640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382368864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382369088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483468448"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382369760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382369312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483470688"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483471136"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382368416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382368640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097403714720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403714720": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382368864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382369088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483468448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}, {"nodeId": "140097428308736"}, {"nodeId": "140097403714944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140097403714944": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382369760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499813440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382369312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}], "returnType": {"nodeId": "140097499813792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499813792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382218016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483465312"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382218016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813792"}], "returnType": {"nodeId": "140097499814144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483465312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813792"}, {"nodeId": "140097499814144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140097483470688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499813088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483459488"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483459936"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483460384"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097483459488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483459936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483460384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813088"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483471136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814144"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483464416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499813440"}, {"nodeId": "140097499814144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140097382027264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465632"}], "returnType": {"nodeId": "140097499813792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499812736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382210624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382211744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483457696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483458144"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483458592"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382210624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382211072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097403713488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403713488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097382211296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382211520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382211744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097483457696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}, {"nodeId": "140097403713936"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140097403713936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097483458144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097483458592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499812736"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499814496": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483471584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483472032"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097483472480"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462698272"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097483471584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140097483472032": {"type": "Function", "content": {"typeVars": [".-1.140097483472032"], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": ".-1.140097483472032"}], "returnType": {"nodeId": ".-1.140097483472032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097483472032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097483472032", "variance": "INVARIANT"}}, "140097483472480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097462698272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814496"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499813088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097499814848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462700064"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462700064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499814848"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407286816": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140097407285056"}], "isAbstract": false}}, "140097407285056": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449156768"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449157216"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449157664"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449158112"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449158560"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140097499822240"}], "isAbstract": false}}, "140097449156768": {"type": "Function", "content": {"typeVars": [".-1.140097449156768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140097449156768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140097449156768": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097449156768", "variance": "INVARIANT"}}, "140097449157216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140097449157664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "140097499822240"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140097449158112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "140097390904480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140097390904480": {"type": "Union", "content": {"items": [{"nodeId": "140097402961984", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097449158560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407285056"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140097407452608": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382379840"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__index__"]}}, "140097382379840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407452608"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097499815200": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382381856"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097499815200"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__abs__"]}}, ".1.140097499815200": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499815200", "variance": "COVARIANT"}}, "140097382381856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815200", "args": [{"nodeId": ".1.140097499815200"}]}], "returnType": {"nodeId": ".1.140097499815200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097499815552": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403525760"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140097499815552"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__round__"]}}, ".1.140097499815552": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097499815552", "variance": "COVARIANT"}}, "140097403525760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462703648"}, {"nodeId": "140097462704096"}]}}, "140097462703648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815552", "args": [{"nodeId": ".1.140097499815552"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462704096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815552", "args": [{"nodeId": ".1.140097499815552"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097499815552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097407453312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097382454144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__hash__"]}}, "140097382454144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407453312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407453664": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140097407453664"}, {"nodeId": ".2.140097407453664"}, {"nodeId": ".3.140097407453664"}, {"nodeId": ".4.140097407453664"}], "bases": [{"nodeId": "140097499817312", "args": [{"nodeId": ".3.140097407453664"}]}, {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097407453664"}, {"nodeId": ".2.140097407453664"}, {"nodeId": ".3.140097407453664"}]}], "isAbstract": true}}, ".1.140097407453664": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "COVARIANT"}}, ".2.140097407453664": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "CONTRAVARIANT"}}, ".3.140097407453664": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "COVARIANT"}}, ".4.140097407453664": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407453664", "variance": "INVARIANT"}}, "140097407456480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403908192"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097383018368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807424"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807648"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140097403908192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097420254496"}, {"nodeId": "140097420254272"}]}}, "140097420254496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456480"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097403909760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097403909760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097420254272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456480"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140097383018368": {"type": "Function", "content": {"typeVars": [".0.140097383018368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097383018368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140097383018368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456480"}, "def": "140097383018368", "variance": "INVARIANT"}}, "140097419807424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456480"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419807648": {"type": "Function", "content": {"typeVars": [".0.140097419807648"], "argTypes": [{"nodeId": ".0.140097419807648"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097419807648"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140097419807648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456480"}, "def": "140097419807648", "variance": "INVARIANT"}}, "140097407456832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806976"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807200"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806528"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806080"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419807872"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806304"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805632"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805856"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419804960"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805408"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}], "isAbstract": true}}, "140097419806976": {"type": "Function", "content": {"typeVars": [".0.140097419806976"], "argTypes": [{"nodeId": ".0.140097419806976"}], "returnType": {"nodeId": ".0.140097419806976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097419806976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456832"}, "def": "140097419806976", "variance": "INVARIANT"}}, "140097419807200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}, {"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140097419806528": {"type": "Function", "content": {"typeVars": [".-1.140097419806528"], "argTypes": [{"nodeId": "140097407456832"}, {"nodeId": "0"}, {"nodeId": ".-1.140097419806528"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140097419806528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419806528", "variance": "INVARIANT"}}, "140097419806080": {"type": "Function", "content": {"typeVars": [".-1.140097419806080"], "argTypes": [{"nodeId": ".-1.140097419806080"}, {"nodeId": ".-1.140097419806080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097419806080": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419806080", "variance": "INVARIANT"}}, "140097419807872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419806304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}], "returnType": {"nodeId": "140097407457888", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419805632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}], "returnType": {"nodeId": "140097407457184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419805856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407456832"}], "returnType": {"nodeId": "140097407457536", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419804960": {"type": "Function", "content": {"typeVars": [".0.140097419804960"], "argTypes": [{"nodeId": ".0.140097419804960"}, {"nodeId": ".0.140097419804960"}], "returnType": {"nodeId": ".0.140097419804960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097419804960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456832"}, "def": "140097419804960", "variance": "INVARIANT"}}, "140097419805408": {"type": "Function", "content": {"typeVars": [".0.140097419805408"], "argTypes": [{"nodeId": ".0.140097419805408"}, {"nodeId": ".0.140097419805408"}], "returnType": {"nodeId": ".0.140097419805408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097419805408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407456832"}, "def": "140097419805408", "variance": "INVARIANT"}}, "140097499821888": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407713696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407569248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097429054272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419805184"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419806752"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097419804736"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407569248": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097429054272": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097419805184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821888"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097403910656"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140097403910656": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097419806752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821888"}, {"nodeId": "140097403910880"}, {"nodeId": "140097403911104"}, {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097403911328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140097403910880": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097403911104": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140097403911328": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097419804736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499821888"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407463872": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458330912"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458331360"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458331808"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097458330912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463872"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458331360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463872"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458331808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463872"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407464224": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407458592", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458333600"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458334048"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458334496"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458334944"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458335392"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458335840"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458336288"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458336736"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458337184"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458337632"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}], "isAbstract": true}}, "140097458333600": {"type": "Function", "content": {"typeVars": [".0.140097458333600"], "argTypes": [{"nodeId": ".0.140097458333600"}], "returnType": {"nodeId": ".0.140097458333600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097458333600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464224"}, "def": "140097458333600", "variance": "INVARIANT"}}, "140097458334048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}, {"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140097458334496": {"type": "Function", "content": {"typeVars": [".-1.140097458334496"], "argTypes": [{"nodeId": "140097407464224"}, {"nodeId": "0"}, {"nodeId": ".-1.140097458334496"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140097458334496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097458334496", "variance": "INVARIANT"}}, "140097458334944": {"type": "Function", "content": {"typeVars": [".-1.140097458334944"], "argTypes": [{"nodeId": ".-1.140097458334944"}, {"nodeId": ".-1.140097458334944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140097458334944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097458334944", "variance": "INVARIANT"}}, "140097458335392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}], "returnType": {"nodeId": "140097407457888", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458335840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}], "returnType": {"nodeId": "140097407457184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458336288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}], "returnType": {"nodeId": "140097407457536", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458336736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464224"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458337184": {"type": "Function", "content": {"typeVars": [".0.140097458337184"], "argTypes": [{"nodeId": ".0.140097458337184"}, {"nodeId": ".0.140097458337184"}], "returnType": {"nodeId": ".0.140097458337184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097458337184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464224"}, "def": "140097458337184", "variance": "INVARIANT"}}, "140097458337632": {"type": "Function", "content": {"typeVars": [".0.140097458337632"], "argTypes": [{"nodeId": ".0.140097458337632"}, {"nodeId": ".0.140097458337632"}], "returnType": {"nodeId": ".0.140097458337632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097458337632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464224"}, "def": "140097458337632", "variance": "INVARIANT"}}, "140097407464928": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097403528672"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097387083168"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458528864"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458529760"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140097403528672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097458527520"}, {"nodeId": "140097458527968"}]}}, "140097458527520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464928"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097403708000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140097403708000": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097458527968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464928"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140097387083168": {"type": "Function", "content": {"typeVars": [".0.140097387083168"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140097387083168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140097387083168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464928"}, "def": "140097387083168", "variance": "INVARIANT"}}, "140097458528864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464928"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097458529760": {"type": "Function", "content": {"typeVars": [".0.140097458529760"], "argTypes": [{"nodeId": ".0.140097458529760"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097458529760"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140097458529760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407464928"}, "def": "140097458529760", "variance": "INVARIANT"}}, "140097407465280": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387084960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387085184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097387085408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382023232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458533344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458533792"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097458534240"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097387084064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387084512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097403708896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403708896": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097387084736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387084960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387085184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097387085408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382023232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}], "returnType": {"nodeId": "140097403709232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403709232": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097458533344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}, {"nodeId": "140097403709568"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097403709792"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140097403709568": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097403709792": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097458533792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097458534240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465280"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407465984": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382028832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382029056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462046496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462046944"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097382028832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382029056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}], "returnType": {"nodeId": "140097403711360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403711360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097462046496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}, {"nodeId": "140097428308736"}, {"nodeId": "140097403711584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140097403711584": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097462046944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407465984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407466336": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462048736"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382030848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097382031968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462051424"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462051872"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462052320"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462048736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097403712368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140097403712368": {"type": "Union", "content": {"items": [{"nodeId": "140097407465280"}, {"nodeId": "140097407465632"}, {"nodeId": "140097407465984"}]}}, "140097382030848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382031296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097403712592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403712592": {"type": "Union", "content": {"items": [{"nodeId": "140097407465280"}, {"nodeId": "140097407465632"}, {"nodeId": "140097407465984"}]}}, "140097382031520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382031744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097382031968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}], "returnType": {"nodeId": "140097403712816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403712816": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462051424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097462051872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097462052320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407466336"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407463872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407460704": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395563920"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453392384"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453392832"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453393280"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453393728"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453394176"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453394624"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453395072"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453395520"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395564032"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453396864"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453397312"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395565264"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "isAbstract": false}}, ".1.140097407460704": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460704", "variance": "INVARIANT"}}, ".2.140097407460704": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407460704", "variance": "INVARIANT"}}, "140097395563920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462055680"}, {"nodeId": "140097441061280"}, {"nodeId": "140097462056576"}, {"nodeId": "140097462056128"}, {"nodeId": "140097462057472"}, {"nodeId": "140097462057024"}, {"nodeId": "140097462057920"}, {"nodeId": "140097462058368"}]}}, "140097462055680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097441061280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "N"}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097462056576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097462056128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097462057472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097395564928"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097395564928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}}, "140097462057024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097395565152"}]}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097395565152": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407460704"}]}}, "140097462057920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097462058368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309088"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453392384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453392832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".1.140097407460704"}], "returnType": {"nodeId": ".2.140097407460704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453393280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453393728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": ".1.140097407460704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453394176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407460704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453394624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453395072": {"type": "Function", "content": {"typeVars": [".0.140097453395072"], "argTypes": [{"nodeId": ".0.140097453395072"}], "returnType": {"nodeId": ".0.140097453395072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453395072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453395072", "variance": "INVARIANT"}}, "140097453395520": {"type": "Function", "content": {"typeVars": [".0.140097453395520"], "argTypes": [{"nodeId": ".0.140097453395520"}], "returnType": {"nodeId": ".0.140097453395520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453395520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453395520", "variance": "INVARIANT"}}, "140097395564032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453395968"}, {"nodeId": "140097453396416"}]}}, "140097453395968": {"type": "Function", "content": {"typeVars": [".-1.140097453395968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097453395968"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453395968"}, {"nodeId": "140097395565600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097453395968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453395968", "variance": "INVARIANT"}}, "140097395565600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097453396416": {"type": "Function", "content": {"typeVars": [".-1.140097453396416", ".-2.140097453396416"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097453396416"}]}, {"nodeId": ".-2.140097453396416"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453396416"}, {"nodeId": ".-2.140097453396416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097453396416": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396416", "variance": "INVARIANT"}}, ".-2.140097453396416": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396416", "variance": "INVARIANT"}}, "140097453396864": {"type": "Function", "content": {"typeVars": [".-1.140097453396864", ".-2.140097453396864"], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097395565712"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": "140097395565824"}, {"nodeId": "140097395565936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395565712": {"type": "Union", "content": {"items": [{"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453396864"}, {"nodeId": ".-2.140097453396864"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097453396864"}, {"nodeId": ".-2.140097453396864"}]}]}}, ".-1.140097453396864": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396864", "variance": "INVARIANT"}}, ".-2.140097453396864": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453396864", "variance": "INVARIANT"}}, "140097395565824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".-1.140097453396864"}]}}, "140097395565936": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407460704"}, {"nodeId": ".-2.140097453396864"}]}}, "140097453397312": {"type": "Function", "content": {"typeVars": [".-1.140097453397312", ".-2.140097453397312"], "argTypes": [{"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, {"nodeId": "140097395566048"}], "returnType": {"nodeId": "140097407460704", "args": [{"nodeId": "140097395566160"}, {"nodeId": "140097395566272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395566048": {"type": "Union", "content": {"items": [{"nodeId": "140097407460704", "args": [{"nodeId": ".-1.140097453397312"}, {"nodeId": ".-2.140097453397312"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": ".-1.140097453397312"}, {"nodeId": ".-2.140097453397312"}]}]}}, ".-1.140097453397312": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453397312", "variance": "INVARIANT"}}, ".-2.140097453397312": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453397312", "variance": "INVARIANT"}}, "140097395566160": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".-1.140097453397312"}]}}, "140097395566272": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407460704"}, {"nodeId": ".-2.140097453397312"}]}}, "140097395565264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453397760"}, {"nodeId": "140097453398208"}]}}, "140097453397760": {"type": "Function", "content": {"typeVars": [".0.140097453397760"], "argTypes": [{"nodeId": ".0.140097453397760"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}], "returnType": {"nodeId": ".0.140097453397760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453397760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453397760", "variance": "INVARIANT"}}, "140097453398208": {"type": "Function", "content": {"typeVars": [".0.140097453398208"], "argTypes": [{"nodeId": ".0.140097453398208"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097395566608"}]}], "returnType": {"nodeId": ".0.140097453398208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453398208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407460704", "args": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}, "def": "140097453398208", "variance": "INVARIANT"}}, "140097395566608": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407460704"}, {"nodeId": ".2.140097407460704"}]}}, "140097407461056": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395565376"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453399552"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453400000"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453400448"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453400896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453401344"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453401792"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453402240"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395566384"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395566720"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453404480"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453404928"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453405376"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453405824"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453406272"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453406720"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453407168"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453407616"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453539392"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453539840"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453540288"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453540736"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453541184"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453541632"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453542080"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395567392"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453543424"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140097407461056"}], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097407461056"}]}], "isAbstract": false}}, ".1.140097407461056": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407461056", "variance": "INVARIANT"}}, "140097395565376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453398656"}, {"nodeId": "140097453399104"}]}}, "140097453398656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140097453399104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140097453399552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395566832"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395566832": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453400000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395566944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395566944": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453400448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395567056"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395567056": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453400896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395567168"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395567168": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}]}}, "140097453401344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453401792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453402240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097395566384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453402688"}, {"nodeId": "140097453403136"}]}}, "140097453402688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097407461056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453403136": {"type": "Function", "content": {"typeVars": [".0.140097453403136"], "argTypes": [{"nodeId": ".0.140097453403136"}, {"nodeId": "140097428310144"}], "returnType": {"nodeId": ".0.140097453403136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453403136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453403136", "variance": "INVARIANT"}}, "140097395566720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453403584"}, {"nodeId": "140097453404032"}]}}, "140097453403584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453404032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097428310144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453404480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395567616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395567616": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097453404928": {"type": "Function", "content": {"typeVars": [".0.140097453404928"], "argTypes": [{"nodeId": ".0.140097453404928"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": ".0.140097453404928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453404928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453404928", "variance": "INVARIANT"}}, "140097453405376": {"type": "Function", "content": {"typeVars": [".0.140097453405376"], "argTypes": [{"nodeId": ".0.140097453405376"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": ".0.140097453405376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453405376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453405376", "variance": "INVARIANT"}}, "140097453405824": {"type": "Function", "content": {"typeVars": [".0.140097453405824"], "argTypes": [{"nodeId": ".0.140097453405824"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": ".0.140097453405824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453405824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453405824", "variance": "INVARIANT"}}, "140097453406272": {"type": "Function", "content": {"typeVars": [".0.140097453406272"], "argTypes": [{"nodeId": ".0.140097453406272"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453406272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453406272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453406272", "variance": "INVARIANT"}}, "140097453406720": {"type": "Function", "content": {"typeVars": [".0.140097453406720"], "argTypes": [{"nodeId": ".0.140097453406720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453406720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453406720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453406720", "variance": "INVARIANT"}}, "140097453407168": {"type": "Function", "content": {"typeVars": [".0.140097453407168"], "argTypes": [{"nodeId": ".0.140097453407168"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453407168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453407168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453407168", "variance": "INVARIANT"}}, "140097453407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140097453539392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140097453539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407461056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140097453540288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140097453540736": {"type": "Function", "content": {"typeVars": [".0.140097453540736"], "argTypes": [{"nodeId": ".0.140097453540736"}], "returnType": {"nodeId": ".0.140097453540736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453540736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453540736", "variance": "INVARIANT"}}, "140097453541184": {"type": "Function", "content": {"typeVars": [".0.140097453541184"], "argTypes": [{"nodeId": ".0.140097453541184"}], "returnType": {"nodeId": ".0.140097453541184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453541184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, "def": "140097453541184", "variance": "INVARIANT"}}, "140097453541632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140097453542080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": ".1.140097407461056"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140097395567392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453391936"}, {"nodeId": "140097453542976"}]}}, "140097453391936": {"type": "Function", "content": {"typeVars": [".-1.140097453391936"], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".-1.140097453391936"}]}, {"nodeId": "N"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140097453391936": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140097420531904"}, "def": "140097453391936", "variance": "INVARIANT"}}, "140097453542976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097395480768"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140097395480768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140097407461056"}], "returnType": {"nodeId": "140097395568064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097395568064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531792"}}}, "140097453543424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461056", "args": [{"nodeId": ".1.140097407461056"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140097407461408": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453543872"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453544320"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453544768"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453545216"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453545664"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453546112"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453546560"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453547008"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453547456"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453547904"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453548352"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453548800"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453549248"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453549696"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453550144"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453550592"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453551040"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453551488"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453551936"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453552384"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453552832"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453553728"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453554176"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453554624"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453555072"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453654080"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453654976"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453655424"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453655872"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453656320"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453656768"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453657216"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453657664"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453658112"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453658560"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453659008"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453659456"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453659904"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453660352"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453660800"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453661248"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453661696"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453662144"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453662592"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453663040"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453663488"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453663936"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453664384"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097348901392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453664832"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453665280"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453665728"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453666176"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453666624"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453667072"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453667520"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453667968"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453668416"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453668864"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453669312"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453669760"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453785152"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453785600"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453786048"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453786496"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453786944"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453787392"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453787840"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097407461408"}]}], "isAbstract": false}}, "140097453543872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140097453544320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453544768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453545216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499823648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453545664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097395568176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395568176": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097453546112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568288"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568288": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453546560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568400"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568400": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453547008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568512"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568512": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453547456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395568624"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395568624": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453547904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453548352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453548800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453549248": {"type": "Function", "content": {"typeVars": [".0.140097453549248"], "argTypes": [{"nodeId": ".0.140097453549248"}, {"nodeId": "140097395568848"}], "returnType": {"nodeId": ".0.140097453549248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453549248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453549248", "variance": "INVARIANT"}}, "140097395568848": {"type": "Union", "content": {"items": [{"nodeId": "140097407464576"}, {"nodeId": "140097428310144"}]}}, "140097453549696": {"type": "Function", "content": {"typeVars": [".0.140097453549696"], "argTypes": [{"nodeId": ".0.140097453549696"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".0.140097453549696"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097453549696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453549696", "variance": "INVARIANT"}}, "140097453550144": {"type": "Function", "content": {"typeVars": [".0.140097453550144"], "argTypes": [{"nodeId": ".0.140097453550144"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".0.140097453550144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097453550144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453550144", "variance": "INVARIANT"}}, "140097453550592": {"type": "Function", "content": {"typeVars": [".0.140097453550592"], "argTypes": [{"nodeId": ".0.140097453550592"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097453550592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453550592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453550592", "variance": "INVARIANT"}}, "140097453551040": {"type": "Function", "content": {"typeVars": [".0.140097453551040"], "argTypes": [{"nodeId": ".0.140097453551040"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097453551040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453551040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453551040", "variance": "INVARIANT"}}, "140097453551488": {"type": "Function", "content": {"typeVars": [".0.140097453551488"], "argTypes": [{"nodeId": ".0.140097453551488"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453551488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453551488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453551488", "variance": "INVARIANT"}}, "140097453551936": {"type": "Function", "content": {"typeVars": [".0.140097453551936"], "argTypes": [{"nodeId": ".0.140097453551936"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453551936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453551936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453551936", "variance": "INVARIANT"}}, "140097453552384": {"type": "Function", "content": {"typeVars": [".0.140097453552384"], "argTypes": [{"nodeId": ".0.140097453552384"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453552384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453552384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453552384", "variance": "INVARIANT"}}, "140097453552832": {"type": "Function", "content": {"typeVars": [".0.140097453552832"], "argTypes": [{"nodeId": ".0.140097453552832"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097453552832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453552832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453552832", "variance": "INVARIANT"}}, "140097453553728": {"type": "Function", "content": {"typeVars": [".0.140097453553728"], "argTypes": [{"nodeId": ".0.140097453553728"}], "returnType": {"nodeId": ".0.140097453553728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453553728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453553728", "variance": "INVARIANT"}}, "140097453554176": {"type": "Function", "content": {"typeVars": [".0.140097453554176"], "argTypes": [{"nodeId": ".0.140097453554176"}], "returnType": {"nodeId": ".0.140097453554176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453554176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453554176", "variance": "INVARIANT"}}, "140097453554624": {"type": "Function", "content": {"typeVars": [".0.140097453554624"], "argTypes": [{"nodeId": ".0.140097453554624"}, {"nodeId": "140097499822944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453554624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140097453554624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453554624", "variance": "INVARIANT"}}, "140097453555072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569184"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395569184": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453654080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569296"}, {"nodeId": "140097395569408"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097395569296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395569408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453654976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569520"}, {"nodeId": "140097395569632"}, {"nodeId": "140097395569744"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140097395569520": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097395569632": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395569744": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453655424": {"type": "Function", "content": {"typeVars": [".0.140097453655424"], "argTypes": [{"nodeId": ".0.140097453655424"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453655424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140097453655424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453655424", "variance": "INVARIANT"}}, "140097453655872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395569856"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395569856": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453656320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140097453656768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140097453657216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097453657664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453658112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453658560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453659008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453659456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453659904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453660352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453660800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453661248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453661696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453662144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453662592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453663040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140097453663488": {"type": "Function", "content": {"typeVars": [".0.140097453663488"], "argTypes": [{"nodeId": ".0.140097453663488"}, {"nodeId": "140097499822944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453663488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140097453663488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453663488", "variance": "INVARIANT"}}, "140097453663936": {"type": "Function", "content": {"typeVars": [".0.140097453663936"], "argTypes": [{"nodeId": ".0.140097453663936"}], "returnType": {"nodeId": ".0.140097453663936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453663936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453663936", "variance": "INVARIANT"}}, "140097453664384": {"type": "Function", "content": {"typeVars": [".0.140097453664384"], "argTypes": [{"nodeId": ".0.140097453664384"}, {"nodeId": "140097395570416"}], "returnType": {"nodeId": ".0.140097453664384"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140097453664384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453664384", "variance": "INVARIANT"}}, "140097395570416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097348901392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097348978272"}, {"nodeId": "140097348978496"}, {"nodeId": "140097348978720"}]}}, "140097348978272": {"type": "Function", "content": {"typeVars": [".-1.140097348978272"], "argTypes": [{"nodeId": "140097348901056"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097348978272"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097348901056": {"type": "Union", "content": {"items": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": ".-1.140097348978272"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097348978272"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097348900720"}, {"nodeId": ".-1.140097348978272"}]}]}}, ".-1.140097348978272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097348978272", "variance": "INVARIANT"}}, "140097348900720": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097348978496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097348978720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097348901168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097348901168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453664832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395570640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140097395570640": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097453665280": {"type": "Function", "content": {"typeVars": [".0.140097453665280"], "argTypes": [{"nodeId": ".0.140097453665280"}, {"nodeId": "140097395570752"}], "returnType": {"nodeId": ".0.140097453665280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140097453665280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453665280", "variance": "INVARIANT"}}, "140097395570752": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453665728": {"type": "Function", "content": {"typeVars": [".0.140097453665728"], "argTypes": [{"nodeId": ".0.140097453665728"}, {"nodeId": "140097395570864"}], "returnType": {"nodeId": ".0.140097453665728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140097453665728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453665728", "variance": "INVARIANT"}}, "140097395570864": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453666176": {"type": "Function", "content": {"typeVars": [".0.140097453666176"], "argTypes": [{"nodeId": ".0.140097453666176"}, {"nodeId": "140097395570976"}, {"nodeId": "140097395571088"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453666176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140097453666176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453666176", "variance": "INVARIANT"}}, "140097395570976": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097395571088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453666624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571200"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395571200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453667072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571312"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140097395571312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097407461408"}]}}, "140097453667520": {"type": "Function", "content": {"typeVars": [".0.140097453667520"], "argTypes": [{"nodeId": ".0.140097453667520"}, {"nodeId": "140097499822944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453667520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140097453667520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453667520", "variance": "INVARIANT"}}, "140097453667968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395571648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140097395571648": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097453668416": {"type": "Function", "content": {"typeVars": [".0.140097453668416"], "argTypes": [{"nodeId": ".0.140097453668416"}, {"nodeId": "140097395571760"}], "returnType": {"nodeId": ".0.140097453668416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140097453668416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453668416", "variance": "INVARIANT"}}, "140097395571760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453668864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571872"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097395571872": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453669312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395571984"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140097395571984": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453669760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140097453785152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461408"}, {"nodeId": "140097395572096"}, {"nodeId": "140097395572208"}, {"nodeId": "140097395572320"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140097395572096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}]}}, "140097395572208": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395572320": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453785600": {"type": "Function", "content": {"typeVars": [".0.140097453785600"], "argTypes": [{"nodeId": ".0.140097453785600"}, {"nodeId": "140097395572432"}], "returnType": {"nodeId": ".0.140097453785600"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140097453785600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453785600", "variance": "INVARIANT"}}, "140097395572432": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097453786048": {"type": "Function", "content": {"typeVars": [".0.140097453786048"], "argTypes": [{"nodeId": ".0.140097453786048"}], "returnType": {"nodeId": ".0.140097453786048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453786048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453786048", "variance": "INVARIANT"}}, "140097453786496": {"type": "Function", "content": {"typeVars": [".0.140097453786496"], "argTypes": [{"nodeId": ".0.140097453786496"}], "returnType": {"nodeId": ".0.140097453786496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453786496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453786496", "variance": "INVARIANT"}}, "140097453786944": {"type": "Function", "content": {"typeVars": [".0.140097453786944"], "argTypes": [{"nodeId": ".0.140097453786944"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097453786944"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140097453786944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453786944", "variance": "INVARIANT"}}, "140097453787392": {"type": "Function", "content": {"typeVars": [".0.140097453787392"], "argTypes": [{"nodeId": ".0.140097453787392"}], "returnType": {"nodeId": ".0.140097453787392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453787392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453787392", "variance": "INVARIANT"}}, "140097453787840": {"type": "Function", "content": {"typeVars": [".0.140097453787840"], "argTypes": [{"nodeId": ".0.140097453787840"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453787840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140097453787840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461408"}, "def": "140097453787840", "variance": "INVARIANT"}}, "140097407461760": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097348979840"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395567504"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453789632"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453790080"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453790528"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453790976"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453791424"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453791872"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453792320"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453792768"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453793216"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453793664"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453794112"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453794560"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453795008"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453795456"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453795904"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453796352"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453796800"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453797248"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453797696"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453798144"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453798592"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453799040"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453799488"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453799936"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453800384"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453800832"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453883456"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453883904"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407461760"}], "bases": [{"nodeId": "140097499820128", "args": [{"nodeId": ".1.140097407461760"}]}], "isAbstract": false}}, ".1.140097407461760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407461760", "variance": "INVARIANT"}}, "140097348979840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097390624832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390624832": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395567504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453788736"}, {"nodeId": "140097453789184"}]}}, "140097453788736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097390625056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140097390625056": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453789184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097390625168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140097390625168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097453789632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453790080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453790528": {"type": "Function", "content": {"typeVars": [".0.140097453790528"], "argTypes": [{"nodeId": ".0.140097453790528"}], "returnType": {"nodeId": ".0.140097453790528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453790528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453790528", "variance": "INVARIANT"}}, "140097453790976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453791424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453791872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453792320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499822944"}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097453792768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140097453793216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": ".1.140097407461760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453793664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": ".1.140097407461760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453794112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453794560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097453795008": {"type": "Function", "content": {"typeVars": [".0.140097453795008"], "argTypes": [{"nodeId": ".0.140097453795008"}], "returnType": {"nodeId": ".0.140097453795008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453795008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453795008", "variance": "INVARIANT"}}, "140097453795456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453795904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": ".1.140097407461760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453796352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407464576"}, {"nodeId": ".1.140097407461760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453796800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453797248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453797696": {"type": "Function", "content": {"typeVars": [".0.140097453797696"], "argTypes": [{"nodeId": ".0.140097453797696"}], "returnType": {"nodeId": "140097390625728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453797696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453797696", "variance": "INVARIANT"}}, "140097390625728": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097390625504"}, {"nodeId": "N"}, {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407461760"}]}]}}, "140097390625504": {"type": "Tuple", "content": {"items": []}}, "140097453798144": {"type": "Function", "content": {"typeVars": [".0.140097453798144"], "argTypes": [{"nodeId": ".0.140097453798144"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": ".0.140097453798144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453798144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453798144", "variance": "INVARIANT"}}, "140097453798592": {"type": "Function", "content": {"typeVars": [".0.140097453798592"], "argTypes": [{"nodeId": ".0.140097453798592"}, {"nodeId": ".0.140097453798592"}], "returnType": {"nodeId": ".0.140097453798592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453798592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453798592", "variance": "INVARIANT"}}, "140097453799040": {"type": "Function", "content": {"typeVars": [".0.140097453799040"], "argTypes": [{"nodeId": ".0.140097453799040"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453799040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453799040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453799040", "variance": "INVARIANT"}}, "140097453799488": {"type": "Function", "content": {"typeVars": [".0.140097453799488"], "argTypes": [{"nodeId": ".0.140097453799488"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097453799488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453799488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, "def": "140097453799488", "variance": "INVARIANT"}}, "140097453799936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453800384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453800832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453883456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}, {"nodeId": "140097407461760", "args": [{"nodeId": ".1.140097407461760"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453883904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140097407286112": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395568736"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453886144"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453886592"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453887040"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097349080384"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390625280"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390626064"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453890624"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453891072"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453891520"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453891968"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453892416"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453892864"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453893312"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453893760"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453894208"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453894656"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453895104"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453895552"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453896000"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453896448"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453896896"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453897344"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453897792"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453898240"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453898688"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140097407286112"}], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "isAbstract": false}}, ".1.140097407286112": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407286112", "variance": "INVARIANT"}}, "140097395568736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453884352"}, {"nodeId": "140097453884800"}, {"nodeId": "140097453885248"}, {"nodeId": "140097453885696"}]}}, "140097453884352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097453884800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453885248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453885696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453886144": {"type": "Function", "content": {"typeVars": [".0.140097453886144"], "argTypes": [{"nodeId": ".0.140097453886144"}], "returnType": {"nodeId": ".0.140097453886144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097453886144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453886144", "variance": "INVARIANT"}}, "140097453886592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453887040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097390626176"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097390626400"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140097390626176": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097390626400": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}}, "140097349080384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140097390626624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140097390626624": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097390625280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453887936"}, {"nodeId": "140097453888384"}, {"nodeId": "140097453888832"}]}}, "140097453887936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097453888384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097453888832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097390626064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453889280"}, {"nodeId": "140097453889728"}, {"nodeId": "140097453890176"}]}}, "140097453889280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453889728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453890176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "N"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097453890624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": ".1.140097407286112"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140097453891072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453891520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453891968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453892416": {"type": "Function", "content": {"typeVars": [".-1.140097453892416"], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".-1.140097453892416"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": "140097390626960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453892416": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453892416", "variance": "INVARIANT"}}, "140097390626960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407286112"}, {"nodeId": ".-1.140097453892416"}]}}, "140097453892864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453893312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453893760": {"type": "Function", "content": {"typeVars": [".-1.140097453893760"], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": ".-1.140097453893760"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": "140097390627072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453893760": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453893760", "variance": "INVARIANT"}}, "140097390627072": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407286112"}, {"nodeId": ".-1.140097453893760"}]}}, "140097453894208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453894656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453895104": {"type": "Function", "content": {"typeVars": [".0.140097453895104"], "argTypes": [{"nodeId": ".0.140097453895104"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453895104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453895104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453895104", "variance": "INVARIANT"}}, "140097453895552": {"type": "Function", "content": {"typeVars": [".0.140097453895552"], "argTypes": [{"nodeId": ".0.140097453895552"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453895552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453895552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453895552", "variance": "INVARIANT"}}, "140097453896000": {"type": "Function", "content": {"typeVars": [".0.140097453896000"], "argTypes": [{"nodeId": ".0.140097453896000"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453896000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453896000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453896000", "variance": "INVARIANT"}}, "140097453896448": {"type": "Function", "content": {"typeVars": [".0.140097453896448"], "argTypes": [{"nodeId": ".0.140097453896448"}, {"nodeId": "140097419752576", "args": [{"nodeId": ".1.140097407286112"}, {"nodeId": "140097499822944"}]}], "returnType": {"nodeId": ".0.140097453896448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453896448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, "def": "140097453896448", "variance": "INVARIANT"}}, "140097453896896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453897344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453897792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453898240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453898688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286112", "args": [{"nodeId": ".1.140097407286112"}]}, {"nodeId": "140097407286112", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097419740960": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453899136"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097419740960"}], "bases": [{"nodeId": "140097407454720", "args": [{"nodeId": ".1.140097419740960"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097419740960"}]}], "isAbstract": false}}, ".1.140097419740960": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419740960", "variance": "COVARIANT"}}, "140097453899136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740960", "args": [{"nodeId": ".1.140097419740960"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097419740960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419741312": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454014528"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}], "bases": [{"nodeId": "140097407454368", "args": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": "140097429059200"}]}], "isAbstract": false}}, ".1.140097419741312": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419741312", "variance": "COVARIANT"}}, ".2.140097419741312": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419741312", "variance": "COVARIANT"}}, "140097454014528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419741312", "args": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097390627744"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097390627744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}}, "140097429059200": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097419741312"}, {"nodeId": ".2.140097419741312"}]}}, "140097419741664": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454014976"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097419741664"}], "bases": [{"nodeId": "140097407455072", "args": [{"nodeId": ".1.140097419741664"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097419741664"}]}], "isAbstract": false}}, ".1.140097419741664": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419741664", "variance": "COVARIANT"}}, "140097454014976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419741664", "args": [{"nodeId": ".1.140097419741664"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097419741664"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407462112": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454015424"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407462112"}, {"nodeId": ".2.140097407462112"}], "bases": [{"nodeId": "140097407457184", "args": [{"nodeId": ".1.140097407462112"}, {"nodeId": ".2.140097407462112"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097407462112"}]}], "isAbstract": false}}, ".1.140097407462112": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462112", "variance": "COVARIANT"}}, ".2.140097407462112": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462112", "variance": "COVARIANT"}}, "140097454015424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407462112", "args": [{"nodeId": ".1.140097407462112"}, {"nodeId": ".2.140097407462112"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407462112"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407462464": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454015872"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}], "bases": [{"nodeId": "140097407457888", "args": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": "140097407566896"}]}], "isAbstract": false}}, ".1.140097407462464": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462464", "variance": "COVARIANT"}}, ".2.140097407462464": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462464", "variance": "COVARIANT"}}, "140097454015872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407462464", "args": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097390627968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097390627968": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}}, "140097407566896": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407462464"}, {"nodeId": ".2.140097407462464"}]}}, "140097407462816": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454016320"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140097407462816"}, {"nodeId": ".2.140097407462816"}], "bases": [{"nodeId": "140097407457536", "args": [{"nodeId": ".1.140097407462816"}, {"nodeId": ".2.140097407462816"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".2.140097407462816"}]}], "isAbstract": false}}, ".1.140097407462816": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462816", "variance": "COVARIANT"}}, ".2.140097407462816": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407462816", "variance": "COVARIANT"}}, "140097454016320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407462816", "args": [{"nodeId": ".1.140097407462816"}, {"nodeId": ".2.140097407462816"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".2.140097407462816"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097407463168": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454016768"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454017216"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454017664"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454018112"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454018560"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454019008"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454019456"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390626736"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390628304"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": "140097499816608", "args": [{"nodeId": ".1.140097407463168"}]}], "isAbstract": false}}, ".1.140097407463168": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463168", "variance": "INVARIANT"}}, ".2.140097407463168": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463168", "variance": "INVARIANT"}}, "140097454016768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097390628192"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140097390628192": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}}, "140097454017216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": ".1.140097407463168"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140097454017664": {"type": "Function", "content": {"typeVars": [".0.140097454017664"], "argTypes": [{"nodeId": ".0.140097454017664"}], "returnType": {"nodeId": ".0.140097454017664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454017664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "def": "140097454017664", "variance": "INVARIANT"}}, "140097454018112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097454018560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097407462112", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097454019008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097407462464", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097454019456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}], "returnType": {"nodeId": "140097407462816", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390626736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454019904"}, {"nodeId": "140097454020352"}]}}, "140097454019904": {"type": "Function", "content": {"typeVars": [".-1.140097454019904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454019904"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407463168", "args": [{"nodeId": ".-1.140097454019904"}, {"nodeId": "140097390628640"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097454019904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454019904", "variance": "INVARIANT"}}, "140097390628640": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097454020352": {"type": "Function", "content": {"typeVars": [".-1.140097454020352", ".-2.140097454020352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454020352"}]}, {"nodeId": ".-2.140097454020352"}], "returnType": {"nodeId": "140097407463168", "args": [{"nodeId": ".-1.140097454020352"}, {"nodeId": ".-2.140097454020352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140097454020352": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454020352", "variance": "INVARIANT"}}, ".-2.140097454020352": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454020352", "variance": "INVARIANT"}}, "140097390628304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454020800"}, {"nodeId": "140097454021248"}]}}, "140097454020800": {"type": "Function", "content": {"typeVars": [".-1.140097454020800"], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": "140097390628864"}]}, {"nodeId": ".1.140097407463168"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097390628976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140097390628864": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454020800"}, {"nodeId": "N"}]}}, ".-1.140097454020800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454020800", "variance": "INVARIANT"}}, "140097390628976": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454020800"}, {"nodeId": "N"}]}}, "140097454021248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463168", "args": [{"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}]}, {"nodeId": ".1.140097407463168"}, {"nodeId": ".2.140097407463168"}], "returnType": {"nodeId": ".2.140097407463168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140097407286464": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407567120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390628416"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454025280"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454025728"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454026176"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}], "isAbstract": false}}, ".1.140097407286464": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407286464", "variance": "INVARIANT"}}, ".2.140097407286464": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407286464", "variance": "INVARIANT"}}, "140097407567120": {"type": "Union", "content": {"items": [{"nodeId": "140097415605248"}, {"nodeId": "N"}]}}, "140097415605248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097390628416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454021696"}, {"nodeId": "140097454022144"}, {"nodeId": "140097454022592"}, {"nodeId": "140097454023040"}, {"nodeId": "140097454023488"}, {"nodeId": "140097454023936"}, {"nodeId": "140097454024384"}, {"nodeId": "140097454024832"}]}}, "140097454021696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097454022144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140097454022592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097390629200": {"type": "Union", "content": {"items": [{"nodeId": "140097395481440"}, {"nodeId": "N"}]}}, "140097395481440": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454023040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629312"}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140097390629312": {"type": "Union", "content": {"items": [{"nodeId": "140097395481664"}, {"nodeId": "N"}]}}, "140097395481664": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454023488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629424"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097390629424": {"type": "Union", "content": {"items": [{"nodeId": "140097395480992"}, {"nodeId": "N"}]}}, "140097395480992": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454023936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629536"}, {"nodeId": "140097419752928", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140097390629536": {"type": "Union", "content": {"items": [{"nodeId": "140097395481888"}, {"nodeId": "N"}]}}, "140097395481888": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097454024384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629648"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097390629872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097390629648": {"type": "Union", "content": {"items": [{"nodeId": "140097395482112"}, {"nodeId": "N"}]}}, "140097395482112": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097390629872": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}}, "140097454024832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": "140097390629984"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097390630208"}]}, {"nodeId": ".2.140097407286464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140097390629984": {"type": "Union", "content": {"items": [{"nodeId": "140097395482336"}, {"nodeId": "N"}]}}, "140097395482336": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": [], "argNames": []}}, "140097390630208": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".2.140097407286464"}]}}, "140097454025280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, {"nodeId": ".1.140097407286464"}], "returnType": {"nodeId": ".2.140097407286464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097454025728": {"type": "Function", "content": {"typeVars": [".0.140097454025728"], "argTypes": [{"nodeId": ".0.140097454025728"}], "returnType": {"nodeId": ".0.140097454025728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454025728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, "def": "140097454025728", "variance": "INVARIANT"}}, "140097454026176": {"type": "Function", "content": {"typeVars": [".0.140097454026176"], "argTypes": [{"nodeId": ".0.140097454026176"}], "returnType": {"nodeId": ".0.140097454026176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454026176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407286464", "args": [{"nodeId": ".1.140097407286464"}, {"nodeId": ".2.140097407286464"}]}, "def": "140097454026176", "variance": "INVARIANT"}}, "140097407463520": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454026624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454027072"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097349471360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454027968"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454028416"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454028864"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454029312"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454029760"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454030208"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454194752"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454195200"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390628752"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390630432"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454197440"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097349474048"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390630656"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454198784"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097454199232"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097390630992"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "isAbstract": false}}, ".1.140097407463520": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463520", "variance": "INVARIANT"}}, ".2.140097407463520": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407463520", "variance": "INVARIANT"}}, "140097454026624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140097454027072": {"type": "Function", "content": {"typeVars": [".0.140097454027072"], "argTypes": [{"nodeId": ".0.140097454027072"}, {"nodeId": "140097390630544"}], "returnType": {"nodeId": ".0.140097454027072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140097454027072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454027072", "variance": "INVARIANT"}}, "140097390630544": {"type": "Union", "content": {"items": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "N"}]}}, "140097349471360": {"type": "Function", "content": {"typeVars": [".0.140097349471360"], "argTypes": [{"nodeId": ".0.140097349471360"}], "returnType": {"nodeId": ".0.140097349471360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097349471360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097349471360", "variance": "INVARIANT"}}, "140097454027968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097454028416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097454028864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097454029312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407463520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097454029760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097454030208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097454194752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140097454195200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390628752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454195648"}, {"nodeId": "140097454196096"}]}}, "140097454195648": {"type": "Function", "content": {"typeVars": [".-1.140097454195648"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": "140097390630768"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097390630880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140097390630768": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454195648"}, {"nodeId": "N"}]}}, ".-1.140097454195648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454195648", "variance": "INVARIANT"}}, "140097390630880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140097454195648"}, {"nodeId": "N"}]}}, "140097454196096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140097390630432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454196544"}, {"nodeId": "140097454196992"}]}}, "140097454196544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}], "returnType": {"nodeId": ".2.140097407463520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140097454196992": {"type": "Function", "content": {"typeVars": [".-1.140097454196992"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": ".1.140097407463520"}, {"nodeId": "140097390631104"}], "returnType": {"nodeId": "140097390631216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140097390631104": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-1.140097454196992"}]}}, ".-1.140097454196992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454196992", "variance": "INVARIANT"}}, "140097390631216": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-1.140097454196992"}]}}, "140097454197440": {"type": "Function", "content": {"typeVars": [".0.140097454197440"], "argTypes": [{"nodeId": ".0.140097454197440"}], "returnType": {"nodeId": ".0.140097454197440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097454197440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454197440", "variance": "INVARIANT"}}, "140097349474048": {"type": "Function", "content": {"typeVars": [".0.140097349474048"], "argTypes": [{"nodeId": ".0.140097349474048"}], "returnType": {"nodeId": ".0.140097349474048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097349474048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097349474048", "variance": "INVARIANT"}}, "140097390630656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454197888"}, {"nodeId": "140097454198336"}]}}, "140097454197888": {"type": "Function", "content": {"typeVars": [".-1.140097454197888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454197888"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": ".-1.140097454197888"}, {"nodeId": "140097390631552"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140097454197888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454197888", "variance": "INVARIANT"}}, "140097390631552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097454198336": {"type": "Function", "content": {"typeVars": [".-1.140097454198336", ".-2.140097454198336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": ".-1.140097454198336"}]}, {"nodeId": ".-2.140097454198336"}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": ".-1.140097454198336"}, {"nodeId": ".-2.140097454198336"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140097454198336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198336", "variance": "INVARIANT"}}, ".-2.140097454198336": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198336", "variance": "INVARIANT"}}, "140097454198784": {"type": "Function", "content": {"typeVars": [".-1.140097454198784", ".-2.140097454198784"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097454198784"}, {"nodeId": ".-2.140097454198784"}]}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": "140097390631664"}, {"nodeId": "140097390631776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097454198784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198784", "variance": "INVARIANT"}}, ".-2.140097454198784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454198784", "variance": "INVARIANT"}}, "140097390631664": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".-1.140097454198784"}]}}, "140097390631776": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-2.140097454198784"}]}}, "140097454199232": {"type": "Function", "content": {"typeVars": [".-1.140097454199232", ".-2.140097454199232"], "argTypes": [{"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097454199232"}, {"nodeId": ".-2.140097454199232"}]}], "returnType": {"nodeId": "140097407463520", "args": [{"nodeId": "140097390631888"}, {"nodeId": "140097390632000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097454199232": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454199232", "variance": "INVARIANT"}}, ".-2.140097454199232": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097454199232", "variance": "INVARIANT"}}, "140097390631888": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".-1.140097454199232"}]}}, "140097390632000": {"type": "Union", "content": {"items": [{"nodeId": ".2.140097407463520"}, {"nodeId": ".-2.140097454199232"}]}}, "140097390630992": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454199680"}, {"nodeId": "140097454200128"}]}}, "140097454199680": {"type": "Function", "content": {"typeVars": [".0.140097454199680"], "argTypes": [{"nodeId": ".0.140097454199680"}, {"nodeId": "140097419752928", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}], "returnType": {"nodeId": ".0.140097454199680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097454199680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454199680", "variance": "INVARIANT"}}, "140097454200128": {"type": "Function", "content": {"typeVars": [".0.140097454200128"], "argTypes": [{"nodeId": ".0.140097454200128"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097390632336"}]}], "returnType": {"nodeId": ".0.140097454200128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097454200128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407463520", "args": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}, "def": "140097454200128", "variance": "INVARIANT"}}, "140097390632336": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407463520"}, {"nodeId": ".2.140097407463520"}]}}, "140097428530880": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097462531200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462529792"}], "isAbstract": false}}, "140097462531200": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352645792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432169248"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097462530848"}], "isAbstract": false}}, "140097352645792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432169248": {"type": "Function", "content": {"typeVars": [".0.140097432169248"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097432169248"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097432169248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462531200"}, "def": "140097432169248", "variance": "INVARIANT"}}, "140097462530848": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432167008"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432167456"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432167904"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432168352"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352640416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352643104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352644224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}, {"nodeId": "140097462530496"}], "isAbstract": false}}, "140097432167008": {"type": "Function", "content": {"typeVars": [".0.140097432167008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432167008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140097432167008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432167008", "variance": "INVARIANT"}}, "140097432167456": {"type": "Function", "content": {"typeVars": [".0.140097432167456"], "argTypes": [{"nodeId": ".0.140097432167456"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432167456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432167456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432167456", "variance": "INVARIANT"}}, "140097432167904": {"type": "Function", "content": {"typeVars": [".0.140097432167904"], "argTypes": [{"nodeId": ".0.140097432167904"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432167904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432167904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432167904", "variance": "INVARIANT"}}, "140097432168352": {"type": "Function", "content": {"typeVars": [".0.140097432168352"], "argTypes": [{"nodeId": ".0.140097432168352"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097432168352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432168352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097432168352", "variance": "INVARIANT"}}, "140097352640416": {"type": "Function", "content": {"typeVars": [".0.140097352640416"], "argTypes": [{"nodeId": ".0.140097352640416"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097352640416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097352640416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097352640416", "variance": "INVARIANT"}}, "140097352643104": {"type": "Function", "content": {"typeVars": [".0.140097352643104"], "argTypes": [{"nodeId": ".0.140097352643104"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097352643104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097352643104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097352643104", "variance": "INVARIANT"}}, "140097352644224": {"type": "Function", "content": {"typeVars": [".0.140097352644224"], "argTypes": [{"nodeId": ".0.140097352644224"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097352644224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097352644224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530848"}, "def": "140097352644224", "variance": "INVARIANT"}}, "140097462530496": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415892096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352632352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352633696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441709216"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441709664"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432158496"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432158944"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432159392"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432159840"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140097462529792"}], "isAbstract": false}}, "140097415892096": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097352632352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530496"}], "returnType": {"nodeId": "140097395189440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395189440": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097352633696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530496"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441709216": {"type": "Function", "content": {"typeVars": [".0.140097441709216"], "argTypes": [{"nodeId": ".0.140097441709216"}, {"nodeId": ".0.140097441709216"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097441709216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097441709216", "variance": "INVARIANT"}}, "140097441709664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530496"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432158496": {"type": "Function", "content": {"typeVars": [".0.140097432158496"], "argTypes": [{"nodeId": ".0.140097432158496"}, {"nodeId": ".0.140097432158496"}], "returnType": {"nodeId": ".0.140097432158496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432158496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432158496", "variance": "INVARIANT"}}, "140097432158944": {"type": "Function", "content": {"typeVars": [".0.140097432158944"], "argTypes": [{"nodeId": ".0.140097432158944"}, {"nodeId": ".0.140097432158944"}], "returnType": {"nodeId": ".0.140097432158944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432158944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432158944", "variance": "INVARIANT"}}, "140097432159392": {"type": "Function", "content": {"typeVars": [".0.140097432159392"], "argTypes": [{"nodeId": ".0.140097432159392"}, {"nodeId": ".0.140097432159392"}], "returnType": {"nodeId": ".0.140097432159392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432159392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432159392", "variance": "INVARIANT"}}, "140097432159840": {"type": "Function", "content": {"typeVars": [".0.140097432159840"], "argTypes": [{"nodeId": ".0.140097432159840"}], "returnType": {"nodeId": ".0.140097432159840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097432159840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530496"}, "def": "140097432159840", "variance": "INVARIANT"}}, "140097462529792": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357755808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357756480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415891872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357756704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357756928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441705184"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441705632"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441706080"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441706528"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097357755808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357756480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415891872": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097357756704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140097357756928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140097441705184": {"type": "Function", "content": {"typeVars": [".0.140097441705184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": ".0.140097441705184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140097441705184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462529792"}, "def": "140097441705184", "variance": "INVARIANT"}}, "140097441705632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441706080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140097441706528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529792"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140097428531232": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428532288": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428318592"}], "isAbstract": false}}, "140097428532640": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453296096"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395420496"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097428532640"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097428532640": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428532640", "variance": "INVARIANT"}}, "140097453296096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428532640", "args": [{"nodeId": ".1.140097428532640"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140097395420496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453296544"}, {"nodeId": "140097453296992"}]}}, "140097453296544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097428532640", "args": [{"nodeId": ".1.140097428532640"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140097453296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097428532640", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140097407727072": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453300576"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453301472"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453301920"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453302368"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453302816"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453303264"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453303712"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453304160"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453304608"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097453305056"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399628048"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140097407727072"}], "bases": [{"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}], "isAbstract": false}}, ".1.140097407727072": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407727072", "variance": "INVARIANT"}}, "140097453300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": "140097499821536", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140097453301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": ".1.140097407727072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140097453301920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097453302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453302816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": ".1.140097407727072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097453303264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097453303712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097407727072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453304160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097453304608": {"type": "Function", "content": {"typeVars": [".-1.140097453304608", ".-2.140097453304608"], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097453304608"}, {"nodeId": ".-2.140097453304608"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097399633312"}, {"nodeId": "140097399633424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453304608": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453304608", "variance": "INVARIANT"}}, ".-2.140097453304608": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453304608", "variance": "INVARIANT"}}, "140097399633312": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-1.140097453304608"}]}}, "140097399633424": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-2.140097453304608"}]}}, "140097453305056": {"type": "Function", "content": {"typeVars": [".-1.140097453305056", ".-2.140097453305056"], "argTypes": [{"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": ".-1.140097453305056"}, {"nodeId": ".-2.140097453305056"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097399633536"}, {"nodeId": "140097399633648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097453305056": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453305056", "variance": "INVARIANT"}}, ".-2.140097453305056": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097453305056", "variance": "INVARIANT"}}, "140097399633536": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-1.140097453305056"}]}}, "140097399633648": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".-2.140097453305056"}]}}, "140097399628048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097453305504"}, {"nodeId": "140097453305952"}]}}, "140097453305504": {"type": "Function", "content": {"typeVars": [".0.140097453305504"], "argTypes": [{"nodeId": ".0.140097453305504"}, {"nodeId": "140097499821184", "args": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}], "returnType": {"nodeId": ".0.140097453305504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453305504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, "def": "140097453305504", "variance": "INVARIANT"}}, "140097453305952": {"type": "Function", "content": {"typeVars": [".0.140097453305952"], "argTypes": [{"nodeId": ".0.140097453305952"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097399634096"}]}], "returnType": {"nodeId": ".0.140097453305952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097453305952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407727072", "args": [{"nodeId": ".1.140097407727072"}]}, "def": "140097453305952", "variance": "INVARIANT"}}, "140097399634096": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407727072"}, {"nodeId": ".1.140097407727072"}]}}, "140097403221472": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365858944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365641024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365639456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365622144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365622368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365621472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365620576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365619904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365619680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365620128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499823296"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097365858944": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365641024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634320"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634320": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634432"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634432": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634544"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634656"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634656": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365639456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634768"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634768": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634880"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634880": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365622144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399634992"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399634992": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365622368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635104"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635104": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635216"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635328"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365621472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635552"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365620576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635664"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635664": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365619904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097399635776"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399635776": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365619680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394622528"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394622528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097365620128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394622640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394622640": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097407727424": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365614528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365612736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449992800"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449993248"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449993696"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449994144"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449994592"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449995040"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449995488"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407727424"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407727424": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407727424", "variance": "INVARIANT"}}, "140097365614528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": ".1.140097407727424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365612736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": ".1.140097407727424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449992800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449993248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097449993696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097449994144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449994592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097394623088"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097394623088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403598464"}}}, "140097403598464": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097449995040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097407727424"}]}], "returnType": {"nodeId": ".1.140097407727424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449995488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097403406112": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365867232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365605312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365604640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365603968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365603744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365603072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365602848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365601504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365600832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365600160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365599488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365597696"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097365867232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365605312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623424"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623424": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365604640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623536"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623536": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365603968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623648"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623648": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365603744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623760"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365603072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623872"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623872": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365602848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394623984"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394623984": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365601504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624096"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624096": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365600832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624208"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624208": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365600160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624320"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624320": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365599488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624432"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624432": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365597696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394624544"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394624544": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403406464": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097366098432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365596576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365595904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365595008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365595456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365594336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097366098432": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365596576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625104": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365595904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625216"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365595008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625328"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365595456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625440"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625440": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365594336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394625552"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394625552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097403406816": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097366104816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365540224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365538880"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097366104816": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365540224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394633280"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394633280": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097365538880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394633392"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394633392": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403407168": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445310112"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445310560"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445311008"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140097403407168"}], "bases": [{"nodeId": "140097499816256", "args": [{"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097403407168"}]}]}, {"nodeId": "140097428532992", "args": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}]}], "isAbstract": false}}, ".1.140097403407168": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097403407168", "variance": "INVARIANT"}}, "140097445310112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}], "returnType": {"nodeId": "140097407727424", "args": [{"nodeId": ".1.140097403407168"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097445310560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140097445311008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407168", "args": [{"nodeId": ".1.140097403407168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428532992": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440941664"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097353446592"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097428532992"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140097428532992": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428532992", "variance": "COVARIANT"}}, "140097440941664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428532992"}]}], "returnType": {"nodeId": ".1.140097428532992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097353446592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428532992"}]}, {"nodeId": "140097395424416"}, {"nodeId": "140097395424528"}, {"nodeId": "140097395424640"}], "returnType": {"nodeId": "140097395424752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395424416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395424528": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395424640": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395424752": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097403407520": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445473952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445474400"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097462519936"}], "isAbstract": false}}, "140097445473952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407520"}, {"nodeId": "140097462519936"}, {"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140097407723904": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403591184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403597680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403360352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407581232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407581344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399153136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416134720"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416135168"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416135616"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416136064"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416136512"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416136960"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416137408"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416137856"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416138304"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407723904"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407723904": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407723904", "variance": "INVARIANT"}}, "140097403591184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097403359792": {"type": "Union", "content": {"items": [{"nodeId": "140097403359344"}, {"nodeId": "140097499819776", "args": [{"nodeId": "140097403359008"}]}]}}, "140097403359344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097403359008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097403597680": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "N"}]}}, "140097403360352": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "N"}]}}, "140097407581232": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "N"}]}}, "140097407581344": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "A"}]}}, "140097399153136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097432638784"}, {"nodeId": "140097415602560"}, {"nodeId": "140097415603008"}, {"nodeId": "140097415603456"}, {"nodeId": "140097415603904"}, {"nodeId": "140097415604352"}]}}, "140097432638784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399355120"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399355344"}, {"nodeId": "140097399355568"}, {"nodeId": "140097399355792"}, {"nodeId": "140097399356016"}, {"nodeId": "140097399356128"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399356464"}, {"nodeId": "140097399356688"}, {"nodeId": "140097399356800"}, {"nodeId": "140097399357024"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399357136"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399357248"}, {"nodeId": "140097399390272"}, {"nodeId": "140097399390384"}, {"nodeId": "140097399390608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399355120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399355344": {"type": "Union", "content": {"items": [{"nodeId": "140097399355232"}, {"nodeId": "N"}]}}, "140097399355232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399355568": {"type": "Union", "content": {"items": [{"nodeId": "140097399355456"}, {"nodeId": "N"}]}}, "140097399355456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097407579776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407455424", "args": [{"nodeId": "A"}]}]}}, "140097399355792": {"type": "Union", "content": {"items": [{"nodeId": "140097399355680"}, {"nodeId": "N"}]}}, "140097399355680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399356016": {"type": "Union", "content": {"items": [{"nodeId": "140097399355904"}, {"nodeId": "N"}]}}, "140097399355904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399356128": {"type": "Union", "content": {"items": [{"nodeId": "140097432641248"}, {"nodeId": "N"}]}}, "140097432641248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399356464": {"type": "Union", "content": {"items": [{"nodeId": "140097399356352"}, {"nodeId": "N"}]}}, "140097399356352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399356688": {"type": "Union", "content": {"items": [{"nodeId": "140097399356576"}, {"nodeId": "N"}]}}, "140097399356576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097403360576": {"type": "Union", "content": {"items": [{"nodeId": "140097499821184", "args": [{"nodeId": "140097428309088"}, {"nodeId": "140097403360128"}]}, {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097403359680"}]}]}}, "140097403360128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097403359680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399356800": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399357024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399357136": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399357248": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399390272": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399390384": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399390608": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399390496"}]}, {"nodeId": "N"}]}}, "140097399390496": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415602560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399390720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399390944"}, {"nodeId": "140097399391168"}, {"nodeId": "140097399391392"}, {"nodeId": "140097399391616"}, {"nodeId": "140097399391728"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399392064"}, {"nodeId": "140097399392288"}, {"nodeId": "140097399392400"}, {"nodeId": "140097399392624"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399392736"}, {"nodeId": "140097399392848"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399392960"}, {"nodeId": "140097399393072"}, {"nodeId": "140097399393296"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399390720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399390944": {"type": "Union", "content": {"items": [{"nodeId": "140097399390832"}, {"nodeId": "N"}]}}, "140097399390832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399391168": {"type": "Union", "content": {"items": [{"nodeId": "140097399391056"}, {"nodeId": "N"}]}}, "140097399391056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399391392": {"type": "Union", "content": {"items": [{"nodeId": "140097399391280"}, {"nodeId": "N"}]}}, "140097399391280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399391616": {"type": "Union", "content": {"items": [{"nodeId": "140097399391504"}, {"nodeId": "N"}]}}, "140097399391504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399391728": {"type": "Union", "content": {"items": [{"nodeId": "140097432642144"}, {"nodeId": "N"}]}}, "140097432642144": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399392064": {"type": "Union", "content": {"items": [{"nodeId": "140097399391952"}, {"nodeId": "N"}]}}, "140097399391952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399392288": {"type": "Union", "content": {"items": [{"nodeId": "140097399392176"}, {"nodeId": "N"}]}}, "140097399392176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399392400": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399392624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399392736": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399392848": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399392960": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399393072": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399393296": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399393184"}]}, {"nodeId": "N"}]}}, "140097399393184": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415603008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399393408"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399393632"}, {"nodeId": "140097399393856"}, {"nodeId": "140097399394080"}, {"nodeId": "140097399394304"}, {"nodeId": "140097399394416"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399394752"}, {"nodeId": "140097399394976"}, {"nodeId": "0"}, {"nodeId": "140097399395312"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399395424"}, {"nodeId": "140097399395536"}, {"nodeId": "140097399395648"}, {"nodeId": "140097399395760"}, {"nodeId": "140097399395872"}, {"nodeId": "140097399396096"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399393408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399393632": {"type": "Union", "content": {"items": [{"nodeId": "140097399393520"}, {"nodeId": "N"}]}}, "140097399393520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399393856": {"type": "Union", "content": {"items": [{"nodeId": "140097399393744"}, {"nodeId": "N"}]}}, "140097399393744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399394080": {"type": "Union", "content": {"items": [{"nodeId": "140097399393968"}, {"nodeId": "N"}]}}, "140097399393968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399394304": {"type": "Union", "content": {"items": [{"nodeId": "140097399394192"}, {"nodeId": "N"}]}}, "140097399394192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399394416": {"type": "Union", "content": {"items": [{"nodeId": "140097432639008"}, {"nodeId": "N"}]}}, "140097432639008": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399394752": {"type": "Union", "content": {"items": [{"nodeId": "140097399394640"}, {"nodeId": "N"}]}}, "140097399394640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399394976": {"type": "Union", "content": {"items": [{"nodeId": "140097399394864"}, {"nodeId": "N"}]}}, "140097399394864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399395312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399395424": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399395536": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399395648": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399395760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399395872": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399396096": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399395984"}]}, {"nodeId": "N"}]}}, "140097399395984": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415603456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399396208"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399396432"}, {"nodeId": "140097399396656"}, {"nodeId": "140097399396880"}, {"nodeId": "140097399397104"}, {"nodeId": "140097399397216"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399397552"}, {"nodeId": "140097399397776"}, {"nodeId": "140097399397888"}, {"nodeId": "140097399398112"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "0"}, {"nodeId": "140097399398336"}, {"nodeId": "140097399398448"}, {"nodeId": "140097399398560"}, {"nodeId": "140097399398672"}, {"nodeId": "140097399398896"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399396208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399396432": {"type": "Union", "content": {"items": [{"nodeId": "140097399396320"}, {"nodeId": "N"}]}}, "140097399396320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399396656": {"type": "Union", "content": {"items": [{"nodeId": "140097399396544"}, {"nodeId": "N"}]}}, "140097399396544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399396880": {"type": "Union", "content": {"items": [{"nodeId": "140097399396768"}, {"nodeId": "N"}]}}, "140097399396768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399397104": {"type": "Union", "content": {"items": [{"nodeId": "140097399396992"}, {"nodeId": "N"}]}}, "140097399396992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399397216": {"type": "Union", "content": {"items": [{"nodeId": "140097432638560"}, {"nodeId": "N"}]}}, "140097432638560": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399397552": {"type": "Union", "content": {"items": [{"nodeId": "140097399397440"}, {"nodeId": "N"}]}}, "140097399397440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399397776": {"type": "Union", "content": {"items": [{"nodeId": "140097399397664"}, {"nodeId": "N"}]}}, "140097399397664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399397888": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399398112": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399398336": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399398448": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399398560": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399398672": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399398896": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399398784"}]}, {"nodeId": "N"}]}}, "140097399398784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415603904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097399399008"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399399232"}, {"nodeId": "140097399399456"}, {"nodeId": "140097399399680"}, {"nodeId": "140097399399904"}, {"nodeId": "140097399400016"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399400352"}, {"nodeId": "140097399400576"}, {"nodeId": "140097399400912"}, {"nodeId": "140097399401024"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399401360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140097399401248"}, {"nodeId": "140097399401472"}, {"nodeId": "140097399401696"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399399008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399399232": {"type": "Union", "content": {"items": [{"nodeId": "140097399399120"}, {"nodeId": "N"}]}}, "140097399399120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399399456": {"type": "Union", "content": {"items": [{"nodeId": "140097399399344"}, {"nodeId": "N"}]}}, "140097399399344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399399680": {"type": "Union", "content": {"items": [{"nodeId": "140097399399568"}, {"nodeId": "N"}]}}, "140097399399568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399399904": {"type": "Union", "content": {"items": [{"nodeId": "140097399399792"}, {"nodeId": "N"}]}}, "140097399399792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399400016": {"type": "Union", "content": {"items": [{"nodeId": "140097432639680"}, {"nodeId": "N"}]}}, "140097432639680": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399400352": {"type": "Union", "content": {"items": [{"nodeId": "140097399400240"}, {"nodeId": "N"}]}}, "140097399400240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399400576": {"type": "Union", "content": {"items": [{"nodeId": "140097399400464"}, {"nodeId": "N"}]}}, "140097399400464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399400912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399401024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399401360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399401248": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399401472": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399401696": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399401584"}]}, {"nodeId": "N"}]}}, "140097399401584": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097415604352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": "A"}]}, {"nodeId": "140097399401920"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399402144"}, {"nodeId": "140097399402368"}, {"nodeId": "140097399402592"}, {"nodeId": "140097399402816"}, {"nodeId": "140097399402928"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097399403264"}, {"nodeId": "140097399403488"}, {"nodeId": "140097399403600"}, {"nodeId": "140097399403824"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499819424", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097399403936"}, {"nodeId": "140097399404048"}, {"nodeId": "140097399404160"}, {"nodeId": "140097399404272"}, {"nodeId": "140097399404384"}, {"nodeId": "140097399404608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140097399401920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399402144": {"type": "Union", "content": {"items": [{"nodeId": "140097399402032"}, {"nodeId": "N"}]}}, "140097399402032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399402368": {"type": "Union", "content": {"items": [{"nodeId": "140097399402256"}, {"nodeId": "N"}]}}, "140097399402256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399402592": {"type": "Union", "content": {"items": [{"nodeId": "140097399402480"}, {"nodeId": "N"}]}}, "140097399402480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399402816": {"type": "Union", "content": {"items": [{"nodeId": "140097399402704"}, {"nodeId": "N"}]}}, "140097399402704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097407579776"}}}, "140097399402928": {"type": "Union", "content": {"items": [{"nodeId": "140097432640128"}, {"nodeId": "N"}]}}, "140097432640128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140097399403264": {"type": "Union", "content": {"items": [{"nodeId": "140097399403152"}, {"nodeId": "N"}]}}, "140097399403152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097399403488": {"type": "Union", "content": {"items": [{"nodeId": "140097399403376"}, {"nodeId": "N"}]}}, "140097399403376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403360576"}}}, "140097399403600": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399403824": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140097399403936": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097399404048": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399404160": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399404272": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399404384": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097399404608": {"type": "Union", "content": {"items": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097399404496"}]}, {"nodeId": "N"}]}}, "140097399404496": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097416134720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}], "returnType": {"nodeId": "140097399404720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399404720": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097416135168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097399404832"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140097399404832": {"type": "Union", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "N"}]}}, "140097416135616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097399404944"}, {"nodeId": "140097399405056"}], "returnType": {"nodeId": "140097399405280"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140097399404944": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407723904"}, {"nodeId": "N"}]}}, "140097399405056": {"type": "Union", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "N"}]}}, "140097399405280": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407723904"}, {"nodeId": ".1.140097407723904"}]}}, "140097416136064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140097416136512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097416136960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097416137408": {"type": "Function", "content": {"typeVars": [".0.140097416137408"], "argTypes": [{"nodeId": ".0.140097416137408"}], "returnType": {"nodeId": ".0.140097416137408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097416137408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, "def": "140097416137408", "variance": "INVARIANT"}}, "140097416137856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723904", "args": [{"nodeId": ".1.140097407723904"}]}, {"nodeId": "140097399405504"}, {"nodeId": "140097399405616"}, {"nodeId": "140097399405728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097399405504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399405616": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097399405728": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097416138304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097445474400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403407520"}], "returnType": {"nodeId": "140097394793536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394793536": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403407872": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097361022528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365752992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361068992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499823296"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499823296"}]}], "isAbstract": false}}, "140097361022528": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097365752992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795328"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795328": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795216"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795216": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795552"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795552": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394795888"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394795888": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097361068992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394796000"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394796000": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}, {"nodeId": "140097499823296"}]}}, "140097403408224": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097361024992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361069440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361071680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361071904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361072128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361072352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097361024992": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097361069440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394797456"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394797456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361071680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394797792"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394797792": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361071904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394798128"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394798128": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361072128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394798240"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394798240": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097361072352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394798352"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394798352": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097403408576": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097361026896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445640480"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097361074144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097402963744", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822944"}]}], "isAbstract": false}}, "140097361026896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}]}}, "140097445640480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097394800816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140097394800816": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097361074144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394801824"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394801824": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}]}}, "140097462524864": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462525568": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357496384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462525216"}], "isAbstract": true}}, "140097357496384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525568"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462525920": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445771104"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445771552"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357315008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097445772448"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357314560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462525216"}], "isAbstract": true}}, "140097445771104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097445771552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395179696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395179696": {"type": "Union", "content": {"items": [{"nodeId": "140097407713696"}, {"nodeId": "N"}]}}, "140097357315008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395179808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395179808": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097445772448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462525920"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097357314560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097395179920"}, {"nodeId": "140097395180144"}], "returnType": {"nodeId": "140097407713696"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140097395179920": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}, {"nodeId": "140097402966560"}, {"nodeId": "140097402967264"}, {"nodeId": "140097402966912"}]}}, "140097395180144": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097395180032"}]}}, "140097395180032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097429060544": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}]}}, "140097462526272": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357313216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462525920"}], "isAbstract": true}}, "140097357313216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526272"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097462526624": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462371040"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462371488"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462371936"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462372384"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140097462525568"}, {"nodeId": "140097462526272"}], "isAbstract": true}}, "140097462371040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499823296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462371488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140097462371936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395180256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395180256": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462372384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526624"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462526976": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462372832"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462373280"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462373728"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140097462524864"}], "isAbstract": false}}, "140097462372832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526976"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395180480"}], "returnType": {"nodeId": "140097395180592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140097395180480": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097395180592": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462373280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462373728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462526976"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395180704"}, {"nodeId": "140097395180816"}], "returnType": {"nodeId": "140097395180928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140097395180704": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097395180816": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097395180928": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462527328": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462374176"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462374624"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462375072"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462375520"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140097462524864"}], "isAbstract": false}}, "140097462374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395181040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395181040": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462374624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395181376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097395181376": {"type": "Tuple", "content": {"items": [{"nodeId": "140097395181152"}, {"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}]}}, "140097395181152": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097462375072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462375520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527328"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395181488"}], "returnType": {"nodeId": "140097395181600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140097395181488": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097395181600": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462527680": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462375968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462376416"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462376864"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462377312"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140097462525568"}, {"nodeId": "140097462526272"}], "isAbstract": true}}, "140097462375968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140097462376416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462376864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097395181712"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097395181712": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462377312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462527680"}, {"nodeId": "140097395181824"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097395181824": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462528032": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357308288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357307616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357308064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097357308736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097357308288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097357307616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097357308064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528032"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462528384": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357306720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357306272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357306048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357305376"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097394917072"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357305824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357305152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357304928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357304704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140097357306720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357306272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357306048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097462528384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357305376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462528384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140097394917072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097462382240"}, {"nodeId": "140097462382688"}, {"nodeId": "140097462383136"}, {"nodeId": "140097462383584"}, {"nodeId": "140097462384032"}, {"nodeId": "140097462384480"}, {"nodeId": "140097462384928"}]}}, "140097462382240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395182048"}, {"nodeId": "140097499822944"}, {"nodeId": "140097395182160"}, {"nodeId": "140097395182272"}, {"nodeId": "140097395182384"}], "returnType": {"nodeId": "140097462519936"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395182048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420295888"}}}, "140097420295888": {"type": "Union", "content": {"items": [{"nodeId": "140097420293424"}, {"nodeId": "140097420294992"}, {"nodeId": "140097420295776"}]}}, "140097420293424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420295328"}}}, "140097420295328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097420294992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420294768"}}}, "140097420294768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097420295776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420292752"}}}, "140097420292752": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097395182160": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395182272": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395182384": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462382688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395182496"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407729184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395182496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097419823472": {"type": "Union", "content": {"items": [{"nodeId": "140097419823808"}, {"nodeId": "140097419823920"}, {"nodeId": "140097419824816"}]}}, "140097419823808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419826720"}}}, "140097419826720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097419823920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419822352"}}}, "140097419822352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097419824816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823360"}}}, "140097419823360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462383136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395182720"}, {"nodeId": "140097395183056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395182720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419826720"}}}, "140097395183056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462383584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395183168"}, {"nodeId": "140097395183504"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395183168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823360"}}}, "140097395183504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462384032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395183616"}, {"nodeId": "140097395183952"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395183616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419822352"}}}, "140097395183952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097462384480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395184064"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395184064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097462384928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097395184176"}, {"nodeId": "140097395184288"}, {"nodeId": "140097395184400"}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097395184176": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395184288": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395184400": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097357305824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357305152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462528384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097357304928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357304704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528384"}, {"nodeId": "140097395184624"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140097395184624": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097462528736": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357303136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462453408"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462453856"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462454304"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097462454752"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140097462528032"}], "isAbstract": true}}, "140097357303136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}], "returnType": {"nodeId": "140097462528384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462453408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462518176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097462453856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140097462454304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097462454752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462528736"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403409984": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357258016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357257120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357256672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357256224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357255776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357255552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357255104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357252192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357253536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}, {"nodeId": "140097462525920"}], "isAbstract": false}}, "140097357258016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914048"}], "returnType": {"nodeId": "140097394914160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394914048": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394914160": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097357257120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914272"}, {"nodeId": "140097394914384"}], "returnType": {"nodeId": "140097394914496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394914272": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394914384": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394914496": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097357256672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357256224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357255776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357255552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357255104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140097357252192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097394914608"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140097394914608": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097357253536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140097403410336": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357251520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357251968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357251072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357250624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357233536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357233088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357232640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357231520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357231296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}, {"nodeId": "140097462525920"}], "isAbstract": false}}, "140097357251520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914720"}], "returnType": {"nodeId": "140097394914832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394914720": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394914832": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097357251968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394914944"}, {"nodeId": "140097394915056"}], "returnType": {"nodeId": "140097394915168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394914944": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394915056": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394915168": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097357251072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357250624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357233536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357233088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140097357232640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140097357231520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097394915280"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140097394915280": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097357231296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140097403410688": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357230176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357229728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}], "isAbstract": false}}, "140097357230176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394915392"}], "returnType": {"nodeId": "140097394915504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394915392": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394915504": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097357229728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394915616"}, {"nodeId": "140097394915728"}], "returnType": {"nodeId": "140097394915840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394915616": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394915728": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394915840": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097462524512": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357228160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357227712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357228608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357227264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097357228160": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140097357227712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523808"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140097403409280": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403700048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441147456"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356896672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403700048": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097441147456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409280"}, {"nodeId": "140097394910912"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140097394910912": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097356896672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462523808": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441149696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441150144"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441150592"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140097462523456"}], "isAbstract": false}}, "140097441149696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523808"}, {"nodeId": "140097403415968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097403415968": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432984192"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432984640"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432985088"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365329056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432985984"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432986432"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432989120"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432989568"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432990016"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432990464"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432990912"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432991360"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432991808"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432992256"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432992704"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432993152"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433027072"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433027520"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433027968"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433028416"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399625584"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433032000"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433032448"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433032896"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433033344"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433033792"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433034240"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433035584"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433036032"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433036480"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433036928"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433037376"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433037824"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097365333984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433039168"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433039616"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433040064"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433040512"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433040960"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433041408"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097433041856"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432485952"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140097403414912"}], "isAbstract": false}}, "140097432984192": {"type": "Function", "content": {"typeVars": [".0.140097432984192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097399628160"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097432984192"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140097399628160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, ".0.140097432984192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432984192", "variance": "INVARIANT"}}, "140097432984640": {"type": "Function", "content": {"typeVars": [".0.140097432984640"], "argTypes": [{"nodeId": ".0.140097432984640"}], "returnType": {"nodeId": ".0.140097432984640"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097432984640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432984640", "variance": "INVARIANT"}}, "140097432985088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399628384"}, {"nodeId": "140097399628496"}, {"nodeId": "140097399628608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097399628384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097399628496": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097399628608": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097365329056": {"type": "Function", "content": {"typeVars": [".0.140097365329056"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097365329056"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097365329056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097365329056", "variance": "INVARIANT"}}, "140097432985984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097399628720"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140097399628720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403598464"}}}, "140097432986432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140097432989120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432989568": {"type": "Function", "content": {"typeVars": [".0.140097432989568"], "argTypes": [{"nodeId": ".0.140097432989568"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097432989568"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140097432989568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432989568", "variance": "INVARIANT"}}, "140097432990016": {"type": "Function", "content": {"typeVars": [".0.140097432990016"], "argTypes": [{"nodeId": ".0.140097432990016"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097432990016"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140097432990016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097432990016", "variance": "INVARIANT"}}, "140097432990464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432990912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432991360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432991808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432992256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432992704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432993152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433027072": {"type": "Function", "content": {"typeVars": [".0.140097433027072"], "argTypes": [{"nodeId": ".0.140097433027072"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097433027072"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433027072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433027072", "variance": "INVARIANT"}}, "140097433027520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140097433027968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097399628832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399628832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403598464"}}}, "140097433028416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140097399625584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097433028864"}, {"nodeId": "140097433029312"}, {"nodeId": "140097433029760"}, {"nodeId": "140097433030208"}, {"nodeId": "140097433030656"}, {"nodeId": "140097433031104"}, {"nodeId": "140097433031552"}]}}, "140097433028864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399629056"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399629168"}, {"nodeId": "140097399629280"}, {"nodeId": "140097399629392"}], "returnType": {"nodeId": "140097462519936"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399629056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420295888"}}}, "140097399629168": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399629280": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399629392": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097433029312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399629504"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407729184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399629504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097433029760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399629728"}, {"nodeId": "140097399630064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399629728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419826720"}}}, "140097399630064": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097433030208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399630176"}, {"nodeId": "140097399630512"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399630176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823360"}}}, "140097399630512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097433030656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399630624"}, {"nodeId": "140097399630960"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097462518176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399630624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419822352"}}}, "140097399630960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140097433031104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399631072"}, {"nodeId": "140097499822944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097407455776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399631072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097419823472"}}}, "140097433031552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399631184"}, {"nodeId": "140097399631296"}, {"nodeId": "140097399631408"}], "returnType": {"nodeId": "140097407455424", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140097399631184": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399631296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399631408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097433032000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433032448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433032896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433033344": {"type": "Function", "content": {"typeVars": [".0.140097433033344"], "argTypes": [{"nodeId": ".0.140097433033344"}], "returnType": {"nodeId": ".0.140097433033344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433033344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433033344", "variance": "INVARIANT"}}, "140097433033792": {"type": "Function", "content": {"typeVars": [".0.140097433033792"], "argTypes": [{"nodeId": ".0.140097433033792"}, {"nodeId": "140097399631632"}], "returnType": {"nodeId": ".0.140097433033792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140097433033792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433033792", "variance": "INVARIANT"}}, "140097399631632": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097403414912"}]}}, "140097403414912": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365237248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365236128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365235904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365235680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365235456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432415232"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432415680"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432416128"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432416576"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432417024"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432417472"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432417920"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432418368"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432418816"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432419264"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432419712"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432977472"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432977920"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432978368"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432978816"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432979712"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432980160"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432980608"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432981056"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432981504"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432981952"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365244416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097365230752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432983296"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097365237248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365236128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365235904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365235680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097365235456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432415232": {"type": "Function", "content": {"typeVars": [".0.140097432415232"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097399627264"}], "returnType": {"nodeId": ".0.140097432415232"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140097399627264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, ".0.140097432415232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432415232", "variance": "INVARIANT"}}, "140097432415680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432416128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432416576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432417024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432417472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432417920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097432418368": {"type": "Function", "content": {"typeVars": [".0.140097432418368"], "argTypes": [{"nodeId": ".0.140097432418368"}, {"nodeId": "140097399627376"}], "returnType": {"nodeId": ".0.140097432418368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432418368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432418368", "variance": "INVARIANT"}}, "140097399627376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432418816": {"type": "Function", "content": {"typeVars": [".0.140097432418816"], "argTypes": [{"nodeId": ".0.140097432418816"}, {"nodeId": "140097399627488"}], "returnType": {"nodeId": ".0.140097432418816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140097432418816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432418816", "variance": "INVARIANT"}}, "140097399627488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432419264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432419712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432977472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432977920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432978368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432978816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097399627600"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140097399627600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432979712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414912"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140097432980160": {"type": "Function", "content": {"typeVars": [".0.140097432980160"], "argTypes": [{"nodeId": ".0.140097432980160"}, {"nodeId": "140097399627712"}], "returnType": {"nodeId": ".0.140097432980160"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140097432980160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432980160", "variance": "INVARIANT"}}, "140097399627712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097432980608": {"type": "Function", "content": {"typeVars": [".0.140097432980608"], "argTypes": [{"nodeId": ".0.140097432980608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097432980608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140097432980608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432980608", "variance": "INVARIANT"}}, "140097432981056": {"type": "Function", "content": {"typeVars": [".0.140097432981056"], "argTypes": [{"nodeId": ".0.140097432981056"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097432981056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140097432981056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432981056", "variance": "INVARIANT"}}, "140097432981504": {"type": "Function", "content": {"typeVars": [".0.140097432981504"], "argTypes": [{"nodeId": ".0.140097432981504"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097432981504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140097432981504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432981504", "variance": "INVARIANT"}}, "140097432981952": {"type": "Function", "content": {"typeVars": [".0.140097432981952"], "argTypes": [{"nodeId": ".0.140097432981952"}, {"nodeId": "140097399627824"}], "returnType": {"nodeId": ".0.140097432981952"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140097432981952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097432981952", "variance": "INVARIANT"}}, "140097399627824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097365244416": {"type": "Function", "content": {"typeVars": [".0.140097365244416"], "argTypes": [{"nodeId": ".0.140097365244416"}], "returnType": {"nodeId": "140097499819776", "args": [{"nodeId": ".0.140097365244416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097365244416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097365244416", "variance": "INVARIANT"}}, "140097365230752": {"type": "Function", "content": {"typeVars": [".0.140097365230752"], "argTypes": [{"nodeId": ".0.140097365230752"}], "returnType": {"nodeId": ".0.140097365230752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097365230752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414912"}, "def": "140097365230752", "variance": "INVARIANT"}}, "140097432983296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140097433034240": {"type": "Function", "content": {"typeVars": [".0.140097433034240"], "argTypes": [{"nodeId": ".0.140097433034240"}, {"nodeId": "140097399631744"}], "returnType": {"nodeId": ".0.140097433034240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140097433034240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433034240", "variance": "INVARIANT"}}, "140097399631744": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097403414912"}]}}, "140097433035584": {"type": "Function", "content": {"typeVars": [".0.140097433035584"], "argTypes": [{"nodeId": ".0.140097433035584"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": ".0.140097433035584"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140097433035584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433035584", "variance": "INVARIANT"}}, "140097433036032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433036480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399631856"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140097399631856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097433036928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399631968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140097399631968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097433037376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140097433037824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140097365333984": {"type": "Function", "content": {"typeVars": [".0.140097365333984"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140097365333984"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140097365333984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097365333984", "variance": "INVARIANT"}}, "140097433039168": {"type": "Function", "content": {"typeVars": [".0.140097433039168"], "argTypes": [{"nodeId": ".0.140097433039168"}], "returnType": {"nodeId": ".0.140097433039168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433039168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433039168", "variance": "INVARIANT"}}, "140097433039616": {"type": "Function", "content": {"typeVars": [".0.140097433039616"], "argTypes": [{"nodeId": ".0.140097433039616"}], "returnType": {"nodeId": ".0.140097433039616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097433039616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403415968"}, "def": "140097433039616", "variance": "INVARIANT"}}, "140097433040064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097433040512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399632080"}, {"nodeId": "140097399632192"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140097399632080": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399632192": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097433040960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399632304"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140097399632304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097433041408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140097433041856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399632416"}, {"nodeId": "140097399632528"}, {"nodeId": "140097399632640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140097399632416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399632528": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097399632640": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432485952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403415968"}, {"nodeId": "140097399632752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140097399632752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097420531680"}}}, "140097441150144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523808"}, {"nodeId": "140097394911136"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140097394911136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097441150592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523808"}, {"nodeId": "140097394911248"}], "returnType": {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097394911248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097462523456": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356900032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356899136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356898912"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097394909680"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356898688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356898016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356898464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356897792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356897568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356897344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356896224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097356900032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097394910016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140097394910016": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097356899136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}, {"nodeId": "140097394910128"}], "returnType": {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140097394910128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097356898912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462523456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140097394909680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441142528"}, {"nodeId": "140097441142976"}]}}, "140097441142528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523456"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140097441142976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140097394910352"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523456"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140097394910352": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097356898688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394910576"}], "returnType": {"nodeId": "140097462523808"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140097394910576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097429060544"}}}, "140097356898016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097462520640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462520640": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424592000"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424592448"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424592896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424593344"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424593792"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356973216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140097424592000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424592448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424592896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424593344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424593792": {"type": "Function", "content": {"typeVars": [".-1.140097424593792"], "argTypes": [{"nodeId": "140097462520640"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424593792"}], "returnType": {"nodeId": "140097394907552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140097424593792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424593792", "variance": "INVARIANT"}}, "140097394907552": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140097424593792"}]}}, "140097356973216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520640"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097394907664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394907664": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097356898464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097462522400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462522400": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416149504"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416149952"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356924512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356926528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097415895792"}]}], "isAbstract": false}}, "140097416149504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}, {"nodeId": "140097394908784"}], "returnType": {"nodeId": "140097394909568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097394908784": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097394909568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403367296"}}}, "140097403367296": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097416149952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097462522400"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140097356924512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097356926528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522400"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097415895792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403367296"}}}, "140097356897792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097356897568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097394910688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394910688": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097403417376"}]}, {"nodeId": "N"}]}}, "140097403417376": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441139392"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441139840"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441140288"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403367520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403365728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097462523456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097403415264"}], "isAbstract": false}}, "140097441139392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417376"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140097441139840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417376"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441140288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403417376"}], "returnType": {"nodeId": "140097403405760", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403367520": {"type": "Union", "content": {"items": [{"nodeId": "140097462523104"}, {"nodeId": "N"}]}}, "140097462523104": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441140736"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097441140736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523104"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140097403365728": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403415264": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403414912"}], "isAbstract": false}}, "140097356897344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097394910800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394910800": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097356896224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462523456"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097357228608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394915952"}, {"nodeId": "140097394916064"}], "returnType": {"nodeId": "140097394916176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140097394915952": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394916064": {"type": "Union", "content": {"items": [{"nodeId": "140097407715104"}, {"nodeId": "N"}]}}, "140097394916176": {"type": "Union", "content": {"items": [{"nodeId": "140097462524160"}, {"nodeId": "N"}]}}, "140097357227264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394916288"}], "returnType": {"nodeId": "140097394916400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140097394916288": {"type": "Union", "content": {"items": [{"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097394916400": {"type": "Union", "content": {"items": [{"nodeId": "140097462525216"}, {"nodeId": "N"}]}}, "140097403411040": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449150944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357226592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462527328"}], "isAbstract": false}}, "140097449150944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403411040"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394916624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140097394916624": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097357226592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097394916848"}], "returnType": {"nodeId": "140097394835520"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140097394916848": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}]}}, "140097394835520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097462527328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097403411392": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449151840"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140097462527680"}, {"nodeId": "140097462526624"}], "isAbstract": false}}, "140097449151840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403411392"}, {"nodeId": "140097428308736"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140097403411744": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140097462527680"}, {"nodeId": "140097462526624"}], "isAbstract": false}}, "140097403412096": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449152288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449152736"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449153184"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449153632"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449154080"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449154528"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449154976"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140097462526272"}], "isAbstract": false}}, "140097449152288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140097449152736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097394916960"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097394916960": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097449153184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097449153632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097462524160"}], "returnType": {"nodeId": "140097407715104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140097449154080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097407715104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140097449154528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140097449154976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403412096"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097407285408": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097428311904"}], "isAbstract": false}}, "140097407285760": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097419742016": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449162144"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449162592"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449163040"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["close", "seek", "write"]}}, "140097449162144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742016"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097449162592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742016"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097449163040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742016"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419742368": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449163488"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449163936"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449164384"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["close", "read", "seek"]}}, "140097449163488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742368"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097449163936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742368"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140097449164384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742368"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097403412448": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140097419742016"}, {"nodeId": "140097419742368"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140097419742720": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449558304"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449558304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419742720"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390632784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390632784": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097419743072": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449558752"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449558752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419743072"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390633008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390633008": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097419743424": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449559200"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449559200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419743424"}, {"nodeId": "140097419742368"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097403414208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097403414208": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097419742368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449730656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449731104"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449731552"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449732000"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449732448"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449732896"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449733344"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449733792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449734240"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449734688"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097419744832"}], "isAbstract": false}}, "140097449730656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097419742368"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097449731104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140097449731552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097390639168"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140097390639168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449732000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097390639280"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140097390639280": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449732448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449732896": {"type": "Function", "content": {"typeVars": [".0.140097449732896"], "argTypes": [{"nodeId": ".0.140097449732896"}], "returnType": {"nodeId": ".0.140097449732896"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449732896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414208"}, "def": "140097449732896", "variance": "INVARIANT"}}, "140097449733344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097390639504"}, {"nodeId": "140097390639616"}, {"nodeId": "140097390639728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390639504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390639616": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390639728": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097449733792": {"type": "Function", "content": {"typeVars": [".0.140097449733792"], "argTypes": [{"nodeId": ".0.140097449733792"}], "returnType": {"nodeId": ".0.140097449733792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449733792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414208"}, "def": "140097449733792", "variance": "INVARIANT"}}, "140097449734240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449734688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414208"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395483232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097395483232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419744832": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449571744"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449572192"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097449571744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744832"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390637040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390637040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097449572192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744832"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097390637264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140097390637264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097419743776": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449559648"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449559648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419743776"}, {"nodeId": "140097419742016"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097403413856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097403413856": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097419742016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449727520"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449727968"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449728416"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449728864"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449729312"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449729760"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449730208"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140097419744832"}], "isAbstract": false}}, "140097449727520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097419742016"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140097449727968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140097449728416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140097449728864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449729312": {"type": "Function", "content": {"typeVars": [".0.140097449729312"], "argTypes": [{"nodeId": ".0.140097449729312"}], "returnType": {"nodeId": ".0.140097449729312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449729312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403413856"}, "def": "140097449729312", "variance": "INVARIANT"}}, "140097449729760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097390638608"}, {"nodeId": "140097390638720"}, {"nodeId": "140097390638832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390638608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390638720": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390638832": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097449730208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413856"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395482784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097395482784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097419744128": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449560096"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449560096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744128"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097419745184"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097419745184": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449572640"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344522272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449573536"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449573984"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449722144"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097449572640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344522272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097449573536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449573984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}], "returnType": {"nodeId": "140097390637376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390637376": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097449722144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745184"}, {"nodeId": "140097390637488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140097390637488": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097419744480": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449560544"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__call__"]}}, "140097449560544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419744480"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097419745536"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097403412800": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344598560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344595424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344595200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344594304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344594752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097344592960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449563680"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097499811328"}]}], "isAbstract": false}}, "140097344598560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633232"}], "returnType": {"nodeId": "140097419742720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344595424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633344"}], "returnType": {"nodeId": "140097419743072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344595200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633456"}], "returnType": {"nodeId": "140097419743424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344594304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633568"}], "returnType": {"nodeId": "140097419743776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633568": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344594752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633680"}], "returnType": {"nodeId": "140097419744128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633680": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097344592960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097390633792"}], "returnType": {"nodeId": "140097419744480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097390633792": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097449563680": {"type": "Function", "content": {"typeVars": [".0.140097449563680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097390634016"}, {"nodeId": "140097390634128"}, {"nodeId": "140097390634240"}, {"nodeId": "140097390634352"}, {"nodeId": "140097390634464"}, {"nodeId": "140097390634576"}], "returnType": {"nodeId": ".0.140097449563680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140097390634016": {"type": "Union", "content": {"items": [{"nodeId": "140097419743424"}, {"nodeId": "N"}]}}, "140097390634128": {"type": "Union", "content": {"items": [{"nodeId": "140097419743776"}, {"nodeId": "N"}]}}, "140097390634240": {"type": "Union", "content": {"items": [{"nodeId": "140097419744128"}, {"nodeId": "N"}]}}, "140097390634352": {"type": "Union", "content": {"items": [{"nodeId": "140097419744480"}, {"nodeId": "N"}]}}, "140097390634464": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097390634576": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, ".0.140097449563680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097390632560"}, "def": "140097449563680", "variance": "INVARIANT"}}, "140097390632560": {"type": "Tuple", "content": {"items": [{"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}]}}, "140097403413152": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449724832"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344520480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449725728"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140097419745184"}], "isAbstract": true}}, "140097449724832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413152"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344520480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413152"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097390638160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140097390638160": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097449725728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413152"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097403413504": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428309088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449726176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097344502720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449727072"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140097419745536"}], "isAbstract": true}}, "140097449726176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413504"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140097344502720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413504"}, {"nodeId": "140097407466688"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097390638384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140097390638384": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097449727072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403413504"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140097403414560": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403412448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449735136"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449735584"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449736032"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449736480"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449736928"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449737376"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097449737824"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440792864"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440793312"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440793760"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440794208"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440794656"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440795104"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440795552"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440796000"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440796448"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440796896"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440797344"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440797792"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440798240"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440798688"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440799136"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140097407456128"}], "isAbstract": false}}, "140097449735136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097403412448"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140097449735584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097449736032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640064"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390640064": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449736480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640176"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140097390640176": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097449736928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097449737376": {"type": "Function", "content": {"typeVars": [".0.140097449737376"], "argTypes": [{"nodeId": ".0.140097449737376"}], "returnType": {"nodeId": ".0.140097449737376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097449737376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414560"}, "def": "140097449737376", "variance": "INVARIANT"}}, "140097449737824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140097440792864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140097440793312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440793760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140097440794208": {"type": "Function", "content": {"typeVars": [".0.140097440794208"], "argTypes": [{"nodeId": ".0.140097440794208"}], "returnType": {"nodeId": ".0.140097440794208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440794208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097403414560"}, "def": "140097440794208", "variance": "INVARIANT"}}, "140097440794656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640400"}, {"nodeId": "140097390640512"}, {"nodeId": "140097390640624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390640400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390640512": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390640624": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097440795104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097440795552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440796000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440796448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440796896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440797344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440797792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}, {"nodeId": "140097390640848"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390640848": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440798240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440798688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440799136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403414560"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097419745888": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440799584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440800032"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440800480"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440800928"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440801376"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440801824"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440802272"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440802720"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440803168"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440803616"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440804064"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440804512"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440804960"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440805408"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440805856"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440806304"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440806752"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440807200"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440807648"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440808096"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440808544"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440940320"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140097407455776"}], "isAbstract": false}}, "140097440799584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097403412448"}, {"nodeId": "140097419742720"}, {"nodeId": "140097419743072"}, {"nodeId": "140097419743424"}, {"nodeId": "140097419743776"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140097440800032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097440800480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390640960"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390640960": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440800928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390903360"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428309088"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140097390903360": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440801376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440801824": {"type": "Function", "content": {"typeVars": [".0.140097440801824"], "argTypes": [{"nodeId": ".0.140097440801824"}], "returnType": {"nodeId": ".0.140097440801824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440801824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419745888"}, "def": "140097440801824", "variance": "INVARIANT"}}, "140097440802272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097428309088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140097440802720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428309088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140097440803168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440803616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097440804064": {"type": "Function", "content": {"typeVars": [".0.140097440804064"], "argTypes": [{"nodeId": ".0.140097440804064"}], "returnType": {"nodeId": ".0.140097440804064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440804064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419745888"}, "def": "140097440804064", "variance": "INVARIANT"}}, "140097440804512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390903696"}, {"nodeId": "140097390903808"}, {"nodeId": "140097390903920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097390903696": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097390903808": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097390903920": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097440804960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140097440805408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440805856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440806304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440806752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440807200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440807648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}, {"nodeId": "140097390904032"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140097390904032": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097440808096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440808544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440940320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419745888"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428533344": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097394840224"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097353454912"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140097428533344"}], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140097428533344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428533344", "variance": "COVARIANT"}}, "140097394840224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428533344"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097428533344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097353454912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428533344"}]}, {"nodeId": "140097395424976"}, {"nodeId": "140097395425088"}, {"nodeId": "140097395556416"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140097395556528"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140097395424976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395425088": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395556416": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395556528": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097428533696": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440943456"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440943456": {"type": "Function", "content": {"typeVars": [".-1.140097440943456"], "argTypes": [{"nodeId": "140097428533696"}, {"nodeId": ".-1.140097440943456"}], "returnType": {"nodeId": ".-1.140097440943456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140097440943456": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140097415606592"}, "def": "140097440943456", "variance": "INVARIANT"}}, "140097415606592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428534048": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440943904"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097428534048"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415605920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440944352"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140097428534048"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428534048"}]}, {"nodeId": "140097428533696"}], "isAbstract": false}}, ".1.140097428534048": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428534048", "variance": "COVARIANT"}}, "140097440943904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534048", "args": [{"nodeId": ".1.140097428534048"}]}, {"nodeId": "140097395476736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140097395476736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".1.140097428534048"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097415605920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".1.140097428534048"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097440944352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534048", "args": [{"nodeId": ".1.140097428534048"}]}, {"nodeId": "140097395557088"}, {"nodeId": "140097395557200"}, {"nodeId": "140097395557312"}], "returnType": {"nodeId": "140097395557424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395557088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395557200": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395557312": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395557424": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097428534400": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440945696"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440945696": {"type": "Function", "content": {"typeVars": [".-1.140097440945696"], "argTypes": [{"nodeId": "140097428534400"}, {"nodeId": ".-1.140097440945696"}], "returnType": {"nodeId": ".-1.140097440945696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140097440945696": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140097428400704"}, "def": "140097440945696", "variance": "INVARIANT"}}, "140097428400704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428534752": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440946144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097428534752"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428404512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440943008"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140097428534752"}], "bases": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428534752"}]}, {"nodeId": "140097428534400"}], "isAbstract": false}}, ".1.140097428534752": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097428534752", "variance": "COVARIANT"}}, "140097440946144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534752", "args": [{"nodeId": ".1.140097428534752"}]}, {"nodeId": "140097395478080"}, {"nodeId": "140097428310496", "args": [{"nodeId": "A"}]}, {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140097395478080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499818368", "args": [{"nodeId": ".1.140097428534752"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428404512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097499818720", "args": [{"nodeId": ".1.140097428534752"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097440943008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428534752", "args": [{"nodeId": ".1.140097428534752"}]}, {"nodeId": "140097395558320"}, {"nodeId": "140097395558432"}, {"nodeId": "140097395558544"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140097395558656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140097395558320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395558432": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395558544": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097395558656": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097428535104": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440948384"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["close"]}}, "140097440948384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535104"}], "returnType": {"nodeId": "140097499811328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428535456": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440948832"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440949280"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140097428535456"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428535456"}]}], "isAbstract": false}}, ".1.140097428535456": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140097428535104"}, "def": "140097428535456", "variance": "INVARIANT"}}, "140097440948832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535456", "args": [{"nodeId": ".1.140097428535456"}]}, {"nodeId": ".1.140097428535456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140097440949280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535456", "args": [{"nodeId": ".1.140097428535456"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140097428535808": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440949728"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["aclose"]}}, "140097440949728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428535808"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "140097499811328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097428536160": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440950176"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395479424"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140097428536160"}], "bases": [{"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097428536160"}]}], "isAbstract": false}}, ".1.140097428536160": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140097428535808"}, "def": "140097428536160", "variance": "INVARIANT"}}, "140097440950176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536160", "args": [{"nodeId": ".1.140097428536160"}]}, {"nodeId": ".1.140097428536160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140097395479424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536160", "args": [{"nodeId": ".1.140097428536160"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140097428536512": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440951072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440951520"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140097440951072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536512"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140097440951520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536512"}, {"nodeId": "140097395559440"}, {"nodeId": "140097395559552"}, {"nodeId": "140097395559664"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395559440": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395559552": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395559664": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097428536864": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440951968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440952416"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140097428536864"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097428536864"}]}], "isAbstract": false}}, ".1.140097428536864": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140097403519600"}, "def": "140097428536864", "variance": "INVARIANT"}}, "140097403519600": {"type": "Union", "content": {"items": [{"nodeId": "140097407455424", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097440951968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097428536864"}]}, {"nodeId": ".1.140097428536864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140097440952416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097428536864"}]}, {"nodeId": "140097395559776"}, {"nodeId": "140097395559888"}, {"nodeId": "140097395560000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395559776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395559888": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395560000": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097419739200": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140097419739200"}], "bases": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097419739200"}]}], "isAbstract": false}}, ".1.140097419739200": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140097403519600"}, "def": "140097419739200", "variance": "INVARIANT"}}, "140097419739552": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140097419739552"}], "bases": [{"nodeId": "140097428536864", "args": [{"nodeId": ".1.140097419739552"}]}], "isAbstract": false}}, ".1.140097419739552": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140097403519600"}, "def": "140097419739552", "variance": "INVARIANT"}}, "140097419739904": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440952864"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440953312"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440953760"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440954208"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440954656"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440955104"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440955552"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440952864": {"type": "Function", "content": {"typeVars": [".-1.140097440952864"], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": "140097428532992", "args": [{"nodeId": ".-1.140097440952864"}]}], "returnType": {"nodeId": ".-1.140097440952864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140097440952864": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097440952864", "variance": "INVARIANT"}}, "140097440953312": {"type": "Function", "content": {"typeVars": [".-1.140097440953312"], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": ".-1.140097440953312"}], "returnType": {"nodeId": ".-1.140097440953312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140097440953312": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140097403520720"}, "def": "140097440953312", "variance": "INVARIANT"}}, "140097403520720": {"type": "Union", "content": {"items": [{"nodeId": "140097428532992", "args": [{"nodeId": "A"}]}, {"nodeId": "140097403520160"}]}}, "140097403520160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428401824"}}}, "140097428401824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097415673920"}, {"nodeId": "140097415673360"}, {"nodeId": "140097415673472"}], "returnType": {"nodeId": "140097415673696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097415673920": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097415673360": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097415673472": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097415673696": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097440953760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": "140097395478752"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097395479648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140097395478752": {"type": "Function", "content": {"typeVars": [".-2.140097395478752"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395478752"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395478752": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395478752", "variance": "INVARIANT"}}, "140097395479648": {"type": "Function", "content": {"typeVars": [".-2.140097395479648"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395479648"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395479648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395479648", "variance": "INVARIANT"}}, "140097440954208": {"type": "Function", "content": {"typeVars": [".0.140097440954208"], "argTypes": [{"nodeId": ".0.140097440954208"}], "returnType": {"nodeId": ".0.140097440954208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097440954208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419739904"}, "def": "140097440954208", "variance": "INVARIANT"}}, "140097440954656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419739904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097440955104": {"type": "Function", "content": {"typeVars": [".0.140097440955104"], "argTypes": [{"nodeId": ".0.140097440955104"}], "returnType": {"nodeId": ".0.140097440955104"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140097440955104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419739904"}, "def": "140097440955104", "variance": "INVARIANT"}}, "140097440955552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419739904"}, {"nodeId": "140097395561008"}, {"nodeId": "140097395561120"}, {"nodeId": "140097395561232"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140097395561008": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395561120": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395561232": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097419740256": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440956000"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097440950624"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441055456"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441055904"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441056352"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441056800"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441057248"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441055008"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441057696"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441058144"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097440956000": {"type": "Function", "content": {"typeVars": [".-1.140097440956000"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097428532992", "args": [{"nodeId": ".-1.140097440956000"}]}], "returnType": {"nodeId": ".-1.140097440956000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140097440956000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097440956000", "variance": "INVARIANT"}}, "140097440950624": {"type": "Function", "content": {"typeVars": [".-1.140097440950624"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097428533344", "args": [{"nodeId": ".-1.140097440950624"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140097440950624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140097440950624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097440950624", "variance": "INVARIANT"}}, "140097441055456": {"type": "Function", "content": {"typeVars": [".-1.140097441055456"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": ".-1.140097441055456"}], "returnType": {"nodeId": ".-1.140097441055456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140097441055456": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140097403520720"}, "def": "140097441055456", "variance": "INVARIANT"}}, "140097441055904": {"type": "Function", "content": {"typeVars": [".-1.140097441055904"], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": ".-1.140097441055904"}], "returnType": {"nodeId": ".-1.140097441055904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140097441055904": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140097403521280"}, "def": "140097441055904", "variance": "INVARIANT"}}, "140097403521280": {"type": "Union", "content": {"items": [{"nodeId": "140097428533344", "args": [{"nodeId": "A"}]}, {"nodeId": "140097403521504"}]}}, "140097403521504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428396448"}}}, "140097428396448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097420535824"}, {"nodeId": "140097420537280"}, {"nodeId": "140097420537056"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": "140097420536496"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097420535824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097420537280": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097420537056": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097420536496": {"type": "Union", "content": {"items": [{"nodeId": "140097499812032"}, {"nodeId": "N"}]}}, "140097441056352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097395479200"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097395480096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140097395479200": {"type": "Function", "content": {"typeVars": [".-2.140097395479200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395479200"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395479200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395479200", "variance": "INVARIANT"}}, "140097395480096": {"type": "Function", "content": {"typeVars": [".-2.140097395480096"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140097395480096"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395480096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395480096", "variance": "INVARIANT"}}, "140097441056800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097395479872"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097395480544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140097395479872": {"type": "Function", "content": {"typeVars": [".-2.140097395479872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".-2.140097395479872"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395479872": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395479872", "variance": "INVARIANT"}}, "140097395480544": {"type": "Function", "content": {"typeVars": [".-2.140097395480544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140097499817312", "args": [{"nodeId": ".-2.140097395480544"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140097395480544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097395480544", "variance": "INVARIANT"}}, "140097441057248": {"type": "Function", "content": {"typeVars": [".0.140097441057248"], "argTypes": [{"nodeId": ".0.140097441057248"}], "returnType": {"nodeId": ".0.140097441057248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097441057248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419740256"}, "def": "140097441057248", "variance": "INVARIANT"}}, "140097441055008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441057696": {"type": "Function", "content": {"typeVars": [".0.140097441057696"], "argTypes": [{"nodeId": ".0.140097441057696"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140097441057696"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097441057696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097419740256"}, "def": "140097441057696", "variance": "INVARIANT"}}, "140097441058144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740256"}, {"nodeId": "140097395563360"}, {"nodeId": "140097395563472"}, {"nodeId": "140097395563584"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140097499812032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140097395563360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140097395563472": {"type": "Union", "content": {"items": [{"nodeId": "140097428315424"}, {"nodeId": "N"}]}}, "140097395563584": {"type": "Union", "content": {"items": [{"nodeId": "140097407718976"}, {"nodeId": "N"}]}}, "140097419740608": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140097419740608"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395563248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441059936"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441060384"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395480320"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097395481216"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140097419740608"}], "bases": [{"nodeId": "140097428532992", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": "140097428533344", "args": [{"nodeId": ".1.140097419740608"}]}], "isAbstract": false}}, ".1.140097419740608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097419740608", "variance": "INVARIANT"}}, "140097395563248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441058592"}, {"nodeId": "140097441059040"}]}}, "140097441058592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140097441059040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": ".1.140097419740608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140097441059936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}], "returnType": {"nodeId": ".1.140097419740608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097441060384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140097395480320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140097419740608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395481216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419740608", "args": [{"nodeId": ".1.140097419740608"}]}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499817664", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140097407726368": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374569184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374570304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374570752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374572320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374566912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369446816"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399405392"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399458720"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399459392"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399459504"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441335328"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441335776"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441336224"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369453312"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399460624"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441338016"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441338464"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441338912"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407726368"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407726368": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407726368", "variance": "INVARIANT"}}, "140097374569184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097374570304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097374570752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097399459168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399459168": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097374572320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097399459280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399459280": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097374566912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369446816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407726720": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369637376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369639616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369640512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097369641184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399461072"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399462304"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399463088"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399463536"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399463984"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399464432"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399465216"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097399465552"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441483232"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441483680"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441484128"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407726720"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407726720": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407726720", "variance": "INVARIANT"}}, "140097369637376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369639616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369640512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097369641184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399461072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441341152"}, {"nodeId": "140097454205728"}, {"nodeId": "140097441342048"}]}}, "140097441341152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463200": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097454205728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463312": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "N"}]}}, "140097441342048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463424": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "N"}]}}, "140097399462304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441342496"}, {"nodeId": "140097454204608"}, {"nodeId": "140097441343392"}]}}, "140097441342496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463648": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097454204608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463760": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "N"}]}}, "140097441343392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399463872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399463872": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "N"}]}}, "140097399463088": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454204160"}, {"nodeId": "140097441343840"}, {"nodeId": "140097441344736"}]}}, "140097454204160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399464096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464096": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097441343840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399464208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464208": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "N"}]}}, "140097441344736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399464320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464320": {"type": "Union", "content": {"items": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "N"}]}}, "140097399463536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097454203936"}, {"nodeId": "140097441345184"}, {"nodeId": "140097441346080"}]}}, "140097454203936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097399464656"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140097399464656": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097441345184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097399464880"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140097399464880": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "A"}]}}, "140097441346080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097399465104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140097399465104": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "A"}]}}, "140097399463984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441346528"}, {"nodeId": "140097458174688"}, {"nodeId": "140097441347424"}]}}, "140097441346528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097458174688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097441347424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097407726720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399464432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441347872"}, {"nodeId": "140097458172896"}, {"nodeId": "140097441348768"}]}}, "140097441347872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097458172896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097441348768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140097399465216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441349216"}, {"nodeId": "140097458171552"}, {"nodeId": "140097441481440"}]}}, "140097441349216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399465776"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399465776": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097458172448"}]}}, "140097458172448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097458171552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097399465888"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399465888": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097458172000"}]}}, "140097458172000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}], "returnType": {"nodeId": "140097407466688"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097441481440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "140097399466000"}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466000": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "140097458173792"}]}}, "140097458173792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399465552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441481888"}, {"nodeId": "140097458169760"}, {"nodeId": "140097441482784"}]}}, "140097441481888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097399466224"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399466448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466224": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097458171104"}]}}, "140097458171104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399466448": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097458169760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097399466560"}, {"nodeId": "140097407466688"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399466784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466560": {"type": "Union", "content": {"items": [{"nodeId": "140097407466688"}, {"nodeId": "140097458170656"}]}}, "140097458170656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}], "returnType": {"nodeId": "140097407466688"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399466784": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097499822944"}]}}, "140097441482784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "140097399466896"}, {"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097399467120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140097399466896": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "140097458170208"}]}}, "140097458170208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": ".1.140097407726720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097399467120": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140097407726720"}, {"nodeId": "140097499822944"}]}}, "140097441483232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}], "returnType": {"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441483680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407726720", "args": [{"nodeId": ".1.140097407726720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097441484128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097399405392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441068448"}, {"nodeId": "140097454205056"}, {"nodeId": "140097441069344"}]}}, "140097441068448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140097454205056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": "140097428309088"}]}, {"nodeId": "140097407466688"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140097441069344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": ".1.140097407726368"}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140097399458720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441069792"}, {"nodeId": "140097441070240"}, {"nodeId": "140097441070688"}]}}, "140097441069792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097441070240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399459728"}], "returnType": {"nodeId": "140097399459952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097399459728": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399459952": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441070688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399460064"}, {"nodeId": "140097399460176"}, {"nodeId": "140097399460288"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399460512"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140097399460064": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399460176": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399460288": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}}, "140097399460512": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097399459392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441333536"}, {"nodeId": "140097441333984"}]}}, "140097441333536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399460848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399460848": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441333984": {"type": "Function", "content": {"typeVars": [".-1.140097441333984"], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": ".-1.140097441333984"}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399460960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140097441333984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441333984", "variance": "INVARIANT"}}, "140097399460960": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": ".-1.140097441333984"}]}}, "140097399459504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441334432"}, {"nodeId": "140097441334880"}]}}, "140097441334432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097399461296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399461296": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441334880": {"type": "Function", "content": {"typeVars": [".-1.140097441334880"], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": ".-1.140097441334880"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097399461408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140097441334880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441334880", "variance": "INVARIANT"}}, "140097399461408": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": ".-1.140097441334880"}]}}, "140097441335328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399461520"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097399461520": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097441335776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399461632"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097399461632": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097441336224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399461744"}], "returnType": {"nodeId": "140097399461968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140097399461744": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097399461968": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097369453312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097428310496", "args": [{"nodeId": "140097399462192"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399462192": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097399460624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441337120"}, {"nodeId": "140097441337568"}]}}, "140097441337120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140097407726368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097441337568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "140097399462528"}], "returnType": {"nodeId": "140097399462752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097399462528": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}]}}, "140097399462752": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407726368"}, {"nodeId": "A"}]}}, "140097441338016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}], "returnType": {"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441338464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407726368", "args": [{"nodeId": ".1.140097407726368"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140097441338912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097403405408": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462530848"}], "isAbstract": false}}, "140097462529088": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441495776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441496224"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140097441495776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441496224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529088"}, {"nodeId": "140097428308736"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097462529440": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441694880"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097357750208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441696672"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441697120"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441698464"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441699360"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097357754464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441700256"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441700704"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441701152"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395181936"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097462529792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "A"}, {"nodeId": "140097462529792"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407285056"}], "isAbstract": false}}, "140097441694880": {"type": "Function", "content": {"typeVars": [".-1.140097441694880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "140097462529088"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140097441694880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140097441694880": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441694880", "variance": "INVARIANT"}}, "140097357750208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097499822240"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140097462529088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140097441696672": {"type": "Function", "content": {"typeVars": [".-1.140097441696672"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".-1.140097441696672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097441696672": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441696672", "variance": "INVARIANT"}}, "140097441697120": {"type": "Function", "content": {"typeVars": [".-1.140097441697120"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": ".-1.140097441697120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140097441697120": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441697120", "variance": "INVARIANT"}}, "140097441698464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097441699360": {"type": "Function", "content": {"typeVars": [".-1.140097441699360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".-1.140097441699360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140097441699360": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441699360", "variance": "INVARIANT"}}, "140097357754464": {"type": "Function", "content": {"typeVars": [".-1.140097357754464"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140097407714048", "args": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097357754464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140097357754464": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097357754464", "variance": "INVARIANT"}}, "140097441700256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097441700704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441701152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395181936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441701600"}, {"nodeId": "140097441702496"}]}}, "140097441701600": {"type": "Function", "content": {"typeVars": [".-1.140097441701600"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140097441701600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140097441701600": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097441701600", "variance": "INVARIANT"}}, "140097441702496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462529440"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395188208"}, {"nodeId": "140097395188320"}, {"nodeId": "140097395188432"}, {"nodeId": "140097395188544"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140097395188208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415891760"}}}, "140097415891760": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097415894000"}]}]}, {"nodeId": "140097499821184", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}]}}, "140097415894000": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}}, "140097395188320": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395188432": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395188544": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "N"}]}}, "140097462530144": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097352631232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441707424"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}, {"nodeId": "140097462529792"}], "isAbstract": false}}, "140097352631232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462530144"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097441707424": {"type": "Function", "content": {"typeVars": [".0.140097441707424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": ".0.140097441707424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140097441707424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462530144"}, "def": "140097441707424", "variance": "INVARIANT"}}, "140097407722496": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140097407722496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140097407722496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432172608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432173056"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432173504"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140097407722496"}], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, ".1.140097407722496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097407722496", "variance": "INVARIANT"}}, "140097432172608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407722496", "args": [{"nodeId": ".1.140097407722496"}]}, {"nodeId": "140097399152688"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399152800"}, {"nodeId": "140097399152912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140097399152688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399152800": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407722496"}, {"nodeId": "N"}]}}, "140097399152912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140097407722496"}, {"nodeId": "N"}]}}, "140097432173056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407722496", "args": [{"nodeId": ".1.140097407722496"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432173504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140097407720384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140097407722848": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407723200": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097420258304"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499823296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403591856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403360688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407722848"}], "isAbstract": false}}, "140097420258304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723200"}, {"nodeId": "140097399354336"}, {"nodeId": "140097499823296"}, {"nodeId": "140097399354448"}, {"nodeId": "140097399354560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140097399354336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399354448": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097399354560": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097403591856": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097403360688": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097407723552": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097420258752"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097407722848"}], "isAbstract": false}}, "140097420258752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407723552"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399354672"}, {"nodeId": "140097399354784"}, {"nodeId": "140097399354896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140097399354672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403359792"}}}, "140097399354784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097399354896": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097462521344": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356938848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097407271328"}], "isAbstract": false}}, "140097356938848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462521344"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462522048": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407726720", "args": [{"nodeId": "140097428308736"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416147264"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356929888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356929216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356929664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415895680"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416149056"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140097462521696"}], "isAbstract": false}}, "140097416147264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394908896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394908896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097356929888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909120"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394909120": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097356929216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909232"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394909232": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097356929664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909344"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394909344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097415895680": {"type": "Union", "content": {"items": [{"nodeId": "140097462523456"}, {"nodeId": "N"}]}}, "140097416149056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097394909456"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140097394909456": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097462521696": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415898256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415899152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428399360"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428398688"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428400256"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428400032"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140097428310496", "args": [{"nodeId": "140097428308736"}]}], "isAbstract": false}}, "140097415898256": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097415899152": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140097428399360": {"type": "Function", "content": {"typeVars": [".-1.140097428399360"], "argTypes": [{"nodeId": ".-1.140097428399360"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".-1.140097428399360"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140097428399360": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428399360", "variance": "INVARIANT"}}, "140097415898032": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428398688": {"type": "Function", "content": {"typeVars": [".-1.140097428398688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".-1.140097428398688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140097428398688": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428398688", "variance": "INVARIANT"}}, "140097428400256": {"type": "Function", "content": {"typeVars": [".-1.140097428400256"], "argTypes": [{"nodeId": ".-1.140097428400256"}], "returnType": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140097428400256": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428400256", "variance": "INVARIANT"}}, "140097428400032": {"type": "Function", "content": {"typeVars": [".-1.140097428400032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140097428400032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140097428400032": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140097415898032"}, "def": "140097428400032", "variance": "INVARIANT"}}, "140097462522752": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356902720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356902272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097356902048"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097394908224"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097462522400"}]}], "isAbstract": false}}, "140097356902720": {"type": "Function", "content": {"typeVars": [".0.140097356902720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097394909792"}]}], "returnType": {"nodeId": ".0.140097356902720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140097394909792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403367296"}}}, ".0.140097356902720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462522752"}, "def": "140097356902720", "variance": "INVARIANT"}}, "140097356902272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522752"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097356902048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522752"}], "returnType": {"nodeId": "140097407458240", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097394908224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097441138496"}, {"nodeId": "140097441138944"}]}}, "140097441138496": {"type": "Function", "content": {"typeVars": [".0.140097441138496"], "argTypes": [{"nodeId": ".0.140097441138496"}], "returnType": {"nodeId": ".0.140097441138496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097441138496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462522752"}, "def": "140097441138496", "variance": "INVARIANT"}}, "140097441138944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462522752"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097462522400"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140097403408928": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140097403409280"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356896448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097462526976"}], "isAbstract": true}}, "140097356896448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403408928"}, {"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523456"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140097403409632": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097356894656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097441149248"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140097403408928"}], "isAbstract": false}}, "140097356894656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097403409280"}], "returnType": {"nodeId": "140097499815904", "args": [{"nodeId": "140097462523808"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140097441149248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097403409632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140097402964448": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097416286208"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097416286208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097402964448"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097407725664": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407961792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407961904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424064576"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407961792": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097407961904": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424064576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725664"}, {"nodeId": "140097428308736"}, {"nodeId": "140097399458608"}, {"nodeId": "140097399458272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140097399458608": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "N"}]}}, "140097399458272": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097407726016": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424065024"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140097499822944"}], "isAbstract": false}}, "140097424065024": {"type": "Function", "content": {"typeVars": [".0.140097424065024"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140097499822944"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": ".0.140097424065024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140097424065024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097407726016"}, "def": "140097424065024", "variance": "INVARIANT"}}, "140097462520992": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424594688"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424595136"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424595584"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424596032"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140097424594688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097462520992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424595136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097462520992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424595584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424596032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462520992"}], "returnType": {"nodeId": "140097462520992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097462532608": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097462531552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403699936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403519376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428523136"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424597376"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424597824"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424598272"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424598720"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424599168"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424599616"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424600064"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424600512"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424600960"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424601408"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424601856"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424602304"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424602752"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424603200"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424603648"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424604096"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424604544"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395185408"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395190224"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424213824"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424214272"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424214720"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424215168"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424215616"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424216064"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424216512"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395193696"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395194256"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424218752"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424219200"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395195040"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395409744"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424221440"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395409632"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140097395409856"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424223680"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424224128"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424224576"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424225024"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424225472"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424225920"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424226368"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424226816"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424227264"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097462531552": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415892320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415892768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428969664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428970112"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428970560"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428971008"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428971456"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352790560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352790112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352789888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352789664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097352789440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": true}}, "140097415892320": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097415892768": {"type": "Union", "content": {"items": [{"nodeId": "140097415605696"}, {"nodeId": "N"}]}}, "140097415605696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}], "returnType": {"nodeId": "140097462532608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097428969664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097395190000"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395190112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140097395190000": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395190112": {"type": "Union", "content": {"items": [{"nodeId": "140097394843360"}, {"nodeId": "N"}]}}, "140097394843360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}], "returnType": {"nodeId": "140097462532608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097428970112": {"type": "Function", "content": {"typeVars": [".0.140097428970112"], "argTypes": [{"nodeId": ".0.140097428970112"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140097428970112"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140097428970112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462531552"}, "def": "140097428970112", "variance": "INVARIANT"}}, "140097428970560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097462532608"}, {"nodeId": "140097428523136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140097428523136": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428968096"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097428323168"}], "isAbstract": false}}, "140097428968096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428523136"}, {"nodeId": "140097395416576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140097395416576": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428971008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097462532608"}, {"nodeId": "140097428523136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140097428971456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395190448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140097395190448": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097352790560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395190672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140097395190672": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097352790112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395190896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395190896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097352789888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097352789664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097352789440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097403699936": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097403519376": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424597376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424597824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140097424598272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395192240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395192240": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424598720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097462532608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140097424599168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097395192352"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140097395192352": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097424599616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097395192576"}, {"nodeId": "140097395192800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140097395192576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415893552"}}}, "140097415893552": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097462532608"}]}, {"nodeId": "140097428308736"}, {"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}]}}, "140097395192800": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428530528": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415890192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415890416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415890528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429090176"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429090624"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429091072"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429091520"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429091968"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429092416"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429092864"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097429093312"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097415890192": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415890416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415890528": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429090176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140097429090624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097429091072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}], "returnType": {"nodeId": "140097395418144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395418144": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097429091520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140097429091968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499816256", "args": [{"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140097429092416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140097429092864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097429093312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530528"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424600064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097395192688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140097395192688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415892544"}}}, "140097415892544": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424600512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395192912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395192912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415892544"}}}, "140097424600960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424601408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424601856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097424602304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395193024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097395193024": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424602752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395193136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097395193136": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424603200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097424603648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424604096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395193248"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395193248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424604544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395193584"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395193584": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097395193360"}]}}, "140097395193360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097395185408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424212032"}, {"nodeId": "140097424212480"}]}}, "140097424212032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395193920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140097395193920": {"type": "Union", "content": {"items": [{"nodeId": "140097395193808"}, {"nodeId": "N"}]}}, "140097395193808": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424212480": {"type": "Function", "content": {"typeVars": [".-1.140097424212480"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424212480"}], "returnType": {"nodeId": "140097395194144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140097424212480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424212480", "variance": "INVARIANT"}}, "140097395194144": {"type": "Union", "content": {"items": [{"nodeId": "140097395194032"}, {"nodeId": ".-1.140097424212480"}]}}, "140097395194032": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097395190224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424212928"}, {"nodeId": "140097424213376"}]}}, "140097424212928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395194480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140097395194480": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395194368"}]}, {"nodeId": "N"}]}}, "140097395194368": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424213376": {"type": "Function", "content": {"typeVars": [".-1.140097424213376"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424213376"}], "returnType": {"nodeId": "140097395194704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140097424213376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424213376", "variance": "INVARIANT"}}, "140097395194704": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395194592"}]}, {"nodeId": ".-1.140097424213376"}]}}, "140097395194592": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424213824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395194816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140097395194816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415889296"}}}, "140097415889296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "140097415889072"}]}}, "140097415889072": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097415889408"}, {"nodeId": "140097428308736"}]}}, "140097415889408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424214272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395194928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140097395194928": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424214720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424215168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424215616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424216064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424216512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140097395193696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424216960"}, {"nodeId": "140097424217408"}]}}, "140097424216960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395195376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140097395195376": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395195264"}]}, {"nodeId": "N"}]}}, "140097395195264": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097424217408": {"type": "Function", "content": {"typeVars": [".-1.140097424217408"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424217408"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395195712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140097424217408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424217408", "variance": "INVARIANT"}}, "140097395195712": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097395195600"}]}, {"nodeId": ".-1.140097424217408"}]}}, "140097395195600": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097395194256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424217856"}, {"nodeId": "140097424218304"}]}}, "140097424217856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395409184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140097395409184": {"type": "Union", "content": {"items": [{"nodeId": "140097395409072"}, {"nodeId": "N"}]}}, "140097395409072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415891088"}}}, "140097415891088": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097415889856"}]}}, "140097415889856": {"type": "Tuple", "content": {"items": [{"nodeId": "140097415890864"}, {"nodeId": "140097415891200"}, {"nodeId": "140097428308736"}]}}, "140097415890864": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097415891200": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424218304": {"type": "Function", "content": {"typeVars": [".-1.140097424218304"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424218304"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "140097395409520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140097424218304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424218304", "variance": "INVARIANT"}}, "140097395409520": {"type": "Union", "content": {"items": [{"nodeId": "140097395408960"}, {"nodeId": ".-1.140097424218304"}]}}, "140097395408960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097415891088"}}}, "140097424218752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140097424219200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140097395195040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424219648"}, {"nodeId": "140097424220096"}]}}, "140097424219648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395409296"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140097395409296": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424220096": {"type": "Function", "content": {"typeVars": [".-1.140097424220096"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424220096"}], "returnType": {"nodeId": "140097395409408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424220096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424220096", "variance": "INVARIANT"}}, "140097395409408": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424220096"}]}}, "140097395409744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424220544"}, {"nodeId": "140097424220992"}]}}, "140097424220544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097395409968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140097395409968": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424220992": {"type": "Function", "content": {"typeVars": [".-1.140097424220992"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424220992"}], "returnType": {"nodeId": "140097395410080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424220992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424220992", "variance": "INVARIANT"}}, "140097395410080": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424220992"}]}}, "140097424221440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140097395409632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424221888"}, {"nodeId": "140097424222336"}]}}, "140097424221888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395410304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395410304": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424222336": {"type": "Function", "content": {"typeVars": [".-1.140097424222336"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424222336"}], "returnType": {"nodeId": "140097395410416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424222336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424222336", "variance": "INVARIANT"}}, "140097395410416": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424222336"}]}}, "140097395409856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097424222784"}, {"nodeId": "140097424223232"}]}}, "140097424222784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "N"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395410640"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140097395410640": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424223232": {"type": "Function", "content": {"typeVars": [".-1.140097424223232"], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": ".-1.140097424223232"}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": "140097395410752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140097424223232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140097499811328"}, "def": "140097424223232", "variance": "INVARIANT"}}, "140097395410752": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": ".-1.140097424223232"}]}}, "140097424223680": {"type": "Function", "content": {"typeVars": [".0.140097424223680"], "argTypes": [{"nodeId": ".0.140097424223680"}], "returnType": {"nodeId": "140097499816960", "args": [{"nodeId": ".0.140097424223680"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140097424223680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140097462532608"}, "def": "140097424223680", "variance": "INVARIANT"}}, "140097424224128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097395410976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395410976": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424224576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499822944"}, {"nodeId": "140097395411088"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140097395411088": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097424225024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395411200"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140097395411200": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097424225472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097424225920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395411312"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140097395411312": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097424226368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097462531552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140097424226816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395411424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395411424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097424227264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532608"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097395411760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097395411760": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097395411536"}]}}, "140097395411536": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140097462532960": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097424227712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432404032"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432404480"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432404928"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432405376"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432405824"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432406272"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432406720"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432407168"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432407616"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432408064"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432408512"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432408960"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432409408"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432409856"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432410304"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140097462532608"}], "isAbstract": false}}, "140097424227712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395411872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140097395411872": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097432404032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097499819776", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395411984"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140097395411984": {"type": "Union", "content": {"items": [{"nodeId": "140097462532608"}, {"nodeId": "N"}]}}, "140097432404480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097462532608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432404928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "140097499816256", "args": [{"nodeId": "140097462532608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432405376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395412208"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395412208": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097428530176": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428965184"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428965632"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428966080"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428966528"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428965184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097462532608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140097428965632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097462532608"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140097428966080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395474496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140097395474496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097428966528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428530176"}, {"nodeId": "140097499822240"}, {"nodeId": "140097395474720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140097395474720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140097432405824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395412656"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395412656": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432406272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395412880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140097395412880": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432406720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395412992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140097395412992": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432407168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097395413104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140097395413104": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395413328"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395413328": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432408064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395413664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395413664": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432408512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "A"}, {"nodeId": "140097395414000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140097395414000": {"type": "Union", "content": {"items": [{"nodeId": "140097428530176"}, {"nodeId": "N"}]}}, "140097432408960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432409408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432409856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395414224"}, {"nodeId": "140097395414336"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140097395414224": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395414336": {"type": "Union", "content": {"items": [{"nodeId": "140097462531552"}, {"nodeId": "N"}]}}, "140097432410304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532960"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097462533312": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140097462532960"}], "isAbstract": false}}, "140097403415616": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403414912"}], "isAbstract": false}}, "140097403416320": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403415968"}, {"nodeId": "140097403415264"}], "isAbstract": false}}, "140097403416672": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140097403415968"}, {"nodeId": "140097403415616"}], "isAbstract": false}}, "140097407724256": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097407724608": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097407581904"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403592976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374402848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432488192"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432488640"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432489088"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432489536"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097407581904": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403592976": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097374402848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432488192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097399455808"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140097399455808": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432488640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407724960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140097407724960": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097403595664"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403533264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097407724608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432489984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432490880"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432491328"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432491776"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432492224"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432492672"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432493120"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432493568"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432494016"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403595664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097403596896": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407726016"}, {"nodeId": "140097403595776"}]}}, "140097403595776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596672"}}}, "140097403596672": {"type": "Union", "content": {"items": [{"nodeId": "140097403594880"}, {"nodeId": "140097403595440"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097407724960"}]}, {"nodeId": "140097403596336"}, {"nodeId": "140097403596560"}]}}, "140097403594880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428310848", "args": [{"nodeId": "140097407581792"}]}}}, "140097407581792": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407726016"}, {"nodeId": "140097499822944"}]}}, "140097403595440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403361808"}}}, "140097403361808": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097407724960"}]}]}}, "140097403596336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403361696"}}}, "140097403361696": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097407724960"}, {"nodeId": "140097407724960"}]}}, "140097403596560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403591744"}}}, "140097403591744": {"type": "Tuple", "content": {"items": [{"nodeId": "140097407580560"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407724960"}]}}, "140097407580560": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097403533264": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097432489984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097407724608"}, {"nodeId": "140097399456032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140097399456032": {"type": "Union", "content": {"items": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097399455920"}]}, {"nodeId": "N"}]}}, "140097399455920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432490880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140097432491328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097432491776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097399456256": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428310144"}]}}, "140097432492224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456144"}], "returnType": {"nodeId": "140097399456480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097399456144": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428310144"}]}}, "140097399456480": {"type": "Union", "content": {"items": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456592"}]}}, "140097399456592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432492672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399456704"}, {"nodeId": "140097399456368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140097399456704": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097428310144"}]}}, "140097399456368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432493120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097499822944"}, {"nodeId": "140097399456928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140097399456928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432493568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}, {"nodeId": "140097399457264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140097399457264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097403596896"}}}, "140097432494016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724960"}], "returnType": {"nodeId": "140097399457040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399457040": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097432489088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140097432489536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407724608"}, {"nodeId": "140097499822944"}, {"nodeId": "140097407725312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140097407725312": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499822944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097403596784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432494464"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432494912"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432495360"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432495808"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432496256"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140097374397248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432497600"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432498048"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097432498496"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097403596784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432494464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140097432494912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140097432495360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}], "returnType": {"nodeId": "140097399457152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097399457152": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097432495808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097499822944"}, {"nodeId": "140097499815904", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140097432496256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140097374397248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432497600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140097432498048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140097432498496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407725312"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097407725664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140097428521024": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428316832"}], "isAbstract": false}}, "140097428521376": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521024"}], "isAbstract": false}}, "140097428521728": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521376"}], "isAbstract": false}}, "140097428522080": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521376"}], "isAbstract": false}}, "140097428522432": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521024"}, {"nodeId": "140097428322816"}], "isAbstract": false}}, "140097428522784": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428521024"}], "isAbstract": false}}, "140097428523488": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428523840": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428524192": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428524544": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428524896": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428525248": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428525600": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428525952": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428526304": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428526656": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428527008": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428527360": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428527712": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428523136"}], "isAbstract": false}}, "140097428528064": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428528416": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428528768": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428968544"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428968544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428528768"}, {"nodeId": "140097395416688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140097395416688": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428529120": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428529472": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097428529824": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140097428527712"}], "isAbstract": false}}, "140097462531904": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428974144"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428974592"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428975040"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428975488"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428975936"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140097462531552"}], "isAbstract": false}}, "140097428974144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395191120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140097395191120": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428974592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395191344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395191344": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428975040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395191456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395191456": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097462533664"}]}}, "140097462533664": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428390400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428390848"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428391296"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428391744"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428392192"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140097499811328"}], "isAbstract": false}}, "140097428390400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097395414448"}, {"nodeId": "140097395414560"}, {"nodeId": "140097395414672"}, {"nodeId": "140097395414784"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140097395414448": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395414560": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097395414672": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395414784": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428390848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097395414896"}, {"nodeId": "140097395415008"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140097395414896": {"type": "Union", "content": {"items": [{"nodeId": "140097428309088"}, {"nodeId": "140097428309440"}, {"nodeId": "140097428308736"}]}}, "140097395415008": {"type": "Union", "content": {"items": [{"nodeId": "140097428530528"}, {"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097428391296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097428308736"}, {"nodeId": "140097395415120"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140097395415120": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097428391744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428392192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462533664"}, {"nodeId": "140097499811328"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428975488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097428975936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531904"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097462532256": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097499812032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097415606144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428530176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428976384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428976832"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428977280"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428977728"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428978176"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140097428978624"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140097462531552"}], "isAbstract": false}}, "140097415606144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428976384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097395191568"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}, {"nodeId": "140097499812032"}, {"nodeId": "140097499812032"}, {"nodeId": "140097395191680"}, {"nodeId": "140097499812032"}, {"nodeId": "140097428308736"}, {"nodeId": "140097394848288"}, {"nodeId": "140097428530176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140097395191568": {"type": "Union", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "N"}]}}, "140097395191680": {"type": "Union", "content": {"items": [{"nodeId": "140097394848064"}, {"nodeId": "N"}]}}, "140097394848064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462531552"}], "returnType": {"nodeId": "140097462532608"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097394848288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097428976832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428310848", "args": [{"nodeId": "140097428308736"}]}], "returnType": {"nodeId": "140097395191904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140097395191904": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428977280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097395192128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097395192128": {"type": "Tuple", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}]}}, "140097428977728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097428978176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428308736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097428978624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097462532256"}, {"nodeId": "140097428308736"}, {"nodeId": "140097428308736"}], "returnType": {"nodeId": "140097428309088"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140097332518848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097332519520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332517728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332515264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332511008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "140097499822944"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332443872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["u_node"]}}, "140097332392480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097332438048"}, {"nodeId": "140097332438496"}]}}, "140097332438048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428311552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097332438496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}, {"nodeId": "140097407464576"}], "returnType": {"nodeId": "140097428311552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140097332385648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097332436928"}, {"nodeId": "140097332436704"}, {"nodeId": "140097332436256"}]}}, "140097332436928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097419752928", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140097332436704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815904", "args": [{"nodeId": "140097332385312"}]}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140097332385312": {"type": "Tuple", "content": {"items": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, "140097332436256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR_2"], "argNames": ["kwargs"]}}, "140097332437824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097386759552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097386624192"}], "returnType": {"nodeId": "140097499812032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140097386624192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428617840"}}}, "140097428617840": {"type": "Union", "content": {"items": [{"nodeId": "140097499822240"}, {"nodeId": "140097407721088"}, {"nodeId": "140097428310496", "args": [{"nodeId": "140097428613472"}]}]}}, "140097428613472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140097428617840"}}}, "140097332199232": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097332329856"}, {"nodeId": "140097332328960"}]}}, "140097332329856": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": [], "argNames": []}}, "140097332328960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499815904", "args": [{"nodeId": ".1.140097428310848"}]}], "returnType": {"nodeId": "140097428310848", "args": [{"nodeId": ".1.140097428310848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140097332328736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}, {"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["component_size", "u_node", "v_node"]}}, "140097386890064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140097466331008"}, {"nodeId": "140097466331456"}]}}, "140097466331008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097386895664"}, {"nodeId": "140097386895776"}, {"nodeId": "140097386895888"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["values", "sep", "end", "file", "flush"]}}, "140097386895664": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386895776": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386895888": {"type": "Union", "content": {"items": [{"nodeId": "140097402961984", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}, "140097466331456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140097499811328"}, {"nodeId": "140097386896112"}, {"nodeId": "140097386896224"}, {"nodeId": "140097386896336"}, {"nodeId": "140097499812032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED"], "argNames": ["values", "sep", "end", "file", "flush"]}}, "140097386896112": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386896224": {"type": "Union", "content": {"items": [{"nodeId": "140097428308736"}, {"nodeId": "N"}]}}, "140097386896336": {"type": "Union", "content": {"items": [{"nodeId": "140097403220768", "args": [{"nodeId": "140097428308736"}]}, {"nodeId": "N"}]}}}, "exprTypes": {"boruvka": [{"startOffset": 440, "endOffset": 451, "line": 13, "type": {"nodeId": "140097499822944"}}, {"startOffset": 418, "endOffset": 436, "line": 13, "type": {"nodeId": "140097499822944"}}, {"startOffset": 418, "endOffset": 421, "line": 13, "type": {"nodeId": "140097403417728"}}, {"startOffset": 461, "endOffset": 472, "line": 14, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}}, {"startOffset": 461, "endOffset": 464, "line": 14, "type": {"nodeId": "140097403417728"}}, {"startOffset": 504, "endOffset": 519, "line": 15, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 504, "endOffset": 507, "line": 15, "type": {"nodeId": "140097403417728"}}, {"startOffset": 703, "endOffset": 721, "line": 20, "type": {"nodeId": "140097332518848"}}, {"startOffset": 703, "endOffset": 714, "line": 20, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}}, {"startOffset": 703, "endOffset": 706, "line": 20, "type": {"nodeId": "140097403417728"}}, {"startOffset": 724, "endOffset": 729, "line": 20, "type": {"nodeId": "140097499822944"}}, {"startOffset": 732, "endOffset": 737, "line": 20, "type": {"nodeId": "140097499822944"}}, {"startOffset": 740, "endOffset": 745, "line": 20, "type": {"nodeId": "140097499822944"}}, {"startOffset": 883, "endOffset": 898, "line": 25, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 883, "endOffset": 886, "line": 25, "type": {"nodeId": "140097403417728"}}, {"startOffset": 900, "endOffset": 905, "line": 25, "type": {"nodeId": "140097499822944"}}, {"startOffset": 911, "endOffset": 916, "line": 25, "type": {"nodeId": "140097499822944"}}, {"startOffset": 938, "endOffset": 943, "line": 26, "type": {"nodeId": "140097499822944"}}, {"startOffset": 960, "endOffset": 978, "line": 27, "type": {"nodeId": "140097332519520"}}, {"startOffset": 960, "endOffset": 963, "line": 27, "type": {"nodeId": "140097403417728"}}, {"startOffset": 980, "endOffset": 995, "line": 27, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 980, "endOffset": 983, "line": 27, "type": {"nodeId": "140097403417728"}}, {"startOffset": 997, "endOffset": 1002, "line": 27, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1125, "endOffset": 1140, "line": 32, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1125, "endOffset": 1128, "line": 32, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1142, "endOffset": 1147, "line": 32, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1153, "endOffset": 1158, "line": 32, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1177, "endOffset": 1177, "line": 33, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1182, "endOffset": 1197, "line": 33, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1182, "endOffset": 1185, "line": 33, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1238, "endOffset": 1256, "line": 34, "type": {"nodeId": "140097332517728"}}, {"startOffset": 1238, "endOffset": 1241, "line": 34, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1258, "endOffset": 1258, "line": 34, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1216, "endOffset": 1231, "line": 34, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1216, "endOffset": 1219, "line": 34, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1233, "endOffset": 1233, "line": 34, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1551, "endOffset": 1564, "line": 41, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1566, "endOffset": 1571, "line": 41, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1577, "endOffset": 1590, "line": 41, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1592, "endOffset": 1597, "line": 41, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1640, "endOffset": 1645, "line": 42, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1613, "endOffset": 1628, "line": 42, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1613, "endOffset": 1616, "line": 42, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1630, "endOffset": 1635, "line": 42, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1685, "endOffset": 1698, "line": 43, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1700, "endOffset": 1705, "line": 43, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1659, "endOffset": 1672, "line": 43, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1674, "endOffset": 1679, "line": 43, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1720, "endOffset": 1737, "line": 44, "type": {"nodeId": "140097332515264"}}, {"startOffset": 1720, "endOffset": 1723, "line": 44, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1739, "endOffset": 1744, "line": 44, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1761, "endOffset": 1774, "line": 46, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1776, "endOffset": 1781, "line": 46, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1787, "endOffset": 1800, "line": 46, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1802, "endOffset": 1807, "line": 46, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1850, "endOffset": 1868, "line": 47, "type": {"nodeId": "140097332511008"}}, {"startOffset": 1850, "endOffset": 1853, "line": 47, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1870, "endOffset": 1875, "line": 47, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1823, "endOffset": 1838, "line": 47, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 1823, "endOffset": 1826, "line": 47, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1840, "endOffset": 1845, "line": 47, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1916, "endOffset": 1929, "line": 48, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1931, "endOffset": 1936, "line": 48, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1890, "endOffset": 1903, "line": 48, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 1905, "endOffset": 1910, "line": 48, "type": {"nodeId": "140097499822944"}}, {"startOffset": 1951, "endOffset": 1968, "line": 49, "type": {"nodeId": "140097332443872"}}, {"startOffset": 1951, "endOffset": 1954, "line": 49, "type": {"nodeId": "140097403417728"}}, {"startOffset": 1970, "endOffset": 1975, "line": 49, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2136, "endOffset": 2149, "line": 55, "type": {"nodeId": "0"}}, {"startOffset": 2164, "endOffset": 2173, "line": 56, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2223, "endOffset": 2241, "line": 58, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2223, "endOffset": 2226, "line": 58, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2188, "endOffset": 2206, "line": 58, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 2321, "endOffset": 2324, "line": 61, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2329, "endOffset": 2333, "line": 61, "type": {"nodeId": "140097332392480"}}, {"startOffset": 2335, "endOffset": 2353, "line": 61, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2335, "endOffset": 2338, "line": 61, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2369, "endOffset": 2391, "line": 62, "type": {"nodeId": "140097332385648"}}, {"startOffset": 2369, "endOffset": 2384, "line": 62, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 2369, "endOffset": 2372, "line": 62, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2393, "endOffset": 2397, "line": 62, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2400, "endOffset": 2403, "line": 62, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2419, "endOffset": 2439, "line": 63, "type": {"nodeId": "140097332437824"}}, {"startOffset": 2419, "endOffset": 2432, "line": 63, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 2473, "endOffset": 2491, "line": 65, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2473, "endOffset": 2476, "line": 65, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2453, "endOffset": 2469, "line": 65, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2508, "endOffset": 2524, "line": 67, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2547, "endOffset": 2550, "line": 68, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 2555, "endOffset": 2566, "line": 68, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}]}}, {"startOffset": 2555, "endOffset": 2558, "line": 68, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2595, "endOffset": 2598, "line": 69, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 2585, "endOffset": 2585, "line": 69, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2588, "endOffset": 2588, "line": 69, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2591, "endOffset": 2591, "line": 69, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2631, "endOffset": 2646, "line": 71, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 2631, "endOffset": 2634, "line": 71, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2648, "endOffset": 2648, "line": 71, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2617, "endOffset": 2627, "line": 71, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2681, "endOffset": 2696, "line": 72, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 2681, "endOffset": 2684, "line": 72, "type": {"nodeId": "140097403417728"}}, {"startOffset": 2698, "endOffset": 2698, "line": 72, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2667, "endOffset": 2677, "line": 72, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2721, "endOffset": 2731, "line": 74, "type": {"nodeId": "140097499822944"}}, {"startOffset": 2736, "endOffset": 2746, "line": 74, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3326, "endOffset": 3334, "line": 85, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3340, "endOffset": 3350, "line": 85, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3353, "endOffset": 3363, "line": 85, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3428, "endOffset": 3446, "line": 87, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3448, "endOffset": 3456, "line": 87, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3500, "endOffset": 3518, "line": 88, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3520, "endOffset": 3528, "line": 88, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3536, "endOffset": 3536, "line": 88, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3627, "endOffset": 3627, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3630, "endOffset": 3630, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3633, "endOffset": 3633, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3593, "endOffset": 3611, "line": 90, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3613, "endOffset": 3621, "line": 90, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3661, "endOffset": 3679, "line": 92, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3701, "endOffset": 3710, "line": 93, "type": {"nodeId": "140097386759552"}}, {"startOffset": 3718, "endOffset": 3721, "line": 93, "type": {"nodeId": "140097332199232"}}, {"startOffset": 3755, "endOffset": 3758, "line": 94, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 3745, "endOffset": 3745, "line": 94, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3748, "endOffset": 3748, "line": 94, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3751, "endOffset": 3751, "line": 94, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3795, "endOffset": 3810, "line": 96, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 3795, "endOffset": 3798, "line": 96, "type": {"nodeId": "140097403417728"}}, {"startOffset": 3812, "endOffset": 3812, "line": 96, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3781, "endOffset": 3791, "line": 96, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3849, "endOffset": 3864, "line": 97, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097499822944"}, {"nodeId": "140097499822944"}]}}, {"startOffset": 3849, "endOffset": 3852, "line": 97, "type": {"nodeId": "140097403417728"}}, {"startOffset": 3866, "endOffset": 3866, "line": 97, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3835, "endOffset": 3845, "line": 97, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3893, "endOffset": 3903, "line": 99, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3908, "endOffset": 3918, "line": 99, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3959, "endOffset": 3959, "line": 100, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3945, "endOffset": 3954, "line": 100, "type": {"nodeId": "140097499822944"}}, {"startOffset": 3985, "endOffset": 3994, "line": 101, "type": {"nodeId": "140097332328736"}}, {"startOffset": 3985, "endOffset": 3988, "line": 101, "type": {"nodeId": "140097403417728"}}, {"startOffset": 3996, "endOffset": 4009, "line": 101, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "140097499822944"}]}}, {"startOffset": 4012, "endOffset": 4022, "line": 101, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4025, "endOffset": 4035, "line": 101, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4062, "endOffset": 4066, "line": 102, "type": {"nodeId": "140097386890064"}}, {"startOffset": 4068, "endOffset": 4083, "line": 102, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4068, "endOffset": 4089, "line": 102, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4068, "endOffset": 4109, "line": 102, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4140, "endOffset": 4156, "line": 103, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4205, "endOffset": 4223, "line": 105, "type": {"nodeId": "140097499822944"}}, {"startOffset": 4205, "endOffset": 4208, "line": 105, "type": {"nodeId": "140097403417728"}}, {"startOffset": 4176, "endOffset": 4194, "line": 105, "type": {"nodeId": "140097428310848", "args": [{"nodeId": "A"}]}}, {"startOffset": 4233, "endOffset": 4237, "line": 106, "type": {"nodeId": "140097386890064"}}, {"startOffset": 4239, "endOffset": 4301, "line": 106, "type": {"nodeId": "140097499822944"}}]}, "definitions": {"boruvka": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428308736"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140097428311200", "args": [{"nodeId": "140097428308736"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "Graph": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403417728"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499811328"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499812032"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499812384"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499822240"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499822592"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499822944"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499823296"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499823648"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428308032"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428308384"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428308736"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428309088"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428309440"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428309792"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428310144"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428310496"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428310848"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428311200"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407458240"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407458592"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407458944"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428311552"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428311904"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428312256"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403220416"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428312608"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407459296"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428312960"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407459648"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403220768"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428313312"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428313664"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428314016"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407460000"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428314368"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428314720"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403221120"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407460352"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428315072"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428315424"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428315776"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428316128"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428316480"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428316832"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428317184"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428317536"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428317888"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428318240"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428318592"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428318944"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428319296"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428319648"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428320000"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428320352"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428320704"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428321056"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428321408"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428321760"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428322112"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428322464"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428322816"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428323168"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428323520"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428323872"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407270976"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407271328"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407271680"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407272032"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407272384"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407272736"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407273088"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407273440"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407273792"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407274144"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407274496"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407274848"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407275200"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407275552"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407275904"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407276256"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407276608"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407276960"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407277312"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407277664"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407278016"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407278368"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407278720"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407279072"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407279424"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407279776"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407280128"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407280480"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407280832"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407281184"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407281536"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407281888"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407282240"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407282592"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407282944"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407283296"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407283648"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407284000"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407284352"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407284704"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402964800"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402965152"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402965504"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402965856"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402966208"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402966560"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402966912"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402967264"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402967616"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402967968"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402968320"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402968672"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402969024"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402969376"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402969728"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402970080"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402970432"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402970784"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402971136"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402971488"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402971840"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402972192"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402972544"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402972896"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402973248"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402973600"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402973952"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402974304"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402974656"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402975008"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402975360"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402975712"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402976064"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402976416"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402976768"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402977120"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402977472"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402977824"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403109440"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403109792"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403110144"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403110496"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403110848"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403111200"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403111552"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403111904"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403112256"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403112608"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403112960"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403113312"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403113664"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403114016"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403114368"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403114720"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403115072"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403115424"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403115776"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403116128"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403116480"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403116832"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403117184"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403117536"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403117888"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403118240"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403118592"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403118944"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403119296"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403119648"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403120000"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403120352"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403120704"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403121056"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403121408"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403121760"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403122112"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403122464"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403122816"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403123168"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403123520"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403123872"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403124224"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403124576"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403124928"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403125280"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403207744"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403208096"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403208448"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403208800"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403209152"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403209504"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403209856"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403210208"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403210560"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403210912"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403211264"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403211616"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403211968"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403212320"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403212672"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403213024"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403213376"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403213728"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403214080"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403214432"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403214784"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403215136"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403215488"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403215840"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403216192"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403216544"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403216896"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403217248"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403217600"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403217952"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403218304"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403218656"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403219008"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403219360"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419746240"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419746592"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419746944"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419747296"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419747648"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419748000"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419748352"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419748704"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419749056"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419749408"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419749760"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419750112"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419750464"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419750816"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419751168"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419751520"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419751872"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419752224"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419752576"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419752928"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419753280"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419753632"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419753984"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419754336"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419754688"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419755040"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402961984"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402962336"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402962688"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402963040"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402963392"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402963744"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402964096"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407721440"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403222528"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403222880"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403223232"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407721792"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403223584"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403404352"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403404704"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407722144"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403405056"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407467040"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407713344"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407713696"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407714048"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407714400"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407714752"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407715104"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407715456"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407715808"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407716160"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407716512"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407716864"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407717216"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407717568"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407717920"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407718272"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407718624"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407718976"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407719328"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407719680"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407720032"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407720384"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407720736"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407721088"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407457184"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407457536"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407457888"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407727776"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407728128"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407728480"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407728832"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407729184"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462517824"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462518176"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462518528"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462518880"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462519232"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462519584"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462519936"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520288"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403417024"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465632"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499812736"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499813088"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499813440"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499813792"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499814144"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499814496"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499814848"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407286816"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407451200"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407451552"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407451904"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407452256"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407452608"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499815200"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499815552"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407452960"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407453312"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499815904"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499816256"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499816608"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499816960"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499817312"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499817664"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407453664"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499818016"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499818368"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499818720"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499819072"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499819424"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499819776"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499820128"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499820480"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499820832"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407454016"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407454368"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407454720"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407455072"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499821184"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499821536"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407455424"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407455776"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407456128"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407456480"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407456832"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097499821888"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407463872"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407464224"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407464576"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407464928"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465280"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465632"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407465984"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407466336"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407466688"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407460704"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407461056"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407461408"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407461760"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407286112"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419740960"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419741312"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419741664"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407462112"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407462464"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407462816"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407463168"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407286464"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407463520"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428530880"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428531232"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428531584"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428531936"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428532288"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428532640"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407727072"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403221472"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403405760"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407727424"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403406112"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403406464"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403406816"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403407168"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403407520"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403407872"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403408224"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403408576"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462524864"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525216"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525568"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525920"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462526272"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462526624"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462526976"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462527328"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462527680"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462528032"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462528384"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462528736"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462524160"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403409984"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403410336"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403410688"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462524512"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403411040"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403411392"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403411744"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403412096"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407285056"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407285408"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407285760"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419742016"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419742368"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403412448"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419742720"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419743072"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419743424"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419743776"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419744128"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419744480"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403412800"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419744832"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419745184"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419745536"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403413152"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403413504"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403413856"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403414208"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403414560"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419745888"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428532992"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428533344"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428533696"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428534048"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428534400"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428534752"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428535104"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428535456"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428535808"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428536160"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428536512"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428536864"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419739200"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419739552"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419739904"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419740256"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097419740608"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407726368"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407726720"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403405408"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462529088"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462529440"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462529792"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462530144"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462530496"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462530848"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531200"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407722496"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407722848"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407723200"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407723552"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407723904"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462525216"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520640"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462521344"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462522048"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462522400"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462522752"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403417376"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462523104"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462523456"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403408928"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403409632"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462523808"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097402964448"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407725664"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407726016"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520640"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462520992"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532608"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532960"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462533312"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403414912"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403415264"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403415616"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403415968"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403416320"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097403416672"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407724256"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407724608"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407724960"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097407725312"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532608"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531552"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428530528"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428530176"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428521024"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428521376"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428521728"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428522080"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428522432"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428522784"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428523136"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428523488"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428523840"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428524192"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428524544"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428524896"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428525248"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428525600"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428525952"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428526304"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428526656"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428527008"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428527360"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428527712"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428528064"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428528416"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428528768"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428529120"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428529472"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097428529824"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531552"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462531904"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462532256"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140097462533664"}}}}}, "names": {"boruvka": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Graph", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/import_test.json b/utbot-python-types/src/test/resources/import_test.json index cad7435827..3409032ac7 100644 --- a/utbot-python-types/src/test/resources/import_test.json +++ b/utbot-python-types/src/test/resources/import_test.json @@ -1 +1 @@ -{"nodeStorage": {"140357098128128": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077375504"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156706944"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156707392"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156707840"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156708288"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156708736"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156709184"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156709632"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156710528"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156710976"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156711424"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156711872"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156712320"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156712768"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156713216"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156713664"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156714112"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156714560"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156715008"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156715456"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156715904"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156831296"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156831744"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156832192"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156832640"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156833088"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156833536"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156833984"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156834432"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156834880"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156835328"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156835776"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156836224"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156836672"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156837120"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156837568"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156838016"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156838464"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156838912"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156839360"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156839808"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156840256"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156840704"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156841152"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156841600"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156842048"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156842496"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077375728"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156844288"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156844736"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156845184"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156845632"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156846080"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156846528"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156846976"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156962368"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156962816"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156963264"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156963712"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156964160"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156964608"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156965056"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156965504"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}], "isAbstract": false}}, "140357077375504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156706048"}, {"nodeId": "140357156706496"}]}}, "140357156706048": {"type": "Function", "content": {"typeVars": [".0.140357156706048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": ".0.140357156706048"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140357185916416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098270592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076826960"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357017831680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178148224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178148672"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178149120"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178149568"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178150016"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178150464"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178150912"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178151360"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178151808"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178152256"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178152704"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178153152"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178153600"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178154048"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178155392"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178155840"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357017831008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140357098270592": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140357098130592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072464112"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152707456"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152707904"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152708352"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152708800"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152709248"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072464560"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072465344"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072465680"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152712384"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152712832"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152713280"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152713728"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152714176"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152714624"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152715072"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152715520"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152715968"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072466016"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}], "bases": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "isAbstract": false}}, ".1.140357098130592": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098130592", "variance": "INVARIANT"}}, ".2.140357098130592": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098130592", "variance": "INVARIANT"}}, "140357072464112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152703872"}, {"nodeId": "140357152704320"}, {"nodeId": "140357152704768"}, {"nodeId": "140357152705216"}, {"nodeId": "140357152705664"}, {"nodeId": "140357152706112"}, {"nodeId": "140357152706560"}, {"nodeId": "140357152707008"}]}}, "140357152703872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152704320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".2.140357098130592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140357152704768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357106005472": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161087520"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161087968"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140357106005472"}, {"nodeId": ".2.140357106005472"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140357106005472": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106005472", "variance": "INVARIANT"}}, ".2.140357106005472": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106005472", "variance": "COVARIANT"}}, "140357161087520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357106005472"}, {"nodeId": ".2.140357106005472"}]}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357106005472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185920992": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068623872"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185920992"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__iter__"]}}, ".1.140357185920992": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185920992", "variance": "COVARIANT"}}, "140357068623872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185920992"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185920992"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357185921344": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068627456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144428832"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140357185921344"}], "bases": [{"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185921344"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140357185921344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185921344", "variance": "COVARIANT"}}, "140357068627456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185921344"}]}], "returnType": {"nodeId": ".1.140357185921344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144428832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185921344"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185921344"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140357161087968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357106005472"}, {"nodeId": ".2.140357106005472"}]}, {"nodeId": ".1.140357106005472"}], "returnType": {"nodeId": ".2.140357106005472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152705216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".2.140357098130592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357152705664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357072465008"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072465008": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}}, "140357152706112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357072465232"}]}, {"nodeId": ".2.140357098130592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357072465232": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098130592"}]}}, "140357152706560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098130240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072462320"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152542720"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152543168"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152543616"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152544064"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152544512"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152544960"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152545408"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152545856"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072462432"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152547200"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152547648"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072463552"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072463664"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152549888"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072463888"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152551232"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152551680"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152552128"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152552576"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152553024"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152553472"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152553920"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152554368"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152702528"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152702976"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152703424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357098130240"}], "bases": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357098130240"}]}], "isAbstract": false}}, ".1.140357098130240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098130240", "variance": "INVARIANT"}}, "140357072462320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152541824"}, {"nodeId": "140357152542272"}]}}, "140357152541824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152542272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152542720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152543168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": ".1.140357098130240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152543616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152544064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".1.140357098130240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357098484864": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357073248192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__index__"]}}, "140357073248192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185928032": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077122656"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169588352"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022751360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022752032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022750464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022750240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169590592"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169591040"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169591488"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169592832"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027023776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156339776"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156340224"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156340672"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156341120"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156341568"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156342016"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156342464"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156342912"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156343360"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156343808"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156344256"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156344704"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156345152"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156345600"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077369680"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156348736"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156349184"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156349632"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156350080"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156350528"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156350976"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156351424"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156351872"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156352320"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156352768"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156353216"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156353664"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156354112"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156354560"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156355008"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156355456"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156487232"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156487680"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156488128"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156488576"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156489024"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156489472"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156489920"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156490368"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156490816"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156491264"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156491712"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156492160"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156492608"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156493056"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357077122656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169587456"}, {"nodeId": "140357169587904"}]}}, "140357169587456": {"type": "Function", "content": {"typeVars": [".0.140357169587456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077370352"}], "returnType": {"nodeId": ".0.140357169587456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140357077370352": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098471488"}, {"nodeId": "140357098484864"}, {"nodeId": "140357106004768"}]}}, "140357098486976": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143941792"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__buffer__"]}}, "140357143941792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098129184": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018520928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018521600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018521824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018522048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018522272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018522496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018522720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018522944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018523168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018523392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018523616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018523840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152284160"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152284608"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152285056"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152285504"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072457728"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152286848"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152287296"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152287744"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072458736"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152289088"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152290432"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152290880"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152291328"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152291776"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152407616"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152408064"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357018520928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018521600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018521824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357072458400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072458400": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "N"}]}}, "140357098129888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152417472"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152417920"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152418368"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460752"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152419712"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152420160"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152420608"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152421056"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152421504"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072462208"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152422848"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152423296"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152538688"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152539136"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152539584"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357098129888"}], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357098129888"}]}], "isAbstract": false}}, ".1.140357098129888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098129888", "variance": "COVARIANT"}}, "140357152417472": {"type": "Function", "content": {"typeVars": [".0.140357152417472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": ".0.140357152417472"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140357152417472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, "def": "140357152417472", "variance": "INVARIANT"}}, "140357152417920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152418368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185917120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152408512"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072459296"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460080"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460192"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460304"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460416"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460528"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152414336"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140357185928032"}], "isAbstract": false}}, "140357152408512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140357072459296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152408960"}, {"nodeId": "140357152409408"}]}}, "140357152408960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152409408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072460080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152409856"}, {"nodeId": "140357152410304"}]}}, "140357152409856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152410304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072460192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152410752"}, {"nodeId": "140357152411200"}]}}, "140357152410752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152411200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072460304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152411648"}, {"nodeId": "140357152412096"}]}}, "140357152411648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152412096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072460416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152412544"}, {"nodeId": "140357152412992"}]}}, "140357152412544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152412992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072460528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152413440"}, {"nodeId": "140357152413888"}]}}, "140357152413440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152413888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152414336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357072460976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072460976": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}]}}, "140357072460752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152418816"}, {"nodeId": "140357152419264"}]}}, "140357152418816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".1.140357098129888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152419264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098129536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018619456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018619904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018621024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072460640"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152417024"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357018619456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018619904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018621024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072460640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152416128"}, {"nodeId": "140357152416576"}]}}, "140357152416128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129536"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152416576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129536"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357152417024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129536"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357072462096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072462096": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357152419712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098129888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152420160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152420608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152421056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152421504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072462208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152421952"}, {"nodeId": "140357152422400"}]}}, "140357152421952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152422400": {"type": "Function", "content": {"typeVars": [".-1.140357152422400"], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": ".-1.140357152422400"}]}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357072462544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152422400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152422400", "variance": "INVARIANT"}}, "140357072462544": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098129888"}, {"nodeId": ".-1.140357152422400"}]}}, "140357152422848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152423296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152538688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152539136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129888", "args": [{"nodeId": ".1.140357098129888"}]}, {"nodeId": "A"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357152539584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357110143936": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064732992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064733440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064733664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160893600"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160894048"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161075872"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064732992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143936"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185927328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022757184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022756736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022756512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022755616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022755840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022756064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022755168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022754944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357022754720"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076827296"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077119072"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169582528"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169582976"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169583424"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169583872"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169584320"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022754496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169585216"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169585664"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357022757184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022756736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022756512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357110137600", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357110137600": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165462944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165463392"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165463840"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165464288"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165464736"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165465184"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160517920"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160518368"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160518816"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160519264"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160519712"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160520160"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160520608"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}], "bases": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "isAbstract": false}}, ".1.140357110137600": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110137600", "variance": "INVARIANT"}}, ".2.140357110137600": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110137600", "variance": "COVARIANT"}}, "140357165462944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140357165463392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, {"nodeId": ".1.140357110137600"}], "returnType": {"nodeId": ".2.140357110137600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357165463840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357110137600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357165464288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357165464736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357165465184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160517920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357110137600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098475008": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139472544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139472992"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139473440"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139473888"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139474336"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139474784"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139475232"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139475680"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139476128"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139476576"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139477024"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139477472"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140357098475008"}], "bases": [{"nodeId": "140357098474304"}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357098475008"}]}], "isAbstract": false}}, ".1.140357098475008": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098475008", "variance": "COVARIANT"}}, "140357139472544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357098475008"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140357185926272": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068944352"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089836640"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139596000"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139596448"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139596896"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139597344"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139597792"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}], "bases": [{"nodeId": "140357185924512", "args": [{"nodeId": ".1.140357185926272"}]}], "isAbstract": true}}, ".1.140357185926272": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185926272", "variance": "INVARIANT"}}, ".2.140357185926272": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185926272", "variance": "COVARIANT"}}, "140357068944352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}, {"nodeId": ".1.140357185926272"}], "returnType": {"nodeId": ".2.140357185926272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357089836640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357139480160"}, {"nodeId": "140357139595552"}]}}, "140357139480160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}, {"nodeId": ".1.140357185926272"}], "returnType": {"nodeId": "140357090071536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357090071536": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357185926272"}, {"nodeId": "N"}]}}, "140357139595552": {"type": "Function", "content": {"typeVars": [".-1.140357139595552"], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}, {"nodeId": ".1.140357185926272"}, {"nodeId": "140357090071648"}], "returnType": {"nodeId": "140357090071760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140357090071648": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357185926272"}, {"nodeId": ".-1.140357139595552"}]}}, ".-1.140357139595552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139595552", "variance": "INVARIANT"}}, "140357090071760": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357185926272"}, {"nodeId": ".-1.140357139595552"}]}}, "140357139596000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}], "returnType": {"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098474656": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139467168"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139467616"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139468064"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139468512"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139468960"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139469408"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139469856"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139470304"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139470752"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139471200"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139471648"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139472096"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}], "bases": [{"nodeId": "140357098474304"}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357098274288"}]}], "isAbstract": false}}, ".1.140357098474656": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098474656", "variance": "COVARIANT"}}, ".2.140357098474656": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098474656", "variance": "COVARIANT"}}, "140357139467168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140357139467616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090068288"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098478528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072466464"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152718208"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152833600"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152834048"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152834496"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152834944"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152835392"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152835840"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152836288"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152836736"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152837184"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152837632"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152838080"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152838528"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152838976"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152839424"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152839872"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152840320"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152840768"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152841216"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152841664"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152842112"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152842560"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152843008"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152843456"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152843904"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152844352"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152844800"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152845248"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152845696"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152846144"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152846592"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357098478528"}], "bases": [{"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357098478528"}]}], "isAbstract": false}}, ".1.140357098478528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098478528", "variance": "INVARIANT"}}, "140357072466464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152717312"}, {"nodeId": "140357152717760"}]}}, "140357152717312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152717760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152718208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": ".1.140357098478528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152833600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152834048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152834496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152834944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": ".1.140357098478528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152835392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152835840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152836288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152836736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152837184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152837632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": ".1.140357098478528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152838080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152838528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152838976": {"type": "Function", "content": {"typeVars": [".-1.140357152838976"], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357152838976"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357072468592"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140357152838976": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152838976", "variance": "INVARIANT"}}, "140357072468592": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478528"}, {"nodeId": ".-1.140357152838976"}]}}, "140357152839424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152839872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152840320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152840768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152841216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185925568": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068793312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144585696"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144586144"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144586592"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144587040"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144587488"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144587936"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144588384"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144588832"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144589280"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144589728"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140357185925568"}], "bases": [{"nodeId": "140357185924512", "args": [{"nodeId": ".1.140357185925568"}]}], "isAbstract": true}}, ".1.140357185925568": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185925568", "variance": "COVARIANT"}}, "140357068793312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144585696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144586144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144586592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144587040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144587488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144587936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144588384": {"type": "Function", "content": {"typeVars": [".-1.140357144588384"], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".-1.140357144588384"}]}], "returnType": {"nodeId": "140357185925568", "args": [{"nodeId": "140357090067056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357144588384": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357144588384", "variance": "INVARIANT"}}, "140357090067056": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357185925568"}, {"nodeId": ".-1.140357144588384"}]}}, "140357144588832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144589280": {"type": "Function", "content": {"typeVars": [".-1.140357144589280"], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".-1.140357144589280"}]}], "returnType": {"nodeId": "140357185925568", "args": [{"nodeId": "140357090067280"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357144589280": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357144589280", "variance": "INVARIANT"}}, "140357090067280": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357185925568"}, {"nodeId": ".-1.140357144589280"}]}}, "140357144589728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925568"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140357185924512": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068786368"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185924512"}], "bases": [{"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185924512"}]}, {"nodeId": "140357185924160", "args": [{"nodeId": ".1.140357185924512"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140357185924512": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185924512", "variance": "COVARIANT"}}, "140357068786368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924512", "args": [{"nodeId": ".1.140357185924512"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357185924160": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068717216"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185924160"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__contains__"]}}, ".1.140357185924160": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185924160", "variance": "COVARIANT"}}, "140357068717216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924160", "args": [{"nodeId": ".1.140357185924160"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152841664": {"type": "Function", "content": {"typeVars": [".0.140357152841664"], "argTypes": [{"nodeId": ".0.140357152841664"}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": ".0.140357152841664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152841664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "def": "140357152841664", "variance": "INVARIANT"}}, "140357152842112": {"type": "Function", "content": {"typeVars": [".-1.140357152842112"], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".-1.140357152842112"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357072468816"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152842112": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152842112", "variance": "INVARIANT"}}, "140357072468816": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478528"}, {"nodeId": ".-1.140357152842112"}]}}, "140357152842560": {"type": "Function", "content": {"typeVars": [".0.140357152842560"], "argTypes": [{"nodeId": ".0.140357152842560"}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": ".0.140357152842560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152842560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "def": "140357152842560", "variance": "INVARIANT"}}, "140357152843008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357072468928"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072468928": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478528"}, {"nodeId": "N"}]}}, "140357152843456": {"type": "Function", "content": {"typeVars": [".0.140357152843456"], "argTypes": [{"nodeId": ".0.140357152843456"}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": ".0.140357152843456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152843456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "def": "140357152843456", "variance": "INVARIANT"}}, "140357152843904": {"type": "Function", "content": {"typeVars": [".-1.140357152843904"], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".-1.140357152843904"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357072469040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152843904": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152843904", "variance": "INVARIANT"}}, "140357072469040": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478528"}, {"nodeId": ".-1.140357152843904"}]}}, "140357152844352": {"type": "Function", "content": {"typeVars": [".0.140357152844352"], "argTypes": [{"nodeId": ".0.140357152844352"}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357098478528"}]}], "returnType": {"nodeId": ".0.140357152844352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152844352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, "def": "140357152844352", "variance": "INVARIANT"}}, "140357152844800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152845248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152845696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152846144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098478528"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152846592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357185925920": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068794880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068853024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144591072"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144591520"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144591968"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139464480"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139464928"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139465376"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139465824"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140357185925920"}], "bases": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925920"}]}], "isAbstract": true}}, ".1.140357185925920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185925920", "variance": "INVARIANT"}}, "140357068794880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, {"nodeId": ".1.140357185925920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140357068853024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, {"nodeId": ".1.140357185925920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140357144591072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144591520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}], "returnType": {"nodeId": ".1.140357185925920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144591968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, {"nodeId": ".1.140357185925920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140357139464480": {"type": "Function", "content": {"typeVars": [".0.140357139464480"], "argTypes": [{"nodeId": ".0.140357139464480"}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925920"}]}], "returnType": {"nodeId": ".0.140357139464480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357139464480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, "def": "140357139464480", "variance": "INVARIANT"}}, "140357139464928": {"type": "Function", "content": {"typeVars": [".0.140357139464928"], "argTypes": [{"nodeId": ".0.140357139464928"}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140357139464928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357139464928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, "def": "140357139464928", "variance": "INVARIANT"}}, "140357139465376": {"type": "Function", "content": {"typeVars": [".0.140357139465376"], "argTypes": [{"nodeId": ".0.140357139465376"}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357185925920"}]}], "returnType": {"nodeId": ".0.140357139465376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357139465376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, "def": "140357139465376", "variance": "INVARIANT"}}, "140357139465824": {"type": "Function", "content": {"typeVars": [".0.140357139465824"], "argTypes": [{"nodeId": ".0.140357139465824"}, {"nodeId": "140357185925568", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140357139465824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357139465824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185925920", "args": [{"nodeId": ".1.140357185925920"}]}, "def": "140357139465824", "variance": "INVARIANT"}}, "140357090068288": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139468064": {"type": "Function", "content": {"typeVars": [".-1.140357139468064"], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139468064"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".-1.140357139468064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139468064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139468064", "variance": "INVARIANT"}}, "140357139468512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139468960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357090068512"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357090068512": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139469408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357090068736"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357090068736": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139469856": {"type": "Function", "content": {"typeVars": [".-1.140357139469856"], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139469856"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090069072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139469856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139469856", "variance": "INVARIANT"}}, "140357090069072": {"type": "Union", "content": {"items": [{"nodeId": "140357090068960"}, {"nodeId": ".-1.140357139469856"}]}}, "140357090068960": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139470304": {"type": "Function", "content": {"typeVars": [".-1.140357139470304"], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139470304"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090069408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139470304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139470304", "variance": "INVARIANT"}}, "140357090069408": {"type": "Union", "content": {"items": [{"nodeId": "140357090069296"}, {"nodeId": ".-1.140357139470304"}]}}, "140357090069296": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139470752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090069744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357090069744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139471200": {"type": "Function", "content": {"typeVars": [".-1.140357139471200"], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139471200"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".-1.140357139471200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139471200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139471200", "variance": "INVARIANT"}}, "140357139471648": {"type": "Function", "content": {"typeVars": [".-1.140357139471648"], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139471648"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090070080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139471648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139471648", "variance": "INVARIANT"}}, "140357090070080": {"type": "Union", "content": {"items": [{"nodeId": "140357090069968"}, {"nodeId": ".-1.140357139471648"}]}}, "140357090069968": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139472096": {"type": "Function", "content": {"typeVars": [".-1.140357139472096"], "argTypes": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139472096"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090070416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139472096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139472096", "variance": "INVARIANT"}}, "140357090070416": {"type": "Union", "content": {"items": [{"nodeId": "140357090070304"}, {"nodeId": ".-1.140357139472096"}]}}, "140357090070304": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357098474304": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139466272"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139466720"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140357098473248"}], "isAbstract": false}}, "140357139466272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474304"}, {"nodeId": "140357185926272", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140357139466720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098474304"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098473248": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068621632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__len__"]}}, "140357068621632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098473248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098274288": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098474656"}, {"nodeId": ".2.140357098474656"}]}}, "140357139596448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}], "returnType": {"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357185926272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357139596896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}], "returnType": {"nodeId": "140357098475360", "args": [{"nodeId": ".2.140357185926272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098475360": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139477920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139478368"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139478816"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139479264"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357098475360"}], "bases": [{"nodeId": "140357098474304"}, {"nodeId": "140357185924512", "args": [{"nodeId": ".1.140357098475360"}]}], "isAbstract": false}}, ".1.140357098475360": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098475360", "variance": "COVARIANT"}}, "140357139477920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475360", "args": [{"nodeId": ".1.140357098475360"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": "A"}, {"nodeId": ".1.140357098475360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140357139478368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475360", "args": [{"nodeId": ".1.140357098475360"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139478816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475360", "args": [{"nodeId": ".1.140357098475360"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098475360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357139479264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475360", "args": [{"nodeId": ".1.140357098475360"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098475360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357139597344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139597792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926272"}, {"nodeId": ".2.140357185926272"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139472992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098475008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139473440": {"type": "Function", "content": {"typeVars": [".-1.140357139473440"], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139473440"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".-1.140357139473440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139473440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139473440", "variance": "INVARIANT"}}, "140357139473888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139474336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098475008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357139474784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098475008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357139475232": {"type": "Function", "content": {"typeVars": [".-1.140357139475232"], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139475232"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090070752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139475232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139475232", "variance": "INVARIANT"}}, "140357090070752": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098475008"}, {"nodeId": ".-1.140357139475232"}]}}, "140357139475680": {"type": "Function", "content": {"typeVars": [".-1.140357139475680"], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139475680"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090070864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139475680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139475680", "variance": "INVARIANT"}}, "140357090070864": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098475008"}, {"nodeId": ".-1.140357139475680"}]}}, "140357139476128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".1.140357098475008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139476576": {"type": "Function", "content": {"typeVars": [".-1.140357139476576"], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139476576"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": ".-1.140357139476576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139476576": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139476576", "variance": "INVARIANT"}}, "140357139477024": {"type": "Function", "content": {"typeVars": [".-1.140357139477024"], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139477024"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090071088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139477024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139477024", "variance": "INVARIANT"}}, "140357090071088": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098475008"}, {"nodeId": ".-1.140357139477024"}]}}, "140357139477472": {"type": "Function", "content": {"typeVars": [".-1.140357139477472"], "argTypes": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098475008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357139477472"}]}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357090071200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357139477472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139477472", "variance": "INVARIANT"}}, "140357090071200": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098475008"}, {"nodeId": ".-1.140357139477472"}]}}, "140357160518368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357098475360", "args": [{"nodeId": ".2.140357110137600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160518816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160519264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357160519712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357110137600"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357160520160": {"type": "Function", "content": {"typeVars": [".-1.140357160520160", ".-2.140357160520160"], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357160520160"}, {"nodeId": ".-2.140357160520160"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357090080048"}, {"nodeId": "140357090080160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357160520160": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357160520160", "variance": "INVARIANT"}}, ".-2.140357160520160": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357160520160", "variance": "INVARIANT"}}, "140357090080048": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".-1.140357160520160"}]}}, "140357090080160": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357110137600"}, {"nodeId": ".-2.140357160520160"}]}}, "140357160520608": {"type": "Function", "content": {"typeVars": [".-1.140357160520608", ".-2.140357160520608"], "argTypes": [{"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".2.140357110137600"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357160520608"}, {"nodeId": ".-2.140357160520608"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357090080272"}, {"nodeId": "140357090080384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357160520608": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357160520608", "variance": "INVARIANT"}}, ".-2.140357160520608": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357160520608", "variance": "INVARIANT"}}, "140357090080272": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110137600"}, {"nodeId": ".-1.140357160520608"}]}}, "140357090080384": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357110137600"}, {"nodeId": ".-2.140357160520608"}]}}, "140357022755616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022755840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022756064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022755168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022754944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357077122208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077122208": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357022754720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076827296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169580736"}, {"nodeId": "140357169581184"}]}}, "140357169580736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357169581184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140357077119072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169581632"}, {"nodeId": "140357169582080"}]}}, "140357169581632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357169582080": {"type": "Function", "content": {"typeVars": [".-1.140357169582080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140357169582080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140357169582080": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169582080", "variance": "INVARIANT"}}, "140357169582528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140357169582976": {"type": "Function", "content": {"typeVars": [".-1.140357169582976"], "argTypes": [{"nodeId": ".-1.140357169582976"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".-1.140357169582976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140357169582976": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169582976", "variance": "INVARIANT"}}, "140357169583424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357185927328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357169583872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357169584320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357022754496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140357169585216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110144640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110144640": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064802592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161077216"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161077664"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064802592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110144640"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357161077216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110144640"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110144640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357161077664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110144640"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110144640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357169585664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927328"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110144640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357064733440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143936"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064733664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143936"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160893600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143936"}, {"nodeId": "140357185927328"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140357160894048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143936"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357161075872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143936"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185924864": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089835184"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144576736"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144577184"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144577632"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144578080"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144578528"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357185924864"}], "bases": [{"nodeId": "140357185924512", "args": [{"nodeId": ".1.140357185924864"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357185924864"}]}], "isAbstract": true}}, ".1.140357185924864": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185924864", "variance": "COVARIANT"}}, "140357089835184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144444512"}, {"nodeId": "140357144576288"}]}}, "140357144444512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357185924864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144576288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144576736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}, {"nodeId": "A"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140357144577184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140357144577632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144578080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185924864"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357144578528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185924864"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185924864"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357185921696": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068630144"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185921696"}], "bases": [{"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185921696"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140357185921696": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185921696", "variance": "COVARIANT"}}, "140357068630144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357185921696"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185921696"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357018522048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357072458512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072458512": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "N"}]}}, "140357018522272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357072458624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072458624": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "N"}]}}, "140357018522496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018522720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018522944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357098486976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018523168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018523392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018523616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018523840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152284160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140357152284608": {"type": "Function", "content": {"typeVars": [".0.140357152284608"], "argTypes": [{"nodeId": ".0.140357152284608"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357152284608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098129184"}, "def": "140357152284608", "variance": "INVARIANT"}}, "140357152285056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357072458848"}, {"nodeId": "140357072458960"}, {"nodeId": "140357072459072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357072458848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357072458960": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357098134816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114442496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089656080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114443840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148617280"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148617728"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148618176"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357114442496": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357089656080": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357114443840": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357110142528": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160878816"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114437456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064722464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064722688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064722912"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357160878816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142528"}, {"nodeId": "140357085107856"}, {"nodeId": "140357110142880"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140357085107856": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357110142880": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064724480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064724928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064725152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064725376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064725600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064725824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064726048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357131348768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160883744"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064724480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357085107968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085107968": {"type": "Union", "content": {"items": [{"nodeId": "140357110142880"}, {"nodeId": "N"}]}}, "140357064724928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064725152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357110137248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357110137248": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064290624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064291744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064291296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064291968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064292192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064292416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064292640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064292864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064293088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064293312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064293536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064293760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064293984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064409152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064409376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064409600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064410272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165458016"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165460256"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165462048"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064290624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064291744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064291296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064291968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064292192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064292416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064292640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098128480": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077376512"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156967296"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156967744"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156968192"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156968640"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156969088"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156969536"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156970432"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156970880"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156971776"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156972224"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156972672"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156973120"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156973568"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156974016"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156974464"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156974912"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156975360"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156975808"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156976256"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156976704"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156977152"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156977600"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156978048"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157126208"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157126656"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157127104"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157127552"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157128000"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157128448"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157128896"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157129344"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157129792"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157130240"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157130688"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157131136"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157131584"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157132032"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157132480"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157132928"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157133376"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357018187616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357018186720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157134720"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157135168"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077379424"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157136512"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157136960"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157137408"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157137856"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157138304"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157138752"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157139200"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157139648"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157140096"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157140544"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157140992"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157141440"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157240896"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357077376512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156965952"}, {"nodeId": "140357156966400"}, {"nodeId": "140357156966848"}]}}, "140357156965952": {"type": "Function", "content": {"typeVars": [".0.140357156965952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077380544"}], "returnType": {"nodeId": ".0.140357156965952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357077380544": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357098484864"}]}, {"nodeId": "140357098484864"}, {"nodeId": "140357098472544"}, {"nodeId": "140357098486976"}]}}, "140357098472544": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068546432"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__bytes__"]}}, "140357068546432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098472544"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357156965952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128480"}, "def": "140357156965952", "variance": "INVARIANT"}}, "140357156966400": {"type": "Function", "content": {"typeVars": [".0.140357156966400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357156966400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140357156966400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128480"}, "def": "140357156966400", "variance": "INVARIANT"}}, "140357156966848": {"type": "Function", "content": {"typeVars": [".0.140357156966848"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140357156966848"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140357156966848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128480"}, "def": "140357156966848", "variance": "INVARIANT"}}, "140357156967296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156967744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357156968192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077380656"}, {"nodeId": "140357077380768"}, {"nodeId": "140357077380880"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077380656": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357077380768": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077380880": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156968640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140357156969088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077380992"}, {"nodeId": "140357077381104"}, {"nodeId": "140357077381216"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077380992": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098486976"}]}]}}, "140357077381104": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077381216": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156969536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140357156970432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077381328"}, {"nodeId": "140357077381440"}, {"nodeId": "140357077381552"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077381328": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357077381440": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077381552": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156970880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077381664"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140357077381664": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}]}}, "140357156971776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077381776"}, {"nodeId": "140357077381888"}, {"nodeId": "140357077382000"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077381776": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357077381888": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077382000": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156972224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156972672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156973120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156973568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156974016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156974464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156974912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156975360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156975808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098486976"}]}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357156976256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}, {"nodeId": "140357077382112"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357077382112": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}]}}, "140357098128832": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077380432"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157242688"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157243136"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157243584"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157244032"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157244480"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157244928"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157245376"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157245824"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157246720"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157247168"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157247616"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157248512"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157248960"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157249408"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157249856"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157250304"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157250752"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157251200"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157251648"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157252096"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157252544"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157252992"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157253440"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157253888"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157254336"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157254784"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157255232"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157255680"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157256128"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357157256576"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152129088"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152129536"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152129984"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152130432"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152130880"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152131328"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152131776"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152132224"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152132672"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152133120"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152133568"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152134016"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152134464"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152134912"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152135360"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152135808"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357018361344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357018360224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152137152"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152137600"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077384464"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072457616"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152139840"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152140288"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152140736"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152141184"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152141632"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152142080"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152142528"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152142976"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152143424"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152143872"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152144320"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152144768"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152276544"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152276992"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152277440"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152277888"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152278336"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140357185925216", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357077380432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357157241344"}, {"nodeId": "140357157241792"}, {"nodeId": "140357157242240"}]}}, "140357157241344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157241792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072453696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072453696": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357098484864"}]}, {"nodeId": "140357098484864"}, {"nodeId": "140357098486976"}]}}, "140357157242240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140357157242688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157243136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157243584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357157244032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072453808"}, {"nodeId": "140357072453920"}, {"nodeId": "140357072454032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072453808": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357072453920": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072454032": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157244480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157244928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140357157245376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072454144"}, {"nodeId": "140357072454256"}, {"nodeId": "140357072454368"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072454144": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098486976"}]}]}}, "140357072454256": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072454368": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157245824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140357157246720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098484864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157247168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072454480"}, {"nodeId": "140357072454592"}, {"nodeId": "140357072454704"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072454480": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357072454592": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072454704": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157247616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072454816"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140357072454816": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}]}}, "140357157248512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072454928"}, {"nodeId": "140357072455040"}, {"nodeId": "140357072455152"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072454928": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357072455040": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072455152": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157248960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357157249408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157249856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157250304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157250752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157251200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157251648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157252096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157252544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157252992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098486976"}]}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157253440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}, {"nodeId": "140357072455264"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357072455264": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}]}}, "140357157253888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157254336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072455376"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357072455376": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357157254784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357072455600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072455600": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128832"}, {"nodeId": "140357098128832"}, {"nodeId": "140357098128832"}]}}, "140357157255232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357157255680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157256128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157256576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152129088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357152129536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072455712"}, {"nodeId": "140357072455824"}, {"nodeId": "140357072455936"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072455712": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357072455824": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072455936": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357152129984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072456048"}, {"nodeId": "140357072456160"}, {"nodeId": "140357072456272"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072456048": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357072456160": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072456272": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357152130432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}, {"nodeId": "140357072456384"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357072456384": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}]}}, "140357152130880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357072456608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072456608": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128832"}, {"nodeId": "140357098128832"}, {"nodeId": "140357098128832"}]}}, "140357152131328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072456720"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128832"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357072456720": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357152131776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072456832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357072456832": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357152132224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072456944"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128832"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357072456944": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357152132672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128832"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140357152133120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072457056"}, {"nodeId": "140357072457168"}, {"nodeId": "140357072457280"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357072457056": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098486976"}]}]}}, "140357072457168": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357072457280": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357152133568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072457392"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357072457392": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357152134016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152134464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152134912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072457504"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140357072457504": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357152135360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152135808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357018361344": {"type": "Function", "content": {"typeVars": [".0.140357018361344"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357018361344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140357018361344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128832"}, "def": "140357018361344", "variance": "INVARIANT"}}, "140357018360224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486976"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152137152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152137600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357077384464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152138048"}, {"nodeId": "140357152138496"}]}}, "140357152138048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152138496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072457616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152138944"}, {"nodeId": "140357152139392"}]}}, "140357152138944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357152139392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098129536"}, {"nodeId": "140357072457952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357072457952": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357098484864"}]}, {"nodeId": "140357098128480"}]}}, "140357152139840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072458064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072458064": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098129536"}]}}, "140357152140288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152140736": {"type": "Function", "content": {"typeVars": [".0.140357152140736"], "argTypes": [{"nodeId": ".0.140357152140736"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": ".0.140357152140736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152140736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128832"}, "def": "140357152140736", "variance": "INVARIANT"}}, "140357152141184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152141632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152142080": {"type": "Function", "content": {"typeVars": [".0.140357152142080"], "argTypes": [{"nodeId": ".0.140357152142080"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".0.140357152142080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152142080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128832"}, "def": "140357152142080", "variance": "INVARIANT"}}, "140357152142528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152142976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357072458288"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072458288": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098486976"}]}}, "140357152143424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152143872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152144320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152144768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152276544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152276992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152277440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152277888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152278336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128832"}, {"nodeId": "140357098129184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357185925216": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068790624"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089835632"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089836192"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089836528"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144582112"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144582560"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144583008"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144583456"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144583904"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144584352"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144584800"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140357185925216"}], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": ".1.140357185925216"}]}], "isAbstract": true}}, ".1.140357185925216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185925216", "variance": "INVARIANT"}}, "140357068790624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357185928032"}, {"nodeId": ".1.140357185925216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140357089835632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144579424"}, {"nodeId": "140357144579872"}]}}, "140357144579424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357185925216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144579872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357089836192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144580320"}, {"nodeId": "140357144580768"}]}}, "140357144580320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357185928032"}, {"nodeId": ".1.140357185925216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357144580768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357098129536"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185925216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357089836528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144581216"}, {"nodeId": "140357144581664"}]}}, "140357144581216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144581664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144582112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": ".1.140357185925216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140357144582560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144583008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185925216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140357144583456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144583904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357185925216"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140357144584352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, {"nodeId": ".1.140357185925216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140357144584800": {"type": "Function", "content": {"typeVars": [".0.140357144584800"], "argTypes": [{"nodeId": ".0.140357144584800"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357185925216"}]}], "returnType": {"nodeId": ".0.140357144584800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357144584800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357185925216"}]}, "def": "140357144584800", "variance": "INVARIANT"}}, "140357156976704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156977152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077382224"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357077382224": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357156977600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357077382448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077382448": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}]}}, "140357156978048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357157126208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157126656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357157127104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077382560"}, {"nodeId": "140357077382672"}, {"nodeId": "140357077382784"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077382560": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357077382672": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077382784": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157127552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077382896"}, {"nodeId": "140357077383008"}, {"nodeId": "140357077383120"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077382896": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098484864"}]}}, "140357077383008": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077383120": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157128000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}, {"nodeId": "140357077383232"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357077383232": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}]}}, "140357157128448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357077383456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077383456": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}]}}, "140357157128896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077383568"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357077383568": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357157129344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077383680"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357077383680": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357157129792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077383792"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357077383792": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357157130240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140357157130688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077383904"}, {"nodeId": "140357077384016"}, {"nodeId": "140357077384128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077383904": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098486976"}]}]}}, "140357077384016": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077384128": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357157131136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077384240"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357077384240": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357157131584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157132032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157132480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077384352"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140357077384352": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "N"}]}}, "140357157132928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357157133376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357018187616": {"type": "Function", "content": {"typeVars": [".0.140357018187616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357018187616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140357018187616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128480"}, "def": "140357018187616", "variance": "INVARIANT"}}, "140357018186720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486976"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157134720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357157135168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357077379424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357157135616"}, {"nodeId": "140357157136064"}]}}, "140357157135616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157136064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157136512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157136960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157137408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157137856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157138304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357077384688"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357077384688": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098486976"}]}}, "140357157138752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157139200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157139648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157140096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157140544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157140992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357157141440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357077384912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077384912": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}]}}, "140357157240896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357064292864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064293088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064293312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064293536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064293760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064293984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064409152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064409376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064409600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064410272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357165458016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357090079824"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090079824": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357090079600"}]}}, "140357090079600": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357165460256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140357165462048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137248"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357110137248"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140357064725376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064725600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064725824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357085108416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085108416": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "A"}]}}, "140357064726048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357131348768": {"type": "Union", "content": {"items": [{"nodeId": "140357114361024"}, {"nodeId": "N"}]}}, "140357114361024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357160883744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357114437456": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357064722464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142528"}], "returnType": {"nodeId": "140357110142880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064722688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142528"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064722912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142528"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357148617280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140357148617728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098134816"}, {"nodeId": "140357073037216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357073037216": {"type": "Union", "content": {"items": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357148618176": {"type": "Function", "content": {"typeVars": [".0.140357148618176"], "argTypes": [{"nodeId": ".0.140357148618176"}, {"nodeId": "140357073037440"}], "returnType": {"nodeId": ".0.140357148618176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140357148618176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098134816"}, "def": "140357148618176", "variance": "INVARIANT"}}, "140357073037440": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357072459072": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357152285504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098128128"}, {"nodeId": "140357072459184"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140357072459184": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}]}}, "140357072457728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152285952"}, {"nodeId": "140357152286400"}]}}, "140357152285952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152286400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152286848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152287296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152287744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357072458736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152288192"}, {"nodeId": "140357152288640"}]}}, "140357152288192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098129536"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357152288640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357152289088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357072459968"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140357072459968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140357152290432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152290880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152291328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152291776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357072459856"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140357072459856": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}]}}, "140357152407616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152408064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098129184"}, {"nodeId": "140357098129184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098471488": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068541504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__int__"]}}, "140357068541504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098471488"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357106004768": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161086624"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__trunc__"]}}, "140357161086624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106004768"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357169587456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928032"}, "def": "140357169587456", "variance": "INVARIANT"}}, "140357169587904": {"type": "Function", "content": {"typeVars": [".0.140357169587904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077370464"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".0.140357169587904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140357077370464": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}]}}, ".0.140357169587904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928032"}, "def": "140357169587904", "variance": "INVARIANT"}}, "140357169588352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357077370800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077370800": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "0"}]}}, "140357022751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022752032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357022750240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357169590592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357169591040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357169591488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357169592832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357098484864"}, {"nodeId": "140357077371360"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140357077371360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357027023776": {"type": "Function", "content": {"typeVars": [".0.140357027023776"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077371472"}, {"nodeId": "140357077371808"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": ".0.140357027023776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140357077371472": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357098484864"}]}, {"nodeId": "140357098472544"}, {"nodeId": "140357098486976"}]}}, "140357077371808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140357027023776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928032"}, "def": "140357027023776", "variance": "INVARIANT"}}, "140357156339776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156340224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156340672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156341120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156341568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185928384": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156493504"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156493952"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156494400"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156494848"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357017982944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357017983392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357017982048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156496640"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156497088"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156497536"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156497984"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156498432"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156498880"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156499328"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156499776"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077370240"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156501120"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156501568"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156502016"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156502464"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156502912"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156601920"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156602368"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077373712"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156604160"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156604608"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156605056"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156605504"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077374384"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156606848"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156607296"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156607744"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156608192"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156608640"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156609088"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156609536"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156609984"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156610432"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156610880"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156611328"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156611776"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357156493504": {"type": "Function", "content": {"typeVars": [".0.140357156493504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077373824"}], "returnType": {"nodeId": ".0.140357156493504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140357077373824": {"type": "Union", "content": {"items": [{"nodeId": "140357098471840"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098486976"}]}}, "140357098471840": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068543296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__float__"]}}, "140357068543296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098471840"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357156493504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928384"}, "def": "140357156493504", "variance": "INVARIANT"}}, "140357156493952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357077374048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077374048": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357156494400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156494848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357017982944": {"type": "Function", "content": {"typeVars": [".0.140357017982944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357017982944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140357017982944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928384"}, "def": "140357017982944", "variance": "INVARIANT"}}, "140357017983392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357017982048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156496640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156497088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156497536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156497984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156498432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156498880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156499328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156499776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357077374272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357077374272": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357077370240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156500224"}, {"nodeId": "140357156500672"}]}}, "140357156500224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357156500672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357156501120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156501568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156502016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156502464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156502912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156601920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156602368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357077374720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077374720": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357077373712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156602816"}, {"nodeId": "140357156603264"}, {"nodeId": "140357156603712"}]}}, "140357156602816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357077374944"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357077374944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106491664"}}}, "140357106491664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357156603264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357077375056"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357077375056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106490208"}}}, "140357106490208": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357185928736": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077374832"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357017989216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357017990560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156614912"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156615360"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156615808"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156616256"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156616704"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156617152"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156617600"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156700224"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156700672"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156701120"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156701568"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156702016"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156702464"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156702912"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156703360"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156703808"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156704256"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357077374832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156612224"}, {"nodeId": "140357156612672"}]}}, "140357156612224": {"type": "Function", "content": {"typeVars": [".0.140357156612224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077375840"}, {"nodeId": "140357077375952"}], "returnType": {"nodeId": ".0.140357156612224"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140357077375840": {"type": "Union", "content": {"items": [{"nodeId": "140357185928736"}, {"nodeId": "140357098472192"}, {"nodeId": "140357098471840"}, {"nodeId": "140357098484864"}]}}, "140357098472192": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068544864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__complex__"]}}, "140357068544864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098472192"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357077375952": {"type": "Union", "content": {"items": [{"nodeId": "140357185928736"}, {"nodeId": "140357098471840"}, {"nodeId": "140357098484864"}]}}, ".0.140357156612224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928736"}, "def": "140357156612224", "variance": "INVARIANT"}}, "140357156612672": {"type": "Function", "content": {"typeVars": [".0.140357156612672"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357077376064"}], "returnType": {"nodeId": ".0.140357156612672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140357077376064": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098472192"}, {"nodeId": "140357098471840"}, {"nodeId": "140357098484864"}, {"nodeId": "140357185928736"}]}}, ".0.140357156612672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185928736"}, "def": "140357156612672", "variance": "INVARIANT"}}, "140357017989216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357017990560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156614912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156615360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156615808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156616256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156616704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357156617152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156617600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156700224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156700672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156701120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357156701568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156702016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156702464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156702912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156703360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156703808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156704256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928736"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156603712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357156604160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357077375392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077375392": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}]}}, "140357156604608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156605056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156605504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077374384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156605952"}, {"nodeId": "140357156606400"}]}}, "140357156605952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357156606400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357156606848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156607296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156607744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156608192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156608640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156609088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156609536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156609984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156610432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156610880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156611328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156611776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156342016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156342464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357077372032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357077372032": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357156342912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156343360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156343808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156344256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156344704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156345152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156345600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357077372256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077372256": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357077369680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357156346048"}, {"nodeId": "140357156346496"}, {"nodeId": "140357156346944"}, {"nodeId": "140357156347392"}, {"nodeId": "140357156347840"}, {"nodeId": "140357156348288"}]}}, "140357156346048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156346496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357156346944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357077372928"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357077372928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106491664"}}}, "140357156347392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357077373040"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357077373040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106490208"}}}, "140357156347840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357156348288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357156348736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357077373264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357077373264": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357156349184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156349632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156350080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156350528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156350976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156351424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156351872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156352320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156352768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156353216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156353664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156354112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156354560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156355008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156355456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156487232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156487680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357156488128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357077373600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077373600": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}]}}, "140357156488576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156489024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156489472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156489920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156490368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156490816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156491264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156491712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156492160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156492608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156493056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152544512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": ".1.140357098130240"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357152544960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": ".1.140357098130240"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152545408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098484864"}, {"nodeId": ".1.140357098130240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357152545856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": ".1.140357098130240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072462432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152546304"}, {"nodeId": "140357152546752"}]}}, "140357152546304": {"type": "Function", "content": {"typeVars": [".-1.140357152546304"], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".-1.140357152546304"}]}, {"nodeId": "N"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140357152546304": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140357089642416"}, "def": "140357152546304", "variance": "INVARIANT"}}, "140357089642416": {"type": "Union", "content": {"items": [{"nodeId": "140357105999840", "args": [{"nodeId": "A"}]}, {"nodeId": "140357106000192", "args": [{"nodeId": "A"}]}]}}, "140357105999840": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161080352"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140357105999840"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__lt__"]}}, ".1.140357105999840": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105999840", "variance": "CONTRAVARIANT"}}, "140357161080352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105999840", "args": [{"nodeId": ".1.140357105999840"}]}, {"nodeId": ".1.140357105999840"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106000192": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161080800"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140357106000192"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__gt__"]}}, ".1.140357106000192": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106000192", "variance": "CONTRAVARIANT"}}, "140357161080800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106000192", "args": [{"nodeId": ".1.140357106000192"}]}, {"nodeId": ".1.140357106000192"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152546752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357072383648"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140357072383648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140357098130240"}], "returnType": {"nodeId": "140357072464000"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357072464000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102181104"}}}, "140357102181104": {"type": "Union", "content": {"items": [{"nodeId": "140357105999840", "args": [{"nodeId": "A"}]}, {"nodeId": "140357106000192", "args": [{"nodeId": "A"}]}]}}, "140357152547200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152547648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357072463552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152548096"}, {"nodeId": "140357152548544"}]}}, "140357152548096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".1.140357098130240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152548544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072463664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152548992"}, {"nodeId": "140357152549440"}]}}, "140357152548992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098484864"}, {"nodeId": ".1.140357098130240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357152549440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098129536"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357152549888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357072464224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072464224": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098129536"}]}}, "140357072463888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152550336"}, {"nodeId": "140357152550784"}]}}, "140357152550336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152550784": {"type": "Function", "content": {"typeVars": [".-1.140357152550784"], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098130240", "args": [{"nodeId": ".-1.140357152550784"}]}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357072464448"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152550784": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152550784", "variance": "INVARIANT"}}, "140357072464448": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357152550784"}, {"nodeId": ".1.140357098130240"}]}}, "140357152551232": {"type": "Function", "content": {"typeVars": [".0.140357152551232"], "argTypes": [{"nodeId": ".0.140357152551232"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": ".0.140357152551232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152551232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "def": "140357152551232", "variance": "INVARIANT"}}, "140357152551680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152552128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152552576": {"type": "Function", "content": {"typeVars": [".0.140357152552576"], "argTypes": [{"nodeId": ".0.140357152552576"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".0.140357152552576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152552576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, "def": "140357152552576", "variance": "INVARIANT"}}, "140357152553024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152553472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098130240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152553920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152554368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152702528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152702976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}, {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098130240"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152703424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357152707008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152707456": {"type": "Function", "content": {"typeVars": [".0.140357152707456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357152707456"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140357152707456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "def": "140357152707456", "variance": "INVARIANT"}}, "140357152707904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152708352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357098477472", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098477472": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357026550432"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357098477472"}, {"nodeId": ".2.140357098477472"}], "bases": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357098477472"}]}], "isAbstract": false}}, ".1.140357098477472": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098477472", "variance": "COVARIANT"}}, ".2.140357098477472": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098477472", "variance": "COVARIANT"}}, "140357026550432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477472", "args": [{"nodeId": ".1.140357098477472"}, {"nodeId": ".2.140357098477472"}]}], "returnType": {"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357098477472"}, {"nodeId": ".2.140357098477472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152708800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357098477824", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098477824": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357026553568"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357098477824"}, {"nodeId": ".2.140357098477824"}], "bases": [{"nodeId": "140357098475360", "args": [{"nodeId": ".2.140357098477824"}]}], "isAbstract": false}}, ".1.140357098477824": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098477824", "variance": "COVARIANT"}}, ".2.140357098477824": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098477824", "variance": "COVARIANT"}}, "140357026553568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477824", "args": [{"nodeId": ".1.140357098477824"}, {"nodeId": ".2.140357098477824"}]}], "returnType": {"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357098477824"}, {"nodeId": ".2.140357098477824"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152709248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357098478176", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098478176": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357026383232"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357098478176"}, {"nodeId": ".2.140357098478176"}], "bases": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357098478176"}, {"nodeId": ".2.140357098478176"}]}], "isAbstract": false}}, ".1.140357098478176": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098478176", "variance": "COVARIANT"}}, ".2.140357098478176": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098478176", "variance": "COVARIANT"}}, "140357026383232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478176", "args": [{"nodeId": ".1.140357098478176"}, {"nodeId": ".2.140357098478176"}]}], "returnType": {"nodeId": "140357110137600", "args": [{"nodeId": ".1.140357098478176"}, {"nodeId": ".2.140357098478176"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072464560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152709696"}, {"nodeId": "140357152710144"}]}}, "140357152709696": {"type": "Function", "content": {"typeVars": [".-1.140357152709696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357152709696"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": ".-1.140357152709696"}, {"nodeId": "140357072465904"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140357152709696": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152709696", "variance": "INVARIANT"}}, "140357072465904": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357152710144": {"type": "Function", "content": {"typeVars": [".-1.140357152710144", ".-2.140357152710144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357152710144"}]}, {"nodeId": ".-2.140357152710144"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": ".-1.140357152710144"}, {"nodeId": ".-2.140357152710144"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140357152710144": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152710144", "variance": "INVARIANT"}}, ".-2.140357152710144": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152710144", "variance": "INVARIANT"}}, "140357072465344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152710592"}, {"nodeId": "140357152711040"}]}}, "140357152710592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}], "returnType": {"nodeId": "140357072466128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072466128": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": "N"}]}}, "140357152711040": {"type": "Function", "content": {"typeVars": [".-1.140357152711040"], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}, {"nodeId": "140357072466240"}], "returnType": {"nodeId": "140357072466352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357072466240": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": ".-1.140357152711040"}]}}, ".-1.140357152711040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152711040", "variance": "INVARIANT"}}, "140357072466352": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": ".-1.140357152711040"}]}}, "140357072465680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152711488"}, {"nodeId": "140357152711936"}]}}, "140357152711488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}], "returnType": {"nodeId": ".2.140357098130592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152711936": {"type": "Function", "content": {"typeVars": [".-1.140357152711936"], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}, {"nodeId": "140357072466576"}], "returnType": {"nodeId": "140357072466688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357072466576": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": ".-1.140357152711936"}]}}, ".-1.140357152711936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152711936", "variance": "INVARIANT"}}, "140357072466688": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": ".-1.140357152711936"}]}}, "140357152712384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152712832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}], "returnType": {"nodeId": ".2.140357098130592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152713280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357152713728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": ".1.140357098130592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152714176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098130592"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152714624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098130592"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152715072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357152715520": {"type": "Function", "content": {"typeVars": [".-1.140357152715520", ".-2.140357152715520"], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357152715520"}, {"nodeId": ".-2.140357152715520"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357072466912"}, {"nodeId": "140357072467024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152715520": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152715520", "variance": "INVARIANT"}}, ".-2.140357152715520": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152715520", "variance": "INVARIANT"}}, "140357072466912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".-1.140357152715520"}]}}, "140357072467024": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": ".-2.140357152715520"}]}}, "140357152715968": {"type": "Function", "content": {"typeVars": [".-1.140357152715968", ".-2.140357152715968"], "argTypes": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357152715968"}, {"nodeId": ".-2.140357152715968"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357072467136"}, {"nodeId": "140357072467248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152715968": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152715968", "variance": "INVARIANT"}}, ".-2.140357152715968": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152715968", "variance": "INVARIANT"}}, "140357072467136": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".-1.140357152715968"}]}}, "140357072467248": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098130592"}, {"nodeId": ".-2.140357152715968"}]}}, "140357072466016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152716416"}, {"nodeId": "140357152716864"}]}}, "140357152716416": {"type": "Function", "content": {"typeVars": [".0.140357152716416"], "argTypes": [{"nodeId": ".0.140357152716416"}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}], "returnType": {"nodeId": ".0.140357152716416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152716416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "def": "140357152716416", "variance": "INVARIANT"}}, "140357152716864": {"type": "Function", "content": {"typeVars": [".0.140357152716864"], "argTypes": [{"nodeId": ".0.140357152716864"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357072467584"}]}], "returnType": {"nodeId": ".0.140357152716864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357152716864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}, "def": "140357152716864", "variance": "INVARIANT"}}, "140357072467584": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098130592"}, {"nodeId": ".2.140357098130592"}]}}, "140357185926624": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068946368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068946816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139599136"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090067504"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139600480"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090071424"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090071872"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}], "bases": [{"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}], "isAbstract": true}}, ".1.140357185926624": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185926624", "variance": "INVARIANT"}}, ".2.140357185926624": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185926624", "variance": "INVARIANT"}}, "140357068946368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357068946816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".1.140357185926624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139599136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090067504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357139599584"}, {"nodeId": "140357139600032"}]}}, "140357139599584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".1.140357185926624"}], "returnType": {"nodeId": ".2.140357185926624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357139600032": {"type": "Function", "content": {"typeVars": [".-1.140357139600032"], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".1.140357185926624"}, {"nodeId": "140357090071984"}], "returnType": {"nodeId": "140357090072096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140357090071984": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357185926624"}, {"nodeId": ".-1.140357139600032"}]}}, ".-1.140357139600032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139600032", "variance": "INVARIANT"}}, "140357090072096": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357185926624"}, {"nodeId": ".-1.140357139600032"}]}}, "140357139600480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}], "returnType": {"nodeId": "140357090072320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090072320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}}, "140357090071424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357139600928"}, {"nodeId": "140357139601376"}]}}, "140357139600928": {"type": "Function", "content": {"typeVars": [".-1.140357139600928"], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": "140357090072544"}]}, {"nodeId": ".1.140357185926624"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357090072656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357090072544": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357139600928"}, {"nodeId": "N"}]}}, ".-1.140357139600928": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139600928", "variance": "INVARIANT"}}, "140357090072656": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357139600928"}, {"nodeId": "N"}]}}, "140357139601376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}], "returnType": {"nodeId": ".2.140357185926624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357090071872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357139601824"}, {"nodeId": "140357139602272"}, {"nodeId": "140357139602720"}]}}, "140357139601824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".2.140357185926624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357139602272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357090072992"}]}, {"nodeId": ".2.140357185926624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357090072992": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}}, "140357139602720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357185926624"}, {"nodeId": ".2.140357185926624"}]}, {"nodeId": ".2.140357185926624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140357076826960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357178147328"}]}}, "140357178147328": {"type": "Function", "content": {"typeVars": [".0.140357178147328"], "argTypes": [{"nodeId": ".0.140357178147328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357178147328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178147328", "variance": "INVARIANT"}}, "140357017831680": {"type": "Function", "content": {"typeVars": [".0.140357017831680"], "argTypes": [{"nodeId": ".0.140357017831680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357017831680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357017831680", "variance": "INVARIANT"}}, "140357178148224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357178148672": {"type": "Function", "content": {"typeVars": [".0.140357178148672"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140357178148672"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140357178148672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178148672", "variance": "INVARIANT"}}, "140357178149120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357178149568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178150016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178150464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178150912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357178151360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357178151808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357178152256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357178152704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178153152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357178153600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357077119520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077119520": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}]}}, "140357178154048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357077119744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077119744": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}]}}, "140357178155392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357178155840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140357017831008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140357156706048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128128"}, "def": "140357156706048", "variance": "INVARIANT"}}, "140357156706496": {"type": "Function", "content": {"typeVars": [".0.140357156706496"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357156706496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140357156706496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098128128"}, "def": "140357156706496", "variance": "INVARIANT"}}, "140357156706944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156707392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156707840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357156708288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357077376624"}, {"nodeId": "140357077376736"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140357077376624": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077376736": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156708736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140357156709184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077376848"}, {"nodeId": "140357077376960"}, {"nodeId": "140357077377072"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077376848": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}]}}, "140357077376960": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077377072": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156709632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140357156710528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357077377184"}, {"nodeId": "140357077377296"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077377184": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077377296": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156710976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357156711424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098127424"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140357098127424": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156705152"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__getitem__"]}}, "140357156705152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098127424"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156711872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357077377408"}, {"nodeId": "140357077377520"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077377408": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077377520": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156712320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156712768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156713216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156713664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156714112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156714560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156715008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156715456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156715904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156831296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156831744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156832192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156832640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357156833088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357156833536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156833984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077377632"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357077377632": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357156834432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357077377856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077377856": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357156834880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357156835328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357156835776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357156836224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357077377968"}, {"nodeId": "140357077378080"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077377968": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077378080": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156836672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357077378192"}, {"nodeId": "140357077378304"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077378192": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077378304": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156837120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357156837568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357077378528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077378528": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357156838016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077378640"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357077378640": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357156838464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077378752"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357077378752": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357156838912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077378864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357077378864": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357156839360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140357156839808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077378976"}, {"nodeId": "140357077379088"}, {"nodeId": "140357077379200"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357077378976": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}]}}, "140357077379088": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357077379200": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "N"}]}}, "140357156840256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077379312"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357077379312": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357156840704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156841152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156841600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098127776"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098127776": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357156705600"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__getitem__"]}}, "140357156705600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098127776"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357077376288"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357077376288": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357156842048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357156842496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357077375728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357081676064"}, {"nodeId": "140357156842944"}, {"nodeId": "140357156843392"}]}}, "140357081676064": {"type": "Function", "content": {"typeVars": [".-1.140357081676064"], "argTypes": [{"nodeId": "140357077379648"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": ".-1.140357081676064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357077379648": {"type": "Union", "content": {"items": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": ".-1.140357081676064"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357081676064"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357077379536"}, {"nodeId": ".-1.140357081676064"}]}]}}, ".-1.140357081676064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081676064", "variance": "INVARIANT"}}, "140357077379536": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357156842944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156843392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": "140357077379760"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357077379760": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357156844288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156844736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156845184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156845632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156846080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357077379872"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357077379872": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098129536"}]}}, "140357156846528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156846976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156962368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156962816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357156963264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156963712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156964160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156964608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156965056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357156965504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357077380208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357077380208": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089506432": {"type": "Concrete", "content": {"module": "import_test", "simpleName": "A", "members": [], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357097691392": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357181602528"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089535568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089535792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097562832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097562944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043689888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357181603424"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357181602528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691392"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081112848"}, {"nodeId": "140357081112960"}, {"nodeId": "140357081113184"}, {"nodeId": "140357081113296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140357081112848": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357097692448": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143666848"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143667296"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143667744"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143668192"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357143666848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097692448"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357110138656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357110138656": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114437120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064423936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114439248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106486512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185925216", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106487072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160523744"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160524192"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357114437120": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357064423936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357114439248": {"type": "Union", "content": {"items": [{"nodeId": "140357110138304"}, {"nodeId": "N"}]}}, "140357110138304": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160522848"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["load_module"]}}, "140357160522848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138304"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357110138656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357106486512": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357106487072": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357160523744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}, {"nodeId": "140357098128128"}, {"nodeId": "140357090080944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140357090080944": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357160524192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357143667296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097692448"}, {"nodeId": "140357110138656"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140357143667744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097692448"}, {"nodeId": "140357097691392"}], "returnType": {"nodeId": "140357081116768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140357081116768": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357143668192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097692448"}, {"nodeId": "140357110138656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140357081112960": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081113184": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357081113296": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357089535568": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357089535792": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097562832": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357097562944": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357043689888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691392"}], "returnType": {"nodeId": "140357081113408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081113408": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357181603424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691392"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357089498688": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043688096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043687200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043686752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043686304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043685856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043685632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043685184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043683392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043649472"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097694208"}, {"nodeId": "140357097693152"}], "isAbstract": false}}, "140357043688096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081113520"}], "returnType": {"nodeId": "140357081113632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140357081113520": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081113632": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357043687200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081113744"}, {"nodeId": "140357081113856"}], "returnType": {"nodeId": "140357081113968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140357081113744": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081113856": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357081113968": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357043686752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043686304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357110138656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043685856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043685632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043685184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140357043683392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691392"}], "returnType": {"nodeId": "140357081114080"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140357081114080": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357043649472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140357097694208": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143673568"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143674016"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143674464"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140357097692096"}], "isAbstract": false}}, "140357143673568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694208"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081117664"}], "returnType": {"nodeId": "140357081117776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140357081117664": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081117776": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357143674016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143674464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694208"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081117888"}, {"nodeId": "140357081118000"}], "returnType": {"nodeId": "140357081118112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140357081117888": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081118000": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357081118112": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357097692096": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357097693152": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143669088"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143669536"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043690112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143670432"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043635360"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097692448"}], "isAbstract": true}}, "140357143669088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693152"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357143669536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693152"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081116880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357081116880": {"type": "Union", "content": {"items": [{"nodeId": "140357110137248"}, {"nodeId": "N"}]}}, "140357043690112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693152"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081116992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357081116992": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357143670432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693152"}, {"nodeId": "140357110138656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140357043635360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081117104"}, {"nodeId": "140357081117328"}], "returnType": {"nodeId": "140357110137248"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140357081117104": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098128128"}, {"nodeId": "140357110895136"}, {"nodeId": "140357110895840"}, {"nodeId": "140357110895488"}]}}, "140357110895136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027103008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110894432"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893728"}], "isAbstract": false}}, "140357027103008": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110896192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110893376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357026916480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143944032"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089655408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106729248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106729024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357026916480": {"type": "Tuple", "content": {"items": []}}, "140357143944032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110893376"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357089655408": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357106729248": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357106729024": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357110894432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357026920624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110894080"}], "isAbstract": false}}, "140357026920624": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110894080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110893728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110895840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027105248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893728"}], "isAbstract": false}}, "140357027105248": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357110905344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110895488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027104352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893728"}], "isAbstract": false}}, "140357027104352": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357081117328": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357081117216"}]}}, "140357081117216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357098271936": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357089494464", "args": [{"nodeId": "140357098128128"}]}]}}, "140357089494464": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357051907232"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357089494464"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__fspath__"]}}, ".1.140357089494464": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357089494464", "variance": "COVARIANT"}}, "140357051907232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089494464", "args": [{"nodeId": ".1.140357089494464"}]}], "returnType": {"nodeId": ".1.140357089494464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089499040": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043648576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043649024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043648128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043647680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043647232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043646784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043646336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043645216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043644992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097694208"}, {"nodeId": "140357097693152"}], "isAbstract": false}}, "140357043648576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081114192"}], "returnType": {"nodeId": "140357081114304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140357081114192": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081114304": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357043649024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081114416"}, {"nodeId": "140357081114528"}], "returnType": {"nodeId": "140357081114640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140357081114416": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081114528": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357081114640": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357043648128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043647680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357110138656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043647232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043646784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140357043646336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140357043645216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691392"}], "returnType": {"nodeId": "140357081114752"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140357081114752": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357043644992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110138656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140357089499392": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043643872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043643424"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097694208"}], "isAbstract": false}}, "140357043643872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081114864"}], "returnType": {"nodeId": "140357081114976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140357081114864": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081114976": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357043643424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081115088"}, {"nodeId": "140357081115200"}], "returnType": {"nodeId": "140357081115312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140357081115088": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081115200": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357081115312": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357097691744": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043641856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043641408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043642304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043640960"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357043641856": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140357043641408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089497984"}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": "140357097691040"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140357089497984": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089719152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173117664"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043310368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357089719152": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357173117664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089497984"}, {"nodeId": "140357081110384"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140357081110384": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357043310368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089497984"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097691040": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173119904"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173120352"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173120800"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140357097690688"}], "isAbstract": false}}, "140357173119904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691040"}, {"nodeId": "140357089504672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357089504672": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135848544"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135848992"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135849440"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357051562272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135850336"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135850784"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135853472"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135853920"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135854368"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135854816"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135855264"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135855712"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135856160"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135856608"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135857056"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135857504"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135858400"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135858848"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135859296"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135974688"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085775904"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135978272"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135978720"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135979168"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135979616"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135980064"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135980512"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135981856"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135982304"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135982752"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135983200"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135983648"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135984096"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357051665760"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135985440"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135985888"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135986336"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135986784"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135987232"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135987680"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135988128"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135989024"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140357089503616"}], "isAbstract": false}}, "140357135848544": {"type": "Function", "content": {"typeVars": [".0.140357135848544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357085778480"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357135848544"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140357085778480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, ".0.140357135848544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135848544", "variance": "INVARIANT"}}, "140357135848992": {"type": "Function", "content": {"typeVars": [".0.140357135848992"], "argTypes": [{"nodeId": ".0.140357135848992"}], "returnType": {"nodeId": ".0.140357135848992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357135848992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135848992", "variance": "INVARIANT"}}, "140357135849440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085778704"}, {"nodeId": "140357085778816"}, {"nodeId": "140357085778928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357085778704": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357085778816": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357085778928": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357051562272": {"type": "Function", "content": {"typeVars": [".0.140357051562272"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140357051562272"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140357051562272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357051562272", "variance": "INVARIANT"}}, "140357135850336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357085779040"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140357085779040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089716016"}}}, "140357089716016": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357135850784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140357135853472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135853920": {"type": "Function", "content": {"typeVars": [".0.140357135853920"], "argTypes": [{"nodeId": ".0.140357135853920"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": ".0.140357135853920"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140357135853920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135853920", "variance": "INVARIANT"}}, "140357185922048": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144429728"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068633280"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089821296"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144431520"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144431968"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068633504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068633952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068634624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068634848"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357185922048"}]}], "isAbstract": true}}, ".1.140357185922048": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922048", "variance": "COVARIANT"}}, ".2.140357185922048": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922048", "variance": "CONTRAVARIANT"}}, ".3.140357185922048": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922048", "variance": "COVARIANT"}}, "140357144429728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": ".1.140357185922048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068633280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}, {"nodeId": ".2.140357185922048"}], "returnType": {"nodeId": ".1.140357185922048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357089821296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144430624"}, {"nodeId": "140357144431072"}]}}, "140357144430624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}, {"nodeId": "0"}, {"nodeId": "140357089834064"}, {"nodeId": "140357089834176"}], "returnType": {"nodeId": ".1.140357185922048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357089834064": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}]}}, "140357089834176": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357144431072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}, {"nodeId": "140357098134816"}, {"nodeId": "N"}, {"nodeId": "140357089834288"}], "returnType": {"nodeId": ".1.140357185922048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357089834288": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357144431520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144431968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357068633504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": "140357110137248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068633952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": "140357110142880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068634624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068634848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357185922048"}, {"nodeId": ".2.140357185922048"}, {"nodeId": ".3.140357185922048"}]}], "returnType": {"nodeId": "140357089834736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089834736": {"type": "Union", "content": {"items": [{"nodeId": "140357185922048", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357135854368": {"type": "Function", "content": {"typeVars": [".0.140357135854368"], "argTypes": [{"nodeId": ".0.140357135854368"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": ".0.140357135854368"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140357135854368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135854368", "variance": "INVARIANT"}}, "140357135854816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135855264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135855712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135856160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135856608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135857056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135857504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135858400": {"type": "Function", "content": {"typeVars": [".0.140357135858400"], "argTypes": [{"nodeId": ".0.140357135858400"}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": ".0.140357135858400"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357135858400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135858400", "variance": "INVARIANT"}}, "140357135858848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140357135859296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357085779152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085779152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089716016"}}}, "140357135974688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140357085775904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135975136"}, {"nodeId": "140357135975584"}, {"nodeId": "140357135976032"}, {"nodeId": "140357135976480"}, {"nodeId": "140357135976928"}, {"nodeId": "140357135977376"}, {"nodeId": "140357135977824"}]}}, "140357135975136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085779376"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085779488"}, {"nodeId": "140357085779600"}, {"nodeId": "140357085779712"}], "returnType": {"nodeId": "140357097687168"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085779376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102174272"}}}, "140357102174272": {"type": "Union", "content": {"items": [{"nodeId": "140357102174608"}, {"nodeId": "140357102176400"}, {"nodeId": "140357102175280"}]}}, "140357102174608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102176512"}}}, "140357102176512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357102176400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101993344"}}}, "140357101993344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357102175280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101992784"}}}, "140357101992784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357085779488": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085779600": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085779712": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097687168": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144054240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043079424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043079872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043080096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043080544"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144056480"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144056928"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144057376"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144057824"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144058272"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144058720"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144059168"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144059616"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140357097686816"}, {"nodeId": "140357098476416"}], "isAbstract": false}}, "140357144054240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}, {"nodeId": "140357098475712", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357081104560"}, {"nodeId": "140357081104672"}, {"nodeId": "140357081104784"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140357098475712": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357069063776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357069064896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069065792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357069066464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069067136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069067808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069068480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069069152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069069824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069070720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069071392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069072288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069073184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069073856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069074528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357069075200"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090072432"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090072768"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063950624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063951296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063952192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063953312"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357098475712"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098475712"}]}], "isAbstract": true}}, ".1.140357098475712": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098475712", "variance": "INVARIANT"}}, "140357069063776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069064896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069065792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069066464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069067136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069067808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069068480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069069152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357098475712"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357069069824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069070720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357098475712"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357069071392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098475712"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357069072288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357069073184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069073856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357069074528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357090073104"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357090073104": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357069075200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090072432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357139610336"}, {"nodeId": "140357102480832"}, {"nodeId": "140357139611232"}]}}, "140357139610336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357102480832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357139611232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": ".1.140357098475712"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357090072768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357102480608"}, {"nodeId": "140357102479936"}, {"nodeId": "140357102480160"}]}}, "140357102480608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357102479936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098486976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357102480160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357063950624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": ".1.140357098475712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357063951296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098475712"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357063952192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}], "returnType": {"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357063953312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357098475712"}]}, {"nodeId": "140357090073440"}, {"nodeId": "140357090073552"}, {"nodeId": "140357090073664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357090073440": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357090073552": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357090073664": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357081104560": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081104672": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081104784": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357043079424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}], "returnType": {"nodeId": "140357098476064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098476064": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063954208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128480"}]}], "isAbstract": true}}, "140357063954208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476064"}], "returnType": {"nodeId": "140357098476064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357043079872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043080096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043080544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144056480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}, {"nodeId": "140357081104896"}, {"nodeId": "140357081105008"}, {"nodeId": "140357081105120"}, {"nodeId": "140357081105232"}, {"nodeId": "140357081105344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140357081104896": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081105008": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081105120": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081105232": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357081105344": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357144056928": {"type": "Function", "content": {"typeVars": [".0.140357144056928"], "argTypes": [{"nodeId": ".0.140357144056928"}], "returnType": {"nodeId": ".0.140357144056928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357144056928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097687168"}, "def": "140357144056928", "variance": "INVARIANT"}}, "140357144057376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357144057824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144058272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144058720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357144059168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357144059616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687168"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357097686816": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089718816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089534448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144115936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144116384"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144116832"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144052000"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144052448"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144052896"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144053344"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144053792"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140357110151680"}], "isAbstract": false}}, "140357089718816": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089534448": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357144115936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357144116384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144116832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}], "returnType": {"nodeId": "140357098476064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144052000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144052448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144052896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357144053344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357144053792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686816"}, {"nodeId": "140357081104448"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357081104448": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357110151680": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143945824"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143946272"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143946720"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143947168"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143947616"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143948064"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143948512"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143948960"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143949408"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357102483968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143949856"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143950304"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143950752"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143951200"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143951648"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143952096"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114359904"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143952544"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143952992"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144101152"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047868928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144102048"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357143945824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357143946272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143946720": {"type": "Function", "content": {"typeVars": [".0.140357143946720"], "argTypes": [{"nodeId": ".0.140357143946720"}], "returnType": {"nodeId": ".0.140357143946720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357143946720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110151680"}, "def": "140357143946720", "variance": "INVARIANT"}}, "140357143947168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357080921952"}, {"nodeId": "140357080922064"}, {"nodeId": "140357080922176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357080921952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357080922064": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357080922176": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357143947616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143948064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143948512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143948960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143949408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357102483968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357143949856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357143950304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357143950752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143951200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357143951648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357080922288"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357080922288": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357143952096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357114359904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357143952544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098486976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357143952992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357080922400"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357080922400": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357144101152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357047868928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144102048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110151680"}, {"nodeId": "140357080922512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140357080922512": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357098476416": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357063955776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357063956224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357063956448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357063956672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357063956896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063957120"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128128"}]}], "isAbstract": true}}, "140357063955776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476416"}], "returnType": {"nodeId": "140357098476064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357063956224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476416"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357063956448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476416"}], "returnType": {"nodeId": "140357090073776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090073776": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357063956672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476416"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357063956896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357063957120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476416"}], "returnType": {"nodeId": "140357098476416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135975584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085779264"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357110152736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085779264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101989088"}}}, "140357101989088": {"type": "Union", "content": {"items": [{"nodeId": "140357101988864"}, {"nodeId": "140357101988752"}, {"nodeId": "140357101987744"}]}}, "140357101988864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101990768"}}}, "140357101990768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357101988752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106732384"}}}, "140357106732384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357101987744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101988976"}}}, "140357101988976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357110152736": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089534336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144106976"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047863776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144107872"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144108320"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144108768"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140357110152032"}, {"nodeId": "140357098476064"}], "isAbstract": false}}, "140357089534336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101989424"}}}, "140357101989424": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357101991104"}]}}, "140357101991104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357102180768": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "140357089494464", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357089494464", "args": [{"nodeId": "140357098128480"}]}]}}, "140357144106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152736"}, {"nodeId": "140357080923072"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}, {"nodeId": "140357080923296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140357080923072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101989424"}}}, "140357080923296": {"type": "Union", "content": {"items": [{"nodeId": "140357080923184"}, {"nodeId": "N"}]}}, "140357080923184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110091552"}}}, "140357110091552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357047863776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152736"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144107872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152736"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144108320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152736"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357144108768": {"type": "Function", "content": {"typeVars": [".0.140357144108768"], "argTypes": [{"nodeId": ".0.140357144108768"}], "returnType": {"nodeId": ".0.140357144108768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357144108768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110152736"}, "def": "140357144108768", "variance": "INVARIANT"}}, "140357110152032": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144102496"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144102944"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144103392"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144103840"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140357110151680"}], "isAbstract": false}}, "140357144102496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144102944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152032"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357080922624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357080922624": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357144103392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152032"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357080922736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357080922736": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357144103840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357080922848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357080922848": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357135976032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085779936"}, {"nodeId": "140357085780384"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357097686112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085779936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101990768"}}}, "140357085780384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357097686112": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144114144"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144114592"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140357097685408"}, {"nodeId": "140357097685760"}], "isAbstract": false}}, "140357144114144": {"type": "Function", "content": {"typeVars": [".0.140357144114144"], "argTypes": [{"nodeId": ".0.140357144114144"}], "returnType": {"nodeId": ".0.140357144114144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357144114144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097686112"}, "def": "140357144114144", "variance": "INVARIANT"}}, "140357144114592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686112"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357097685408": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144111456"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144111904"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144112352"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140357110152384"}, {"nodeId": "140357098476064"}], "isAbstract": false}}, "140357144111456": {"type": "Function", "content": {"typeVars": [".0.140357144111456"], "argTypes": [{"nodeId": ".0.140357144111456"}], "returnType": {"nodeId": ".0.140357144111456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357144111456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097685408"}, "def": "140357144111456", "variance": "INVARIANT"}}, "140357144111904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685408"}, {"nodeId": "140357110152032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140357144112352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685408"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357110152384": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110152032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144104288"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144104736"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144105184"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144105632"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144106080"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144106528"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140357110151680"}], "isAbstract": false}}, "140357144104288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152384"}], "returnType": {"nodeId": "140357110152032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144104736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152384"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144105184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152384"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144105632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152384"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357144106080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152384"}, {"nodeId": "140357080922960"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357080922960": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357144106528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110152384"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357097685760": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144112800"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144113248"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144113696"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140357110152384"}, {"nodeId": "140357098476064"}], "isAbstract": false}}, "140357144112800": {"type": "Function", "content": {"typeVars": [".0.140357144112800"], "argTypes": [{"nodeId": ".0.140357144112800"}], "returnType": {"nodeId": ".0.140357144112800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357144112800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097685760"}, "def": "140357144112800", "variance": "INVARIANT"}}, "140357144113248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685760"}, {"nodeId": "140357110152032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140357144113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685760"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357135976480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085780496"}, {"nodeId": "140357085780832"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357097685760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085780496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101988976"}}}, "140357085780832": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357135976928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085780944"}, {"nodeId": "140357085781280"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357097685408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085780944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106732384"}}}, "140357085781280": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357135977376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085781392"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098476064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085781392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101989088"}}}, "140357135977824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085780160"}, {"nodeId": "140357085781504"}, {"nodeId": "140357085781728"}], "returnType": {"nodeId": "140357098475712", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357085780160": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085781504": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085781728": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135978272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135978720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135979168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135979616": {"type": "Function", "content": {"typeVars": [".0.140357135979616"], "argTypes": [{"nodeId": ".0.140357135979616"}], "returnType": {"nodeId": ".0.140357135979616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357135979616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135979616", "variance": "INVARIANT"}}, "140357135980064": {"type": "Function", "content": {"typeVars": [".0.140357135980064"], "argTypes": [{"nodeId": ".0.140357135980064"}, {"nodeId": "140357085781952"}], "returnType": {"nodeId": ".0.140357135980064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140357135980064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135980064", "variance": "INVARIANT"}}, "140357085781952": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357089503616"}]}}, "140357089503616": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051545440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051358048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051358944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051553312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051553088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051552864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051552640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051552416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135672800"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135673248"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135673696"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135674144"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135674592"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135675040"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135675488"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135675936"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135676384"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135676832"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135677280"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135677728"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135678176"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135678624"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135679072"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135844064"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135844512"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135844960"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135845408"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135845856"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135846304"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051559808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051547712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135847648"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357089494464", "args": [{"nodeId": "140357098128128"}]}], "isAbstract": false}}, "140357051545440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051358048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051358944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051553312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051553088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051552864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051552640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051552416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135672800": {"type": "Function", "content": {"typeVars": [".0.140357135672800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357085777584"}], "returnType": {"nodeId": ".0.140357135672800"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140357085777584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, ".0.140357135672800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135672800", "variance": "INVARIANT"}}, "140357135673248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135673696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135674144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135674592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135675040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135675488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135675936": {"type": "Function", "content": {"typeVars": [".0.140357135675936"], "argTypes": [{"nodeId": ".0.140357135675936"}, {"nodeId": "140357085777696"}], "returnType": {"nodeId": ".0.140357135675936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357135675936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135675936", "variance": "INVARIANT"}}, "140357085777696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357135676384": {"type": "Function", "content": {"typeVars": [".0.140357135676384"], "argTypes": [{"nodeId": ".0.140357135676384"}, {"nodeId": "140357085777808"}], "returnType": {"nodeId": ".0.140357135676384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357135676384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135676384", "variance": "INVARIANT"}}, "140357085777808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357135676832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135677280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135677728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135678176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135678624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135679072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357085777920"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140357085777920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357135844064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503616"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140357135844512": {"type": "Function", "content": {"typeVars": [".0.140357135844512"], "argTypes": [{"nodeId": ".0.140357135844512"}, {"nodeId": "140357085778032"}], "returnType": {"nodeId": ".0.140357135844512"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140357135844512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135844512", "variance": "INVARIANT"}}, "140357085778032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357135844960": {"type": "Function", "content": {"typeVars": [".0.140357135844960"], "argTypes": [{"nodeId": ".0.140357135844960"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357135844960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140357135844960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135844960", "variance": "INVARIANT"}}, "140357135845408": {"type": "Function", "content": {"typeVars": [".0.140357135845408"], "argTypes": [{"nodeId": ".0.140357135845408"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357135845408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140357135845408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135845408", "variance": "INVARIANT"}}, "140357135845856": {"type": "Function", "content": {"typeVars": [".0.140357135845856"], "argTypes": [{"nodeId": ".0.140357135845856"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357135845856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140357135845856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135845856", "variance": "INVARIANT"}}, "140357135846304": {"type": "Function", "content": {"typeVars": [".0.140357135846304"], "argTypes": [{"nodeId": ".0.140357135846304"}, {"nodeId": "140357085778144"}], "returnType": {"nodeId": ".0.140357135846304"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140357135846304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357135846304", "variance": "INVARIANT"}}, "140357085778144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357051559808": {"type": "Function", "content": {"typeVars": [".0.140357051559808"], "argTypes": [{"nodeId": ".0.140357051559808"}], "returnType": {"nodeId": "140357185924864", "args": [{"nodeId": ".0.140357051559808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357051559808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357051559808", "variance": "INVARIANT"}}, "140357051547712": {"type": "Function", "content": {"typeVars": [".0.140357051547712"], "argTypes": [{"nodeId": ".0.140357051547712"}], "returnType": {"nodeId": ".0.140357051547712"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357051547712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503616"}, "def": "140357051547712", "variance": "INVARIANT"}}, "140357135847648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140357135980512": {"type": "Function", "content": {"typeVars": [".0.140357135980512"], "argTypes": [{"nodeId": ".0.140357135980512"}, {"nodeId": "140357085782064"}], "returnType": {"nodeId": ".0.140357135980512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140357135980512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135980512", "variance": "INVARIANT"}}, "140357085782064": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357089503616"}]}}, "140357135981856": {"type": "Function", "content": {"typeVars": [".0.140357135981856"], "argTypes": [{"nodeId": ".0.140357135981856"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": ".0.140357135981856"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140357135981856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135981856", "variance": "INVARIANT"}}, "140357135982304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135982752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085782176"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140357085782176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357135983200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085782288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140357085782288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357135983648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140357135984096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140357051665760": {"type": "Function", "content": {"typeVars": [".0.140357051665760"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140357051665760"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140357051665760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357051665760", "variance": "INVARIANT"}}, "140357135985440": {"type": "Function", "content": {"typeVars": [".0.140357135985440"], "argTypes": [{"nodeId": ".0.140357135985440"}], "returnType": {"nodeId": ".0.140357135985440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357135985440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135985440", "variance": "INVARIANT"}}, "140357135985888": {"type": "Function", "content": {"typeVars": [".0.140357135985888"], "argTypes": [{"nodeId": ".0.140357135985888"}], "returnType": {"nodeId": ".0.140357135985888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357135985888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089504672"}, "def": "140357135985888", "variance": "INVARIANT"}}, "140357135986336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135986784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085782400"}, {"nodeId": "140357085782512"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140357085782400": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085782512": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135987232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085782624"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140357085782624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357135987680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140357135988128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357098128128"}, {"nodeId": "140357085782736"}, {"nodeId": "140357085782848"}, {"nodeId": "140357085782960"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140357085782736": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085782848": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085782960": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135989024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089504672"}, {"nodeId": "140357085783072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140357085783072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357173120352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691040"}, {"nodeId": "140357081110608"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140357081110608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357173120800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097691040"}, {"nodeId": "140357081110720"}], "returnType": {"nodeId": "140357089494464", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357081110720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357097690688": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043313728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043312832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043312608"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081109152"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043312384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043311712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043312160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043311488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043311264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043311040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043309920"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": true}}, "140357043313728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081109488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140357081109488": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357043312832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}, {"nodeId": "140357081109600"}], "returnType": {"nodeId": "140357089494464", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357081109600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357043312608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357097690688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140357081109152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357172997792"}, {"nodeId": "140357172998240"}]}}, "140357172997792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357089497984"}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": "140357097690688"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140357172998240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140357081109824"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": "140357097690688"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140357081109824": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357043312384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081110048"}], "returnType": {"nodeId": "140357097691040"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140357081110048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098271936"}}}, "140357043311712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}], "returnType": {"nodeId": "140357097687872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097687872": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135402592"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135403040"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135403488"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135403936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135404384"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043353888"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140357135402592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687872"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135403040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687872"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135403488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687872"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135403936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687872"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135404384": {"type": "Function", "content": {"typeVars": [".-1.140357135404384"], "argTypes": [{"nodeId": "140357097687872"}, {"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135404384"}], "returnType": {"nodeId": "140357081107024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140357135404384": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135404384", "variance": "INVARIANT"}}, "140357081107024": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140357135404384"}]}}, "140357043353888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687872"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357081107136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081107136": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}]}}, "140357043312160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}], "returnType": {"nodeId": "140357097689632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097689632": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172990624"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172991072"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043340896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043340224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357097565184"}]}], "isAbstract": false}}, "140357172990624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689632"}, {"nodeId": "140357081108256"}], "returnType": {"nodeId": "140357081109040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081108256": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357081109040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089534000"}}}, "140357089534000": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357172991072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689632"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357097689632"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140357043340896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689632"}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043340224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689632"}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097565184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089534000"}}}, "140357043311488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043311264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}], "returnType": {"nodeId": "140357081110160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081110160": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357089506080"}]}, {"nodeId": "N"}]}}, "140357089506080": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172994656"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172995104"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172995552"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089534224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089532432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097690688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089503968"}], "isAbstract": false}}, "140357172994656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089506080"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140357172995104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089506080"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357172995552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089506080"}], "returnType": {"nodeId": "140357089494464", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089534224": {"type": "Union", "content": {"items": [{"nodeId": "140357097690336"}, {"nodeId": "N"}]}}, "140357097690336": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172996000"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357172996000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690336"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140357089532432": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357089503968": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089503616"}], "isAbstract": false}}, "140357043311040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}], "returnType": {"nodeId": "140357081110272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081110272": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357043309920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097690688"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043642304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081115424"}, {"nodeId": "140357081115536"}], "returnType": {"nodeId": "140357081115648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140357081115424": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081115536": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357081115648": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357043640960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081115760"}], "returnType": {"nodeId": "140357081115872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140357081115760": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357081115872": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357089499744": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177849248"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043640288"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097694560"}], "isAbstract": false}}, "140357177849248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089499744"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081116096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140357081116096": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}]}}, "140357043640288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357081116320"}], "returnType": {"nodeId": "140357080940608"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140357081116320": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}]}}, "140357080940608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357097694560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357097694560": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177671968"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177672416"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177672864"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177673312"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140357097692096"}], "isAbstract": false}}, "140357177671968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694560"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081118224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357081118224": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357177672416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694560"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081118560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357081118560": {"type": "Tuple", "content": {"items": [{"nodeId": "140357081118336"}, {"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}]}}, "140357081118336": {"type": "Union", "content": {"items": [{"nodeId": "140357097692448"}, {"nodeId": "N"}]}}, "140357177672864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357177673312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694560"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081118672"}], "returnType": {"nodeId": "140357081118784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140357081118672": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357081118784": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357089500096": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177850144"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140357097694912"}, {"nodeId": "140357097693856"}], "isAbstract": false}}, "140357177850144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500096"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140357097694912": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177673760"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177674208"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177674656"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177675104"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140357097692800"}, {"nodeId": "140357097693504"}], "isAbstract": true}}, "140357177673760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694912"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140357177674208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694912"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357177674656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694912"}, {"nodeId": "140357081118896"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140357081118896": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357177675104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097694912"}, {"nodeId": "140357081119008"}], "returnType": {"nodeId": "140357110138656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140357081119008": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097692800": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043620320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097692448"}], "isAbstract": true}}, "140357043620320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097692800"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357097693504": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357044010592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097693152"}], "isAbstract": true}}, "140357044010592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693504"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357097693856": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143671776"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143672224"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143672672"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143673120"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140357097692800"}, {"nodeId": "140357097693504"}], "isAbstract": true}}, "140357143671776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693856"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357143672224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693856"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140357143672672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693856"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081117440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357081117440": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357143673120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097693856"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357089500448": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140357097694912"}, {"nodeId": "140357097693856"}], "isAbstract": false}}, "140357089500800": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177850592"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177851040"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177851488"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178016032"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178016480"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178016928"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178017376"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140357097693504"}], "isAbstract": false}}, "140357177850592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140357177851040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357081116432"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140357081116432": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357177851488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357178016032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357097691392"}], "returnType": {"nodeId": "140357110138656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140357178016480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357110138656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140357178016928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140357178017376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089500800"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098480992": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081697856"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178026112"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178026560"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178027008"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178027456"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178027904"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178028352"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178028800"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178029248"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081697968"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178030592"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357178031040"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081699200"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}], "bases": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}], "isAbstract": false}}, ".1.140357098480992": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098480992", "variance": "INVARIANT"}}, ".2.140357098480992": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098480992", "variance": "INVARIANT"}}, "140357081697856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357178022528"}, {"nodeId": "140357118293408"}, {"nodeId": "140357178023424"}, {"nodeId": "140357178022976"}, {"nodeId": "140357178024320"}, {"nodeId": "140357178023872"}, {"nodeId": "140357178024768"}, {"nodeId": "140357178025216"}]}}, "140357178022528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357118293408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "N"}, {"nodeId": ".2.140357098480992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357178023424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357178022976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": ".2.140357098480992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357178024320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357081698864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357081698864": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}}, "140357178023872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357081699088"}]}, {"nodeId": ".2.140357098480992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357081699088": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098480992"}]}}, "140357178024768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357178025216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128480"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357178026112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357178026560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": ".1.140357098480992"}], "returnType": {"nodeId": ".2.140357098480992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178027008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357178027456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": ".1.140357098480992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178027904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098480992"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357178028352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357178028800": {"type": "Function", "content": {"typeVars": [".0.140357178028800"], "argTypes": [{"nodeId": ".0.140357178028800"}], "returnType": {"nodeId": ".0.140357178028800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357178028800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, "def": "140357178028800", "variance": "INVARIANT"}}, "140357178029248": {"type": "Function", "content": {"typeVars": [".0.140357178029248"], "argTypes": [{"nodeId": ".0.140357178029248"}], "returnType": {"nodeId": ".0.140357178029248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357178029248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, "def": "140357178029248", "variance": "INVARIANT"}}, "140357081697968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357178029696"}, {"nodeId": "140357178030144"}]}}, "140357178029696": {"type": "Function", "content": {"typeVars": [".-1.140357178029696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357178029696"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098480992", "args": [{"nodeId": ".-1.140357178029696"}, {"nodeId": "140357081699536"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140357178029696": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178029696", "variance": "INVARIANT"}}, "140357081699536": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357178030144": {"type": "Function", "content": {"typeVars": [".-1.140357178030144", ".-2.140357178030144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357178030144"}]}, {"nodeId": ".-2.140357178030144"}], "returnType": {"nodeId": "140357098480992", "args": [{"nodeId": ".-1.140357178030144"}, {"nodeId": ".-2.140357178030144"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140357178030144": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178030144", "variance": "INVARIANT"}}, ".-2.140357178030144": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178030144", "variance": "INVARIANT"}}, "140357178030592": {"type": "Function", "content": {"typeVars": [".-1.140357178030592", ".-2.140357178030592"], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357081699648"}], "returnType": {"nodeId": "140357098480992", "args": [{"nodeId": "140357081699760"}, {"nodeId": "140357081699872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081699648": {"type": "Union", "content": {"items": [{"nodeId": "140357098480992", "args": [{"nodeId": ".-1.140357178030592"}, {"nodeId": ".-2.140357178030592"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": ".-1.140357178030592"}, {"nodeId": ".-2.140357178030592"}]}]}}, ".-1.140357178030592": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178030592", "variance": "INVARIANT"}}, ".-2.140357178030592": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178030592", "variance": "INVARIANT"}}, "140357081699760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".-1.140357178030592"}]}}, "140357081699872": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098480992"}, {"nodeId": ".-2.140357178030592"}]}}, "140357178031040": {"type": "Function", "content": {"typeVars": [".-1.140357178031040", ".-2.140357178031040"], "argTypes": [{"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, {"nodeId": "140357081699984"}], "returnType": {"nodeId": "140357098480992", "args": [{"nodeId": "140357081700096"}, {"nodeId": "140357081700208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081699984": {"type": "Union", "content": {"items": [{"nodeId": "140357098480992", "args": [{"nodeId": ".-1.140357178031040"}, {"nodeId": ".-2.140357178031040"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": ".-1.140357178031040"}, {"nodeId": ".-2.140357178031040"}]}]}}, ".-1.140357178031040": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178031040", "variance": "INVARIANT"}}, ".-2.140357178031040": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357178031040", "variance": "INVARIANT"}}, "140357081700096": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".-1.140357178031040"}]}}, "140357081700208": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098480992"}, {"nodeId": ".-2.140357178031040"}]}}, "140357081699200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357178031488"}, {"nodeId": "140357173624896"}]}}, "140357178031488": {"type": "Function", "content": {"typeVars": [".0.140357178031488"], "argTypes": [{"nodeId": ".0.140357178031488"}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}], "returnType": {"nodeId": ".0.140357178031488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357178031488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, "def": "140357178031488", "variance": "INVARIANT"}}, "140357173624896": {"type": "Function", "content": {"typeVars": [".0.140357173624896"], "argTypes": [{"nodeId": ".0.140357173624896"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357081700544"}]}], "returnType": {"nodeId": ".0.140357173624896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173624896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098480992", "args": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}, "def": "140357173624896", "variance": "INVARIANT"}}, "140357081700544": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098480992"}, {"nodeId": ".2.140357098480992"}]}}, "140357098481344": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098481344"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081699312"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173626240"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173626688"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173627136"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173627584"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173628032"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173628480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173628928"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081700320"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081700656"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173631168"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173631616"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173632064"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173632512"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173632960"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173633408"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173633856"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173634304"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173634752"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173635200"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173635648"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173636096"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173636544"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173636992"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173637440"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081701328"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173638784"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140357098481344"}], "bases": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357098481344"}]}], "isAbstract": false}}, ".1.140357098481344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098481344", "variance": "INVARIANT"}}, "140357081699312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357173625344"}, {"nodeId": "140357173625792"}]}}, "140357173625344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140357173625792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140357173626240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357081700768"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081700768": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}]}}, "140357173626688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357081700880"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081700880": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}]}}, "140357173627136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357081700992"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081700992": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}]}}, "140357173627584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357081701104"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081701104": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}]}}, "140357173628032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357173628480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357173628928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357081700320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357173629376"}, {"nodeId": "140357173629824"}]}}, "140357173629376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".1.140357098481344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357173629824": {"type": "Function", "content": {"typeVars": [".0.140357173629824"], "argTypes": [{"nodeId": ".0.140357173629824"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": ".0.140357173629824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173629824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173629824", "variance": "INVARIANT"}}, "140357081700656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357173630272"}, {"nodeId": "140357173630720"}]}}, "140357173630272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098484864"}, {"nodeId": ".1.140357098481344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357173630720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357098129536"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357173631168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357081701552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081701552": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098129536"}]}}, "140357173631616": {"type": "Function", "content": {"typeVars": [".0.140357173631616"], "argTypes": [{"nodeId": ".0.140357173631616"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": ".0.140357173631616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173631616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173631616", "variance": "INVARIANT"}}, "140357173632064": {"type": "Function", "content": {"typeVars": [".0.140357173632064"], "argTypes": [{"nodeId": ".0.140357173632064"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": ".0.140357173632064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173632064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173632064", "variance": "INVARIANT"}}, "140357173632512": {"type": "Function", "content": {"typeVars": [".0.140357173632512"], "argTypes": [{"nodeId": ".0.140357173632512"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": ".0.140357173632512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173632512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173632512", "variance": "INVARIANT"}}, "140357173632960": {"type": "Function", "content": {"typeVars": [".0.140357173632960"], "argTypes": [{"nodeId": ".0.140357173632960"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173632960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173632960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173632960", "variance": "INVARIANT"}}, "140357173633408": {"type": "Function", "content": {"typeVars": [".0.140357173633408"], "argTypes": [{"nodeId": ".0.140357173633408"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173633408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173633408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173633408", "variance": "INVARIANT"}}, "140357173633856": {"type": "Function", "content": {"typeVars": [".0.140357173633856"], "argTypes": [{"nodeId": ".0.140357173633856"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173633856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173633856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173633856", "variance": "INVARIANT"}}, "140357173634304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": ".1.140357098481344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140357173634752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357185928032"}, {"nodeId": ".1.140357098481344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140357173635200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357098481344"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140357173635648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": ".1.140357098481344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140357173636096": {"type": "Function", "content": {"typeVars": [".0.140357173636096"], "argTypes": [{"nodeId": ".0.140357173636096"}], "returnType": {"nodeId": ".0.140357173636096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173636096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173636096", "variance": "INVARIANT"}}, "140357173636544": {"type": "Function", "content": {"typeVars": [".0.140357173636544"], "argTypes": [{"nodeId": ".0.140357173636544"}], "returnType": {"nodeId": ".0.140357173636544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173636544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, "def": "140357173636544", "variance": "INVARIANT"}}, "140357173636992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": ".1.140357098481344"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140357173637440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": ".1.140357098481344"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140357081701328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357178025664"}, {"nodeId": "140357173638336"}]}}, "140357178025664": {"type": "Function", "content": {"typeVars": [".-1.140357178025664"], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".-1.140357178025664"}]}, {"nodeId": "N"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140357178025664": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140357089642416"}, "def": "140357178025664", "variance": "INVARIANT"}}, "140357173638336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357081665088"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140357081665088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140357098481344"}], "returnType": {"nodeId": "140357081702000"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357081702000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102181104"}}}, "140357173638784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481344", "args": [{"nodeId": ".1.140357098481344"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098481344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140357098481696": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173639232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173639680"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173640128"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173640576"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173755968"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173756416"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173756864"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173757312"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173757760"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173758208"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173758656"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173759104"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173759552"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173760000"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173760448"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173760896"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173761344"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173761792"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173762240"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173762688"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173763136"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173764032"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173764480"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173764928"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173765376"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173765824"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173766720"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173767168"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173767616"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173768064"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173768512"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173768960"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173769408"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173769856"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173770304"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173770752"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173771200"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173771648"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173903424"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173903872"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173904320"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173904768"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173905216"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173905664"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173906112"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173906560"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173907008"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173907456"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357035444928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173907904"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173908352"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173908800"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173909248"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173909696"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173910144"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173910592"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173911040"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173911488"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173911936"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173912384"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173912832"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173913280"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173913728"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173914176"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173914624"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173915072"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173915520"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173915968"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098481696"}]}], "isAbstract": false}}, "140357173639232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140357173639680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357173640128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357173640576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185928736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357173755968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357081702112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081702112": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357173756416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081702224"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081702224": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173756864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081702336"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081702336": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173757312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081702448"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081702448": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173757760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081702560"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081702560": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173758208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357173758656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357173759104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357173759552": {"type": "Function", "content": {"typeVars": [".0.140357173759552"], "argTypes": [{"nodeId": ".0.140357173759552"}, {"nodeId": "140357081702784"}], "returnType": {"nodeId": ".0.140357173759552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173759552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173759552", "variance": "INVARIANT"}}, "140357081702784": {"type": "Union", "content": {"items": [{"nodeId": "140357098484864"}, {"nodeId": "140357098129536"}]}}, "140357173760000": {"type": "Function", "content": {"typeVars": [".0.140357173760000"], "argTypes": [{"nodeId": ".0.140357173760000"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".0.140357173760000"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357173760000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173760000", "variance": "INVARIANT"}}, "140357173760448": {"type": "Function", "content": {"typeVars": [".0.140357173760448"], "argTypes": [{"nodeId": ".0.140357173760448"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".0.140357173760448"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357173760448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173760448", "variance": "INVARIANT"}}, "140357173760896": {"type": "Function", "content": {"typeVars": [".0.140357173760896"], "argTypes": [{"nodeId": ".0.140357173760896"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": ".0.140357173760896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173760896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173760896", "variance": "INVARIANT"}}, "140357173761344": {"type": "Function", "content": {"typeVars": [".0.140357173761344"], "argTypes": [{"nodeId": ".0.140357173761344"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": ".0.140357173761344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173761344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173761344", "variance": "INVARIANT"}}, "140357173761792": {"type": "Function", "content": {"typeVars": [".0.140357173761792"], "argTypes": [{"nodeId": ".0.140357173761792"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173761792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173761792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173761792", "variance": "INVARIANT"}}, "140357173762240": {"type": "Function", "content": {"typeVars": [".0.140357173762240"], "argTypes": [{"nodeId": ".0.140357173762240"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173762240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173762240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173762240", "variance": "INVARIANT"}}, "140357173762688": {"type": "Function", "content": {"typeVars": [".0.140357173762688"], "argTypes": [{"nodeId": ".0.140357173762688"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357173762688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173762688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173762688", "variance": "INVARIANT"}}, "140357173763136": {"type": "Function", "content": {"typeVars": [".0.140357173763136"], "argTypes": [{"nodeId": ".0.140357173763136"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": ".0.140357173763136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357173763136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173763136", "variance": "INVARIANT"}}, "140357173764032": {"type": "Function", "content": {"typeVars": [".0.140357173764032"], "argTypes": [{"nodeId": ".0.140357173764032"}], "returnType": {"nodeId": ".0.140357173764032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173764032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173764032", "variance": "INVARIANT"}}, "140357173764480": {"type": "Function", "content": {"typeVars": [".0.140357173764480"], "argTypes": [{"nodeId": ".0.140357173764480"}], "returnType": {"nodeId": ".0.140357173764480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173764480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173764480", "variance": "INVARIANT"}}, "140357173764928": {"type": "Function", "content": {"typeVars": [".0.140357173764928"], "argTypes": [{"nodeId": ".0.140357173764928"}, {"nodeId": "140357185928032"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357173764928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140357173764928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173764928", "variance": "INVARIANT"}}, "140357173765376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081703120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140357081703120": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173765824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081703232"}, {"nodeId": "140357081703344"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140357081703232": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081703344": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357173766720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081703456"}, {"nodeId": "140357081703568"}, {"nodeId": "140357081703680"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140357081703456": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}]}}, "140357081703568": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081703680": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357173767168": {"type": "Function", "content": {"typeVars": [".0.140357173767168"], "argTypes": [{"nodeId": ".0.140357173767168"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173767168"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140357173767168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173767168", "variance": "INVARIANT"}}, "140357173767616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081703792"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140357081703792": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173768064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140357173768512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140357173768960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140357173769408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173769856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173770304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173770752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173771200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173771648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173903424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173903872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173905664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357173906112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140357173906560": {"type": "Function", "content": {"typeVars": [".0.140357173906560"], "argTypes": [{"nodeId": ".0.140357173906560"}, {"nodeId": "140357185928032"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357173906560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140357173906560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173906560", "variance": "INVARIANT"}}, "140357173907008": {"type": "Function", "content": {"typeVars": [".0.140357173907008"], "argTypes": [{"nodeId": ".0.140357173907008"}], "returnType": {"nodeId": ".0.140357173907008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173907008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173907008", "variance": "INVARIANT"}}, "140357173907456": {"type": "Function", "content": {"typeVars": [".0.140357173907456"], "argTypes": [{"nodeId": ".0.140357173907456"}, {"nodeId": "140357081704352"}], "returnType": {"nodeId": ".0.140357173907456"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140357173907456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173907456", "variance": "INVARIANT"}}, "140357081704352": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357035444928": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357035391712"}, {"nodeId": "140357035391936"}, {"nodeId": "140357035392160"}]}}, "140357035391712": {"type": "Function", "content": {"typeVars": [".-1.140357035391712"], "argTypes": [{"nodeId": "140357035444592"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": ".-1.140357035391712"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357035444592": {"type": "Union", "content": {"items": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": ".-1.140357035391712"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357035391712"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357035444256"}, {"nodeId": ".-1.140357035391712"}]}]}}, ".-1.140357035391712": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357035391712", "variance": "INVARIANT"}}, "140357035444256": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357035391936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357035392160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357185928032"}, {"nodeId": "140357035444704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357035444704": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357173907904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081704576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140357081704576": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357173908352": {"type": "Function", "content": {"typeVars": [".0.140357173908352"], "argTypes": [{"nodeId": ".0.140357173908352"}, {"nodeId": "140357081704688"}], "returnType": {"nodeId": ".0.140357173908352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140357173908352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173908352", "variance": "INVARIANT"}}, "140357081704688": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173908800": {"type": "Function", "content": {"typeVars": [".0.140357173908800"], "argTypes": [{"nodeId": ".0.140357173908800"}, {"nodeId": "140357081704800"}], "returnType": {"nodeId": ".0.140357173908800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140357173908800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173908800", "variance": "INVARIANT"}}, "140357081704800": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173909248": {"type": "Function", "content": {"typeVars": [".0.140357173909248"], "argTypes": [{"nodeId": ".0.140357173909248"}, {"nodeId": "140357081704912"}, {"nodeId": "140357081705024"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173909248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140357173909248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173909248", "variance": "INVARIANT"}}, "140357081704912": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357081705024": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173909696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081705136"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140357081705136": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173910144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081705248"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140357081705248": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098481696"}]}}, "140357173910592": {"type": "Function", "content": {"typeVars": [".0.140357173910592"], "argTypes": [{"nodeId": ".0.140357173910592"}, {"nodeId": "140357185928032"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357173910592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140357173910592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173910592", "variance": "INVARIANT"}}, "140357173911040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081705584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140357081705584": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357173911488": {"type": "Function", "content": {"typeVars": [".0.140357173911488"], "argTypes": [{"nodeId": ".0.140357173911488"}, {"nodeId": "140357081705696"}], "returnType": {"nodeId": ".0.140357173911488"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140357173911488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173911488", "variance": "INVARIANT"}}, "140357081705696": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357173911936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081705808"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357081705808": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357173912384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081705920"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140357081705920": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357173912832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140357173913280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098481696"}, {"nodeId": "140357081706032"}, {"nodeId": "140357081706144"}, {"nodeId": "140357081706256"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140357081706032": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}]}}, "140357081706144": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081706256": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357173913728": {"type": "Function", "content": {"typeVars": [".0.140357173913728"], "argTypes": [{"nodeId": ".0.140357173913728"}, {"nodeId": "140357081706368"}], "returnType": {"nodeId": ".0.140357173913728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140357173913728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173913728", "variance": "INVARIANT"}}, "140357081706368": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357173914176": {"type": "Function", "content": {"typeVars": [".0.140357173914176"], "argTypes": [{"nodeId": ".0.140357173914176"}], "returnType": {"nodeId": ".0.140357173914176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173914176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173914176", "variance": "INVARIANT"}}, "140357173914624": {"type": "Function", "content": {"typeVars": [".0.140357173914624"], "argTypes": [{"nodeId": ".0.140357173914624"}], "returnType": {"nodeId": ".0.140357173914624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173914624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173914624", "variance": "INVARIANT"}}, "140357173915072": {"type": "Function", "content": {"typeVars": [".0.140357173915072"], "argTypes": [{"nodeId": ".0.140357173915072"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357173915072"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140357173915072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173915072", "variance": "INVARIANT"}}, "140357173915520": {"type": "Function", "content": {"typeVars": [".0.140357173915520"], "argTypes": [{"nodeId": ".0.140357173915520"}], "returnType": {"nodeId": ".0.140357173915520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173915520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173915520", "variance": "INVARIANT"}}, "140357173915968": {"type": "Function", "content": {"typeVars": [".0.140357173915968"], "argTypes": [{"nodeId": ".0.140357173915968"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357173915968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140357173915968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098481696"}, "def": "140357173915968", "variance": "INVARIANT"}}, "140357098482048": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357035475456"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081701440"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173917760"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173918208"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173918656"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173919104"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174001728"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174002176"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174002624"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174003072"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174003520"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174003968"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174004416"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174004864"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174005312"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174005760"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174006208"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174006656"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174007104"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174007552"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174008000"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174008448"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174008896"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174009344"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174009792"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174010240"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174010688"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174011136"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174011584"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174012032"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357098482048"}], "bases": [{"nodeId": "140357185925216", "args": [{"nodeId": ".1.140357098482048"}]}], "isAbstract": false}}, ".1.140357098482048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098482048", "variance": "INVARIANT"}}, "140357035475456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "140357081706592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081706592": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081701440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357173916864"}, {"nodeId": "140357173917312"}]}}, "140357173916864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357081706816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140357081706816": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357173917312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357081706928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140357081706928": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357173917760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": ".1.140357098482048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357173918208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": ".1.140357098482048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357173918656": {"type": "Function", "content": {"typeVars": [".0.140357173918656"], "argTypes": [{"nodeId": ".0.140357173918656"}], "returnType": {"nodeId": ".0.140357173918656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357173918656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357173918656", "variance": "INVARIANT"}}, "140357173919104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": ".1.140357098482048"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174001728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174002176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174002624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357185928032"}, {"nodeId": ".1.140357098482048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357174003072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": ".1.140357098482048"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357174003520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": ".1.140357098482048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357174003968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": ".1.140357098482048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357174004416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": ".1.140357098482048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174004864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357174005312": {"type": "Function", "content": {"typeVars": [".0.140357174005312"], "argTypes": [{"nodeId": ".0.140357174005312"}], "returnType": {"nodeId": ".0.140357174005312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357174005312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357174005312", "variance": "INVARIANT"}}, "140357174005760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357174006208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": ".1.140357098482048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174006656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098484864"}, {"nodeId": ".1.140357098482048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357174007104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174007552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174008000": {"type": "Function", "content": {"typeVars": [".0.140357174008000"], "argTypes": [{"nodeId": ".0.140357174008000"}], "returnType": {"nodeId": "140357081707488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357174008000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357174008000", "variance": "INVARIANT"}}, "140357081707488": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140357081707264"}, {"nodeId": "N"}, {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098482048"}]}]}}, "140357081707264": {"type": "Tuple", "content": {"items": []}}, "140357174008448": {"type": "Function", "content": {"typeVars": [".0.140357174008448"], "argTypes": [{"nodeId": ".0.140357174008448"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": ".0.140357174008448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357174008448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357174008448", "variance": "INVARIANT"}}, "140357174008896": {"type": "Function", "content": {"typeVars": [".0.140357174008896"], "argTypes": [{"nodeId": ".0.140357174008896"}, {"nodeId": ".0.140357174008896"}], "returnType": {"nodeId": ".0.140357174008896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357174008896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357174008896", "variance": "INVARIANT"}}, "140357174009344": {"type": "Function", "content": {"typeVars": [".0.140357174009344"], "argTypes": [{"nodeId": ".0.140357174009344"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357174009344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357174009344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357174009344", "variance": "INVARIANT"}}, "140357174009792": {"type": "Function", "content": {"typeVars": [".0.140357174009792"], "argTypes": [{"nodeId": ".0.140357174009792"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357174009792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357174009792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, "def": "140357174009792", "variance": "INVARIANT"}}, "140357174010240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174010688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174011136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174011584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}, {"nodeId": "140357098482048", "args": [{"nodeId": ".1.140357098482048"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357174012032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357098322784": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081702672"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174014272"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174014720"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357174015168"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357035559616"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081707040"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081707824"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168923584"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168924032"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168924480"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168924928"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168925376"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168925824"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168926272"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168926720"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168927168"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168927616"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168928064"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168928512"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168928960"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168929408"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168929856"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168930304"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168930752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168931200"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168931648"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140357098322784"}], "bases": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "isAbstract": false}}, ".1.140357098322784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098322784", "variance": "INVARIANT"}}, "140357081702672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357174012480"}, {"nodeId": "140357174012928"}, {"nodeId": "140357174013376"}, {"nodeId": "140357174013824"}]}}, "140357174012480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357174012928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357174013376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174013824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174014272": {"type": "Function", "content": {"typeVars": [".0.140357174014272"], "argTypes": [{"nodeId": ".0.140357174014272"}], "returnType": {"nodeId": ".0.140357174014272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357174014272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "def": "140357174014272", "variance": "INVARIANT"}}, "140357174014720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098322784"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357174015168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357081707936"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357081708160"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140357081707936": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081708160": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}}, "140357035559616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140357081708384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140357081708384": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081707040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357174016064"}, {"nodeId": "140357174016512"}, {"nodeId": "140357174016960"}]}}, "140357174016064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357174016512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357174016960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357081707824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357174017408"}, {"nodeId": "140357168922688"}, {"nodeId": "140357168923136"}]}}, "140357174017408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357168922688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357168923136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "N"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357168923584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": ".1.140357098322784"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140357168924032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168924480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168924928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168925376": {"type": "Function", "content": {"typeVars": [".-1.140357168925376"], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": ".-1.140357168925376"}]}], "returnType": {"nodeId": "140357098322784", "args": [{"nodeId": "140357081708720"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357168925376": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357168925376", "variance": "INVARIANT"}}, "140357081708720": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098322784"}, {"nodeId": ".-1.140357168925376"}]}}, "140357168925824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168926272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168926720": {"type": "Function", "content": {"typeVars": [".-1.140357168926720"], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": ".-1.140357168926720"}]}], "returnType": {"nodeId": "140357098322784", "args": [{"nodeId": "140357081708832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357168926720": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357168926720", "variance": "INVARIANT"}}, "140357081708832": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098322784"}, {"nodeId": ".-1.140357168926720"}]}}, "140357168927168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357168927616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357168928064": {"type": "Function", "content": {"typeVars": [".0.140357168928064"], "argTypes": [{"nodeId": ".0.140357168928064"}, {"nodeId": "140357106005120", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "returnType": {"nodeId": ".0.140357168928064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357168928064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "def": "140357168928064", "variance": "INVARIANT"}}, "140357106005120": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161087072"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140357106005120"}, {"nodeId": ".2.140357106005120"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["items"]}}, ".1.140357106005120": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106005120", "variance": "COVARIANT"}}, ".2.140357106005120": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106005120", "variance": "COVARIANT"}}, "140357161087072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106005120", "args": [{"nodeId": ".1.140357106005120"}, {"nodeId": ".2.140357106005120"}]}], "returnType": {"nodeId": "140357185925568", "args": [{"nodeId": "140357076825952"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076825952": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357106005120"}, {"nodeId": ".2.140357106005120"}]}}, "140357168928512": {"type": "Function", "content": {"typeVars": [".0.140357168928512"], "argTypes": [{"nodeId": ".0.140357168928512"}, {"nodeId": "140357106005120", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "returnType": {"nodeId": ".0.140357168928512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357168928512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "def": "140357168928512", "variance": "INVARIANT"}}, "140357168928960": {"type": "Function", "content": {"typeVars": [".0.140357168928960"], "argTypes": [{"nodeId": ".0.140357168928960"}, {"nodeId": "140357106005120", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "returnType": {"nodeId": ".0.140357168928960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357168928960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "def": "140357168928960", "variance": "INVARIANT"}}, "140357168929408": {"type": "Function", "content": {"typeVars": [".0.140357168929408"], "argTypes": [{"nodeId": ".0.140357168929408"}, {"nodeId": "140357106005120", "args": [{"nodeId": ".1.140357098322784"}, {"nodeId": "140357185928032"}]}], "returnType": {"nodeId": ".0.140357168929408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357168929408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, "def": "140357168929408", "variance": "INVARIANT"}}, "140357168929856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357168930304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168930752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168931200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357168931648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098322784", "args": [{"nodeId": ".1.140357098322784"}]}, {"nodeId": "140357098322784", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357105993504": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168932096"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357105993504"}], "bases": [{"nodeId": "140357098475008", "args": [{"nodeId": ".1.140357105993504"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357105993504"}]}], "isAbstract": false}}, ".1.140357105993504": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105993504", "variance": "COVARIANT"}}, "140357168932096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993504", "args": [{"nodeId": ".1.140357105993504"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357105993504"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357105993856": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168932544"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357105993856"}, {"nodeId": ".2.140357105993856"}], "bases": [{"nodeId": "140357098474656", "args": [{"nodeId": ".1.140357105993856"}, {"nodeId": ".2.140357105993856"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": "140357114442944"}]}], "isAbstract": false}}, ".1.140357105993856": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105993856", "variance": "COVARIANT"}}, ".2.140357105993856": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105993856", "variance": "COVARIANT"}}, "140357168932544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993856", "args": [{"nodeId": ".1.140357105993856"}, {"nodeId": ".2.140357105993856"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357081709504"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357081709504": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357105993856"}, {"nodeId": ".2.140357105993856"}]}}, "140357114442944": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357105993856"}, {"nodeId": ".2.140357105993856"}]}}, "140357105994208": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168932992"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357105994208"}], "bases": [{"nodeId": "140357098475360", "args": [{"nodeId": ".1.140357105994208"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357105994208"}]}], "isAbstract": false}}, ".1.140357105994208": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105994208", "variance": "COVARIANT"}}, "140357168932992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994208", "args": [{"nodeId": ".1.140357105994208"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357105994208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098482400": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168933440"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357098482400"}, {"nodeId": ".2.140357098482400"}], "bases": [{"nodeId": "140357098477472", "args": [{"nodeId": ".1.140357098482400"}, {"nodeId": ".2.140357098482400"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357098482400"}]}], "isAbstract": false}}, ".1.140357098482400": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098482400", "variance": "COVARIANT"}}, ".2.140357098482400": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098482400", "variance": "COVARIANT"}}, "140357168933440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482400", "args": [{"nodeId": ".1.140357098482400"}, {"nodeId": ".2.140357098482400"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098482400"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098482752": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168933888"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357098482752"}, {"nodeId": ".2.140357098482752"}], "bases": [{"nodeId": "140357098478176", "args": [{"nodeId": ".1.140357098482752"}, {"nodeId": ".2.140357098482752"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": "140357102184800"}]}], "isAbstract": false}}, ".1.140357098482752": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098482752", "variance": "COVARIANT"}}, ".2.140357098482752": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098482752", "variance": "COVARIANT"}}, "140357168933888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098482752", "args": [{"nodeId": ".1.140357098482752"}, {"nodeId": ".2.140357098482752"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357081709728"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357081709728": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098482752"}, {"nodeId": ".2.140357098482752"}]}}, "140357102184800": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098482752"}, {"nodeId": ".2.140357098482752"}]}}, "140357098483104": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168934336"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140357098483104"}, {"nodeId": ".2.140357098483104"}], "bases": [{"nodeId": "140357098477824", "args": [{"nodeId": ".1.140357098483104"}, {"nodeId": ".2.140357098483104"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".2.140357098483104"}]}], "isAbstract": false}}, ".1.140357098483104": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098483104", "variance": "COVARIANT"}}, ".2.140357098483104": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098483104", "variance": "COVARIANT"}}, "140357168934336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483104", "args": [{"nodeId": ".1.140357098483104"}, {"nodeId": ".2.140357098483104"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".2.140357098483104"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098483456": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168934784"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168935232"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168935680"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168936128"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168936576"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168937024"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357168937472"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081708496"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081710064"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}], "bases": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357098483456"}]}], "isAbstract": false}}, ".1.140357098483456": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098483456", "variance": "INVARIANT"}}, ".2.140357098483456": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098483456", "variance": "INVARIANT"}}, "140357168934784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357081709952"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140357081709952": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}}, "140357168935232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, {"nodeId": ".1.140357098483456"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140357168935680": {"type": "Function", "content": {"typeVars": [".0.140357168935680"], "argTypes": [{"nodeId": ".0.140357168935680"}], "returnType": {"nodeId": ".0.140357168935680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357168935680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, "def": "140357168935680", "variance": "INVARIANT"}}, "140357168936128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098483456"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357168936576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}], "returnType": {"nodeId": "140357098482400", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357168937024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}], "returnType": {"nodeId": "140357098482752", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357168937472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}], "returnType": {"nodeId": "140357098483104", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081708496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357168937920"}, {"nodeId": "140357168938368"}]}}, "140357168937920": {"type": "Function", "content": {"typeVars": [".-1.140357168937920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357168937920"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098483456", "args": [{"nodeId": ".-1.140357168937920"}, {"nodeId": "140357081710400"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140357168937920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357168937920", "variance": "INVARIANT"}}, "140357081710400": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357168938368": {"type": "Function", "content": {"typeVars": [".-1.140357168938368", ".-2.140357168938368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357168938368"}]}, {"nodeId": ".-2.140357168938368"}], "returnType": {"nodeId": "140357098483456", "args": [{"nodeId": ".-1.140357168938368"}, {"nodeId": ".-2.140357168938368"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140357168938368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357168938368", "variance": "INVARIANT"}}, ".-2.140357168938368": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357168938368", "variance": "INVARIANT"}}, "140357081710064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169037376"}, {"nodeId": "140357169037824"}]}}, "140357169037376": {"type": "Function", "content": {"typeVars": [".-1.140357169037376"], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": "140357076811952"}]}, {"nodeId": ".1.140357098483456"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357076812064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140357076811952": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357169037376"}, {"nodeId": "N"}]}}, ".-1.140357169037376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169037376", "variance": "INVARIANT"}}, "140357076812064": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357169037376"}, {"nodeId": "N"}]}}, "140357169037824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483456", "args": [{"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}]}, {"nodeId": ".1.140357098483456"}, {"nodeId": ".2.140357098483456"}], "returnType": {"nodeId": ".2.140357098483456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140357098323136": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357102184576"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081710176"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169041856"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169042304"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169042752"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}], "bases": [{"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}], "isAbstract": false}}, ".1.140357098323136": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098323136", "variance": "INVARIANT"}}, ".2.140357098323136": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098323136", "variance": "INVARIANT"}}, "140357102184576": {"type": "Union", "content": {"items": [{"nodeId": "140357102484640"}, {"nodeId": "N"}]}}, "140357102484640": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357081710176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169038272"}, {"nodeId": "140357169038720"}, {"nodeId": "140357169039168"}, {"nodeId": "140357169039616"}, {"nodeId": "140357169040064"}, {"nodeId": "140357169040512"}, {"nodeId": "140357169040960"}, {"nodeId": "140357169041408"}]}}, "140357169038272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357169038720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": ".2.140357098323136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140357169039168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": "140357076812288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357076812288": {"type": "Union", "content": {"items": [{"nodeId": "140357081665760"}, {"nodeId": "N"}]}}, "140357081665760": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357169039616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": "140357076812400"}, {"nodeId": ".2.140357098323136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140357076812400": {"type": "Union", "content": {"items": [{"nodeId": "140357081665984"}, {"nodeId": "N"}]}}, "140357081665984": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357169040064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": "140357076812512"}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357076812512": {"type": "Union", "content": {"items": [{"nodeId": "140357081665312"}, {"nodeId": "N"}]}}, "140357081665312": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357169040512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": "140357076812624"}, {"nodeId": "140357106005472", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": ".2.140357098323136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140357076812624": {"type": "Union", "content": {"items": [{"nodeId": "140357081666208"}, {"nodeId": "N"}]}}, "140357081666208": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357169040960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": "140357076812736"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357076812960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357076812736": {"type": "Union", "content": {"items": [{"nodeId": "140357081666432"}, {"nodeId": "N"}]}}, "140357081666432": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357076812960": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}}, "140357169041408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": "140357076813072"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357076813296"}]}, {"nodeId": ".2.140357098323136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140357076813072": {"type": "Union", "content": {"items": [{"nodeId": "140357081666656"}, {"nodeId": "N"}]}}, "140357081666656": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": [], "argNames": []}}, "140357076813296": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".2.140357098323136"}]}}, "140357169041856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}, {"nodeId": ".1.140357098323136"}], "returnType": {"nodeId": ".2.140357098323136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357169042304": {"type": "Function", "content": {"typeVars": [".0.140357169042304"], "argTypes": [{"nodeId": ".0.140357169042304"}], "returnType": {"nodeId": ".0.140357169042304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357169042304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}, "def": "140357169042304", "variance": "INVARIANT"}}, "140357169042752": {"type": "Function", "content": {"typeVars": [".0.140357169042752"], "argTypes": [{"nodeId": ".0.140357169042752"}], "returnType": {"nodeId": ".0.140357169042752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357169042752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098323136", "args": [{"nodeId": ".1.140357098323136"}, {"nodeId": ".2.140357098323136"}]}, "def": "140357169042752", "variance": "INVARIANT"}}, "140357098483808": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169043200"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169043648"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357030756864"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169044544"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169044992"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169045440"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169045888"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169046336"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169046784"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169047232"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169047680"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076811840"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076813520"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169049920"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357030759552"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076813744"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169051264"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357169051712"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076814080"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}], "bases": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}], "isAbstract": false}}, ".1.140357098483808": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098483808", "variance": "INVARIANT"}}, ".2.140357098483808": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098483808", "variance": "INVARIANT"}}, "140357169043200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140357169043648": {"type": "Function", "content": {"typeVars": [".0.140357169043648"], "argTypes": [{"nodeId": ".0.140357169043648"}, {"nodeId": "140357076813632"}], "returnType": {"nodeId": ".0.140357169043648"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140357169043648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, "def": "140357169043648", "variance": "INVARIANT"}}, "140357076813632": {"type": "Union", "content": {"items": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": "N"}]}}, "140357030756864": {"type": "Function", "content": {"typeVars": [".0.140357030756864"], "argTypes": [{"nodeId": ".0.140357030756864"}], "returnType": {"nodeId": ".0.140357030756864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357030756864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, "def": "140357030756864", "variance": "INVARIANT"}}, "140357169044544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357169044992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357169045440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}], "returnType": {"nodeId": ".2.140357098483808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357169045888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098483808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357169046336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357169046784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357169047232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}], "returnType": {"nodeId": ".2.140357098483808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140357169047680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076811840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169048128"}, {"nodeId": "140357169048576"}]}}, "140357169048128": {"type": "Function", "content": {"typeVars": [".-1.140357169048128"], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": "140357076813856"}]}, {"nodeId": ".1.140357098483808"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357076813968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140357076813856": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357169048128"}, {"nodeId": "N"}]}}, ".-1.140357169048128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169048128", "variance": "INVARIANT"}}, "140357076813968": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140357169048128"}, {"nodeId": "N"}]}}, "140357169048576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}], "returnType": {"nodeId": ".2.140357098483808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140357076813520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169049024"}, {"nodeId": "140357169049472"}]}}, "140357169049024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}], "returnType": {"nodeId": ".2.140357098483808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140357169049472": {"type": "Function", "content": {"typeVars": [".-1.140357169049472"], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": ".1.140357098483808"}, {"nodeId": "140357076814192"}], "returnType": {"nodeId": "140357076814304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140357076814192": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098483808"}, {"nodeId": ".-1.140357169049472"}]}}, ".-1.140357169049472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169049472", "variance": "INVARIANT"}}, "140357076814304": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098483808"}, {"nodeId": ".-1.140357169049472"}]}}, "140357169049920": {"type": "Function", "content": {"typeVars": [".0.140357169049920"], "argTypes": [{"nodeId": ".0.140357169049920"}], "returnType": {"nodeId": ".0.140357169049920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357169049920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, "def": "140357169049920", "variance": "INVARIANT"}}, "140357030759552": {"type": "Function", "content": {"typeVars": [".0.140357030759552"], "argTypes": [{"nodeId": ".0.140357030759552"}], "returnType": {"nodeId": ".0.140357030759552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357030759552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, "def": "140357030759552", "variance": "INVARIANT"}}, "140357076813744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169050368"}, {"nodeId": "140357169050816"}]}}, "140357169050368": {"type": "Function", "content": {"typeVars": [".-1.140357169050368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357169050368"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098483808", "args": [{"nodeId": ".-1.140357169050368"}, {"nodeId": "140357076814640"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140357169050368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169050368", "variance": "INVARIANT"}}, "140357076814640": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357169050816": {"type": "Function", "content": {"typeVars": [".-1.140357169050816", ".-2.140357169050816"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357169050816"}]}, {"nodeId": ".-2.140357169050816"}], "returnType": {"nodeId": "140357098483808", "args": [{"nodeId": ".-1.140357169050816"}, {"nodeId": ".-2.140357169050816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140357169050816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169050816", "variance": "INVARIANT"}}, ".-2.140357169050816": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169050816", "variance": "INVARIANT"}}, "140357169051264": {"type": "Function", "content": {"typeVars": [".-1.140357169051264", ".-2.140357169051264"], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357169051264"}, {"nodeId": ".-2.140357169051264"}]}], "returnType": {"nodeId": "140357098483808", "args": [{"nodeId": "140357076814752"}, {"nodeId": "140357076814864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357169051264": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169051264", "variance": "INVARIANT"}}, ".-2.140357169051264": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169051264", "variance": "INVARIANT"}}, "140357076814752": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".-1.140357169051264"}]}}, "140357076814864": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098483808"}, {"nodeId": ".-2.140357169051264"}]}}, "140357169051712": {"type": "Function", "content": {"typeVars": [".-1.140357169051712", ".-2.140357169051712"], "argTypes": [{"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357169051712"}, {"nodeId": ".-2.140357169051712"}]}], "returnType": {"nodeId": "140357098483808", "args": [{"nodeId": "140357076814976"}, {"nodeId": "140357076815088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357169051712": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169051712", "variance": "INVARIANT"}}, ".-2.140357169051712": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357169051712", "variance": "INVARIANT"}}, "140357076814976": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".-1.140357169051712"}]}}, "140357076815088": {"type": "Union", "content": {"items": [{"nodeId": ".2.140357098483808"}, {"nodeId": ".-2.140357169051712"}]}}, "140357076814080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169052160"}, {"nodeId": "140357169052608"}]}}, "140357169052160": {"type": "Function", "content": {"typeVars": [".0.140357169052160"], "argTypes": [{"nodeId": ".0.140357169052160"}, {"nodeId": "140357106005472", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}], "returnType": {"nodeId": ".0.140357169052160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357169052160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, "def": "140357169052160", "variance": "INVARIANT"}}, "140357169052608": {"type": "Function", "content": {"typeVars": [".0.140357169052608"], "argTypes": [{"nodeId": ".0.140357169052608"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357076815424"}]}], "returnType": {"nodeId": ".0.140357169052608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357169052608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098483808", "args": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}, "def": "140357169052608", "variance": "INVARIANT"}}, "140357076815424": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357098483808"}, {"nodeId": ".2.140357098483808"}]}}, "140357185917472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018627296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110137248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357111034736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018627968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357018628640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152541376"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357018627296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917472"}], "returnType": {"nodeId": "140357072462992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072462992": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357098487328"}]}, {"nodeId": "N"}]}}, "140357098487328": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164955040"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357164955040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098487328"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357111034736": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357018627968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917472"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357018628640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917472"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152541376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917472"}, {"nodeId": "140357185916416"}, {"nodeId": "140357072463328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357072463328": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357185927680": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357077122320"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357077122320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357169586112"}, {"nodeId": "140357169586560"}, {"nodeId": "140357169587008"}]}}, "140357169586112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927680"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357169586560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927680"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357169587008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185927680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098478880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072467360"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152847936"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152848384"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152848832"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152849280"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152981056"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152981504"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152981952"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152982400"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152982848"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152983296"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152983744"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152984192"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152984640"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152985088"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152985536"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152985984"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152986432"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152986880"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152987328"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152987776"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357098478880"}], "bases": [{"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357098478880"}]}], "isAbstract": false}}, ".1.140357098478880": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098478880", "variance": "COVARIANT"}}, "140357072467360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152847040"}, {"nodeId": "140357152847488"}]}}, "140357152847040": {"type": "Function", "content": {"typeVars": [".0.140357152847040"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140357152847040"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140357152847040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "def": "140357152847040", "variance": "INVARIANT"}}, "140357152847488": {"type": "Function", "content": {"typeVars": [".0.140357152847488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": ".0.140357152847488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140357152847488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "def": "140357152847488", "variance": "INVARIANT"}}, "140357152847936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357152848384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152848832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140357152849280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152981056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152981504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152981952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152982400": {"type": "Function", "content": {"typeVars": [".-1.140357152982400"], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357152982400"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": "140357072469488"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140357152982400": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152982400", "variance": "INVARIANT"}}, "140357072469488": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478880"}, {"nodeId": ".-1.140357152982400"}]}}, "140357152982848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152983296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152983744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152984192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152984640": {"type": "Function", "content": {"typeVars": [".-1.140357152984640"], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".-1.140357152984640"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": "140357072469600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152984640": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152984640", "variance": "INVARIANT"}}, "140357072469600": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478880"}, {"nodeId": ".-1.140357152984640"}]}}, "140357152985088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".1.140357098478880"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152985536": {"type": "Function", "content": {"typeVars": [".-1.140357152985536"], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": ".-1.140357152985536"}]}], "returnType": {"nodeId": "140357098478880", "args": [{"nodeId": "140357072469712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357152985536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357152985536", "variance": "INVARIANT"}}, "140357072469712": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098478880"}, {"nodeId": ".-1.140357152985536"}]}}, "140357152985984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152986432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152986880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152987328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098478880", "args": [{"nodeId": ".1.140357098478880"}]}, {"nodeId": "140357185925568", "args": [{"nodeId": "140357185916416"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152987776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357098479232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152988224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152988672"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152989120"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152989568"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357098479232"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": "140357114437232"}]}], "isAbstract": false}}, ".1.140357098479232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098479232", "variance": "INVARIANT"}}, "140357152988224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479232", "args": [{"nodeId": ".1.140357098479232"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098479232"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140357152988672": {"type": "Function", "content": {"typeVars": [".0.140357152988672"], "argTypes": [{"nodeId": ".0.140357152988672"}], "returnType": {"nodeId": ".0.140357152988672"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357152988672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098479232", "args": [{"nodeId": ".1.140357098479232"}]}, "def": "140357152988672", "variance": "INVARIANT"}}, "140357152989120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479232", "args": [{"nodeId": ".1.140357098479232"}]}], "returnType": {"nodeId": "140357072830752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072830752": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": ".1.140357098479232"}]}}, "140357152989568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357114437232": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": ".1.140357098479232"}]}}, "140357098130944": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357013857312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357013857760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357013857984"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072468704"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152992256"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152992704"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152993152"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152993600"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152994048"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072830528"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152995392"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357013857312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357013857760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357013857984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357072468704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152991360"}, {"nodeId": "140357152991808"}]}}, "140357152991360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152991808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357152992256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152992704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357152993152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152993600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152994048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357072830528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357152994496"}, {"nodeId": "140357152994944"}]}}, "140357152994496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357098484864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152994944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357098130944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357152995392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098130944"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098131296": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106731488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357148466016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106730816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152995840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152996288"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357152996736"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357147885632"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357147886080"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357147886528"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357147886976"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357106731488": {"type": "Union", "content": {"items": [{"nodeId": "140357114354752"}, {"nodeId": "N"}]}}, "140357114354752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357148466016": {"type": "Union", "content": {"items": [{"nodeId": "140357114349600"}, {"nodeId": "N"}]}}, "140357114349600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106730816": {"type": "Union", "content": {"items": [{"nodeId": "140357102483520"}, {"nodeId": "N"}]}}, "140357102483520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152995840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "140357072831200"}, {"nodeId": "140357072831536"}, {"nodeId": "140357072831872"}, {"nodeId": "140357072832096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140357072831200": {"type": "Union", "content": {"items": [{"nodeId": "140357072384544"}, {"nodeId": "N"}]}}, "140357072384544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357072831536": {"type": "Union", "content": {"items": [{"nodeId": "140357072384768"}, {"nodeId": "N"}]}}, "140357072384768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357072831872": {"type": "Union", "content": {"items": [{"nodeId": "140357072384992"}, {"nodeId": "N"}]}}, "140357072384992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357072832096": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357152996288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "140357072383872"}], "returnType": {"nodeId": "140357098131296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072383872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357152996736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "140357072384320"}], "returnType": {"nodeId": "140357098131296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072384320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357147885632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "140357072385216"}], "returnType": {"nodeId": "140357098131296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357072385216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357147886080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "A"}, {"nodeId": "140357072832880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357072832880": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357147886528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357147886976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098131296"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098131648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357089325504": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357147891008"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140357089325504"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__fspath__"]}}, ".1.140357089325504": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357089325504", "variance": "COVARIANT"}}, "140357147891008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089325504", "args": [{"nodeId": ".1.140357089325504"}]}], "returnType": {"nodeId": ".1.140357089325504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098132000": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357147891904"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140357098132000"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__anext__"]}}, ".1.140357098132000": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140357185922400", "args": [{"nodeId": "A"}]}, "def": "140357098132000", "variance": "COVARIANT"}}, "140357185922400": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068635520"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185922400"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__await__"]}}, ".1.140357185922400": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922400", "variance": "COVARIANT"}}, "140357068635520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357185922400"}]}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140357185922400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357147891904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098132000", "args": [{"nodeId": ".1.140357098132000"}]}], "returnType": {"nodeId": ".1.140357098132000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098479584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072834224"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148033984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148034432"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140357098479584"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098479584"}]}], "isAbstract": false}}, ".1.140357098479584": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098479584", "variance": "INVARIANT"}}, "140357072834224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357147901312"}, {"nodeId": "140357148033088"}, {"nodeId": "140357148033536"}]}}, "140357147901312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479584", "args": [{"nodeId": ".1.140357098479584"}]}, {"nodeId": "N"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357072837360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357072837360": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357098479584"}, {"nodeId": "N"}]}}, "140357148033088": {"type": "Function", "content": {"typeVars": [".-1.140357148033088"], "argTypes": [{"nodeId": "140357098479584", "args": [{"nodeId": ".1.140357098479584"}]}, {"nodeId": "140357072386112"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148033088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357072386112": {"type": "Function", "content": {"typeVars": [".-1.140357072386112"], "argTypes": [{"nodeId": ".-1.140357072386112"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140357072386112": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072386112", "variance": "INVARIANT"}}, ".-1.140357148033088": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148033088", "variance": "INVARIANT"}}, "140357148033536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479584", "args": [{"nodeId": ".1.140357098479584"}]}, {"nodeId": "140357072385888"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357098479584"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357072385888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140357098479584"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357148033984": {"type": "Function", "content": {"typeVars": [".0.140357148033984"], "argTypes": [{"nodeId": ".0.140357148033984"}], "returnType": {"nodeId": ".0.140357148033984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357148033984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098479584", "args": [{"nodeId": ".1.140357098479584"}]}, "def": "140357148033984", "variance": "INVARIANT"}}, "140357148034432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479584", "args": [{"nodeId": ".1.140357098479584"}]}], "returnType": {"nodeId": ".1.140357098479584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098132352": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148041152"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140357098132352"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__getitem__"]}}, ".1.140357098132352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098132352", "variance": "COVARIANT"}}, "140357148041152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098132352", "args": [{"nodeId": ".1.140357098132352"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357098132352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098479936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357072837696"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148048320"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148048768"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140357098479936"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098479936"}]}], "isAbstract": false}}, ".1.140357098479936": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098479936", "variance": "INVARIANT"}}, "140357072837696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357148045632"}, {"nodeId": "140357148046080"}, {"nodeId": "140357148046528"}, {"nodeId": "140357148046976"}, {"nodeId": "140357148047424"}, {"nodeId": "140357148047872"}]}}, "140357148045632": {"type": "Function", "content": {"typeVars": [".-1.140357148045632"], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, {"nodeId": "140357072945664"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148045632"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357072945664": {"type": "Function", "content": {"typeVars": [".-1.140357072945664"], "argTypes": [{"nodeId": ".-1.140357072945664"}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140357072945664": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945664", "variance": "INVARIANT"}}, ".-1.140357148045632": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148045632", "variance": "INVARIANT"}}, "140357148046080": {"type": "Function", "content": {"typeVars": [".-1.140357148046080", ".-2.140357148046080"], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, {"nodeId": "140357072945440"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148046080"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148046080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140357072945440": {"type": "Function", "content": {"typeVars": [".-1.140357072945440", ".-2.140357072945440"], "argTypes": [{"nodeId": ".-1.140357072945440"}, {"nodeId": ".-2.140357072945440"}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357072945440": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945440", "variance": "INVARIANT"}}, ".-2.140357072945440": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945440", "variance": "INVARIANT"}}, ".-1.140357148046080": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046080", "variance": "INVARIANT"}}, ".-2.140357148046080": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046080", "variance": "INVARIANT"}}, "140357148046528": {"type": "Function", "content": {"typeVars": [".-1.140357148046528", ".-2.140357148046528", ".-3.140357148046528"], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, {"nodeId": "140357072945216"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148046528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148046528"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-3.140357148046528"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140357072945216": {"type": "Function", "content": {"typeVars": [".-1.140357072945216", ".-2.140357072945216", ".-3.140357072945216"], "argTypes": [{"nodeId": ".-1.140357072945216"}, {"nodeId": ".-2.140357072945216"}, {"nodeId": ".-3.140357072945216"}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140357072945216": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945216", "variance": "INVARIANT"}}, ".-2.140357072945216": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945216", "variance": "INVARIANT"}}, ".-3.140357072945216": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945216", "variance": "INVARIANT"}}, ".-1.140357148046528": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046528", "variance": "INVARIANT"}}, ".-2.140357148046528": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046528", "variance": "INVARIANT"}}, ".-3.140357148046528": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046528", "variance": "INVARIANT"}}, "140357148046976": {"type": "Function", "content": {"typeVars": [".-1.140357148046976", ".-2.140357148046976", ".-3.140357148046976", ".-4.140357148046976"], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, {"nodeId": "140357072945888"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148046976"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148046976"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-3.140357148046976"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-4.140357148046976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140357072945888": {"type": "Function", "content": {"typeVars": [".-1.140357072945888", ".-2.140357072945888", ".-3.140357072945888", ".-4.140357072945888"], "argTypes": [{"nodeId": ".-1.140357072945888"}, {"nodeId": ".-2.140357072945888"}, {"nodeId": ".-3.140357072945888"}, {"nodeId": ".-4.140357072945888"}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140357072945888": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945888", "variance": "INVARIANT"}}, ".-2.140357072945888": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945888", "variance": "INVARIANT"}}, ".-3.140357072945888": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945888", "variance": "INVARIANT"}}, ".-4.140357072945888": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072945888", "variance": "INVARIANT"}}, ".-1.140357148046976": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046976", "variance": "INVARIANT"}}, ".-2.140357148046976": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046976", "variance": "INVARIANT"}}, ".-3.140357148046976": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046976", "variance": "INVARIANT"}}, ".-4.140357148046976": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148046976", "variance": "INVARIANT"}}, "140357148047424": {"type": "Function", "content": {"typeVars": [".-1.140357148047424", ".-2.140357148047424", ".-3.140357148047424", ".-4.140357148047424", ".-5.140357148047424"], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, {"nodeId": "140357072946112"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148047424"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148047424"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-3.140357148047424"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-4.140357148047424"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-5.140357148047424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140357072946112": {"type": "Function", "content": {"typeVars": [".-1.140357072946112", ".-2.140357072946112", ".-3.140357072946112", ".-4.140357072946112", ".-5.140357072946112"], "argTypes": [{"nodeId": ".-1.140357072946112"}, {"nodeId": ".-2.140357072946112"}, {"nodeId": ".-3.140357072946112"}, {"nodeId": ".-4.140357072946112"}, {"nodeId": ".-5.140357072946112"}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140357072946112": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072946112", "variance": "INVARIANT"}}, ".-2.140357072946112": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072946112", "variance": "INVARIANT"}}, ".-3.140357072946112": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072946112", "variance": "INVARIANT"}}, ".-4.140357072946112": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072946112", "variance": "INVARIANT"}}, ".-5.140357072946112": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357072946112", "variance": "INVARIANT"}}, ".-1.140357148047424": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148047424", "variance": "INVARIANT"}}, ".-2.140357148047424": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148047424", "variance": "INVARIANT"}}, ".-3.140357148047424": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148047424", "variance": "INVARIANT"}}, ".-4.140357148047424": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148047424", "variance": "INVARIANT"}}, ".-5.140357148047424": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148047424", "variance": "INVARIANT"}}, "140357148047872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, {"nodeId": "140357072946336"}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140357072946336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357148048320": {"type": "Function", "content": {"typeVars": [".0.140357148048320"], "argTypes": [{"nodeId": ".0.140357148048320"}], "returnType": {"nodeId": ".0.140357148048320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357148048320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}, "def": "140357148048320", "variance": "INVARIANT"}}, "140357148048768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098479936", "args": [{"nodeId": ".1.140357098479936"}]}], "returnType": {"nodeId": ".1.140357098479936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089325856": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148223616"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140357089325856"}], "bases": [{"nodeId": "140357110890560", "args": [{"nodeId": ".1.140357089325856"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140357089325856": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357089325856", "variance": "CONTRAVARIANT"}}, "140357148223616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089325856", "args": [{"nodeId": ".1.140357089325856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357110890560": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164598432"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140357110890560"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["write"]}}, ".1.140357110890560": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110890560", "variance": "CONTRAVARIANT"}}, "140357164598432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110890560", "args": [{"nodeId": ".1.140357110890560"}]}, {"nodeId": ".1.140357110890560"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098132704": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148224960"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140357098132704"}, {"nodeId": ".2.140357098132704"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__pow__"]}}, ".1.140357098132704": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098132704", "variance": "CONTRAVARIANT"}}, ".2.140357098132704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098132704", "variance": "COVARIANT"}}, "140357148224960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098132704", "args": [{"nodeId": ".1.140357098132704"}, {"nodeId": ".2.140357098132704"}]}, {"nodeId": ".1.140357098132704"}], "returnType": {"nodeId": ".2.140357098132704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098133056": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148225408"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140357098133056"}, {"nodeId": ".2.140357098133056"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__pow__"]}}, ".1.140357098133056": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098133056", "variance": "CONTRAVARIANT"}}, ".2.140357098133056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098133056", "variance": "COVARIANT"}}, "140357148225408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098133056", "args": [{"nodeId": ".1.140357098133056"}, {"nodeId": ".2.140357098133056"}]}, {"nodeId": ".1.140357098133056"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140357098133056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357098133408": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148225856"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140357098133408"}, {"nodeId": ".2.140357098133408"}, {"nodeId": ".3.140357098133408"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__pow__"]}}, ".1.140357098133408": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098133408", "variance": "CONTRAVARIANT"}}, ".2.140357098133408": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098133408", "variance": "CONTRAVARIANT"}}, ".3.140357098133408": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098133408", "variance": "COVARIANT"}}, "140357148225856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098133408", "args": [{"nodeId": ".1.140357098133408"}, {"nodeId": ".2.140357098133408"}, {"nodeId": ".3.140357098133408"}]}, {"nodeId": ".1.140357098133408"}, {"nodeId": ".2.140357098133408"}], "returnType": {"nodeId": ".3.140357098133408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357098480288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357073029488"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148421568"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148422016"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148422464"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140357098480288"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098480288"}]}], "isAbstract": false}}, ".1.140357098480288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098480288", "variance": "INVARIANT"}}, "140357073029488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357148420672"}, {"nodeId": "140357148421120"}]}}, "140357148420672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480288", "args": [{"nodeId": ".1.140357098480288"}]}, {"nodeId": "140357185921696", "args": [{"nodeId": ".1.140357098480288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357148421120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480288", "args": [{"nodeId": ".1.140357098480288"}]}, {"nodeId": "140357106004416", "args": [{"nodeId": ".1.140357098480288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357106004416": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161085728"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161086176"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140357106004416"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140357106004416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106004416", "variance": "COVARIANT"}}, "140357161085728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106004416", "args": [{"nodeId": ".1.140357106004416"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357161086176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106004416", "args": [{"nodeId": ".1.140357106004416"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357106004416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357148421568": {"type": "Function", "content": {"typeVars": [".0.140357148421568"], "argTypes": [{"nodeId": ".0.140357148421568"}], "returnType": {"nodeId": ".0.140357148421568"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357148421568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098480288", "args": [{"nodeId": ".1.140357098480288"}]}, "def": "140357148421568", "variance": "INVARIANT"}}, "140357148422016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480288", "args": [{"nodeId": ".1.140357098480288"}]}], "returnType": {"nodeId": ".1.140357098480288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357148422464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480288", "args": [{"nodeId": ".1.140357098480288"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098133760": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148423360"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140357098133760"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__round__"]}}, ".1.140357098133760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098133760", "variance": "COVARIANT"}}, "140357148423360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098133760", "args": [{"nodeId": ".1.140357098133760"}]}], "returnType": {"nodeId": ".1.140357098133760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098134112": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148423808"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140357098134112"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__round__"]}}, ".1.140357098134112": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098134112", "variance": "COVARIANT"}}, "140357148423808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098134112", "args": [{"nodeId": ".1.140357098134112"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357098134112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357089326208": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140357106001600", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140357106001952", "args": [{"nodeId": "140357185928032"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140357106001600": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161082144"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140357106001600"}, {"nodeId": ".2.140357106001600"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__add__"]}}, ".1.140357106001600": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106001600", "variance": "CONTRAVARIANT"}}, ".2.140357106001600": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106001600", "variance": "COVARIANT"}}, "140357161082144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106001600", "args": [{"nodeId": ".1.140357106001600"}, {"nodeId": ".2.140357106001600"}]}, {"nodeId": ".1.140357106001600"}], "returnType": {"nodeId": ".2.140357106001600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106001952": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161082592"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140357106001952"}, {"nodeId": ".2.140357106001952"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__radd__"]}}, ".1.140357106001952": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106001952", "variance": "CONTRAVARIANT"}}, ".2.140357106001952": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106001952", "variance": "COVARIANT"}}, "140357161082592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106001952", "args": [{"nodeId": ".1.140357106001952"}, {"nodeId": ".2.140357106001952"}]}, {"nodeId": ".1.140357106001952"}], "returnType": {"nodeId": ".2.140357106001952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098480640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357073032960"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148615488"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148615936"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140357098480640"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357098480640"}]}], "isAbstract": false}}, ".1.140357098480640": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098480640", "variance": "COVARIANT"}}, "140357073032960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357148610112"}, {"nodeId": "140357148610560"}, {"nodeId": "140357148611008"}, {"nodeId": "140357148611456"}, {"nodeId": "140357148611904"}, {"nodeId": "140357148612352"}]}}, "140357148610112": {"type": "Function", "content": {"typeVars": [".-1.140357148610112"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148610112"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098480640", "args": [{"nodeId": "140357073034192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140357148610112": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148610112", "variance": "INVARIANT"}}, "140357073034192": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140357148610112"}]}}, "140357148610560": {"type": "Function", "content": {"typeVars": [".-1.140357148610560", ".-2.140357148610560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148610560"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148610560"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098480640", "args": [{"nodeId": "140357073034416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140357148610560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148610560", "variance": "INVARIANT"}}, ".-2.140357148610560": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148610560", "variance": "INVARIANT"}}, "140357073034416": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140357148610560"}, {"nodeId": ".-2.140357148610560"}]}}, "140357148611008": {"type": "Function", "content": {"typeVars": [".-1.140357148611008", ".-2.140357148611008", ".-3.140357148611008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148611008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148611008"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-3.140357148611008"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098480640", "args": [{"nodeId": "140357073034640"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140357148611008": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611008", "variance": "INVARIANT"}}, ".-2.140357148611008": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611008", "variance": "INVARIANT"}}, ".-3.140357148611008": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611008", "variance": "INVARIANT"}}, "140357073034640": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140357148611008"}, {"nodeId": ".-2.140357148611008"}, {"nodeId": ".-3.140357148611008"}]}}, "140357148611456": {"type": "Function", "content": {"typeVars": [".-1.140357148611456", ".-2.140357148611456", ".-3.140357148611456", ".-4.140357148611456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148611456"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148611456"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-3.140357148611456"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-4.140357148611456"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098480640", "args": [{"nodeId": "140357073034864"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140357148611456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611456", "variance": "INVARIANT"}}, ".-2.140357148611456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611456", "variance": "INVARIANT"}}, ".-3.140357148611456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611456", "variance": "INVARIANT"}}, ".-4.140357148611456": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611456", "variance": "INVARIANT"}}, "140357073034864": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140357148611456"}, {"nodeId": ".-2.140357148611456"}, {"nodeId": ".-3.140357148611456"}, {"nodeId": ".-4.140357148611456"}]}}, "140357148611904": {"type": "Function", "content": {"typeVars": [".-1.140357148611904", ".-2.140357148611904", ".-3.140357148611904", ".-4.140357148611904", ".-5.140357148611904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-1.140357148611904"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-2.140357148611904"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-3.140357148611904"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-4.140357148611904"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": ".-5.140357148611904"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098480640", "args": [{"nodeId": "140357073035088"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140357148611904": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611904", "variance": "INVARIANT"}}, ".-2.140357148611904": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611904", "variance": "INVARIANT"}}, ".-3.140357148611904": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611904", "variance": "INVARIANT"}}, ".-4.140357148611904": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611904", "variance": "INVARIANT"}}, ".-5.140357148611904": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357148611904", "variance": "INVARIANT"}}, "140357073035088": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140357148611904"}, {"nodeId": ".-2.140357148611904"}, {"nodeId": ".-3.140357148611904"}, {"nodeId": ".-4.140357148611904"}, {"nodeId": ".-5.140357148611904"}]}}, "140357148612352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098480640", "args": [{"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140357148615488": {"type": "Function", "content": {"typeVars": [".0.140357148615488"], "argTypes": [{"nodeId": ".0.140357148615488"}], "returnType": {"nodeId": ".0.140357148615488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357148615488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098480640", "args": [{"nodeId": ".1.140357098480640"}]}, "def": "140357148615488", "variance": "INVARIANT"}}, "140357148615936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098480640", "args": [{"nodeId": ".1.140357098480640"}]}], "returnType": {"nodeId": ".1.140357098480640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098134464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357098135168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098134816"}], "isAbstract": false}}, "140357098135520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098134816"}], "isAbstract": false}}, "140357098135872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114444736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098134816"}], "isAbstract": false}}, "140357114444736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110206576"}}}, "140357110206576": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357098136224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098134816"}], "isAbstract": false}}, "140357098136576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098136928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098137280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098137632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098137984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148619072"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185916416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357148619072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098137984"}, {"nodeId": "140357185916416"}, {"nodeId": "140357073037552"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140357073037552": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357098138336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098138688": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098139040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148619520"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114443280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114445072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357148619520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098139040"}, {"nodeId": "140357185916416"}, {"nodeId": "140357073037664"}, {"nodeId": "140357073037776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140357073037664": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357073037776": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114443280": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114445072": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357098139392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098139744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098140096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098140448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098140800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098141152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098141504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114445408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114444624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114442272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114443504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114444400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114444176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357114445408": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357114444624": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357114442272": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114443504": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114444400": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357114444176": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357098141856": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098142208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098142560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098142912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098137280"}], "isAbstract": false}}, "140357098143264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098137280"}], "isAbstract": false}}, "140357098307648": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098137280"}], "isAbstract": false}}, "140357098308000": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098139040"}], "isAbstract": false}}, "140357098308352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098139392"}], "isAbstract": false}}, "140357098308704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098139392"}], "isAbstract": false}}, "140357098309056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098140096"}], "isAbstract": false}}, "140357098309408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098309760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098310112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098310464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098310112"}], "isAbstract": false}}, "140357098310816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098310112"}], "isAbstract": false}}, "140357098311168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098310112"}], "isAbstract": false}}, "140357098311520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098310112"}], "isAbstract": false}}, "140357098311872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098312224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098312576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098312928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098313280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098313632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098313984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098314336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}], "isAbstract": false}}, "140357098314688": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098140800"}], "isAbstract": false}}, "140357098315040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098140800"}], "isAbstract": false}}, "140357098315392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098141504"}], "isAbstract": false}}, "140357098315744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098315392"}], "isAbstract": false}}, "140357098316096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098142560"}], "isAbstract": false}}, "140357098316448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148619968"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357098316096"}], "isAbstract": false}}, "140357148619968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098316448"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140357098316800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148620416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357098316096"}], "isAbstract": false}}, "140357148620416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098316800"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140357098317152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357148620864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357098316096"}], "isAbstract": false}}, "140357148620864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098317152"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140357098317504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357098317856": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098318208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098318560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098318912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098319264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098319616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098319968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098320320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098320672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098321024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357098321376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098317504"}], "isAbstract": false}}, "140357097695264": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043908032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043907584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043906464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043907808"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": true}}, "140357043908032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695264"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098475712", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140357043907584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695264"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140357043906464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695264"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357043907808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695264"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097695616": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043905568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043906016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043905120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081116544"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043904672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043904448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043904224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043903552"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140357043905568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043906016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043905344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357097695616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043905120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357097695616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140357081116544": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357177680032"}, {"nodeId": "140357177680480"}, {"nodeId": "140357177680928"}, {"nodeId": "140357177681376"}, {"nodeId": "140357177681824"}, {"nodeId": "140357177682272"}, {"nodeId": "140357177682720"}]}}, "140357177680032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081119232"}, {"nodeId": "140357185928032"}, {"nodeId": "140357081119344"}, {"nodeId": "140357081119456"}, {"nodeId": "140357081119568"}], "returnType": {"nodeId": "140357097687168"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081119232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102174272"}}}, "140357081119344": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081119456": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081119568": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357177680480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081119120"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357110152736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081119120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101989088"}}}, "140357177680928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081119792"}, {"nodeId": "140357081120240"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357097686112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081119792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101990768"}}}, "140357081120240": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357177681376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081120352"}, {"nodeId": "140357081333824"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357097685760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081120352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101988976"}}}, "140357081333824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357177681824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081333936"}, {"nodeId": "140357081334272"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357097685408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081333936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357106732384"}}}, "140357081334272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140357177682272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081334384"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098476064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081334384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357101989088"}}}, "140357177682720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357081334496"}, {"nodeId": "140357081334608"}, {"nodeId": "140357081334720"}], "returnType": {"nodeId": "140357098475712", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140357081334496": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081334608": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081334720": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357043904672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043904448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357097695616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357043904224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043903552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695616"}, {"nodeId": "140357081334944"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140357081334944": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097695968": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043902432"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177685408"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177685856"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177686304"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357177686752"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140357097695264"}], "isAbstract": true}}, "140357043902432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695968"}], "returnType": {"nodeId": "140357097695616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357177685408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695968"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357097685408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140357177685856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695968"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140357177686304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695968"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140357177686752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097695968"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097688576": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043352544"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098308000"}], "isAbstract": false}}, "140357043352544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097688576"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097689280": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172988384"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043343584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043342912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043343360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097565072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357172990176"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140357097688928"}], "isAbstract": false}}, "140357110150272": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055606208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055595456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055595904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055596576"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085627776"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085629008"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085629792"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085630240"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085630688"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085631136"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085631920"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085632256"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131252256"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131252704"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131253152"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357110150272"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357110150272": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110150272", "variance": "INVARIANT"}}, "140357055606208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357055595456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357055595904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357055596576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": ".1.140357110150272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085627776": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131241504"}, {"nodeId": "140357114549568"}, {"nodeId": "140357131242400"}]}}, "140357131241504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085629904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085629904": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357110149920": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055686112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055684992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055684096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055683424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055682752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055682080"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085509024"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085510592"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085511264"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085511376"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127876704"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127877152"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127877600"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357055609792"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085627328"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127879392"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127879840"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127880288"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357110149920"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357110149920": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110149920", "variance": "INVARIANT"}}, "140357055686112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357055684992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357055684096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357085511040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085511040": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357055683424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357085511152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085511152": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357055682752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": ".1.140357110149920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357055682080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110149920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085509024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357127872224"}, {"nodeId": "140357114555840"}, {"nodeId": "140357127873120"}]}}, "140357127872224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140357114555840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140357127873120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": ".1.140357110149920"}], "returnType": {"nodeId": ".1.140357110149920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140357085510592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357127873568"}, {"nodeId": "140357127874016"}, {"nodeId": "140357127874464"}]}}, "140357127873568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140357110149920"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357127874016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "140357085626432"}], "returnType": {"nodeId": "140357085626656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357085626432": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357085626656": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": "A"}]}}, "140357127874464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "140357085626768"}, {"nodeId": "140357085626880"}, {"nodeId": "140357085626992"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357085627216"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140357085626768": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357085626880": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357085626992": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357085627216": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": "A"}]}}, "140357085511264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357127874912"}, {"nodeId": "140357127875360"}]}}, "140357127874912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357085627552"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085627552": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": "A"}]}}, "140357127875360": {"type": "Function", "content": {"typeVars": [".-1.140357127875360"], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": ".-1.140357127875360"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357085627664"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140357127875360": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357127875360", "variance": "INVARIANT"}}, "140357085627664": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": ".-1.140357127875360"}]}}, "140357085511376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357127875808"}, {"nodeId": "140357127876256"}]}}, "140357127875808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357085628000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085628000": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": "A"}]}}, "140357127876256": {"type": "Function", "content": {"typeVars": [".-1.140357127876256"], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": ".-1.140357127876256"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357085628112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140357127876256": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357127876256", "variance": "INVARIANT"}}, "140357085628112": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": ".-1.140357127876256"}]}}, "140357127876704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "140357085628224"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357085628224": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357127877152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "140357085628336"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357085628336": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357127877600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "140357085628448"}], "returnType": {"nodeId": "140357085628672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357085628448": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357085628672": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357055609792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357085628896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085628896": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357085627328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357127878496"}, {"nodeId": "140357127878944"}]}}, "140357127878496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140357110149920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357127878944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "140357085629232"}], "returnType": {"nodeId": "140357085629456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357085629232": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357085629456": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110149920"}, {"nodeId": "A"}]}}, "140357127879392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}], "returnType": {"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357127879840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110149920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357127880288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357114549568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630016": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "N"}]}}, "140357131242400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630128": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": "N"}]}}, "140357085629008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131242848"}, {"nodeId": "140357114551584"}, {"nodeId": "140357131243744"}]}}, "140357131242848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630352": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357114551584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630464": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "N"}]}}, "140357131243744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630576": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": "N"}]}}, "140357085629792": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131244192"}, {"nodeId": "140357114550912"}, {"nodeId": "140357131245088"}]}}, "140357131244192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630800": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357114550912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085630912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085630912": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "N"}]}}, "140357131245088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085631024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085631024": {"type": "Union", "content": {"items": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": "N"}]}}, "140357085630240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131245536"}, {"nodeId": "140357114550688"}, {"nodeId": "140357131246432"}]}}, "140357131245536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357085631360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140357085631360": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}}, "140357114550688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357085631584"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140357085631584": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "A"}]}}, "140357131246432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357085631808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140357085631808": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150272"}, {"nodeId": "A"}]}}, "140357085630688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131246880"}, {"nodeId": "140357114550240"}, {"nodeId": "140357131247776"}]}}, "140357131246880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357114550240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357131247776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": ".1.140357110150272"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085631136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131248224"}, {"nodeId": "140357114550016"}, {"nodeId": "140357131249120"}]}}, "140357131248224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357114550016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357131249120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110150272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140357085631920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357114549120"}, {"nodeId": "140357131249568"}, {"nodeId": "140357131250464"}]}}, "140357114549120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357085632480"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140357085632480": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357131448864"}]}}, "140357131448864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357131249568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357085632592"}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140357085632592": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357131449088"}]}}, "140357131449088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}], "returnType": {"nodeId": "140357098486976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357131250464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": "140357085632704"}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357110150272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140357085632704": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150272"}, {"nodeId": "140357131447968"}]}}, "140357131447968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": ".1.140357110150272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357085632256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357114550464"}, {"nodeId": "140357131250912"}, {"nodeId": "140357131251808"}]}}, "140357114550464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357085632928"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085633152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140357085632928": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357131448192"}]}}, "140357131448192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357085633152": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357131250912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357085633264"}, {"nodeId": "140357098486976"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085633488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140357085633264": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357131447520"}]}}, "140357131447520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": "140357098128480"}]}], "returnType": {"nodeId": "140357098486976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357085633488": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357131251808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": "140357085633600"}, {"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357085633824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140357085633600": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150272"}, {"nodeId": "140357131447744"}]}}, "140357131447744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149920", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": ".1.140357110150272"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357085633824": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357110150272"}, {"nodeId": "140357185928032"}]}}, "140357131252256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}], "returnType": {"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357131252704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110150272", "args": [{"nodeId": ".1.140357110150272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357131253152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357172988384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081108368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081108368": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357043343584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081108592"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081108592": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357043342912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081108704"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081108704": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357043343360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081108816"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081108816": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357097565072": {"type": "Union", "content": {"items": [{"nodeId": "140357097690688"}, {"nodeId": "N"}]}}, "140357172990176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357081108928"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140357081108928": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357097688928": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097566752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097566528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114351168"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114352288"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114353408"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114353184"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}], "isAbstract": false}}, "140357097566752": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357097566528": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357114351168": {"type": "Function", "content": {"typeVars": [".-1.140357114351168"], "argTypes": [{"nodeId": ".-1.140357114351168"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".-1.140357114351168"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140357114351168": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140357097566864"}, "def": "140357114351168", "variance": "INVARIANT"}}, "140357097566864": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357114352288": {"type": "Function", "content": {"typeVars": [".-1.140357114352288"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".-1.140357114352288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140357114352288": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140357097566864"}, "def": "140357114352288", "variance": "INVARIANT"}}, "140357114353408": {"type": "Function", "content": {"typeVars": [".-1.140357114353408"], "argTypes": [{"nodeId": ".-1.140357114353408"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140357114353408": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140357097566864"}, "def": "140357114353408", "variance": "INVARIANT"}}, "140357114353184": {"type": "Function", "content": {"typeVars": [".-1.140357114353184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140357114353184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140357114353184": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140357097566864"}, "def": "140357114353184", "variance": "INVARIANT"}}, "140357097689984": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043316416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043315968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043315744"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081107696"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357097689632"}]}], "isAbstract": false}}, "140357043316416": {"type": "Function", "content": {"typeVars": [".0.140357043316416"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357081109264"}]}], "returnType": {"nodeId": ".0.140357043316416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140357081109264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089534000"}}}, ".0.140357043316416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097689984"}, "def": "140357043316416", "variance": "INVARIANT"}}, "140357043315968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689984"}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357043315744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689984"}], "returnType": {"nodeId": "140357098478528", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081107696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357172993760"}, {"nodeId": "140357172994208"}]}}, "140357172993760": {"type": "Function", "content": {"typeVars": [".0.140357172993760"], "argTypes": [{"nodeId": ".0.140357172993760"}], "returnType": {"nodeId": ".0.140357172993760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357172993760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097689984"}, "def": "140357172993760", "variance": "INVARIANT"}}, "140357172994208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097689984"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357097689632"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140357089497632": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140357089497984"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043310144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097694208"}], "isAbstract": true}}, "140357043310144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089497632"}, {"nodeId": "140357089497984"}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": "140357097690688"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140357089498336": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357043308352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173119456"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140357089497632"}], "isAbstract": false}}, "140357043308352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357089497984"}], "returnType": {"nodeId": "140357185920992", "args": [{"nodeId": "140357097691040"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140357173119456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089498336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140357110144992": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357173127072"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["find_spec"]}}, "140357173127072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110144992"}, {"nodeId": "140357098128128"}, {"nodeId": "140357085113008"}, {"nodeId": "140357085113120"}], "returnType": {"nodeId": "140357085113232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140357085113008": {"type": "Union", "content": {"items": [{"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357085113120": {"type": "Union", "content": {"items": [{"nodeId": "140357110138656"}, {"nodeId": "N"}]}}, "140357085113232": {"type": "Union", "content": {"items": [{"nodeId": "140357097691392"}, {"nodeId": "N"}]}}, "140357089327616": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064956096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064957664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064957888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064958112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064958336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064958560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064958784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064959008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064959232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064959456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064959680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064959904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064960128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064960352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064960576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064961248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "A"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357064956096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085113456"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085113456": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064957664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085113568"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085113568": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064957888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085113680"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085113680": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064958112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085113792"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085113792": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064958336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085113904"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085113904": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064958560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114016"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114016": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064958784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114128"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114128": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064959008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114240"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114240": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064959232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114352"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114352": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064959456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114464"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114464": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064959680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114576"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114576": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064959904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114688"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114688": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064960128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114800"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114800": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064960352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085114912"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085114912": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064960576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115024"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115024": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064961248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115136"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115136": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357110892320": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164601568"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140357110892320"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357110892320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110892320", "variance": "COVARIANT"}}, "140357164601568": {"type": "Function", "content": {"typeVars": [".-1.140357164601568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": ".1.140357110892320"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140357164601568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140357164601568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357164601568", "variance": "INVARIANT"}}, "140357089327968": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064954752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064963488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064963712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064963936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064964160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064964384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064964608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064964832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064965056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064965280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064965504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928384"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}], "isAbstract": false}}, "140357064954752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115248"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115248": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064963488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115360"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115360": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064963712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115472"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115472": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064963936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115584"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115584": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064964160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115696"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115696": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064964384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115808"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115808": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064964608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085115920"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085115920": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064964832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116032": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064965056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116144"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116144": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064965280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116256"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116256": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357064965504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116368"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116368": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357089328320": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059823200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059823424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059823648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059823872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059824096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059824320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059824544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059824768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059824992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357111031824"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}], "isAbstract": false}}, "140357059823200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116480"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116480": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059823424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116592"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116592": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059823648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116704"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116704": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059823872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116816"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116816": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059824096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085116928"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085116928": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059824320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117040"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117040": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059824544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117152"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117152": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059824768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117264"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117264": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059824992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117376"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117376": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357111031824": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140357185928032"}]}}, "140357110145344": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357111031936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357165361952"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357111031936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089656416"}}}, "140357089656416": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357165361952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110145344"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357089328672": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059827456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059827680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059827904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059828128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357059827456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117600"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117600": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059827680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117712"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117712": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059827904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117824"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117824": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357059828128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085117936"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085117936": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357089493056": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059828576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059829920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059830144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "A"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}], "isAbstract": false}}, "140357059828576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085118160"}], "returnType": {"nodeId": "140357085118272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085118160": {"type": "Tuple", "content": {"items": [{"nodeId": "140357111027456"}, {"nodeId": "140357111027344"}, {"nodeId": "140357085118048"}]}}, "140357111027456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110210048"}}}, "140357110210048": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140357111027344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110209600"}}}, "140357110209600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140357085118048": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085118272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110210048"}}}, "140357059829920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085249712"}], "returnType": {"nodeId": "140357085249824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085249712": {"type": "Tuple", "content": {"items": [{"nodeId": "140357111027456"}, {"nodeId": "140357111027344"}, {"nodeId": "140357085249600"}]}}, "140357085249600": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085249824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110209600"}}}, "140357059830144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085250048"}], "returnType": {"nodeId": "140357085250160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085250048": {"type": "Tuple", "content": {"items": [{"nodeId": "140357111027456"}, {"nodeId": "140357111027344"}, {"nodeId": "140357085249936"}]}}, "140357085249936": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085250160": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089493408": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059829472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059831936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059832160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059832384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059832608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "A"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}], "isAbstract": false}}, "140357059829472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085250272"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085250272": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357059831936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085250384"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085250384": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357059832160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085250496"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085250496": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357059832384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085250608"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085250608": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357059832608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085250720"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085250720": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357110145696": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089712096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357111036080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357111036304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185916416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140357089712096": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357111036080": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357111036304": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089493760": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059836416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357059836864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357089710192"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357097569216"}]}], "isAbstract": false}}, "140357059836416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085253184"}], "returnType": {"nodeId": "140357085253296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085253184": {"type": "Tuple", "content": {"items": [{"nodeId": "140357111036416"}, {"nodeId": "140357111027232"}]}}, "140357111036416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110211840"}}}, "140357110211840": {"type": "Union", "content": {"items": [{"nodeId": "140357114360352"}, {"nodeId": "N"}]}}, "140357114360352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357185923808": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144439584"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068715200"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089833952"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144441376"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068714304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068716096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068716320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068716544"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}], "bases": [{"nodeId": "140357185923456", "args": [{"nodeId": ".1.140357185923808"}]}], "isAbstract": true}}, ".1.140357185923808": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185923808", "variance": "COVARIANT"}}, ".2.140357185923808": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185923808", "variance": "CONTRAVARIANT"}}, "140357144439584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357185923808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068715200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}, {"nodeId": ".2.140357185923808"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357185923808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357089833952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144440480"}, {"nodeId": "140357144440928"}]}}, "140357144440480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}, {"nodeId": "0"}, {"nodeId": "140357089835744"}, {"nodeId": "140357089835856"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357185923808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357089835744": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}]}}, "140357089835856": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357144440928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}, {"nodeId": "140357098134816"}, {"nodeId": "N"}, {"nodeId": "140357089835968"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357185923808"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357089835968": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357144441376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068714304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068716096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}], "returnType": {"nodeId": "140357110137248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068716320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}], "returnType": {"nodeId": "140357110142880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068716544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357185923808"}, {"nodeId": ".2.140357185923808"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185923456": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068712512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144439136"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140357185923456"}], "bases": [{"nodeId": "140357185923104", "args": [{"nodeId": ".1.140357185923456"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140357185923456": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185923456", "variance": "COVARIANT"}}, "140357068712512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923456", "args": [{"nodeId": ".1.140357185923456"}]}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357185923456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144439136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923456", "args": [{"nodeId": ".1.140357185923456"}]}], "returnType": {"nodeId": "140357185923456", "args": [{"nodeId": ".1.140357185923456"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185923104": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068706688"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185923104"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__aiter__"]}}, ".1.140357185923104": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185923104", "variance": "COVARIANT"}}, "140357068706688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923104", "args": [{"nodeId": ".1.140357185923104"}]}], "returnType": {"nodeId": "140357185923456", "args": [{"nodeId": ".1.140357185923104"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357111027232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110211840"}}}, "140357085253296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110211840"}}}, "140357059836864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085253408"}], "returnType": {"nodeId": "140357085253520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085253408": {"type": "Tuple", "content": {"items": [{"nodeId": "140357111036416"}, {"nodeId": "140357111027232"}]}}, "140357085253520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110211840"}}}, "140357089710192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110211840"}}}, "140357097569216": {"type": "Union", "content": {"items": [{"nodeId": "140357072953728"}, {"nodeId": "N"}]}}, "140357072953728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185923808", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357110136896": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064287936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110137248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106485840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064288384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064289056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164956832"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164957280"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090075456"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064287936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}], "returnType": {"nodeId": "140357090078144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090078144": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357098487328"}]}, {"nodeId": "N"}]}}, "140357106485840": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357064288384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064289056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357164956832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}, {"nodeId": "140357110137248"}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "140357090078592"}, {"nodeId": "140357090078704"}, {"nodeId": "140357090078816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140357090078592": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357090078704": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}, {"nodeId": "N"}]}}, "140357090078816": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357098487328"}]}, {"nodeId": "N"}]}}, "140357164957280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357090075456": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357165449504"}, {"nodeId": "140357165449952"}]}}, "140357165449504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}, {"nodeId": "N"}, {"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357110136896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357165449952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110136896"}, {"nodeId": "140357185916416"}, {"nodeId": "140357090079376"}], "returnType": {"nodeId": "140357110140416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357090079376": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357110140416": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064624832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064625280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064625504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064625728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064625952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064626176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160702176"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160702624"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064624832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}], "returnType": {"nodeId": "140357085104160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085104160": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357098487328"}]}, {"nodeId": "N"}]}}, "140357064625280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}], "returnType": {"nodeId": "140357085104384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085104384": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357064625504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}], "returnType": {"nodeId": "140357110140064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357110140064": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160699040"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357160699040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140064"}, {"nodeId": "140357185916416"}, {"nodeId": "140357085104048"}], "returnType": {"nodeId": "140357110136896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140357085104048": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357064625728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064625952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064626176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160702176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}, {"nodeId": "140357106682112"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357106682112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357160702624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140416"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357110137952": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160521056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160521504"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160521952"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160522400"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357160521056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137952"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140357160521504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137952"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357160521952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137952"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357160522400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110137952"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110139008": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064425056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160525536"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160525984"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160526432"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090077136"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}], "bases": [{"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}], "isAbstract": false}}, ".1.140357110139008": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139008", "variance": "COVARIANT"}}, ".2.140357110139008": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139008", "variance": "CONTRAVARIANT"}}, ".3.140357110139008": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139008", "variance": "COVARIANT"}}, "140357064425056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}], "returnType": {"nodeId": "140357090081280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090081280": {"type": "Union", "content": {"items": [{"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357160525536": {"type": "Function", "content": {"typeVars": [".0.140357160525536"], "argTypes": [{"nodeId": ".0.140357160525536"}], "returnType": {"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357160525536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}, "def": "140357160525536", "variance": "INVARIANT"}}, "140357160525984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}], "returnType": {"nodeId": ".1.140357110139008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160526432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}, {"nodeId": ".2.140357110139008"}], "returnType": {"nodeId": ".1.140357110139008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357090077136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357160526880"}, {"nodeId": "140357160527328"}]}}, "140357160526880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}, {"nodeId": "0"}, {"nodeId": "140357090081616"}, {"nodeId": "140357090081728"}], "returnType": {"nodeId": ".1.140357110139008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357090081616": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}]}}, "140357090081728": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357160527328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139008", "args": [{"nodeId": ".1.140357110139008"}, {"nodeId": ".2.140357110139008"}, {"nodeId": ".3.140357110139008"}]}, {"nodeId": "140357098134816"}, {"nodeId": "N"}, {"nodeId": "140357090081840"}], "returnType": {"nodeId": ".1.140357110139008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357090081840": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357110139360": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064514400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160528672"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160529120"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160529568"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090081392"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160530912"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160531360"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}], "bases": [{"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}], "isAbstract": false}}, ".1.140357110139360": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139360", "variance": "COVARIANT"}}, ".2.140357110139360": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139360", "variance": "CONTRAVARIANT"}}, "140357064514400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}], "returnType": {"nodeId": "140357090082064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357090082064": {"type": "Union", "content": {"items": [{"nodeId": "140357185922400", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357160528672": {"type": "Function", "content": {"typeVars": [".0.140357160528672"], "argTypes": [{"nodeId": ".0.140357160528672"}], "returnType": {"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357160528672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}, "def": "140357160528672", "variance": "INVARIANT"}}, "140357160529120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140357110139360"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185922752": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068704224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068704448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068704672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068704896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068705120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089833840"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068705344"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}], "bases": [{"nodeId": "140357185922400", "args": [{"nodeId": ".3.140357185922752"}]}], "isAbstract": true}}, ".1.140357185922752": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922752", "variance": "COVARIANT"}}, ".2.140357185922752": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922752", "variance": "CONTRAVARIANT"}}, ".3.140357185922752": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185922752", "variance": "COVARIANT"}}, "140357068704224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}], "returnType": {"nodeId": "140357089835072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089835072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357068704448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}], "returnType": {"nodeId": "140357110137248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068704672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}], "returnType": {"nodeId": "140357110142880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068704896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068705120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}, {"nodeId": ".2.140357185922752"}], "returnType": {"nodeId": ".1.140357185922752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357089833840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144436896"}, {"nodeId": "140357144437344"}]}}, "140357144436896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}, {"nodeId": "0"}, {"nodeId": "140357089835296"}, {"nodeId": "140357089835408"}], "returnType": {"nodeId": ".1.140357185922752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357089835296": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}]}}, "140357089835408": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357144437344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}, {"nodeId": "140357098134816"}, {"nodeId": "N"}, {"nodeId": "140357089835520"}], "returnType": {"nodeId": ".1.140357185922752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357089835520": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357068705344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357185922752"}, {"nodeId": ".2.140357185922752"}, {"nodeId": ".3.140357185922752"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160529568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}, {"nodeId": ".2.140357110139360"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140357110139360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357090081392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357106683008"}, {"nodeId": "140357160530016"}]}}, "140357106683008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}, {"nodeId": "0"}, {"nodeId": "140357085102256"}, {"nodeId": "140357085102368"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140357110139360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357085102256": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}]}}, "140357085102368": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357160530016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}, {"nodeId": "140357098134816"}, {"nodeId": "N"}, {"nodeId": "140357085102592"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140357110139360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357085102592": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357160530912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139360", "args": [{"nodeId": ".1.140357110139360"}, {"nodeId": ".2.140357110139360"}]}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160531360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140357110139712": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064520672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160532704"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160533152"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160533600"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085102480"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}], "bases": [{"nodeId": "140357185922752", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}], "isAbstract": false}}, ".1.140357110139712": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139712", "variance": "COVARIANT"}}, ".2.140357110139712": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139712", "variance": "CONTRAVARIANT"}}, ".3.140357110139712": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110139712", "variance": "COVARIANT"}}, "140357064520672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139712", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}], "returnType": {"nodeId": "140357085103376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085103376": {"type": "Union", "content": {"items": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357085103264"}]}, {"nodeId": "N"}]}}, "140357085103264": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357160532704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139712", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160533152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139712", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140357110139712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160533600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139712", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}, {"nodeId": ".2.140357110139712"}], "returnType": {"nodeId": ".1.140357110139712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357085102480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357160698144"}, {"nodeId": "140357160698592"}]}}, "140357160698144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139712", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}, {"nodeId": "0"}, {"nodeId": "140357085103712"}, {"nodeId": "140357085103824"}], "returnType": {"nodeId": ".1.140357110139712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357085103712": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "140357185916416"}]}}, "140357085103824": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357160698592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110139712", "args": [{"nodeId": ".1.140357110139712"}, {"nodeId": ".2.140357110139712"}, {"nodeId": ".3.140357110139712"}]}, {"nodeId": "140357098134816"}, {"nodeId": "N"}, {"nodeId": "140357085103936"}], "returnType": {"nodeId": ".1.140357110139712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140357085103936": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357110140768": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064627744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064627968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064628192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160704416"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064627744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140768"}], "returnType": {"nodeId": "140357085105056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085105056": {"type": "Union", "content": {"items": [{"nodeId": "140357185916416"}, {"nodeId": "140357110138656"}]}}, "140357064627968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140768"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064628192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140768"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160704416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110140768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357110141120": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064629984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064630432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064630656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160706208"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160706656"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064629984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064630432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064630656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141120"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160706208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141120"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357160706656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141120"}, {"nodeId": "A"}, {"nodeId": "140357085105952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357085105952": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357110141472": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064632448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064632672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064632896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064633120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160708896"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160709344"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160709792"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064632448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064632672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064632896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064633120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160708896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357160709344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357160709792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141472"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110141824": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064635808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064636032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064636256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160711584"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160712032"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064635808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141824"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064636032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141824"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064636256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141824"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160711584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357160712032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110141824"}, {"nodeId": "A"}, {"nodeId": "140357085106960"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357085106960": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357110142176": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064637152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064720448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064720672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160713824"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160878368"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064637152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142176"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064720448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142176"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064720672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142176"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160713824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142176"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140357160878368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110142176"}, {"nodeId": "A"}, {"nodeId": "140357085107632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357085107632": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357110143232": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064727840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064727616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064728064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160885536"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160885984"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160886432"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064727840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143232"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064727616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143232"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064728064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143232"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160885536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143232"}, {"nodeId": "A"}, {"nodeId": "140357085108752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357085108752": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357160885984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143232"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357160886432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143232"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357110143584": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064729856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064730080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357064730304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160888224"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160888672"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357160889120"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357064729856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143584"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064730080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143584"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357064730304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143584"}], "returnType": {"nodeId": "140357185927328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357160888224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143584"}, {"nodeId": "A"}, {"nodeId": "140357085109424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140357085109424": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357160888672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143584"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357160889120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110143584"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357110144288": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161076320"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357161076320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110144288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105998784": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161079008"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357161079008": {"type": "Function", "content": {"typeVars": [".-1.140357161079008"], "argTypes": [{"nodeId": "140357105998784"}, {"nodeId": ".-1.140357161079008"}], "returnType": {"nodeId": ".-1.140357161079008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140357161079008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357161079008", "variance": "INVARIANT"}}, "140357105999136": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161079456"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140357105999136"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__next__"]}}, ".1.140357105999136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105999136", "variance": "COVARIANT"}}, "140357161079456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105999136", "args": [{"nodeId": ".1.140357105999136"}]}], "returnType": {"nodeId": ".1.140357105999136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105999488": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161079904"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140357105999488"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__anext__"]}}, ".1.140357105999488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105999488", "variance": "COVARIANT"}}, "140357161079904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105999488", "args": [{"nodeId": ".1.140357105999488"}]}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".1.140357105999488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357106000544": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161081248"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140357106000544"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__le__"]}}, ".1.140357106000544": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106000544", "variance": "CONTRAVARIANT"}}, "140357161081248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106000544", "args": [{"nodeId": ".1.140357106000544"}]}, {"nodeId": ".1.140357106000544"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106000896": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161081696"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140357106000896"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__ge__"]}}, ".1.140357106000896": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106000896", "variance": "CONTRAVARIANT"}}, "140357161081696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106000896", "args": [{"nodeId": ".1.140357106000896"}]}, {"nodeId": ".1.140357106000896"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106001248": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140357105999840", "args": [{"nodeId": "A"}]}, {"nodeId": "140357106000192", "args": [{"nodeId": "A"}]}, {"nodeId": "140357106000544", "args": [{"nodeId": "A"}]}, {"nodeId": "140357106000896", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140357106002304": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161083040"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140357106002304"}, {"nodeId": ".2.140357106002304"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__sub__"]}}, ".1.140357106002304": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106002304", "variance": "CONTRAVARIANT"}}, ".2.140357106002304": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106002304", "variance": "COVARIANT"}}, "140357161083040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106002304", "args": [{"nodeId": ".1.140357106002304"}, {"nodeId": ".2.140357106002304"}]}, {"nodeId": ".1.140357106002304"}], "returnType": {"nodeId": ".2.140357106002304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106002656": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161083488"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140357106002656"}, {"nodeId": ".2.140357106002656"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__rsub__"]}}, ".1.140357106002656": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106002656", "variance": "CONTRAVARIANT"}}, ".2.140357106002656": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106002656", "variance": "COVARIANT"}}, "140357161083488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106002656", "args": [{"nodeId": ".1.140357106002656"}, {"nodeId": ".2.140357106002656"}]}, {"nodeId": ".1.140357106002656"}], "returnType": {"nodeId": ".2.140357106002656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106003008": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161083936"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140357106003008"}, {"nodeId": ".2.140357106003008"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__divmod__"]}}, ".1.140357106003008": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106003008", "variance": "CONTRAVARIANT"}}, ".2.140357106003008": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106003008", "variance": "COVARIANT"}}, "140357161083936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106003008", "args": [{"nodeId": ".1.140357106003008"}, {"nodeId": ".2.140357106003008"}]}, {"nodeId": ".1.140357106003008"}], "returnType": {"nodeId": ".2.140357106003008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106003360": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161084384"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140357106003360"}, {"nodeId": ".2.140357106003360"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140357106003360": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106003360", "variance": "CONTRAVARIANT"}}, ".2.140357106003360": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106003360", "variance": "COVARIANT"}}, "140357161084384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106003360", "args": [{"nodeId": ".1.140357106003360"}, {"nodeId": ".2.140357106003360"}]}, {"nodeId": ".1.140357106003360"}], "returnType": {"nodeId": ".2.140357106003360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357106003712": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161084832"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140357106003712"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__iter__"]}}, ".1.140357106003712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106003712", "variance": "COVARIANT"}}, "140357161084832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106003712", "args": [{"nodeId": ".1.140357106003712"}]}], "returnType": {"nodeId": ".1.140357106003712"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357106004064": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161085280"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140357106004064"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__aiter__"]}}, ".1.140357106004064": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106004064", "variance": "COVARIANT"}}, "140357161085280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106004064", "args": [{"nodeId": ".1.140357106004064"}]}], "returnType": {"nodeId": ".1.140357106004064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357106005824": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161088416"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161088864"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140357106005824"}, {"nodeId": ".2.140357106005824"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140357106005824": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106005824", "variance": "CONTRAVARIANT"}}, ".2.140357106005824": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106005824", "variance": "COVARIANT"}}, "140357161088416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106005824", "args": [{"nodeId": ".1.140357106005824"}, {"nodeId": ".2.140357106005824"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357161088864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106005824", "args": [{"nodeId": ".1.140357106005824"}, {"nodeId": ".2.140357106005824"}]}, {"nodeId": ".1.140357106005824"}], "returnType": {"nodeId": ".2.140357106005824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106006176": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161089312"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161089760"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140357106006176"}, {"nodeId": ".2.140357106006176"}], "bases": [{"nodeId": "140357106005824", "args": [{"nodeId": ".1.140357106006176"}, {"nodeId": ".2.140357106006176"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140357106006176": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106006176", "variance": "CONTRAVARIANT"}}, ".2.140357106006176": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106006176", "variance": "INVARIANT"}}, "140357161089312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106006176", "args": [{"nodeId": ".1.140357106006176"}, {"nodeId": ".2.140357106006176"}]}, {"nodeId": ".1.140357106006176"}, {"nodeId": ".2.140357106006176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357161089760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106006176", "args": [{"nodeId": ".1.140357106006176"}, {"nodeId": ".2.140357106006176"}]}, {"nodeId": ".1.140357106006176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357106006528": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161090208"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["fileno"]}}, "140357161090208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106006528"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357106006880": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161090656"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140357106006880"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["read"]}}, ".1.140357106006880": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106006880", "variance": "COVARIANT"}}, "140357161090656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106006880", "args": [{"nodeId": ".1.140357106006880"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357106006880"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357106007232": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164597536"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140357106007232"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["readline"]}}, ".1.140357106007232": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106007232", "variance": "COVARIANT"}}, "140357164597536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106007232", "args": [{"nodeId": ".1.140357106007232"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357106007232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357106007584": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164597984"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140357106007584"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["readline"]}}, ".1.140357106007584": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357106007584", "variance": "COVARIANT"}}, "140357164597984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357106007584", "args": [{"nodeId": ".1.140357106007584"}]}], "returnType": {"nodeId": ".1.140357106007584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357110890912": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164598880"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357098486976"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140357164598880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110890912"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357185924864", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110891264": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164599328"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357098486976"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140357164599328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110891264"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110891616": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164599776"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357076815536"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357110890912"}, {"nodeId": "140357110891264"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140357164599776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110891616"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357076815536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357164600224"}, {"nodeId": "140357164600672"}]}}, "140357164600224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110891616"}, {"nodeId": "140357098129536"}], "returnType": {"nodeId": "140357185924864", "args": [{"nodeId": "140357185928032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164600672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110891616"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110891968": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098473248"}, {"nodeId": "140357098486976"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140357110892672": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357102136032", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__dataclass_fields__"]}}, "140357102136032": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097556560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097554880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097554768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110137600", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097553984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131449760"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131450656"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131451104"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357102136032"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357102136032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102136032", "variance": "INVARIANT"}}, "140357097556560": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357102136032"}, {"nodeId": "0"}]}}, "140357097554880": {"type": "Union", "content": {"items": [{"nodeId": "140357102135680", "args": [{"nodeId": ".1.140357102136032"}]}, {"nodeId": "0"}]}}, "140357102135680": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131449312"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140357102135680"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, ".1.140357102135680": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102135680", "variance": "COVARIANT"}}, "140357131449312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102135680", "args": [{"nodeId": ".1.140357102135680"}]}], "returnType": {"nodeId": ".1.140357102135680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097554768": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357097553984": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "0"}]}}, "140357131449760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102136032", "args": [{"nodeId": ".1.140357102136032"}]}, {"nodeId": ".1.140357102136032"}, {"nodeId": "140357080955840"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357081537488"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185926272", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140357080955840": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140357102136032"}, "argKinds": [], "argNames": []}}, "140357081537488": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357131450656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102136032", "args": [{"nodeId": ".1.140357102136032"}]}, {"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140357131451104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357098485920": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073254912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068177472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068177696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068177920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068178144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068178368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161218144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068178592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068178816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357073254912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068177472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357089828016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089828016": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357068177696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068177920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068178144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068178368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357089828240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089828240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357161218144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}, {"nodeId": "140357098128128"}, {"nodeId": "140357089828464"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357089828688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140357089828464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140357098128128"}]}}, "140357089828688": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357068178592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357185918528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185918528": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068401216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164613216"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357068401216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918528"}], "returnType": {"nodeId": "140357185919232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185919232": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068404128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068405248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068405472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068405696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144268576"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068406368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068405920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144270816"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144271264"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357068404128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068405248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}], "returnType": {"nodeId": "140357089832272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089832272": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357068405472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068405696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144268576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}, {"nodeId": "140357098128128"}, {"nodeId": "140357089832496"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140357089832496": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357068406368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}], "returnType": {"nodeId": "140357185918528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068405920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}], "returnType": {"nodeId": "140357185918880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185918880": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068402336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144265440"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357068402336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918880"}], "returnType": {"nodeId": "140357185919232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144265440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918880"}, {"nodeId": "140357185919232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140357144270816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185918176": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164608288"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164608736"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164609184"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357164608288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918176"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164608736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918176"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164609184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918176"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144271264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919232"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164613216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185918528"}, {"nodeId": "140357185919232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140357068178816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485920"}], "returnType": {"nodeId": "140357185918880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185917824": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068394944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068395392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068395616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068395840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068396064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164606496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164606944"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164607392"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357068394944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068395392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}], "returnType": {"nodeId": "140357089831040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089831040": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357068395616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068395840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068396064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357164606496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}, {"nodeId": "140357089831488"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140357089831488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357164606944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164607392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185917824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185919584": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144271712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144272160"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144272608"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144273056"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185927328"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357144271712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919584"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140357144272160": {"type": "Function", "content": {"typeVars": [".-1.140357144272160"], "argTypes": [{"nodeId": "140357185919584"}, {"nodeId": ".-1.140357144272160"}], "returnType": {"nodeId": ".-1.140357144272160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140357144272160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357144272160", "variance": "INVARIANT"}}, "140357144272608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919584"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357144273056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919584"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185918176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357185919936": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144274848"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357144274848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185919936"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098323488": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098321728"}], "isAbstract": false}}, "140357098321728": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098478880", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144064096"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144064544"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144064992"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144065440"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144065888"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140357185927328"}], "isAbstract": false}}, "140357144064096": {"type": "Function", "content": {"typeVars": [".-1.140357144064096"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140357144064096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140357144064096": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357144064096", "variance": "INVARIANT"}}, "140357144064544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098321728"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140357144064992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098321728"}, {"nodeId": "140357185927328"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140357144065440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098321728"}, {"nodeId": "140357076825280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140357076825280": {"type": "Union", "content": {"items": [{"nodeId": "140357110890560", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357144065888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098321728"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140357098472896": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068547776"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__index__"]}}, "140357068547776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098472896"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357185920288": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068549792"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357185920288"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__abs__"]}}, ".1.140357185920288": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185920288", "variance": "COVARIANT"}}, "140357068549792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185920288", "args": [{"nodeId": ".1.140357185920288"}]}], "returnType": {"nodeId": ".1.140357185920288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357185920640": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089643424"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140357185920640"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__round__"]}}, ".1.140357185920640": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357185920640", "variance": "COVARIANT"}}, "140357089643424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357144278432"}, {"nodeId": "140357144278880"}]}}, "140357144278432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185920640", "args": [{"nodeId": ".1.140357185920640"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144278880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185920640", "args": [{"nodeId": ".1.140357185920640"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".1.140357185920640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357098473600": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357068622080"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__hash__"]}}, "140357068622080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098473600"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357098473952": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140357098473952"}, {"nodeId": ".2.140357098473952"}, {"nodeId": ".3.140357098473952"}, {"nodeId": ".4.140357098473952"}], "bases": [{"nodeId": "140357185922400", "args": [{"nodeId": ".3.140357098473952"}]}, {"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357098473952"}, {"nodeId": ".2.140357098473952"}, {"nodeId": ".3.140357098473952"}]}], "isAbstract": true}}, ".1.140357098473952": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098473952", "variance": "COVARIANT"}}, ".2.140357098473952": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098473952", "variance": "CONTRAVARIANT"}}, ".3.140357098473952": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098473952", "variance": "COVARIANT"}}, ".4.140357098473952": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357098473952", "variance": "INVARIANT"}}, "140357098476768": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357090074896"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357063959808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106682560"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139857696"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140357090074896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357101919744"}, {"nodeId": "140357101923104"}]}}, "140357101919744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476768"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357090076464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357090076464": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}}, "140357101923104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476768"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140357063959808": {"type": "Function", "content": {"typeVars": [".0.140357063959808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140357063959808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140357063959808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098476768"}, "def": "140357063959808", "variance": "INVARIANT"}}, "140357106682560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098476768"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357139857696": {"type": "Function", "content": {"typeVars": [".0.140357139857696"], "argTypes": [{"nodeId": ".0.140357139857696"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357139857696"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140357139857696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098476768"}, "def": "140357139857696", "variance": "INVARIANT"}}, "140357098477120": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098478880", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098478880", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139858144"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139858592"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139859040"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139859488"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139859936"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139860384"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139860832"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139861280"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139861728"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139862176"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}], "isAbstract": true}}, "140357139858144": {"type": "Function", "content": {"typeVars": [".0.140357139858144"], "argTypes": [{"nodeId": ".0.140357139858144"}], "returnType": {"nodeId": ".0.140357139858144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357139858144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098477120"}, "def": "140357139858144", "variance": "INVARIANT"}}, "140357139858592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477120"}, {"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140357139859040": {"type": "Function", "content": {"typeVars": [".-1.140357139859040"], "argTypes": [{"nodeId": "140357098477120"}, {"nodeId": "0"}, {"nodeId": ".-1.140357139859040"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140357139859040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139859040", "variance": "INVARIANT"}}, "140357139859488": {"type": "Function", "content": {"typeVars": [".-1.140357139859488"], "argTypes": [{"nodeId": ".-1.140357139859488"}, {"nodeId": ".-1.140357139859488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140357139859488": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357139859488", "variance": "INVARIANT"}}, "140357139859936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477120"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357139860384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477120"}], "returnType": {"nodeId": "140357098478176", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357139860832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477120"}], "returnType": {"nodeId": "140357098477472", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357139861280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098477120"}], "returnType": {"nodeId": "140357098477824", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357139861728": {"type": "Function", "content": {"typeVars": [".0.140357139861728"], "argTypes": [{"nodeId": ".0.140357139861728"}, {"nodeId": ".0.140357139861728"}], "returnType": {"nodeId": ".0.140357139861728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357139861728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098477120"}, "def": "140357139861728", "variance": "INVARIANT"}}, "140357139862176": {"type": "Function", "content": {"typeVars": [".0.140357139862176"], "argTypes": [{"nodeId": ".0.140357139862176"}, {"nodeId": ".0.140357139862176"}], "returnType": {"nodeId": ".0.140357139862176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357139862176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098477120"}, "def": "140357139862176", "variance": "INVARIANT"}}, "140357185926976": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110137248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098264656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098274176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139862624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139863520"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357139864416"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357098264656": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357098274176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357139862624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926976"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}, {"nodeId": "140357090077360"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140357090077360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357139863520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926976"}, {"nodeId": "140357090077584"}, {"nodeId": "140357090077808"}, {"nodeId": "140357098478880", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357090078032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140357090077584": {"type": "Union", "content": {"items": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357090077808": {"type": "Union", "content": {"items": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140357090078032": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357139864416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357185926976"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098484160": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164779552"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164780000"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164780448"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357164779552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484160"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164780000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484160"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098484160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164780448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484160"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098484160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098484512": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098478880", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098478880", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164782240"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164782688"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164783136"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164783584"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164784032"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164784480"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164784928"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164785376"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164785824"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357164786272"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}], "isAbstract": true}}, "140357164782240": {"type": "Function", "content": {"typeVars": [".0.140357164782240"], "argTypes": [{"nodeId": ".0.140357164782240"}], "returnType": {"nodeId": ".0.140357164782240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357164782240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098484512"}, "def": "140357164782240", "variance": "INVARIANT"}}, "140357164782688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484512"}, {"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140357164783136": {"type": "Function", "content": {"typeVars": [".-1.140357164783136"], "argTypes": [{"nodeId": "140357098484512"}, {"nodeId": "0"}, {"nodeId": ".-1.140357164783136"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140357164783136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357164783136", "variance": "INVARIANT"}}, "140357164783584": {"type": "Function", "content": {"typeVars": [".-1.140357164783584"], "argTypes": [{"nodeId": ".-1.140357164783584"}, {"nodeId": ".-1.140357164783584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140357164783584": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357164783584", "variance": "INVARIANT"}}, "140357164784032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484512"}], "returnType": {"nodeId": "140357098478176", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357164784480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484512"}], "returnType": {"nodeId": "140357098477472", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357164784928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484512"}], "returnType": {"nodeId": "140357098477824", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357164785376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098484512"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357164785824": {"type": "Function", "content": {"typeVars": [".0.140357164785824"], "argTypes": [{"nodeId": ".0.140357164785824"}, {"nodeId": ".0.140357164785824"}], "returnType": {"nodeId": ".0.140357164785824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357164785824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098484512"}, "def": "140357164785824", "variance": "INVARIANT"}}, "140357164786272": {"type": "Function", "content": {"typeVars": [".0.140357164786272"], "argTypes": [{"nodeId": ".0.140357164786272"}, {"nodeId": ".0.140357164786272"}], "returnType": {"nodeId": ".0.140357164786272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357164786272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098484512"}, "def": "140357164786272", "variance": "INVARIANT"}}, "140357098485216": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357089649248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357073251104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161209184"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161210080"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140357089649248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357161207840"}, {"nodeId": "140357161208288"}]}}, "140357161207840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485216"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357089825552"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140357089825552": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}}, "140357161208288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485216"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140357073251104": {"type": "Function", "content": {"typeVars": [".0.140357073251104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185920992", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140357073251104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140357073251104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098485216"}, "def": "140357073251104", "variance": "INVARIANT"}}, "140357161209184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485216"}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357161210080": {"type": "Function", "content": {"typeVars": [".0.140357161210080"], "argTypes": [{"nodeId": ".0.140357161210080"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357161210080"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140357161210080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357098485216"}, "def": "140357161210080", "variance": "INVARIANT"}}, "140357098485568": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073252000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073252448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073252672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073252896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073253120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073253344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357073253568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161213664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161214112"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161214560"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357073252000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357073252448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357089826448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089826448": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357073252672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357073252896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357073253120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357073253344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357073253568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}], "returnType": {"nodeId": "140357089826784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089826784": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357161213664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}, {"nodeId": "140357089827120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357089827344"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140357089827120": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357089827344": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357161214112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098484160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357161214560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098485568"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098484160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357098486272": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068180384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068180608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161220384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357161220832"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357068180384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486272"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068180608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486272"}], "returnType": {"nodeId": "140357089828912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089828912": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357161220384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486272"}, {"nodeId": "140357098128128"}, {"nodeId": "140357089829136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140357089829136": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357161220832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357098486624": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143937760"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068182400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068182848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068183072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068183296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357068183520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143940448"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143940896"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357143941344"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357143937760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357089829920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140357089829920": {"type": "Union", "content": {"items": [{"nodeId": "140357098485568"}, {"nodeId": "140357098485920"}, {"nodeId": "140357098486272"}]}}, "140357068182400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068182848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "140357089830144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089830144": {"type": "Union", "content": {"items": [{"nodeId": "140357098485568"}, {"nodeId": "140357098485920"}, {"nodeId": "140357098486272"}]}}, "140357068183072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068183296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357068183520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}], "returnType": {"nodeId": "140357089830368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089830368": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357143940448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357143940896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098484160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357143941344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098486624"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357098484160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357110894784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357026921632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893728"}], "isAbstract": false}}, "140357026921632": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110896544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027107824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089319168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089656192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027107824": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089319168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022566208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089319520"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089319520"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106497152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089319520"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357106496032"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022566208": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089319520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022567440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022567440": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089706608": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357106497152": {"type": "Union", "content": {"items": [{"nodeId": "140357089319520"}, {"nodeId": "N"}]}}, "140357106496032": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089706496": {"type": "Union", "content": {"items": [{"nodeId": "140357089319520"}, {"nodeId": "N"}]}}, "140357089656192": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110896896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027110400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089319168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089656528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027110400": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089656528": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110897248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027112752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089319872"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027112752": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089319872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022568336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106495808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022568336": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106495808": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357110897600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027113760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089656640"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027113760": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089656640": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110897952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027114656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027114656": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357110898304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027116000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027116000": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110898656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027117120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089651936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089225440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027117120": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089651936": {"type": "Union", "content": {"items": [{"nodeId": "140357089221920"}, {"nodeId": "140357089220512"}, {"nodeId": "140357089221216"}]}}, "140357089221920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022296304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089222976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022296304": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089222976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357089220512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022290928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089222976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022290928": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089221216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022294400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089222976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022294400": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089225440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110899008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357027118464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357027118464": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089706720": {"type": "Union", "content": {"items": [{"nodeId": "140357089221920"}, {"nodeId": "140357089220512"}, {"nodeId": "140357089221216"}]}}, "140357089706832": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110899360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021991872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021991872": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110899712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021993216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021993216": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110900064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021994112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021994112": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110900416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021995232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021995232": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110900768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021996352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089320576"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021996352": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089320576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022570352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106494128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022570352": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106494128": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110901120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021997472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089320576"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021997472": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110901472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021998368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706048"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021998368": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089706160": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089706048": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110901824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357021999824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089318816"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357021999824": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089318816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022301904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106496816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106496928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089318464"}], "isAbstract": false}}, "140357022301904": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106496816": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357106496928": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089318464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110902176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022001168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706272"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022001168": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089706272": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357110902528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022001952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089320224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022001952": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089320224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022569344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106497040"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022569344": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106497040": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357110902880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022003296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089706384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089320224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022003296": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089706384": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357110903232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022003968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022003968": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357110903584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022004864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022004864": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357110903936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022005760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022005760": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357110904288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357110904640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357110904992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357110905696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022006880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089224384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022006880": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089224384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357110906048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022139328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089225440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022139328": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357110906400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022140224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089230368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022140224": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089230368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357089214528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022141232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089319168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022141232": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089214880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022142464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022142464": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089215232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022143360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357106498832"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022143360": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106498832": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089215584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022144144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022144144": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089215936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022145264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089318112"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022145264": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089318112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022300896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022300896": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089216288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022146272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089318112"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022146272": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089216640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022147504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089318112"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022147504": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089216992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022148400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089318112"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022148400": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089217344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022149184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022149184": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089217696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022150080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106498720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022150080": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357106498720": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089218048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022150976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022150976": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089218400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022152320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089314240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022152320": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089314240": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357089218752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022153440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089319872"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022153440": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089219104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022154560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106499168"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022154560": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106499168": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089219456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022286448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022286448": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089219808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022288128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106499056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106496256"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022288128": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106499056": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357106496256": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928736"}]}}, "140357089220160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022289696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089221920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022289696": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089220864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022292720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106496480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106496592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106496704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022292720": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106496480": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357106496592": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357106496704": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089221568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022295296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089222976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022295296": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089222272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022297312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089222976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022297312": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089222624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022298320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089222976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110905344"}], "isAbstract": false}}, "140357022298320": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089223328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089222976"}], "isAbstract": false}}, "140357089223680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089222976"}], "isAbstract": false}}, "140357089224032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089222976"}], "isAbstract": false}}, "140357089224736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089224384"}], "isAbstract": false}}, "140357089225088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089224384"}], "isAbstract": false}}, "140357089225792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089226144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089226496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089226848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089227200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089227552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089227904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089228256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089228608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089228960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089229312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089229664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089230016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089225440"}], "isAbstract": false}}, "140357089312832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089230368"}], "isAbstract": false}}, "140357089313184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089230368"}], "isAbstract": false}}, "140357089313536": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089230368"}], "isAbstract": false}}, "140357089313888": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089230368"}], "isAbstract": false}}, "140357089314592": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089314944": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089315296": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089315648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089316000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089316352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089316704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089317056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089317408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089317760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089314240"}], "isAbstract": false}}, "140357089320928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022571360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089321632"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110896192"}], "isAbstract": false}}, "140357022571360": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089321632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022572032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089321280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106494240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110896192"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357022572032": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089321280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140357110893376"}], "isAbstract": false}}, "140357106494240": {"type": "Union", "content": {"items": [{"nodeId": "140357110905344"}, {"nodeId": "N"}]}}, "140357089321984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022572144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022572144": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089322336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022572480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106494352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022572480": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357106494352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140357089322688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022572816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089321280"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022572816": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357089323040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022573152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106494688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022573152": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357106494688": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089323392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022573936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110905344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089321280"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106494800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022573936": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106494800": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089323744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022574720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110905344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089321280"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089321280"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022574720": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089324096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022574944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106494912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357106495024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022574944": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357106494912": {"type": "Union", "content": {"items": [{"nodeId": "140357089321280"}, {"nodeId": "N"}]}}, "140357106495024": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089324448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357022575168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089321280"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357089321280"}], "isAbstract": false}}, "140357022575168": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357110151328": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136928"}, {"nodeId": "140357098142560"}], "isAbstract": false}}, "140357097685056": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144109216"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144109664"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144110112"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144110560"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144111008"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140357110152384"}, {"nodeId": "140357098476064"}], "isAbstract": false}}, "140357144109216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685056"}, {"nodeId": "140357098486976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140357144109664": {"type": "Function", "content": {"typeVars": [".0.140357144109664"], "argTypes": [{"nodeId": ".0.140357144109664"}], "returnType": {"nodeId": ".0.140357144109664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357144109664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097685056"}, "def": "140357144109664", "variance": "INVARIANT"}}, "140357144110112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685056"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144110560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685056"}], "returnType": {"nodeId": "140357098129184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357144111008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097685056"}, {"nodeId": "140357080923632"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357080923632": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357097686464": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144115040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144115488"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140357110152384"}], "isAbstract": false}}, "140357144115040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686464"}, {"nodeId": "140357110152032"}, {"nodeId": "140357110152032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140357144115488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097686464"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357097687520": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144060064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144060512"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140357097687168"}], "isAbstract": false}}, "140357144060064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687520"}, {"nodeId": "140357081105568"}, {"nodeId": "140357081105680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140357081105568": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081105680": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357144060512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097687520"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089505728": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144060960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144061408"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357043159552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357144062304"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140357105998080"}], "isAbstract": false}}, "140357144060960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089505728"}, {"nodeId": "140357081105792"}, {"nodeId": "140357185917120"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140357081105792": {"type": "Union", "content": {"items": [{"nodeId": "140357105998080"}, {"nodeId": "N"}]}}, "140357105998080": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118645344"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357031000352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118646240"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118646688"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118647136"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": true}}, "140357118645344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998080"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140357031000352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998080"}, {"nodeId": "140357098486976"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140357118646240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118646688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998080"}], "returnType": {"nodeId": "140357076820800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076820800": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357118647136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998080"}, {"nodeId": "140357076821024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140357076821024": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357144061408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089505728"}, {"nodeId": "140357081105904"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140357081105904": {"type": "Union", "content": {"items": [{"nodeId": "140357098486976"}, {"nodeId": "140357098128128"}]}}, "140357043159552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089505728"}], "returnType": {"nodeId": "140357081106016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081106016": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357144062304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089505728"}, {"nodeId": "140357081106240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357081106240": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357098322080": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098131296"}], "isAbstract": false}}, "140357098322432": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357097688224": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135405280"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135405728"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135406176"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135406624"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140357135405280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097688224"}], "returnType": {"nodeId": "140357097688224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135405728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097688224"}], "returnType": {"nodeId": "140357097688224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135406176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097688224"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135406624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097688224"}], "returnType": {"nodeId": "140357097688224"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357097699840": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097698784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089719040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089538480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357102127232"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135407968"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135408416"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135408864"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135409312"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135409760"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135410208"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135410656"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135411104"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135411552"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135412000"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135412448"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135412896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135413344"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135413792"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135414240"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135414688"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135415136"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081335728"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081340544"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135515936"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135516384"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135516832"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135517280"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135517728"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135518176"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135518624"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081344016"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081344576"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135520864"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135521312"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081345360"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081346928"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135523552"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081346816"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081347040"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135525792"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135526240"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135526688"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135527136"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135527584"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135528032"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135528480"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135528928"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135529376"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357097698784": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097560032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097560480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118970784"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118971232"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118971680"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118972128"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118972576"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039273376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039272928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039272704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039272480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039270464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": true}}, "140357097560032": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357097560480": {"type": "Union", "content": {"items": [{"nodeId": "140357102485088"}, {"nodeId": "N"}]}}, "140357102485088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}], "returnType": {"nodeId": "140357097699840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357118970784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357081340320"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357081340432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140357081340320": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081340432": {"type": "Union", "content": {"items": [{"nodeId": "140357080945760"}, {"nodeId": "N"}]}}, "140357080945760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}], "returnType": {"nodeId": "140357097699840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357118971232": {"type": "Function", "content": {"typeVars": [".0.140357118971232"], "argTypes": [{"nodeId": ".0.140357118971232"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140357118971232"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140357118971232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698784"}, "def": "140357118971232", "variance": "INVARIANT"}}, "140357118971680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357097699840"}, {"nodeId": "140357102127232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140357102127232": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118969216"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357098142560"}], "isAbstract": false}}, "140357118969216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102127232"}, {"nodeId": "140357081534128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140357081534128": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357118972128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357097699840"}, {"nodeId": "140357102127232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140357118972576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081340768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140357081340768": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357039273376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357081340992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140357081340992": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357039272928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081341216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357081341216": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357039272704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357039272480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357039270464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357089719040": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357089538480": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135407968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135408416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140357135408864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357081342560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081342560": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135409312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357097699840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140357135409760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357081342672"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140357081342672": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357135410208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357081342896"}, {"nodeId": "140357081343120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140357081342896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357097560256"}}}, "140357097560256": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357097699840"}]}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}]}}, "140357081343120": {"type": "Union", "content": {"items": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357102134624": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097558464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097558576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097558240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118911072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118911520"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118911968"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118912416"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118912864"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118913312"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118913760"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118914208"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357097558464": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097558576": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097558240": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357118911072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140357118911520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118911968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}], "returnType": {"nodeId": "140357081535696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081535696": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357118912416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140357118912864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185921344", "args": [{"nodeId": "140357185928032"}]}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140357118913312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140357118913760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357118914208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134624"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135410656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357081343008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140357081343008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089538256"}}}, "140357089538256": {"type": "Union", "content": {"items": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135411104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357081343232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081343232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089538256"}}}, "140357135411552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135412000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135412448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135412896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081343344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357081343344": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135413344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081343456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357081343456": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135413792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135414240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135414688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357081343568"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081343568": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135415136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357081343904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081343904": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357081343680"}]}}, "140357081343680": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357081335728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135415584"}, {"nodeId": "140357135416032"}]}}, "140357135415584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357081344240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140357081344240": {"type": "Union", "content": {"items": [{"nodeId": "140357081344128"}, {"nodeId": "N"}]}}, "140357081344128": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135416032": {"type": "Function", "content": {"typeVars": [".-1.140357135416032"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135416032"}], "returnType": {"nodeId": "140357081344464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140357135416032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135416032", "variance": "INVARIANT"}}, "140357081344464": {"type": "Union", "content": {"items": [{"nodeId": "140357081344352"}, {"nodeId": ".-1.140357135416032"}]}}, "140357081344352": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357081340544": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135416480"}, {"nodeId": "140357135416928"}]}}, "140357135416480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357081344800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140357081344800": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357081344688"}]}, {"nodeId": "N"}]}}, "140357081344688": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135416928": {"type": "Function", "content": {"typeVars": [".-1.140357135416928"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135416928"}], "returnType": {"nodeId": "140357081345024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140357135416928": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135416928", "variance": "INVARIANT"}}, "140357081345024": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357081344912"}]}, {"nodeId": ".-1.140357135416928"}]}}, "140357081344912": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135515936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081345136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140357081345136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357097555440"}}}, "140357097555440": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}, {"nodeId": "140357097555664"}]}}, "140357097555664": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357097555216"}, {"nodeId": "140357098128128"}]}}, "140357097555216": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135516384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081345248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140357081345248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135516832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135517280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135517728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135518176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135518624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140357081344016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135519072"}, {"nodeId": "140357135519520"}]}}, "140357135519072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "N"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357081345696"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140357081345696": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357081345584"}]}, {"nodeId": "N"}]}}, "140357081345584": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357135519520": {"type": "Function", "content": {"typeVars": [".-1.140357135519520"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": ".-1.140357135519520"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357081346032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140357135519520": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135519520", "variance": "INVARIANT"}}, "140357081346032": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357081345920"}]}, {"nodeId": ".-1.140357135519520"}]}}, "140357081345920": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357081344576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135519968"}, {"nodeId": "140357135520416"}]}}, "140357135519968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357081346368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140357081346368": {"type": "Union", "content": {"items": [{"nodeId": "140357081346256"}, {"nodeId": "N"}]}}, "140357081346256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357097558688"}}}, "140357097558688": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357097557792"}]}}, "140357097557792": {"type": "Tuple", "content": {"items": [{"nodeId": "140357097554992"}, {"nodeId": "140357097556896"}, {"nodeId": "140357098128128"}]}}, "140357097554992": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357097556896": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135520416": {"type": "Function", "content": {"typeVars": [".-1.140357135520416"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135520416"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357081346704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140357135520416": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135520416", "variance": "INVARIANT"}}, "140357081346704": {"type": "Union", "content": {"items": [{"nodeId": "140357081346144"}, {"nodeId": ".-1.140357135520416"}]}}, "140357081346144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357097558688"}}}, "140357135520864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140357135521312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140357081345360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135521760"}, {"nodeId": "140357135522208"}]}}, "140357135521760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357081346480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140357081346480": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135522208": {"type": "Function", "content": {"typeVars": [".-1.140357135522208"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": ".-1.140357135522208"}], "returnType": {"nodeId": "140357081346592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140357135522208": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135522208", "variance": "INVARIANT"}}, "140357081346592": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135522208"}]}}, "140357081346928": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135522656"}, {"nodeId": "140357135523104"}]}}, "140357135522656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357081347152"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140357081347152": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135523104": {"type": "Function", "content": {"typeVars": [".-1.140357135523104"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": ".-1.140357135523104"}], "returnType": {"nodeId": "140357081347264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140357135523104": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135523104", "variance": "INVARIANT"}}, "140357081347264": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135523104"}]}}, "140357135523552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140357081346816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135524000"}, {"nodeId": "140357135524448"}]}}, "140357135524000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357081347488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081347488": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135524448": {"type": "Function", "content": {"typeVars": [".-1.140357135524448"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": ".-1.140357135524448"}], "returnType": {"nodeId": "140357081347600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140357135524448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135524448", "variance": "INVARIANT"}}, "140357081347600": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135524448"}]}}, "140357081347040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135524896"}, {"nodeId": "140357135525344"}]}}, "140357135524896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "N"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357081347824"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140357081347824": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135525344": {"type": "Function", "content": {"typeVars": [".-1.140357135525344"], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": ".-1.140357135525344"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357081347936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140357135525344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135525344", "variance": "INVARIANT"}}, "140357081347936": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357135525344"}]}}, "140357135525792": {"type": "Function", "content": {"typeVars": [".0.140357135525792"], "argTypes": [{"nodeId": ".0.140357135525792"}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": ".0.140357135525792"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357135525792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097699840"}, "def": "140357135525792", "variance": "INVARIANT"}}, "140357135526240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357081348160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081348160": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135526688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185928032"}, {"nodeId": "140357081348272"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140357081348272": {"type": "Union", "content": {"items": [{"nodeId": "140357097698784"}, {"nodeId": "N"}]}}, "140357135527136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357185917120"}, {"nodeId": "140357081348384"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140357081348384": {"type": "Union", "content": {"items": [{"nodeId": "140357097698784"}, {"nodeId": "N"}]}}, "140357135527584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135528032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}, {"nodeId": "140357081348496"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140357081348496": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135528480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357097698784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140357135528928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081348608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357081348608": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357135529376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699840"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357081348944"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081348944": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357081348720"}]}}, "140357081348720": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140357097700192": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135529824"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135530272"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135530720"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135531168"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135531616"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135663392"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135663840"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135664288"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135664736"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135665184"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135665632"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135666080"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135666528"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135666976"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135667424"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135667872"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140357097699840"}], "isAbstract": false}}, "140357135529824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "140357081349056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140357081349056": {"type": "Union", "content": {"items": [{"nodeId": "140357097698784"}, {"nodeId": "N"}]}}, "140357135530272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "140357185924864", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357081349168"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140357081349168": {"type": "Union", "content": {"items": [{"nodeId": "140357097699840"}, {"nodeId": "N"}]}}, "140357135530720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357097699840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135531168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": "140357097699840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135531616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "A"}, {"nodeId": "140357081349392"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140357081349392": {"type": "Union", "content": {"items": [{"nodeId": "140357102134272"}, {"nodeId": "N"}]}}, "140357102134272": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118916896"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118917344"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118917792"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118918240"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357118916896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134272"}, {"nodeId": "140357097699840"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140357118917344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134272"}, {"nodeId": "140357097699840"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140357118917792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134272"}, {"nodeId": "140357098128128"}, {"nodeId": "140357080949568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140357080949568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357118918240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102134272"}, {"nodeId": "140357185927328"}, {"nodeId": "140357080949344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140357080949344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357135663392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "A"}, {"nodeId": "140357081349840"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140357081349840": {"type": "Union", "content": {"items": [{"nodeId": "140357102134272"}, {"nodeId": "N"}]}}, "140357135663840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "140357081530432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140357081530432": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135664288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "140357081530544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140357081530544": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135664736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "140357081530656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140357081530656": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357135665184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "A"}, {"nodeId": "140357081530880"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140357081530880": {"type": "Union", "content": {"items": [{"nodeId": "140357102134272"}, {"nodeId": "N"}]}}, "140357135665632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "A"}, {"nodeId": "140357081531216"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140357081531216": {"type": "Union", "content": {"items": [{"nodeId": "140357102134272"}, {"nodeId": "N"}]}}, "140357135666080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "A"}, {"nodeId": "140357081531552"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140357081531552": {"type": "Union", "content": {"items": [{"nodeId": "140357102134272"}, {"nodeId": "N"}]}}, "140357135666528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135666976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135667424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}, {"nodeId": "140357185917120"}, {"nodeId": "140357081531776"}, {"nodeId": "140357081531888"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140357081531776": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081531888": {"type": "Union", "content": {"items": [{"nodeId": "140357097698784"}, {"nodeId": "N"}]}}, "140357135667872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700192"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097700544": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140357097700192"}], "isAbstract": false}}, "140357089504320": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089503616"}], "isAbstract": false}}, "140357089505024": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089504672"}, {"nodeId": "140357089503968"}], "isAbstract": false}}, "140357089505376": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140357089504672"}, {"nodeId": "140357089504320"}], "isAbstract": false}}, "140357110150624": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135810848"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135811744"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135812192"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135812640"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135813088"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135813536"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135813984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135814432"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135814880"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357135815328"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085778368"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140357110150624"}], "bases": [{"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}]}], "isAbstract": false}}, ".1.140357110150624": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110150624", "variance": "INVARIANT"}}, "140357135810848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": "140357185926624", "args": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140357135811744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}], "returnType": {"nodeId": ".1.140357110150624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140357135812192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357135812640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": ".1.140357110150624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135813088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": ".1.140357110150624"}], "returnType": {"nodeId": ".1.140357110150624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357135813536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357135813984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357110150624"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135814432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357135814880": {"type": "Function", "content": {"typeVars": [".-1.140357135814880", ".-2.140357135814880"], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357135814880"}, {"nodeId": ".-2.140357135814880"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357085783632"}, {"nodeId": "140357085783744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357135814880": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135814880", "variance": "INVARIANT"}}, ".-2.140357135814880": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135814880", "variance": "INVARIANT"}}, "140357085783632": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".-1.140357135814880"}]}}, "140357085783744": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".-2.140357135814880"}]}}, "140357135815328": {"type": "Function", "content": {"typeVars": [".-1.140357135815328", ".-2.140357135815328"], "argTypes": [{"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": ".-1.140357135815328"}, {"nodeId": ".-2.140357135815328"}]}], "returnType": {"nodeId": "140357098130592", "args": [{"nodeId": "140357085783856"}, {"nodeId": "140357085783968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357135815328": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135815328", "variance": "INVARIANT"}}, ".-2.140357135815328": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357135815328", "variance": "INVARIANT"}}, "140357085783856": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".-1.140357135815328"}]}}, "140357085783968": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".-2.140357135815328"}]}}, "140357085778368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357135815776"}, {"nodeId": "140357135816224"}]}}, "140357135815776": {"type": "Function", "content": {"typeVars": [".0.140357135815776"], "argTypes": [{"nodeId": ".0.140357135815776"}, {"nodeId": "140357185926272", "args": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}]}], "returnType": {"nodeId": ".0.140357135815776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357135815776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, "def": "140357135815776", "variance": "INVARIANT"}}, "140357135816224": {"type": "Function", "content": {"typeVars": [".0.140357135816224"], "argTypes": [{"nodeId": ".0.140357135816224"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357085784416"}]}], "returnType": {"nodeId": ".0.140357135816224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357135816224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110150624", "args": [{"nodeId": ".1.140357110150624"}]}, "def": "140357135816224", "variance": "INVARIANT"}}, "140357085784416": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357110150624"}, {"nodeId": ".1.140357110150624"}]}}, "140357089326560": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357052255136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051907680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051906784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051905888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051905664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051903648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051905216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051905440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051904768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051904992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051904320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051904544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051903872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051904096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051899616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051902080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051902528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928384"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}], "isAbstract": false}}, "140357052255136": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051907680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085784640"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085784640": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051906784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085784752"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085784752": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051905888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085784864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085784864": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051905664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085784976"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085784976": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051903648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785088"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785088": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785200"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785200": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051905440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785312"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785312": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785424"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785424": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051904992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785536"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785536": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785648"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785648": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051904544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785760"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785760": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051903872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785872"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785872": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051904096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085785984"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085785984": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051899616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085786096"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085786096": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051902080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085786208"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085786208": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357051902528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085786320"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085786320": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357110150976": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051897824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051895136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126850592"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126851040"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126851488"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126851936"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126852384"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126852832"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357126853280"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357110150976"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357110150976": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110150976", "variance": "INVARIANT"}}, "140357051897824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}], "returnType": {"nodeId": ".1.140357110150976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357051895136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}], "returnType": {"nodeId": ".1.140357110150976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357126850592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357126851040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140357126851488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140357126851936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357126852384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357085786768"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140357085786768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089716016"}}}, "140357126852832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357110150976"}]}], "returnType": {"nodeId": ".1.140357110150976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357126853280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357089494816": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357052263424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051888160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051887040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051887264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051886592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051886368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051885696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051885472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051884128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051883456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051882784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051882112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357052263424": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051888160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787104"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787104": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051887040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787216"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787216": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051887264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787328"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787328": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051886592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787440"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787440": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051886368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787552"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787552": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051885696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787664"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787664": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051885472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787776"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787776": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051884128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085787888"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085787888": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051883456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085788000"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085788000": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051882784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085788112"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085788112": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051882112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085788224"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085788224": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357089495168": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357052265104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051880544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051878752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051878528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051877632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051878080"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357098128128"}]}], "isAbstract": false}}, "140357052265104": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051880544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085788784"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085788784": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051878752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085788896"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085788896": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051878528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085789008"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085789008": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051877632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085789120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085789120": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051878080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357085789232"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085789232": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357089495520": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357047208976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051839456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357051838112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357047208976": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357051839456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080783600"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080783600": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357051838112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080783712"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080783712": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357089495872": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127427168"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127427616"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127428064"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140357089495872"}], "bases": [{"nodeId": "140357185921344", "args": [{"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357089495872"}]}]}, {"nodeId": "140357102137088", "args": [{"nodeId": "140357089495872", "args": [{"nodeId": ".1.140357089495872"}]}]}], "isAbstract": false}}, ".1.140357089495872": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357089495872", "variance": "INVARIANT"}}, "140357127427168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089495872", "args": [{"nodeId": ".1.140357089495872"}]}], "returnType": {"nodeId": "140357110150976", "args": [{"nodeId": ".1.140357089495872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357127427616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089495872", "args": [{"nodeId": ".1.140357089495872"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140357127428064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089495872", "args": [{"nodeId": ".1.140357089495872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357102137088": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131575904"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357034685632"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357102137088"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140357102137088": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102137088", "variance": "COVARIANT"}}, "140357131575904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102137088", "args": [{"nodeId": ".1.140357102137088"}]}], "returnType": {"nodeId": ".1.140357102137088"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357034685632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102137088", "args": [{"nodeId": ".1.140357102137088"}]}, {"nodeId": "140357081541968"}, {"nodeId": "140357081542080"}, {"nodeId": "140357081542192"}], "returnType": {"nodeId": "140357081542304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357081541968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081542080": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081542192": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357081542304": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357089496224": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127558240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127558688"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140357097687168"}], "isAbstract": false}}, "140357127558240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089496224"}, {"nodeId": "140357097687168"}, {"nodeId": "140357110147456", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140357110147456": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089708736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089715232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089527056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110213856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110213968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357085254304"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097783360"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097783808"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097784256"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097784704"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097785152"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097785600"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097786048"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097786496"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097786944"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357110147456"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357110147456": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110147456", "variance": "INVARIANT"}}, "140357089708736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357089526496": {"type": "Union", "content": {"items": [{"nodeId": "140357111037760"}, {"nodeId": "140357185924864", "args": [{"nodeId": "140357089526048"}]}]}}, "140357111037760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357089526048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357089715232": {"type": "Union", "content": {"items": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "N"}]}}, "140357089527056": {"type": "Union", "content": {"items": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "N"}]}}, "140357110213856": {"type": "Union", "content": {"items": [{"nodeId": "140357098475712", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "N"}]}}, "140357110213968": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "A"}]}}, "140357085254304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357114554944"}, {"nodeId": "140357102477696"}, {"nodeId": "140357102478144"}, {"nodeId": "140357102478592"}, {"nodeId": "140357102479040"}, {"nodeId": "140357102479488"}]}}, "140357114554944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357085439904"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085440128"}, {"nodeId": "140357085440352"}, {"nodeId": "140357085440576"}, {"nodeId": "140357085440800"}, {"nodeId": "140357085440912"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357085441248"}, {"nodeId": "140357085441472"}, {"nodeId": "140357085441584"}, {"nodeId": "140357085441808"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185924512", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357085441920"}, {"nodeId": "140357098128128"}, {"nodeId": "140357085442032"}, {"nodeId": "140357085442144"}, {"nodeId": "140357085442256"}, {"nodeId": "140357085442480"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140357085439904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085440128": {"type": "Union", "content": {"items": [{"nodeId": "140357085440016"}, {"nodeId": "N"}]}}, "140357085440016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085440352": {"type": "Union", "content": {"items": [{"nodeId": "140357085440240"}, {"nodeId": "N"}]}}, "140357085440240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357110212400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098475712", "args": [{"nodeId": "A"}]}]}}, "140357085440576": {"type": "Union", "content": {"items": [{"nodeId": "140357085440464"}, {"nodeId": "N"}]}}, "140357085440464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085440800": {"type": "Union", "content": {"items": [{"nodeId": "140357085440688"}, {"nodeId": "N"}]}}, "140357085440688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085440912": {"type": "Union", "content": {"items": [{"nodeId": "140357114553376"}, {"nodeId": "N"}]}}, "140357114553376": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140357085441248": {"type": "Union", "content": {"items": [{"nodeId": "140357085441136"}, {"nodeId": "N"}]}}, "140357085441136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085441472": {"type": "Union", "content": {"items": [{"nodeId": "140357085441360"}, {"nodeId": "N"}]}}, "140357085441360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089527280"}}}, "140357089527280": {"type": "Union", "content": {"items": [{"nodeId": "140357185926272", "args": [{"nodeId": "140357098128480"}, {"nodeId": "140357089526832"}]}, {"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357089526384"}]}]}}, "140357089526832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357089526384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085441584": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085441808": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357085441920": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085442032": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085442144": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085442256": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085442480": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357085442368"}]}, {"nodeId": "N"}]}}, "140357085442368": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357102477696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357085442592"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085442816"}, {"nodeId": "140357085443040"}, {"nodeId": "140357085443264"}, {"nodeId": "140357085443488"}, {"nodeId": "140357085443600"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357085443936"}, {"nodeId": "140357085444160"}, {"nodeId": "140357085444272"}, {"nodeId": "140357085444496"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185924512", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357085444608"}, {"nodeId": "140357085444720"}, {"nodeId": "140357098128128"}, {"nodeId": "140357085444832"}, {"nodeId": "140357085444944"}, {"nodeId": "140357085445168"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140357085442592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085442816": {"type": "Union", "content": {"items": [{"nodeId": "140357085442704"}, {"nodeId": "N"}]}}, "140357085442704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085443040": {"type": "Union", "content": {"items": [{"nodeId": "140357085442928"}, {"nodeId": "N"}]}}, "140357085442928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085443264": {"type": "Union", "content": {"items": [{"nodeId": "140357085443152"}, {"nodeId": "N"}]}}, "140357085443152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085443488": {"type": "Union", "content": {"items": [{"nodeId": "140357085443376"}, {"nodeId": "N"}]}}, "140357085443376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085443600": {"type": "Union", "content": {"items": [{"nodeId": "140357114555168"}, {"nodeId": "N"}]}}, "140357114555168": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140357085443936": {"type": "Union", "content": {"items": [{"nodeId": "140357085443824"}, {"nodeId": "N"}]}}, "140357085443824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085444160": {"type": "Union", "content": {"items": [{"nodeId": "140357085444048"}, {"nodeId": "N"}]}}, "140357085444048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089527280"}}}, "140357085444272": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085444496": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357085444608": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085444720": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085444832": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085444944": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085445168": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357085445056"}]}, {"nodeId": "N"}]}}, "140357085445056": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357102478144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357085445280"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085445504"}, {"nodeId": "140357085445728"}, {"nodeId": "140357085445952"}, {"nodeId": "140357085495472"}, {"nodeId": "140357085495584"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357085495920"}, {"nodeId": "140357085496144"}, {"nodeId": "0"}, {"nodeId": "140357085496480"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185924512", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357085496592"}, {"nodeId": "140357085496704"}, {"nodeId": "140357085496816"}, {"nodeId": "140357085496928"}, {"nodeId": "140357085497040"}, {"nodeId": "140357085497264"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140357085445280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085445504": {"type": "Union", "content": {"items": [{"nodeId": "140357085445392"}, {"nodeId": "N"}]}}, "140357085445392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085445728": {"type": "Union", "content": {"items": [{"nodeId": "140357085445616"}, {"nodeId": "N"}]}}, "140357085445616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085445952": {"type": "Union", "content": {"items": [{"nodeId": "140357085445840"}, {"nodeId": "N"}]}}, "140357085445840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085495472": {"type": "Union", "content": {"items": [{"nodeId": "140357085495360"}, {"nodeId": "N"}]}}, "140357085495360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085495584": {"type": "Union", "content": {"items": [{"nodeId": "140357114554720"}, {"nodeId": "N"}]}}, "140357114554720": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140357085495920": {"type": "Union", "content": {"items": [{"nodeId": "140357085495808"}, {"nodeId": "N"}]}}, "140357085495808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085496144": {"type": "Union", "content": {"items": [{"nodeId": "140357085496032"}, {"nodeId": "N"}]}}, "140357085496032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089527280"}}}, "140357085496480": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357085496592": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085496704": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085496816": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085496928": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085497040": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085497264": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357085497152"}]}, {"nodeId": "N"}]}}, "140357085497152": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357102478592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357085497376"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085497600"}, {"nodeId": "140357085497824"}, {"nodeId": "140357085498048"}, {"nodeId": "140357085498272"}, {"nodeId": "140357085498384"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357085498720"}, {"nodeId": "140357085498944"}, {"nodeId": "140357085499056"}, {"nodeId": "140357085499280"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185924512", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "0"}, {"nodeId": "140357085499504"}, {"nodeId": "140357085499616"}, {"nodeId": "140357085499728"}, {"nodeId": "140357085499840"}, {"nodeId": "140357085500064"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140357085497376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085497600": {"type": "Union", "content": {"items": [{"nodeId": "140357085497488"}, {"nodeId": "N"}]}}, "140357085497488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085497824": {"type": "Union", "content": {"items": [{"nodeId": "140357085497712"}, {"nodeId": "N"}]}}, "140357085497712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085498048": {"type": "Union", "content": {"items": [{"nodeId": "140357085497936"}, {"nodeId": "N"}]}}, "140357085497936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085498272": {"type": "Union", "content": {"items": [{"nodeId": "140357085498160"}, {"nodeId": "N"}]}}, "140357085498160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085498384": {"type": "Union", "content": {"items": [{"nodeId": "140357114554272"}, {"nodeId": "N"}]}}, "140357114554272": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140357085498720": {"type": "Union", "content": {"items": [{"nodeId": "140357085498608"}, {"nodeId": "N"}]}}, "140357085498608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085498944": {"type": "Union", "content": {"items": [{"nodeId": "140357085498832"}, {"nodeId": "N"}]}}, "140357085498832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089527280"}}}, "140357085499056": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085499280": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357085499504": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085499616": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085499728": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085499840": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085500064": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357085499952"}]}, {"nodeId": "N"}]}}, "140357085499952": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357102479040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": "140357098128480"}]}, {"nodeId": "140357085500176"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085500400"}, {"nodeId": "140357085500624"}, {"nodeId": "140357085500848"}, {"nodeId": "140357085501072"}, {"nodeId": "140357085501184"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357085501520"}, {"nodeId": "140357085501744"}, {"nodeId": "140357085502080"}, {"nodeId": "140357085502192"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185924512", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357085502528"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140357085502416"}, {"nodeId": "140357085502640"}, {"nodeId": "140357085502864"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140357085500176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085500400": {"type": "Union", "content": {"items": [{"nodeId": "140357085500288"}, {"nodeId": "N"}]}}, "140357085500288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085500624": {"type": "Union", "content": {"items": [{"nodeId": "140357085500512"}, {"nodeId": "N"}]}}, "140357085500512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085500848": {"type": "Union", "content": {"items": [{"nodeId": "140357085500736"}, {"nodeId": "N"}]}}, "140357085500736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085501072": {"type": "Union", "content": {"items": [{"nodeId": "140357085500960"}, {"nodeId": "N"}]}}, "140357085500960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085501184": {"type": "Union", "content": {"items": [{"nodeId": "140357114554048"}, {"nodeId": "N"}]}}, "140357114554048": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140357085501520": {"type": "Union", "content": {"items": [{"nodeId": "140357085501408"}, {"nodeId": "N"}]}}, "140357085501408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085501744": {"type": "Union", "content": {"items": [{"nodeId": "140357085501632"}, {"nodeId": "N"}]}}, "140357085501632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089527280"}}}, "140357085502080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357085502192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357085502528": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357085502416": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085502640": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085502864": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357085502752"}]}, {"nodeId": "N"}]}}, "140357085502752": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357102479488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": "A"}]}, {"nodeId": "140357085503088"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085503312"}, {"nodeId": "140357085503536"}, {"nodeId": "140357085503760"}, {"nodeId": "140357085503984"}, {"nodeId": "140357085504096"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357085504432"}, {"nodeId": "140357085504656"}, {"nodeId": "140357085504768"}, {"nodeId": "140357085504992"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185924512", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357085505104"}, {"nodeId": "140357085505216"}, {"nodeId": "140357085505328"}, {"nodeId": "140357085505440"}, {"nodeId": "140357085505552"}, {"nodeId": "140357085505776"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140357085503088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085503312": {"type": "Union", "content": {"items": [{"nodeId": "140357085503200"}, {"nodeId": "N"}]}}, "140357085503200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085503536": {"type": "Union", "content": {"items": [{"nodeId": "140357085503424"}, {"nodeId": "N"}]}}, "140357085503424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085503760": {"type": "Union", "content": {"items": [{"nodeId": "140357085503648"}, {"nodeId": "N"}]}}, "140357085503648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085503984": {"type": "Union", "content": {"items": [{"nodeId": "140357085503872"}, {"nodeId": "N"}]}}, "140357085503872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357110212400"}}}, "140357085504096": {"type": "Union", "content": {"items": [{"nodeId": "140357114553152"}, {"nodeId": "N"}]}}, "140357114553152": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140357085504432": {"type": "Union", "content": {"items": [{"nodeId": "140357085504320"}, {"nodeId": "N"}]}}, "140357085504320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357102180768"}}}, "140357085504656": {"type": "Union", "content": {"items": [{"nodeId": "140357085504544"}, {"nodeId": "N"}]}}, "140357085504544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089527280"}}}, "140357085504768": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085504992": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140357085505104": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357085505216": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085505328": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357085505440": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085505552": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357085505776": {"type": "Union", "content": {"items": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357085505664"}]}, {"nodeId": "N"}]}}, "140357085505664": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357097783360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}], "returnType": {"nodeId": "140357085505888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085505888": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357097783808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "140357085506000"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140357085506000": {"type": "Union", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "N"}]}}, "140357097784256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "140357085506112"}, {"nodeId": "140357085506224"}], "returnType": {"nodeId": "140357085506448"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140357085506112": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110147456"}, {"nodeId": "N"}]}}, "140357085506224": {"type": "Union", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "N"}]}}, "140357085506448": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140357110147456"}, {"nodeId": ".1.140357110147456"}]}}, "140357097784704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140357097785152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097785600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097786048": {"type": "Function", "content": {"typeVars": [".0.140357097786048"], "argTypes": [{"nodeId": ".0.140357097786048"}], "returnType": {"nodeId": ".0.140357097786048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357097786048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}, "def": "140357097786048", "variance": "INVARIANT"}}, "140357097786496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147456", "args": [{"nodeId": ".1.140357110147456"}]}, {"nodeId": "140357085506672"}, {"nodeId": "140357085506784"}, {"nodeId": "140357085506896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357085506672": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357085506784": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357085506896": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357097786944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357127558688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089496224"}], "returnType": {"nodeId": "140357080911760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080911760": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357089496576": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357047221968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357052052000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357052052896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357052053120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357052053344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357052053568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928384"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928384"}]}], "isAbstract": false}}, "140357047221968": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357052052000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080913328"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080913328": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357052052896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080912768"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080912768": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357052053120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080913104"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080913104": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357052053344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080913440"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080913440": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357052053568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080913552"}], "returnType": {"nodeId": "140357185928384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080913552": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}, {"nodeId": "140357185928384"}]}}, "140357089496928": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357047421184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047451712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047452608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047452832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047453056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047453280"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357047421184": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357047451712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080915008"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080915008": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357047452608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080915344"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080915344": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357047452832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080915680"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080915680": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357047453056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080915792"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080915792": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357047453280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080915904"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080915904": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357089497280": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357047423088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357127724768"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357047455072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110892320", "args": [{"nodeId": "140357185928032"}]}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185928032"}]}], "isAbstract": false}}, "140357047423088": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}]}}, "140357127724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357080919600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140357080919600": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}]}}, "140357047455072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357080919376"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357080919376": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}]}}, "140357089494112": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097698080"}], "isAbstract": false}}, "140357097698080": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106027200"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106027648"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106028096"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106028544"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039119648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039122336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039123456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357185928032"}, {"nodeId": "140357097697728"}], "isAbstract": false}}, "140357106027200": {"type": "Function", "content": {"typeVars": [".0.140357106027200"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357106027200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140357106027200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357106027200", "variance": "INVARIANT"}}, "140357106027648": {"type": "Function", "content": {"typeVars": [".0.140357106027648"], "argTypes": [{"nodeId": ".0.140357106027648"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357106027648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357106027648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357106027648", "variance": "INVARIANT"}}, "140357106028096": {"type": "Function", "content": {"typeVars": [".0.140357106028096"], "argTypes": [{"nodeId": ".0.140357106028096"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357106028096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357106028096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357106028096", "variance": "INVARIANT"}}, "140357106028544": {"type": "Function", "content": {"typeVars": [".0.140357106028544"], "argTypes": [{"nodeId": ".0.140357106028544"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357106028544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357106028544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357106028544", "variance": "INVARIANT"}}, "140357039119648": {"type": "Function", "content": {"typeVars": [".0.140357039119648"], "argTypes": [{"nodeId": ".0.140357039119648"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357039119648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357039119648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357039119648", "variance": "INVARIANT"}}, "140357039122336": {"type": "Function", "content": {"typeVars": [".0.140357039122336"], "argTypes": [{"nodeId": ".0.140357039122336"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357039122336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357039122336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357039122336", "variance": "INVARIANT"}}, "140357039123456": {"type": "Function", "content": {"typeVars": [".0.140357039123456"], "argTypes": [{"nodeId": ".0.140357039123456"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357039123456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357039123456": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698080"}, "def": "140357039123456", "variance": "INVARIANT"}}, "140357097697728": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097559808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357038963872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357039112928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105968384"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105968832"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105969280"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105969728"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105970176"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105970624"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140357097697024"}], "isAbstract": false}}, "140357097559808": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357038963872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697728"}], "returnType": {"nodeId": "140357081339760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081339760": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357039112928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697728"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105968384": {"type": "Function", "content": {"typeVars": [".0.140357105968384"], "argTypes": [{"nodeId": ".0.140357105968384"}, {"nodeId": ".0.140357105968384"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357105968384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697728"}, "def": "140357105968384", "variance": "INVARIANT"}}, "140357105968832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697728"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105969280": {"type": "Function", "content": {"typeVars": [".0.140357105969280"], "argTypes": [{"nodeId": ".0.140357105969280"}, {"nodeId": ".0.140357105969280"}], "returnType": {"nodeId": ".0.140357105969280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357105969280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697728"}, "def": "140357105969280", "variance": "INVARIANT"}}, "140357105969728": {"type": "Function", "content": {"typeVars": [".0.140357105969728"], "argTypes": [{"nodeId": ".0.140357105969728"}, {"nodeId": ".0.140357105969728"}], "returnType": {"nodeId": ".0.140357105969728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357105969728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697728"}, "def": "140357105969728", "variance": "INVARIANT"}}, "140357105970176": {"type": "Function", "content": {"typeVars": [".0.140357105970176"], "argTypes": [{"nodeId": ".0.140357105970176"}, {"nodeId": ".0.140357105970176"}], "returnType": {"nodeId": ".0.140357105970176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140357105970176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697728"}, "def": "140357105970176", "variance": "INVARIANT"}}, "140357105970624": {"type": "Function", "content": {"typeVars": [".0.140357105970624"], "argTypes": [{"nodeId": ".0.140357105970624"}], "returnType": {"nodeId": ".0.140357105970624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357105970624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697728"}, "def": "140357105970624", "variance": "INVARIANT"}}, "140357097697024": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357038959392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357038960064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097559248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357038960288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357038960512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105964352"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105964800"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105965248"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105965696"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357038959392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697024"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357038960064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097559248": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}]}}, "140357038960288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140357038960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098130240", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140357105964352": {"type": "Function", "content": {"typeVars": [".0.140357105964352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": ".0.140357105964352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140357105964352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697024"}, "def": "140357105964352", "variance": "INVARIANT"}}, "140357105964800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697024"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105965248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697024"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140357105965696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697024"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "140357102134976": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357097698432"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357097697024"}], "isAbstract": false}}, "140357097698432": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357039125024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106029440"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140357097698080"}], "isAbstract": false}}, "140357039125024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357106029440": {"type": "Function", "content": {"typeVars": [".0.140357106029440"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140357106029440"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140357106029440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097698432"}, "def": "140357106029440", "variance": "INVARIANT"}}, "140357102135328": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357102136384": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098137984"}], "isAbstract": false}}, "140357102136736": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131571424"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081538048"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357102136736"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357102136736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102136736", "variance": "INVARIANT"}}, "140357131571424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102136736", "args": [{"nodeId": ".1.140357102136736"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140357081538048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357131571872"}, {"nodeId": "140357131572320"}]}}, "140357131571872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140357102136736", "args": [{"nodeId": ".1.140357102136736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140357131572320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357102136736", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140357102137440": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357080955616"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357039801952"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140357102137440"}], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140357102137440": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102137440", "variance": "COVARIANT"}}, "140357080955616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102137440", "args": [{"nodeId": ".1.140357102137440"}]}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140357102137440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357039801952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102137440", "args": [{"nodeId": ".1.140357102137440"}]}, {"nodeId": "140357081542528"}, {"nodeId": "140357081542640"}, {"nodeId": "140357081542752"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140357081542864"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140357081542528": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081542640": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081542752": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357081542864": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357102137792": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131577696"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357131577696": {"type": "Function", "content": {"typeVars": [".-1.140357131577696"], "argTypes": [{"nodeId": "140357102137792"}, {"nodeId": ".-1.140357131577696"}], "returnType": {"nodeId": ".-1.140357131577696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140357131577696": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140357114359008"}, "def": "140357131577696", "variance": "INVARIANT"}}, "140357114359008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357102138144": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131578144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357102138144"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357102484416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131578592"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140357102138144"}], "bases": [{"nodeId": "140357102137088", "args": [{"nodeId": ".1.140357102138144"}]}, {"nodeId": "140357102137792"}], "isAbstract": false}}, ".1.140357102138144": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102138144", "variance": "COVARIANT"}}, "140357131578144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102138144", "args": [{"nodeId": ".1.140357102138144"}]}, {"nodeId": "140357081661504"}, {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140357081661504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".1.140357102138144"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357102484416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185922048", "args": [{"nodeId": ".1.140357102138144"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357131578592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102138144", "args": [{"nodeId": ".1.140357102138144"}]}, {"nodeId": "140357081543424"}, {"nodeId": "140357081543536"}, {"nodeId": "140357081543648"}], "returnType": {"nodeId": "140357081543760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357081543424": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081543536": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081543648": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357081543760": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357102138496": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131579936"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357131579936": {"type": "Function", "content": {"typeVars": [".-1.140357131579936"], "argTypes": [{"nodeId": "140357102138496"}, {"nodeId": ".-1.140357131579936"}], "returnType": {"nodeId": ".-1.140357131579936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140357131579936": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140357114363488"}, "def": "140357131579936", "variance": "INVARIANT"}}, "140357114363488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357102138848": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131580384"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357102138848"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357114356768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357080955392"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140357102138848"}], "bases": [{"nodeId": "140357102137440", "args": [{"nodeId": ".1.140357102138848"}]}, {"nodeId": "140357102138496"}], "isAbstract": false}}, ".1.140357102138848": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357102138848", "variance": "COVARIANT"}}, "140357131580384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102138848", "args": [{"nodeId": ".1.140357102138848"}]}, {"nodeId": "140357081662400"}, {"nodeId": "140357098129888", "args": [{"nodeId": "A"}]}, {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140357081662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185923456", "args": [{"nodeId": ".1.140357102138848"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357114356768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357185923808", "args": [{"nodeId": ".1.140357102138848"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140357080955392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102138848", "args": [{"nodeId": ".1.140357102138848"}]}, {"nodeId": "140357081544656"}, {"nodeId": "140357081544768"}, {"nodeId": "140357081544880"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140357081544992"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140357081544656": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081544768": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081544880": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357081544992": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357102139200": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131582624"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["close"]}}, "140357131582624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102139200"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357102139552": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357131583072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118279968"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140357102139552"}], "bases": [{"nodeId": "140357102137088", "args": [{"nodeId": ".1.140357102139552"}]}], "isAbstract": false}}, ".1.140357102139552": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140357102139200"}, "def": "140357102139552", "variance": "INVARIANT"}}, "140357131583072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102139552", "args": [{"nodeId": ".1.140357102139552"}]}, {"nodeId": ".1.140357102139552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140357118279968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102139552", "args": [{"nodeId": ".1.140357102139552"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140357102139904": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118280416"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["aclose"]}}, "140357118280416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102139904"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": "140357185916416"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357102140256": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118280864"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357081663744"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140357102140256"}], "bases": [{"nodeId": "140357102137440", "args": [{"nodeId": ".1.140357102140256"}]}], "isAbstract": false}}, ".1.140357102140256": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140357102139904"}, "def": "140357102140256", "variance": "INVARIANT"}}, "140357118280864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102140256", "args": [{"nodeId": ".1.140357102140256"}]}, {"nodeId": ".1.140357102140256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140357081663744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102140256", "args": [{"nodeId": ".1.140357102140256"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140357102140608": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118281760"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118282208"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140357102137088", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140357118281760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102140608"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140357118282208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102140608"}, {"nodeId": "140357081545776"}, {"nodeId": "140357081545888"}, {"nodeId": "140357081546000"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357081545776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081545888": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081546000": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357102140960": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118282656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118283104"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140357102140960"}], "bases": [{"nodeId": "140357102137088", "args": [{"nodeId": ".1.140357102140960"}]}], "isAbstract": false}}, ".1.140357102140960": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140357089538704"}, "def": "140357102140960", "variance": "INVARIANT"}}, "140357089538704": {"type": "Union", "content": {"items": [{"nodeId": "140357098475712", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "N"}]}}, "140357118282656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102140960", "args": [{"nodeId": ".1.140357102140960"}]}, {"nodeId": ".1.140357102140960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140357118283104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102140960", "args": [{"nodeId": ".1.140357102140960"}]}, {"nodeId": "140357081546112"}, {"nodeId": "140357081546224"}, {"nodeId": "140357081546336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357081546112": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081546224": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081546336": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357105991744": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140357105991744"}], "bases": [{"nodeId": "140357102140960", "args": [{"nodeId": ".1.140357105991744"}]}], "isAbstract": false}}, ".1.140357105991744": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140357089538704"}, "def": "140357105991744", "variance": "INVARIANT"}}, "140357105992096": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140357105992096"}], "bases": [{"nodeId": "140357102140960", "args": [{"nodeId": ".1.140357105992096"}]}], "isAbstract": false}}, ".1.140357105992096": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140357089538704"}, "def": "140357105992096", "variance": "INVARIANT"}}, "140357105992448": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118283552"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118284000"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118284448"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118284896"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118285344"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118285792"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118286240"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357118283552": {"type": "Function", "content": {"typeVars": [".-1.140357118283552"], "argTypes": [{"nodeId": "140357105992448"}, {"nodeId": "140357102137088", "args": [{"nodeId": ".-1.140357118283552"}]}], "returnType": {"nodeId": ".-1.140357118283552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140357118283552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357118283552", "variance": "INVARIANT"}}, "140357118284000": {"type": "Function", "content": {"typeVars": [".-1.140357118284000"], "argTypes": [{"nodeId": "140357105992448"}, {"nodeId": ".-1.140357118284000"}], "returnType": {"nodeId": ".-1.140357118284000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140357118284000": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140357089539824"}, "def": "140357118284000", "variance": "INVARIANT"}}, "140357089539824": {"type": "Union", "content": {"items": [{"nodeId": "140357102137088", "args": [{"nodeId": "A"}]}, {"nodeId": "140357089539264"}]}}, "140357089539264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357114353632"}}}, "140357114353632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102615264"}, {"nodeId": "140357102616048"}, {"nodeId": "140357102616272"}], "returnType": {"nodeId": "140357102616384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357102615264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357102616048": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357102616272": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357102616384": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357118284448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992448"}, {"nodeId": "140357081663072"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140357081663968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140357081663072": {"type": "Function", "content": {"typeVars": [".-2.140357081663072"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140357081663072"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140357081663072": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081663072", "variance": "INVARIANT"}}, "140357081663968": {"type": "Function", "content": {"typeVars": [".-2.140357081663968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140357081663968"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140357081663968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081663968", "variance": "INVARIANT"}}, "140357118284896": {"type": "Function", "content": {"typeVars": [".0.140357118284896"], "argTypes": [{"nodeId": ".0.140357118284896"}], "returnType": {"nodeId": ".0.140357118284896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357118284896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357105992448"}, "def": "140357118284896", "variance": "INVARIANT"}}, "140357118285344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118285792": {"type": "Function", "content": {"typeVars": [".0.140357118285792"], "argTypes": [{"nodeId": ".0.140357118285792"}], "returnType": {"nodeId": ".0.140357118285792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118285792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357105992448"}, "def": "140357118285792", "variance": "INVARIANT"}}, "140357118286240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992448"}, {"nodeId": "140357081694944"}, {"nodeId": "140357081695056"}, {"nodeId": "140357081695168"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357081694944": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081695056": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081695168": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357105992800": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118286688"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118281312"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118287584"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118288032"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118288480"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118288928"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118289376"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118287136"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118289824"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118290272"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357118286688": {"type": "Function", "content": {"typeVars": [".-1.140357118286688"], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": "140357102137088", "args": [{"nodeId": ".-1.140357118286688"}]}], "returnType": {"nodeId": ".-1.140357118286688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140357118286688": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357118286688", "variance": "INVARIANT"}}, "140357118281312": {"type": "Function", "content": {"typeVars": [".-1.140357118281312"], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": "140357102137440", "args": [{"nodeId": ".-1.140357118281312"}]}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140357118281312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140357118281312": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357118281312", "variance": "INVARIANT"}}, "140357118287584": {"type": "Function", "content": {"typeVars": [".-1.140357118287584"], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": ".-1.140357118287584"}], "returnType": {"nodeId": ".-1.140357118287584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140357118287584": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140357089539824"}, "def": "140357118287584", "variance": "INVARIANT"}}, "140357118288032": {"type": "Function", "content": {"typeVars": [".-1.140357118288032"], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": ".-1.140357118288032"}], "returnType": {"nodeId": ".-1.140357118288032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140357118288032": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140357089540384"}, "def": "140357118288032", "variance": "INVARIANT"}}, "140357089540384": {"type": "Union", "content": {"items": [{"nodeId": "140357102137440", "args": [{"nodeId": "A"}]}, {"nodeId": "140357089540608"}]}}, "140357089540608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357114356544"}}}, "140357114356544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102611904"}, {"nodeId": "140357102611232"}, {"nodeId": "140357102613024"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": "140357102185472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357102611904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357102611232": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357102613024": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357102185472": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, "140357118288480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": "140357081663520"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140357081664416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140357081663520": {"type": "Function", "content": {"typeVars": [".-2.140357081663520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140357081663520"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140357081663520": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081663520", "variance": "INVARIANT"}}, "140357081664416": {"type": "Function", "content": {"typeVars": [".-2.140357081664416"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140357081664416"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140357081664416": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081664416", "variance": "INVARIANT"}}, "140357118288928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": "140357081664192"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140357081664864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140357081664192": {"type": "Function", "content": {"typeVars": [".-2.140357081664192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".-2.140357081664192"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140357081664192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081664192", "variance": "INVARIANT"}}, "140357081664864": {"type": "Function", "content": {"typeVars": [".-2.140357081664864"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140357185922400", "args": [{"nodeId": ".-2.140357081664864"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140357081664864": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357081664864", "variance": "INVARIANT"}}, "140357118289376": {"type": "Function", "content": {"typeVars": [".0.140357118289376"], "argTypes": [{"nodeId": ".0.140357118289376"}], "returnType": {"nodeId": ".0.140357118289376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357118289376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357105992800"}, "def": "140357118289376", "variance": "INVARIANT"}}, "140357118287136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992800"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118289824": {"type": "Function", "content": {"typeVars": [".0.140357118289824"], "argTypes": [{"nodeId": ".0.140357118289824"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140357118289824"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140357118289824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357105992800"}, "def": "140357118289824", "variance": "INVARIANT"}}, "140357118290272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105992800"}, {"nodeId": "140357081697296"}, {"nodeId": "140357081697408"}, {"nodeId": "140357081697520"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140357185917120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140357081697296": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357081697408": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357081697520": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357105993152": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140357105993152"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081697184"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118292064"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118292512"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357081664640"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357081665536"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140357105993152"}], "bases": [{"nodeId": "140357102137088", "args": [{"nodeId": ".1.140357105993152"}]}, {"nodeId": "140357102137440", "args": [{"nodeId": ".1.140357105993152"}]}], "isAbstract": false}}, ".1.140357105993152": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105993152", "variance": "INVARIANT"}}, "140357081697184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357118290720"}, {"nodeId": "140357118291168"}]}}, "140357118290720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993152", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140357118291168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993152", "args": [{"nodeId": ".1.140357105993152"}]}, {"nodeId": ".1.140357105993152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140357118292064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993152", "args": [{"nodeId": ".1.140357105993152"}]}], "returnType": {"nodeId": ".1.140357105993152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357118292512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993152", "args": [{"nodeId": ".1.140357105993152"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140357081664640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993152", "args": [{"nodeId": ".1.140357105993152"}]}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140357105993152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081665536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105993152", "args": [{"nodeId": ".1.140357105993152"}]}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185922752", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140357105994560": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118412832"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118413280"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118413728"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["close", "seek", "write"]}}, "140357118412832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994560"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140357118413280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994560"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357118413728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994560"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105994912": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118414176"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118414624"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118415072"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["close", "read", "seek"]}}, "140357118414176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994912"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140357118414624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994912"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140357118415072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105994912"}], "returnType": {"nodeId": "140357185916416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357089501152": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140357105994560"}, {"nodeId": "140357105994912"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140357105995264": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118415520"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357118415520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105995264"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357076815872"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140357076815872": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357105995616": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118415968"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357118415968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105995616"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357076816096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140357076816096": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357105995968": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118416416"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357118416416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105995968"}, {"nodeId": "140357105994912"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357089502912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140357089502912": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357105994912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118653408"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118653856"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118654304"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118654752"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118655200"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118655648"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118656096"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118820640"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118821088"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118821536"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140357105997376"}], "isAbstract": false}}, "140357118653408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}, {"nodeId": "140357105994912"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140357118653856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140357118654304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}, {"nodeId": "140357076822256"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140357076822256": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118654752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}, {"nodeId": "140357076822368"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140357076822368": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118655200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118655648": {"type": "Function", "content": {"typeVars": [".0.140357118655648"], "argTypes": [{"nodeId": ".0.140357118655648"}], "returnType": {"nodeId": ".0.140357118655648"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118655648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089502912"}, "def": "140357118655648", "variance": "INVARIANT"}}, "140357118656096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}, {"nodeId": "140357076822592"}, {"nodeId": "140357076822704"}, {"nodeId": "140357076822816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357076822592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357076822704": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357076822816": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357118820640": {"type": "Function", "content": {"typeVars": [".0.140357118820640"], "argTypes": [{"nodeId": ".0.140357118820640"}], "returnType": {"nodeId": ".0.140357118820640"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118820640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089502912"}, "def": "140357118820640", "variance": "INVARIANT"}}, "140357118821088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118821536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502912"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081667552"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357081667552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357105997376": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118642208"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118642656"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357118642208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997376"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357076820128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140357076820128": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357118642656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997376"}, {"nodeId": "140357098128480"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357076820352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140357076820352": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357105996320": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118416864"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357118416864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105996320"}, {"nodeId": "140357105994560"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357089502560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140357089502560": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357105994560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118650272"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118650720"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118651168"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118651616"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118652064"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118652512"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118652960"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140357105997376"}], "isAbstract": false}}, "140357118650272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502560"}, {"nodeId": "140357105994560"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140357118650720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502560"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140357118651168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502560"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140357118651616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118652064": {"type": "Function", "content": {"typeVars": [".0.140357118652064"], "argTypes": [{"nodeId": ".0.140357118652064"}], "returnType": {"nodeId": ".0.140357118652064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118652064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089502560"}, "def": "140357118652064", "variance": "INVARIANT"}}, "140357118652512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502560"}, {"nodeId": "140357076821696"}, {"nodeId": "140357076821808"}, {"nodeId": "140357076821920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357076821696": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357076821808": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357076821920": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357118652960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502560"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081667104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140357081667104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357105996672": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118417312"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357118417312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105996672"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357105997728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140357105997728": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118643104"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357031001248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118644000"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118644448"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118644896"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": true}}, "140357118643104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997728"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140357031001248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997728"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140357118644000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118644448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997728"}], "returnType": {"nodeId": "140357076820464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076820464": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357118644896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997728"}, {"nodeId": "140357076820576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140357076820576": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}]}}, "140357105997024": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118417760"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "protocolMembers": ["__call__"]}}, "140357118417760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105997024"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357105998080"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140357089501504": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357031094176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357031091040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357031090816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357031089920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357031090368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357031088576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118420896"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140357098129888", "args": [{"nodeId": "140357185916416"}]}], "isAbstract": false}}, "140357031094176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357076816320"}], "returnType": {"nodeId": "140357105995264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076816320": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357031091040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357076816432"}], "returnType": {"nodeId": "140357105995616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076816432": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357031090816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357076816544"}], "returnType": {"nodeId": "140357105995968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076816544": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357031089920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357076816656"}], "returnType": {"nodeId": "140357105996320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076816656": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357031090368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357076816768"}], "returnType": {"nodeId": "140357105996672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076816768": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357031088576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357076816880"}], "returnType": {"nodeId": "140357105997024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357076816880": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357118420896": {"type": "Function", "content": {"typeVars": [".0.140357118420896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357076817104"}, {"nodeId": "140357076817216"}, {"nodeId": "140357076817328"}, {"nodeId": "140357076817440"}, {"nodeId": "140357076817552"}, {"nodeId": "140357076817664"}], "returnType": {"nodeId": ".0.140357118420896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140357076817104": {"type": "Union", "content": {"items": [{"nodeId": "140357105995968"}, {"nodeId": "N"}]}}, "140357076817216": {"type": "Union", "content": {"items": [{"nodeId": "140357105996320"}, {"nodeId": "N"}]}}, "140357076817328": {"type": "Union", "content": {"items": [{"nodeId": "140357105996672"}, {"nodeId": "N"}]}}, "140357076817440": {"type": "Union", "content": {"items": [{"nodeId": "140357105997024"}, {"nodeId": "N"}]}}, "140357076817552": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357076817664": {"type": "Union", "content": {"items": [{"nodeId": "140357185917120"}, {"nodeId": "N"}]}}, ".0.140357118420896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357076815648"}, "def": "140357118420896", "variance": "INVARIANT"}}, "140357076815648": {"type": "Tuple", "content": {"items": [{"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}]}}, "140357089501856": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118647584"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357030999456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118648480"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140357105997728"}], "isAbstract": true}}, "140357118647584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089501856"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140357030999456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089501856"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357076821248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140357076821248": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357185928032"}]}}, "140357118648480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089501856"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140357089502208": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118648928"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357030998336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118649824"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140357105998080"}], "isAbstract": true}}, "140357118648928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502208"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140357030998336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502208"}, {"nodeId": "140357098486976"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357076821472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140357076821472": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}}, "140357118649824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089502208"}, {"nodeId": "140357098486976"}, {"nodeId": "140357185917120"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140357089503264": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089501152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118821984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118822432"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118822880"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118823328"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118823776"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118824224"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118824672"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118825120"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118825568"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118826016"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118826464"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118826912"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118827360"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118827808"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118828256"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118828704"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118829152"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118829600"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118830048"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118830496"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118830944"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118831392"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140357098476416"}], "isAbstract": false}}, "140357118821984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357089501152"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140357118822432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140357118822880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357076823152"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140357076823152": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118823328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357076823264"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140357076823264": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118823776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118824224": {"type": "Function", "content": {"typeVars": [".0.140357118824224"], "argTypes": [{"nodeId": ".0.140357118824224"}], "returnType": {"nodeId": ".0.140357118824224"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118824224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503264"}, "def": "140357118824224", "variance": "INVARIANT"}}, "140357118824672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140357118825120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140357118825568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118826016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140357118826464": {"type": "Function", "content": {"typeVars": [".0.140357118826464"], "argTypes": [{"nodeId": ".0.140357118826464"}], "returnType": {"nodeId": ".0.140357118826464"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118826464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357089503264"}, "def": "140357118826464", "variance": "INVARIANT"}}, "140357118826912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357076823488"}, {"nodeId": "140357076823600"}, {"nodeId": "140357076823712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357076823488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357076823600": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357076823712": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357118827360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357118827808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118828256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118828704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118829152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118829600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118830048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}, {"nodeId": "140357076823936"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140357076823936": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118830496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118830944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118831392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357089503264"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105998432": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118831840"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118832288"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118832736"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118833184"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118833632"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118834080"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118834528"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118834976"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118835424"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118835872"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118836320"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118902560"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118903008"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118903456"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118903904"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118904352"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118904800"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118905248"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118905696"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118906144"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118906592"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118907040"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140357098476064"}], "isAbstract": false}}, "140357118831840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357089501152"}, {"nodeId": "140357105995264"}, {"nodeId": "140357105995616"}, {"nodeId": "140357105995968"}, {"nodeId": "140357105996320"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140357118832288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140357118832736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357076824048"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140357076824048": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118833184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357076824160"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128480"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140357076824160": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118833632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118834080": {"type": "Function", "content": {"typeVars": [".0.140357118834080"], "argTypes": [{"nodeId": ".0.140357118834080"}], "returnType": {"nodeId": ".0.140357118834080"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118834080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357105998432"}, "def": "140357118834080", "variance": "INVARIANT"}}, "140357118834528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357098128480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140357118834976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140357118835424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118835872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357118836320": {"type": "Function", "content": {"typeVars": [".0.140357118836320"], "argTypes": [{"nodeId": ".0.140357118836320"}], "returnType": {"nodeId": ".0.140357118836320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140357118836320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357105998432"}, "def": "140357118836320", "variance": "INVARIANT"}}, "140357118902560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357076824496"}, {"nodeId": "140357076824608"}, {"nodeId": "140357076824720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140357076824496": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140357076824608": {"type": "Union", "content": {"items": [{"nodeId": "140357098134816"}, {"nodeId": "N"}]}}, "140357076824720": {"type": "Union", "content": {"items": [{"nodeId": "140357110142528"}, {"nodeId": "N"}]}}, "140357118903008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140357118903456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118903904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118904352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118904800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118905248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118905696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}, {"nodeId": "140357076824832"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140357076824832": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357118906144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118906592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118907040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357105998432"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357102125120": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357102125472": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102125120"}], "isAbstract": false}}, "140357102125824": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102125472"}], "isAbstract": false}}, "140357102126176": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102125472"}], "isAbstract": false}}, "140357102126528": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102125120"}, {"nodeId": "140357098142208"}], "isAbstract": false}}, "140357102126880": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102125120"}], "isAbstract": false}}, "140357102127584": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102127936": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102128288": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102128640": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102128992": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102129344": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102129696": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102130048": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102130400": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102130752": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102131104": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102131456": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102131808": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102127232"}], "isAbstract": false}}, "140357102132160": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102131808"}], "isAbstract": false}}, "140357102132512": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102131808"}], "isAbstract": false}}, "140357102132864": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118969664"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357102131808"}], "isAbstract": false}}, "140357118969664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357102132864"}, {"nodeId": "140357081534240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140357081534240": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357102133216": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102131808"}], "isAbstract": false}}, "140357102133568": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102131808"}], "isAbstract": false}}, "140357102133920": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140357102131808"}], "isAbstract": false}}, "140357097699136": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118975264"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118975712"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118976160"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118976608"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118977056"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140357097698784"}], "isAbstract": false}}, "140357118975264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699136"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357081341440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140357081341440": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357118975712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699136"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081341664"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357081341664": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357118976160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699136"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081341776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357081341776": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357097700896"}]}}, "140357097700896": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115204480"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115204928"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115205376"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115205824"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115206272"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357115204480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700896"}, {"nodeId": "140357081532000"}, {"nodeId": "140357081532112"}, {"nodeId": "140357081532224"}, {"nodeId": "140357081532336"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140357081532000": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081532112": {"type": "Union", "content": {"items": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081532224": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081532336": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357115204928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700896"}, {"nodeId": "140357081532448"}, {"nodeId": "140357081532560"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140357081532448": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "140357098128832"}, {"nodeId": "140357098128128"}]}}, "140357081532560": {"type": "Union", "content": {"items": [{"nodeId": "140357102134624"}, {"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357115205376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700896"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081532672"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140357081532672": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357115205824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700896"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357115206272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097700896"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357118976608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699136"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357118977056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699136"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357097699488": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357102484864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357102134272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118977504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118977952"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118978400"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118978848"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118979296"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118979744"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140357097698784"}], "isAbstract": false}}, "140357102484864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357118977504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699488"}, {"nodeId": "140357081341888"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185917120"}, {"nodeId": "140357185917120"}, {"nodeId": "140357081342000"}, {"nodeId": "140357185917120"}, {"nodeId": "140357098128128"}, {"nodeId": "140357080950688"}, {"nodeId": "140357102134272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140357081341888": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357081342000": {"type": "Union", "content": {"items": [{"nodeId": "140357080950464"}, {"nodeId": "N"}]}}, "140357080950464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097698784"}], "returnType": {"nodeId": "140357097699840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357080950688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357118977952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699488"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357081342224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140357081342224": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357118978400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699488"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357081342448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357081342448": {"type": "Tuple", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}]}}, "140357118978848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699488"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357118979296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699488"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357118979744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097699488"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140357110146048": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140357110146048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140357110146048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118982208"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118982656"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357118983104"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140357110146048"}], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, ".1.140357110146048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357110146048", "variance": "INVARIANT"}}, "140357118982208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110146048", "args": [{"nodeId": ".1.140357110146048"}]}, {"nodeId": "140357085253856"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085253968"}, {"nodeId": "140357085254080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140357085253856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085253968": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110146048"}, {"nodeId": "N"}]}}, "140357085254080": {"type": "Union", "content": {"items": [{"nodeId": ".1.140357110146048"}, {"nodeId": "N"}]}}, "140357118982656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110146048", "args": [{"nodeId": ".1.140357110146048"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357118983104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140357110143936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140357110146400": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357110146752": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357101923328"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089709408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089527392"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357110146400"}], "isAbstract": false}}, "140357101923328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110146752"}, {"nodeId": "140357085439120"}, {"nodeId": "140357185928384"}, {"nodeId": "140357085439232"}, {"nodeId": "140357085439344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140357085439120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085439232": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357085439344": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357089709408": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357089527392": {"type": "Union", "content": {"items": [{"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357110147104": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357101923776"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357110146400"}], "isAbstract": false}}, "140357101923776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110147104"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085439456"}, {"nodeId": "140357085439568"}, {"nodeId": "140357085439680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140357085439456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089526496"}}}, "140357085439568": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357085439680": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357097696320": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097792320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097792768"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140357097792320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097696320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357097792768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097696320"}, {"nodeId": "140357098128128"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357097696672": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097794560"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357038953792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097796352"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097796800"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097798144"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357097799040"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357038958048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105959424"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105959872"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105960320"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140357081120016"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357097697024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "A"}, {"nodeId": "140357097697024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140357098321728"}], "isAbstract": false}}, "140357097794560": {"type": "Function", "content": {"typeVars": [".-1.140357097794560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, {"nodeId": "140357097696320"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140357097794560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140357097794560": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357097794560", "variance": "INVARIANT"}}, "140357038953792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098129888", "args": [{"nodeId": "140357185927328"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140357097696320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140357097796352": {"type": "Function", "content": {"typeVars": [".-1.140357097796352"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".-1.140357097796352"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140357097796352": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357097796352", "variance": "INVARIANT"}}, "140357097796800": {"type": "Function", "content": {"typeVars": [".-1.140357097796800"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140357185921344", "args": [{"nodeId": ".-1.140357097796800"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140357097796800": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357097796800", "variance": "INVARIANT"}}, "140357097798144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185916416"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357097799040": {"type": "Function", "content": {"typeVars": [".-1.140357097799040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".-1.140357097799040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140357097799040": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357097799040", "variance": "INVARIANT"}}, "140357038958048": {"type": "Function", "content": {"typeVars": [".-1.140357038958048"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140357110137600", "args": [{"nodeId": "140357098128128"}, {"nodeId": ".-1.140357038958048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140357038958048": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357038958048", "variance": "INVARIANT"}}, "140357105959424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097696672"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357105959872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097696672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105960320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097696672"}], "returnType": {"nodeId": "140357098130240", "args": [{"nodeId": "140357098128128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357081120016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140357105960768"}, {"nodeId": "140357105961664"}]}}, "140357105960768": {"type": "Function", "content": {"typeVars": [".-1.140357105960768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140357105960768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140357105960768": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140357185916416"}, "def": "140357105960768", "variance": "INVARIANT"}}, "140357105961664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097696672"}, {"nodeId": "140357098128128"}, {"nodeId": "140357081338528"}, {"nodeId": "140357081338640"}, {"nodeId": "140357081338752"}, {"nodeId": "140357081338864"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140357081338528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357097559472"}}}, "140357097559472": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357185920992", "args": [{"nodeId": "140357097561376"}]}]}, {"nodeId": "140357185926272", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}]}}, "140357097561376": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}}, "140357081338640": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081338752": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357081338864": {"type": "Union", "content": {"items": [{"nodeId": "140357185927328"}, {"nodeId": "N"}]}}, "140357097697376": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357038962752"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357105966592"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140357185928032"}, {"nodeId": "140357097697024"}], "isAbstract": false}}, "140357038962752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357097697376"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357105966592": {"type": "Function", "content": {"typeVars": [".0.140357105966592"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": ".0.140357105966592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140357105966592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357097697376"}, "def": "140357105966592", "variance": "INVARIANT"}}, "140357110149216": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110217440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110217552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106033920"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357110217440": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357110217552": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357106033920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110149216"}, {"nodeId": "140357098128128"}, {"nodeId": "140357085510480"}, {"nodeId": "140357085510144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140357085510480": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "140357098128480"}, {"nodeId": "N"}]}}, "140357085510144": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357110149568": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106034368"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140357185928032"}], "isAbstract": false}}, "140357106034368": {"type": "Function", "content": {"typeVars": [".0.140357106034368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140357185928032"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": ".0.140357106034368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140357106034368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140357110149568"}, "def": "140357106034368", "variance": "INVARIANT"}}, "140357110893024": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357106035712"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357106035712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110893024"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357110147808": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140357098136224"}], "isAbstract": false}}, "140357110148160": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110212736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089710528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357060687712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114997312"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114997760"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114998208"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114998656"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357110212736": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357089710528": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357060687712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148160"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357114997312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148160"}, {"nodeId": "140357085507680"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140357085507680": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114997760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148160"}, {"nodeId": "140357185928032"}, {"nodeId": "140357110148512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140357110148512": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130240", "args": [{"nodeId": "140357089713216"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089650928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357110148160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114999104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115000000"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115000448"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115000896"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115001344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115001792"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357115002240"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114609728"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114610176"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357089713216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714448"}}}, "140357089714448": {"type": "Tuple", "content": {"items": [{"nodeId": "140357110149568"}, {"nodeId": "140357089713328"}]}}, "140357089713328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714224"}}}, "140357089714224": {"type": "Union", "content": {"items": [{"nodeId": "140357089712432"}, {"nodeId": "140357089712992"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357110148512"}]}, {"nodeId": "140357089713888"}, {"nodeId": "140357089714112"}]}}, "140357089712432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357098130240", "args": [{"nodeId": "140357110214528"}]}}}, "140357110214528": {"type": "Tuple", "content": {"items": [{"nodeId": "140357110149568"}, {"nodeId": "140357185928032"}]}}, "140357089712992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089528512"}}}, "140357089528512": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140357098130240", "args": [{"nodeId": "140357110148512"}]}]}}, "140357089713888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089528400"}}}, "140357089528400": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357110148512"}, {"nodeId": "140357110148512"}]}}, "140357089714112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089709296"}}}, "140357089709296": {"type": "Tuple", "content": {"items": [{"nodeId": "140357110213184"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}, {"nodeId": "140357110148512"}]}}, "140357110213184": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357089650928": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "N"}]}}, "140357114999104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357110148160"}, {"nodeId": "140357085507904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140357085507904": {"type": "Union", "content": {"items": [{"nodeId": "140357098130240", "args": [{"nodeId": "140357085507792"}]}, {"nodeId": "N"}]}}, "140357085507792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714448"}}}, "140357115000000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140357115000448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140357115000896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357085508128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357085508128": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098129536"}]}}, "140357115001344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357085508240"}], "returnType": {"nodeId": "140357085508464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140357085508240": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098129536"}]}}, "140357085508464": {"type": "Union", "content": {"items": [{"nodeId": "140357110148512"}, {"nodeId": "140357085508016"}]}}, "140357085508016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714448"}}}, "140357115001792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357085508576"}, {"nodeId": "140357085508688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140357085508576": {"type": "Union", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357098129536"}]}}, "140357085508688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714448"}}}, "140357115002240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357185928032"}, {"nodeId": "140357085508912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140357085508912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714448"}}}, "140357114609728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}, {"nodeId": "140357085506560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140357085506560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140357089714448"}}}, "140357114610176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148512"}], "returnType": {"nodeId": "140357085509248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085509248": {"type": "Tuple", "content": {"items": [{"nodeId": "140357185928032"}, {"nodeId": "140357185928032"}]}}, "140357114998208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148160"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140357114998656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148160"}, {"nodeId": "140357185928032"}, {"nodeId": "140357110148864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140357110148864": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185917120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357185928032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357089714560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114610624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114611072"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114611520"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114611968"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114612416"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140357060683008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114613760"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114614208"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140357114614656"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140357185916416"}], "isAbstract": false}}, "140357089714560": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114610624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140357114611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357185917120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140357114611520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}], "returnType": {"nodeId": "140357085509360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357085509360": {"type": "Union", "content": {"items": [{"nodeId": "140357098128128"}, {"nodeId": "N"}]}}, "140357114611968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}, {"nodeId": "140357185928032"}, {"nodeId": "140357185920992", "args": [{"nodeId": "140357098128128"}]}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140357114612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}, {"nodeId": "140357098128128"}, {"nodeId": "140357098128128"}], "returnType": {"nodeId": "140357098128128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140357060683008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357114613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}], "returnType": {"nodeId": "140357185928032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140357114614208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140357114614656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140357110148864"}, {"nodeId": "140357098128128"}, {"nodeId": "140357185928032"}], "returnType": {"nodeId": "140357110149216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140357013860224": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "140357097691744"}, "argKinds": [], "argNames": []}}}, "exprTypes": {"import_test": [{"startOffset": 105, "endOffset": 134, "line": 6, "type": {"nodeId": "140357013860224"}}]}, "definitions": {"import_test": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098128128"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140357098130592", "args": [{"nodeId": "140357098128128"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "A": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089506432"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097691392"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089498688"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089499040"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089499392"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097691744"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089499744"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089500096"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089500448"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089500800"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097692448"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098480992"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098481344"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098481696"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098482048"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098322784"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105993504"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105993856"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105994208"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098482400"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098482752"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098483104"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098483456"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098323136"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098483808"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185916416"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185917120"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185917472"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185927328"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185927680"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185928032"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185928384"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185928736"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098127424"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098127776"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098128128"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098128480"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098128832"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098129184"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098129536"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098129888"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098130240"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098130592"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098478528"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098478880"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098479232"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098130944"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098131296"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098131648"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089325504"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098132000"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098479584"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098132352"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098479936"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089325856"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098132704"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098133056"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098133408"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098480288"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098133760"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098134112"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089326208"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098480640"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098134464"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098134816"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098135168"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098135520"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098135872"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098136224"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098136576"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098136928"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098137280"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098137632"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098137984"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098138336"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098138688"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098139040"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098139392"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098139744"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098140096"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098140448"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098140800"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098141152"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098141504"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098141856"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098142208"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098142560"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098142912"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098143264"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098307648"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098308000"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098308352"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098308704"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098309056"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098309408"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098309760"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098310112"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098310464"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098310816"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098311168"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098311520"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098311872"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098312224"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098312576"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098312928"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098313280"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098313632"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098313984"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098314336"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098314688"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098315040"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098315392"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098315744"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098316096"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098316448"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098316800"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098317152"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098317504"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098317856"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098318208"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098318560"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098318912"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098319264"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098319616"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098319968"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098320320"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098320672"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098321024"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098321376"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097692096"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097692448"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097692800"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097693152"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097693504"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097693856"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097694208"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097694560"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097694912"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097695264"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097695616"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097695968"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097687872"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097688576"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097689280"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097689632"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097689984"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089506080"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097690336"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097690688"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089497632"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089498336"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097691040"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110144992"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089327616"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089327968"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089328320"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110145344"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089328672"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089493056"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089493408"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110145696"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089493760"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098487328"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110136896"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110137248"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110137600"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110137952"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110138304"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110138656"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110139008"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110139360"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110139712"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110140064"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110140416"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110140768"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110141120"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110141472"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110141824"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110142176"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110142528"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110142880"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110143232"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110143584"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110143936"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110144288"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110144640"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105998784"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105999136"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105999488"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105999840"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106000192"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106000544"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106000896"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106001248"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106001600"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106001952"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106002304"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106002656"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106003008"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106003360"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106003712"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106004064"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106004416"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106004768"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106005120"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106005472"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106005824"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106006176"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106006528"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106006880"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106007232"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357106007584"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110890560"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110890912"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110891264"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110891616"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110891968"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110892320"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110892672"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098485920"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185917824"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185918176"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185918528"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185918880"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185919232"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185919584"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185919936"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098323488"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098471488"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098471840"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098472192"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098472544"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098472896"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185920288"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185920640"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098473248"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098473600"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185920992"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185921344"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185921696"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185922048"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185922400"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185922752"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098473952"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185923104"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185923456"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185923808"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185924160"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185924512"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185924864"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185925216"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185925568"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185925920"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098474304"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098474656"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098475008"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098475360"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185926272"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185926624"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098475712"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098476064"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098476416"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098476768"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098477120"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357185926976"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098477472"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098477824"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098478176"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098484160"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098484512"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098484864"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098485216"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098485568"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098485920"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098486272"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098486624"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098486976"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110893376"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110893728"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110894080"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110894432"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110894784"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110895136"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110895488"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110895840"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110896192"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110896544"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110896896"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110897248"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110897600"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110897952"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110898304"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110898656"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110899008"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110899360"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110899712"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110900064"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110900416"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110900768"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110901120"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110901472"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110901824"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110902176"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110902528"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110902880"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110903232"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110903584"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110903936"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110904288"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110904640"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110904992"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110905344"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110905696"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110906048"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110906400"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089214528"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089214880"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089215232"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089215584"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089215936"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089216288"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089216640"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089216992"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089217344"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089217696"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089218048"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089218400"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089218752"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089219104"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089219456"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089219808"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089220160"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089220512"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089220864"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089221216"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089221568"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089221920"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089222272"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089222624"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089222976"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089223328"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089223680"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089224032"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089224384"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089224736"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089225088"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089225440"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089225792"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089226144"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089226496"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089226848"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089227200"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089227552"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089227904"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089228256"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089228608"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089228960"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089229312"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089229664"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089230016"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089230368"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089312832"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089313184"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089313536"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089313888"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089314240"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089314592"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089314944"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089315296"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089315648"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089316000"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089316352"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089316704"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089317056"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089317408"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089317760"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089318112"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089318464"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089318816"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089319168"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089319520"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089319872"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089320224"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089320576"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089320928"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089321280"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089321632"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089321984"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089322336"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089322688"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089323040"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089323392"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089323744"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089324096"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089324448"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110151328"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110151680"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110152032"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110152384"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110152736"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097685056"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097685408"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097685760"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097686112"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097686464"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097686816"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097687168"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097687520"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089505728"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098321728"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098322080"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357098322432"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097687872"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097688224"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097699840"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097700192"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097700544"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089503616"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089503968"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089504320"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089504672"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089505024"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089505376"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110150624"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089326560"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089494464"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110150976"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089494816"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089495168"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089495520"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089495872"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089496224"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089496576"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089496928"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089497280"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110149920"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110150272"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089494112"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102134976"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102135328"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102135680"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102136032"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102136384"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102136736"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102137088"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102137440"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102137792"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102138144"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102138496"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102138848"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102139200"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102139552"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102139904"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102140256"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102140608"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102140960"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105991744"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105992096"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105992448"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105992800"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105993152"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105994560"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105994912"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089501152"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105995264"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105995616"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105995968"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105996320"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105996672"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105997024"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089501504"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105997376"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105997728"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105998080"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089501856"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089502208"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089502560"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089502912"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357089503264"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357105998432"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097699840"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097698784"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102134624"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102134272"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102125120"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102125472"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102125824"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102126176"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102126528"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102126880"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102127232"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102127584"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102127936"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102128288"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102128640"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102128992"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102129344"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102129696"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102130048"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102130400"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102130752"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102131104"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102131456"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102131808"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102132160"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102132512"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102132864"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102133216"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102133568"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357102133920"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097698784"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097699136"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097699488"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110146048"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110146400"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110146752"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110147104"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110147456"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097696320"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097696672"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097697024"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097697376"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097697728"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097698080"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097698432"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110149216"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110149568"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110893024"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357097700896"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110147808"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110148160"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110148512"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140357110148864"}}}}}, "names": {"import_test": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "im", "kind": "Module", "fullname": "importlib.machinery"}, {"name": "c", "kind": "Module", "fullname": "collections"}, {"name": "deque", "kind": "ImportedType", "fullname": "collections.deque"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "A", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}]}} \ No newline at end of file +{"nodeStorage": {"139809250722560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229986320"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309317760"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309318208"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309318656"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309319104"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309319552"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309320000"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309320448"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309321344"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309321792"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309322240"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309322688"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309323136"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309323584"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309324032"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309324480"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309324928"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309325376"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309325824"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309326272"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309326720"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309442112"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309442560"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309443008"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309443456"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309443904"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309444352"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309444800"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309445248"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309445696"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309446144"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309446592"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309447040"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309447488"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309447936"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309448384"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309448832"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309449280"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309449728"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309450176"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309450624"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309451072"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309451520"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309451968"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309452416"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309452864"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309453312"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229986544"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309455104"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309455552"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309456000"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309456448"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309456896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309457344"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309457792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309573184"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309573632"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309574080"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309574528"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309574976"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309575424"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309575872"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309576320"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809229986320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309316864"}, {"nodeId": "139809309317312"}]}}, "139809309316864": {"type": "Function", "content": {"typeVars": [".0.139809309316864"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809309316864"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "139809338527232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250865024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229437776"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175292160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330759040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330759488"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330759936"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330760384"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330760832"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330761280"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330761728"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330762176"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330762624"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330763072"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330763520"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330763968"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330764416"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330764864"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330766208"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330766656"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809175291488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "139809250865024": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "139809250725024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074928"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305318272"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305318720"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305319168"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305319616"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305320064"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225075376"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225076160"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225076496"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305323200"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305323648"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305324096"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305324544"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305324992"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305325440"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305325888"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305326336"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305326784"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225076832"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "isAbstract": false}}, ".1.139809250725024": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250725024", "variance": "INVARIANT"}}, ".2.139809250725024": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250725024", "variance": "INVARIANT"}}, "139809225074928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305314688"}, {"nodeId": "139809305315136"}, {"nodeId": "139809305315584"}, {"nodeId": "139809305316032"}, {"nodeId": "139809305316480"}, {"nodeId": "139809305316928"}, {"nodeId": "139809305317376"}, {"nodeId": "139809305317824"}]}}, "139809305314688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305315136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809305315584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262990816": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317302816"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317303264"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809262990816"}, {"nodeId": ".2.139809262990816"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.139809262990816": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990816", "variance": "INVARIANT"}}, ".2.139809262990816": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990816", "variance": "COVARIANT"}}, "139809317302816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809262990816"}, {"nodeId": ".2.139809262990816"}]}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809262990816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338531808": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221185536"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338531808"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__iter__"]}}, ".1.139809338531808": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338531808", "variance": "COVARIANT"}}, "139809221185536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338531808"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338531808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338532160": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221189120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297039648"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139809338532160"}], "bases": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338532160"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.139809338532160": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532160", "variance": "COVARIANT"}}, "139809221189120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532160"}]}], "returnType": {"nodeId": ".1.139809338532160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297039648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532160"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "139809317303264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809262990816"}, {"nodeId": ".2.139809262990816"}]}, {"nodeId": ".1.139809262990816"}], "returnType": {"nodeId": ".2.139809262990816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305316032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809305316480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225075824"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225075824": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}}, "139809305316928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225076048"}]}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809225076048": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250725024"}]}}, "139809305317376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250724672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225073136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305153536"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305153984"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305154432"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305154880"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305155328"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305155776"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305156224"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305156672"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225073248"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305158016"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305158464"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074368"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074480"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305160704"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225074704"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305162048"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305162496"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305162944"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305163392"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305163840"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305164288"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305164736"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305165184"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305313344"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305313792"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305314240"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809250724672"}], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809250724672"}]}], "isAbstract": false}}, ".1.139809250724672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250724672", "variance": "INVARIANT"}}, "139809225073136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305152640"}, {"nodeId": "139809305153088"}]}}, "139809305152640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305153088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305153536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305153984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305154432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305154880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809250724672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809251079296": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809225809856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__index__"]}}, "139809225809856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338538848": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229733472"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322199168"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174968960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174969632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174968064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174967840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322201408"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322201856"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322202304"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322203648"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179274144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308950592"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308951040"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308951488"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308951936"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308952384"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308952832"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308953280"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308953728"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308954176"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308954624"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308955072"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308955520"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308955968"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308956416"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229980496"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308959552"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308960000"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308960448"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308960896"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308961344"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308961792"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308962240"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308962688"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308963136"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308963584"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308964032"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308964480"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308964928"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308965376"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308965824"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809308966272"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309098048"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309098496"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309098944"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309099392"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309099840"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309100288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309100736"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309101184"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309101632"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309102080"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309102528"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309102976"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309103424"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309103872"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809229733472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322198272"}, {"nodeId": "139809322198720"}]}}, "139809322198272": {"type": "Function", "content": {"typeVars": [".0.139809322198272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229981168"}], "returnType": {"nodeId": ".0.139809322198272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139809229981168": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251065920"}, {"nodeId": "139809251079296"}, {"nodeId": "139809262990112"}]}}, "139809251081408": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296568992"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__buffer__"]}}, "139809296568992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250723616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170722144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170722816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170723936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170724832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170725056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304894976"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304895424"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304895872"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304896320"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225068544"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304897664"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304898112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304898560"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225069552"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304899904"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304901248"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304901696"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304902144"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304902592"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305018432"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305018880"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809170722144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170722816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170723040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809225069216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225069216": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "N"}]}}, "139809250724320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305028288"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305028736"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305029184"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071568"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305030528"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305030976"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305031424"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305031872"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305032320"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225073024"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305033664"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305034112"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305149504"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305149952"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305150400"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809250724320"}], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809250724320"}]}], "isAbstract": false}}, ".1.139809250724320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250724320", "variance": "COVARIANT"}}, "139809305028288": {"type": "Function", "content": {"typeVars": [".0.139809305028288"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": ".0.139809305028288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.139809305028288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "def": "139809305028288", "variance": "INVARIANT"}}, "139809305028736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305029184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338527936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305019328"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225070112"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225070896"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071008"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071120"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071232"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071344"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305025152"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}], "isAbstract": false}}, "139809305019328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139809225070112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305019776"}, {"nodeId": "139809305020224"}]}}, "139809305019776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305020224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225070896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305020672"}, {"nodeId": "139809305021120"}]}}, "139809305020672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305021120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305021568"}, {"nodeId": "139809305022016"}]}}, "139809305021568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305022016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305022464"}, {"nodeId": "139809305022912"}]}}, "139809305022464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305022912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071232": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305023360"}, {"nodeId": "139809305023808"}]}}, "139809305023360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305023808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225071344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305024256"}, {"nodeId": "139809305024704"}]}}, "139809305024256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305024704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305025152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809225071792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225071792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809225071568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305029632"}, {"nodeId": "139809305030080"}]}}, "139809305029632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809250724320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305030080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250723968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170837056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170837504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170838624"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225071456"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305027840"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809170837056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170837504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170838624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225071456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305026944"}, {"nodeId": "139809305027392"}]}}, "139809305026944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305027392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305027840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723968"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809225072912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225072912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809305030528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305030976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305031424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305031872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305032320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225073024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305032768"}, {"nodeId": "139809305033216"}]}}, "139809305032768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305033216": {"type": "Function", "content": {"typeVars": [".-1.139809305033216"], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": ".-1.139809305033216"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809225073360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305033216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305033216", "variance": "INVARIANT"}}, "139809225073360": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250724320"}, {"nodeId": ".-1.139809305033216"}]}}, "139809305033664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305034112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305149504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305149952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724320", "args": [{"nodeId": ".1.139809250724320"}]}, {"nodeId": "A"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305150400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809262738368": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217278272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217278720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217278944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317485728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317486176"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317291168"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217278272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338538144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174974784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174974336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174974112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174973216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174973440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174973664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174972768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174972544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809174972320"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229438112"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229729888"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322193344"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322193792"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322194240"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322194688"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322195136"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174972096"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322196032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809322196480"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809174974784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174974336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174974112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262732032": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313535392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313535840"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313536288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313536736"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313537184"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313537632"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317798176"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317798624"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317799072"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317799520"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317799968"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317800416"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317800864"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "isAbstract": false}}, ".1.139809262732032": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262732032", "variance": "INVARIANT"}}, ".2.139809262732032": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262732032", "variance": "COVARIANT"}}, "139809313535392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809313535840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": ".1.139809262732032"}], "returnType": {"nodeId": ".2.139809262732032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313536288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809313536736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809313537184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313537632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317798176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251069440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292083360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292083808"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292084256"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292084704"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292085152"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292085600"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292086048"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292086496"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292086944"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292087392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292087840"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292088288"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139809251069440"}], "bases": [{"nodeId": "139809251068736"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251069440"}]}], "isAbstract": false}}, ".1.139809251069440": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069440", "variance": "COVARIANT"}}, "139809292083360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809251069440"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809338537088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221506016"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242447456"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292206816"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292207264"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292207712"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292208160"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292208608"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}], "bases": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338537088"}]}], "isAbstract": true}}, ".1.139809338537088": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537088", "variance": "INVARIANT"}}, ".2.139809338537088": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537088", "variance": "COVARIANT"}}, "139809221506016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": ".1.139809338537088"}], "returnType": {"nodeId": ".2.139809338537088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242447456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292090976"}, {"nodeId": "139809292206368"}]}}, "139809292090976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": ".1.139809338537088"}], "returnType": {"nodeId": "139809242682352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242682352": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537088"}, {"nodeId": "N"}]}}, "139809292206368": {"type": "Function", "content": {"typeVars": [".-1.139809292206368"], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": ".1.139809338537088"}, {"nodeId": "139809242682464"}], "returnType": {"nodeId": "139809242682576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139809242682464": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537088"}, {"nodeId": ".-1.139809292206368"}]}}, ".-1.139809292206368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292206368", "variance": "INVARIANT"}}, "139809242682576": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537088"}, {"nodeId": ".-1.139809292206368"}]}}, "139809292206816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}], "returnType": {"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251069088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292077984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292078432"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292078880"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292079328"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292079776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292080224"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292080672"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292081120"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292081568"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292082016"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292082464"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292082912"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}], "bases": [{"nodeId": "139809251068736"}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809250868720"}]}], "isAbstract": false}}, ".1.139809251069088": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069088", "variance": "COVARIANT"}}, ".2.139809251069088": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069088", "variance": "COVARIANT"}}, "139809292077984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809292078432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242679104"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251072960": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225077280"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305329024"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305460800"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305461248"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305461696"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305462144"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305462592"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305463040"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305463488"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305463936"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305464384"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305464832"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305465280"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305465728"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305466176"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305466624"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305467072"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305467520"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305467968"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305468416"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305468864"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305469312"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305469760"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305470208"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305470656"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305471104"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305471552"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305472000"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305472448"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305472896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305473344"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305473792"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251072960"}], "bases": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809251072960"}]}], "isAbstract": false}}, ".1.139809251072960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072960", "variance": "INVARIANT"}}, "139809225077280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305328128"}, {"nodeId": "139809305328576"}]}}, "139809305328128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305328576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305329024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": ".1.139809251072960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305460800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305461248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305461696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305462144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": ".1.139809251072960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305462592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305463040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305463488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305463936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305464384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305464832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": ".1.139809251072960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305465280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305465728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305466176": {"type": "Function", "content": {"typeVars": [".-1.139809305466176"], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305466176"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809225079408"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139809305466176": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305466176", "variance": "INVARIANT"}}, "139809225079408": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": ".-1.139809305466176"}]}}, "139809305466624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305467072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305467520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305467968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305468416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338536384": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221354976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297196512"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297196960"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297197408"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297197856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297198304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297198752"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297199200"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297199648"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297200096"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297200544"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.139809338536384"}], "bases": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338536384"}]}], "isAbstract": true}}, ".1.139809338536384": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338536384", "variance": "COVARIANT"}}, "139809221354976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297196512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297196960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297197408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297197856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297198304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297198752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297199200": {"type": "Function", "content": {"typeVars": [".-1.139809297199200"], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809297199200"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": "139809242677872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809297199200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809297199200", "variance": "INVARIANT"}}, "139809242677872": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809338536384"}, {"nodeId": ".-1.139809297199200"}]}}, "139809297199648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297200096": {"type": "Function", "content": {"typeVars": [".-1.139809297200096"], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809297200096"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": "139809242678096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809297200096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809297200096", "variance": "INVARIANT"}}, "139809242678096": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809338536384"}, {"nodeId": ".-1.139809297200096"}]}}, "139809297200544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536384"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139809338535328": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221348032"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338535328"}], "bases": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338535328"}]}, {"nodeId": "139809338534976", "args": [{"nodeId": ".1.139809338535328"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.139809338535328": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338535328", "variance": "COVARIANT"}}, "139809221348032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338535328"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338534976": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221278880"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338534976"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__contains__"]}}, ".1.139809338534976": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534976", "variance": "COVARIANT"}}, "139809221278880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534976", "args": [{"nodeId": ".1.139809338534976"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305468864": {"type": "Function", "content": {"typeVars": [".0.139809305468864"], "argTypes": [{"nodeId": ".0.139809305468864"}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": ".0.139809305468864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305468864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305468864", "variance": "INVARIANT"}}, "139809305469312": {"type": "Function", "content": {"typeVars": [".-1.139809305469312"], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305469312"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809225079632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305469312": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305469312", "variance": "INVARIANT"}}, "139809225079632": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": ".-1.139809305469312"}]}}, "139809305469760": {"type": "Function", "content": {"typeVars": [".0.139809305469760"], "argTypes": [{"nodeId": ".0.139809305469760"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": ".0.139809305469760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305469760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305469760", "variance": "INVARIANT"}}, "139809305470208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809225079744"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225079744": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": "N"}]}}, "139809305470656": {"type": "Function", "content": {"typeVars": [".0.139809305470656"], "argTypes": [{"nodeId": ".0.139809305470656"}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": ".0.139809305470656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305470656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305470656", "variance": "INVARIANT"}}, "139809305471104": {"type": "Function", "content": {"typeVars": [".-1.139809305471104"], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305471104"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809225079856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305471104": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305471104", "variance": "INVARIANT"}}, "139809225079856": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251072960"}, {"nodeId": ".-1.139809305471104"}]}}, "139809305471552": {"type": "Function", "content": {"typeVars": [".0.139809305471552"], "argTypes": [{"nodeId": ".0.139809305471552"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251072960"}]}], "returnType": {"nodeId": ".0.139809305471552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305471552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, "def": "139809305471552", "variance": "INVARIANT"}}, "139809305472000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305472448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305472896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305473344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251072960"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305473792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809338536736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221356544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221414688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297201888"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297202336"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297202784"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292075296"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292075744"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292076192"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292076640"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.139809338536736"}], "bases": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536736"}]}], "isAbstract": true}}, ".1.139809338536736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338536736", "variance": "INVARIANT"}}, "139809221356544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, {"nodeId": ".1.139809338536736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809221414688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, {"nodeId": ".1.139809338536736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297201888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297202336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": ".1.139809338536736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297202784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, {"nodeId": ".1.139809338536736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809292075296": {"type": "Function", "content": {"typeVars": [".0.139809292075296"], "argTypes": [{"nodeId": ".0.139809292075296"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": ".0.139809292075296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292075296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292075296", "variance": "INVARIANT"}}, "139809292075744": {"type": "Function", "content": {"typeVars": [".0.139809292075744"], "argTypes": [{"nodeId": ".0.139809292075744"}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809292075744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292075744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292075744", "variance": "INVARIANT"}}, "139809292076192": {"type": "Function", "content": {"typeVars": [".0.139809292076192"], "argTypes": [{"nodeId": ".0.139809292076192"}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809338536736"}]}], "returnType": {"nodeId": ".0.139809292076192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292076192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292076192", "variance": "INVARIANT"}}, "139809292076640": {"type": "Function", "content": {"typeVars": [".0.139809292076640"], "argTypes": [{"nodeId": ".0.139809292076640"}, {"nodeId": "139809338536384", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809292076640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292076640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536736", "args": [{"nodeId": ".1.139809338536736"}]}, "def": "139809292076640", "variance": "INVARIANT"}}, "139809242679104": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292078880": {"type": "Function", "content": {"typeVars": [".-1.139809292078880"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292078880"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292078880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292078880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292078880", "variance": "INVARIANT"}}, "139809292079328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292079776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809242679328"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809242679328": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292080224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809242679552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809242679552": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292080672": {"type": "Function", "content": {"typeVars": [".-1.139809292080672"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292080672"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242679888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292080672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292080672", "variance": "INVARIANT"}}, "139809242679888": {"type": "Union", "content": {"items": [{"nodeId": "139809242679776"}, {"nodeId": ".-1.139809292080672"}]}}, "139809242679776": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292081120": {"type": "Function", "content": {"typeVars": [".-1.139809292081120"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292081120"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242680224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292081120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292081120", "variance": "INVARIANT"}}, "139809242680224": {"type": "Union", "content": {"items": [{"nodeId": "139809242680112"}, {"nodeId": ".-1.139809292081120"}]}}, "139809242680112": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292081568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242680560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242680560": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292082016": {"type": "Function", "content": {"typeVars": [".-1.139809292082016"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292082016"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292082016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292082016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292082016", "variance": "INVARIANT"}}, "139809292082464": {"type": "Function", "content": {"typeVars": [".-1.139809292082464"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292082464"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242680896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292082464": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292082464", "variance": "INVARIANT"}}, "139809242680896": {"type": "Union", "content": {"items": [{"nodeId": "139809242680784"}, {"nodeId": ".-1.139809292082464"}]}}, "139809242680784": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292082912": {"type": "Function", "content": {"typeVars": [".-1.139809292082912"], "argTypes": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292082912"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292082912": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292082912", "variance": "INVARIANT"}}, "139809242681232": {"type": "Union", "content": {"items": [{"nodeId": "139809242681120"}, {"nodeId": ".-1.139809292082912"}]}}, "139809242681120": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809251068736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292077088"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292077536"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "139809251067680"}], "isAbstract": false}}, "139809292077088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251068736"}, {"nodeId": "139809338537088", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809292077536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251068736"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251067680": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221183296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__len__"]}}, "139809221183296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251067680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250868720": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251069088"}, {"nodeId": ".2.139809251069088"}]}}, "139809292207264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}], "returnType": {"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809338537088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292207712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}], "returnType": {"nodeId": "139809251069792", "args": [{"nodeId": ".2.139809338537088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251069792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292088736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292089184"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292089632"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292090080"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251069792"}], "bases": [{"nodeId": "139809251068736"}, {"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809251069792"}]}], "isAbstract": false}}, ".1.139809251069792": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251069792", "variance": "COVARIANT"}}, "139809292088736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": "A"}, {"nodeId": ".1.139809251069792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809292089184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292089632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292090080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809251069792"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292208160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292208608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537088"}, {"nodeId": ".2.139809338537088"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292083808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292084256": {"type": "Function", "content": {"typeVars": [".-1.139809292084256"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292084256"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292084256"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292084256": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292084256", "variance": "INVARIANT"}}, "139809292084704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292085152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292085600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809292086048": {"type": "Function", "content": {"typeVars": [".-1.139809292086048"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292086048"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681568"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292086048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292086048", "variance": "INVARIANT"}}, "139809242681568": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292086048"}]}}, "139809292086496": {"type": "Function", "content": {"typeVars": [".-1.139809292086496"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292086496"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292086496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292086496", "variance": "INVARIANT"}}, "139809242681680": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292086496"}]}}, "139809292086944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".1.139809251069440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292087392": {"type": "Function", "content": {"typeVars": [".-1.139809292087392"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292087392"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": ".-1.139809292087392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292087392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292087392", "variance": "INVARIANT"}}, "139809292087840": {"type": "Function", "content": {"typeVars": [".-1.139809292087840"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292087840"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242681904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292087840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292087840", "variance": "INVARIANT"}}, "139809242681904": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292087840"}]}}, "139809292088288": {"type": "Function", "content": {"typeVars": [".-1.139809292088288"], "argTypes": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251069440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809292088288"}]}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809242682016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809292088288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292088288", "variance": "INVARIANT"}}, "139809242682016": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251069440"}, {"nodeId": ".-1.139809292088288"}]}}, "139809317798624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809251069792", "args": [{"nodeId": ".2.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317799072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317799520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809317799968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262732032"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809317800416": {"type": "Function", "content": {"typeVars": [".-1.139809317800416", ".-2.139809317800416"], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809317800416"}, {"nodeId": ".-2.139809317800416"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809242690864"}, {"nodeId": "139809242690976"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809317800416": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800416", "variance": "INVARIANT"}}, ".-2.139809317800416": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800416", "variance": "INVARIANT"}}, "139809242690864": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".-1.139809317800416"}]}}, "139809242690976": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809262732032"}, {"nodeId": ".-2.139809317800416"}]}}, "139809317800864": {"type": "Function", "content": {"typeVars": [".-1.139809317800864", ".-2.139809317800864"], "argTypes": [{"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".2.139809262732032"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809317800864"}, {"nodeId": ".-2.139809317800864"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809242691088"}, {"nodeId": "139809242691200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809317800864": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800864", "variance": "INVARIANT"}}, ".-2.139809317800864": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317800864", "variance": "INVARIANT"}}, "139809242691088": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262732032"}, {"nodeId": ".-1.139809317800864"}]}}, "139809242691200": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809262732032"}, {"nodeId": ".-2.139809317800864"}]}}, "139809174973216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174973440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174973664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174972768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174972544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809229733024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229733024": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809174972320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229438112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322191552"}, {"nodeId": "139809322192000"}]}}, "139809322191552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809322192000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "139809229729888": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322192448"}, {"nodeId": "139809322192896"}]}}, "139809322192448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809322192896": {"type": "Function", "content": {"typeVars": [".-1.139809322192896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139809322192896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.139809322192896": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809322192896", "variance": "INVARIANT"}}, "139809322193344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139809322193792": {"type": "Function", "content": {"typeVars": [".-1.139809322193792"], "argTypes": [{"nodeId": ".-1.139809322193792"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".-1.139809322193792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139809322193792": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809322193792", "variance": "INVARIANT"}}, "139809322194240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809338538144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322194688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809322195136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809174972096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "139809322196032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262739072": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217347648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317292512"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317292960"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739072"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317292512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739072"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739072"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809322196480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262739072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809217278720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217278944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317485728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}, {"nodeId": "139809338538144"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "139809317486176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317291168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738368"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338535680": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242446000"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297187552"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297188000"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297188448"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297188896"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297189344"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809338535680"}], "bases": [{"nodeId": "139809338535328", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809338535680"}]}], "isAbstract": true}}, ".1.139809338535680": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338535680", "variance": "COVARIANT"}}, "139809242446000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297055328"}, {"nodeId": "139809297187104"}]}}, "139809297055328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338535680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297187104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297187552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "A"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "139809297188000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297188448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297188896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338535680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809297189344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338535680"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338535680"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338532512": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221191808"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338532512"}], "bases": [{"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338532512"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.139809338532512": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532512", "variance": "COVARIANT"}}, "139809221191808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809338532512"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532512"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809170723264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809225069328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225069328": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "N"}]}}, "139809170723488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809225069440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225069440": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "N"}]}}, "139809170723712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170723936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809251081408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170724832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170725056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304894976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139809304895424": {"type": "Function", "content": {"typeVars": [".0.139809304895424"], "argTypes": [{"nodeId": ".0.139809304895424"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809304895424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723616"}, "def": "139809304895424", "variance": "INVARIANT"}}, "139809304895872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809225069664"}, {"nodeId": "139809225069776"}, {"nodeId": "139809225069888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809225069664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809225069776": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809250729248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266823936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242266896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266825280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301228096"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301228544"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301228992"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809266823936": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809242266896": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809266825280": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262736960": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317470944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266818896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217267744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217267968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217268192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317470944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}, {"nodeId": "139809237735056"}, {"nodeId": "139809262737312"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "139809237735056": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262737312": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217269760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217270880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217271104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217271328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809283959584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317475872"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217269760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809237735168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237735168": {"type": "Union", "content": {"items": [{"nodeId": "139809262737312"}, {"nodeId": "N"}]}}, "139809217270208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217270432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262731680": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216803136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216803808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216804928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216805824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216806048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216806272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216806496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216921664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216921888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216922112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216922784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313530464"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313532704"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313534496"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809216803136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216803808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216804928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216805152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250722912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229987328"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309578112"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309578560"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309579008"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309579456"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309579904"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309580352"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309581248"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309581696"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309582592"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309583040"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309583488"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309583936"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309584384"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309584832"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309585280"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309585728"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309586176"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309586624"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309587072"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309587520"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309587968"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309588416"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309588864"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309737024"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309737472"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309737920"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309738368"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309738816"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309739264"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309739712"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309740160"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309740608"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309741056"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309741504"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309741952"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309742400"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309742848"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309743296"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309743744"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309744192"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170405216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170404320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309745536"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309745984"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229990240"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309747328"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309747776"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309748224"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309748672"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309749120"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309749568"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309750016"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309750464"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309750912"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309751360"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309751808"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309752256"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304608832"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809229987328": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309576768"}, {"nodeId": "139809309577216"}, {"nodeId": "139809309577664"}]}}, "139809309576768": {"type": "Function", "content": {"typeVars": [".0.139809309576768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229991360"}], "returnType": {"nodeId": ".0.139809309576768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809229991360": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809251079296"}, {"nodeId": "139809251066976"}, {"nodeId": "139809251081408"}]}}, "139809251066976": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221091712"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__bytes__"]}}, "139809221091712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251066976"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809309576768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809309576768", "variance": "INVARIANT"}}, "139809309577216": {"type": "Function", "content": {"typeVars": [".0.139809309577216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809309577216"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.139809309577216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809309577216", "variance": "INVARIANT"}}, "139809309577664": {"type": "Function", "content": {"typeVars": [".0.139809309577664"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809309577664"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809309577664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809309577664", "variance": "INVARIANT"}}, "139809309578112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309578560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309579008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229991472"}, {"nodeId": "139809229991584"}, {"nodeId": "139809229991696"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229991472": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229991584": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229991696": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309579456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809309579904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229991808"}, {"nodeId": "139809229991920"}, {"nodeId": "139809229992032"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229991808": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809229991920": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229992032": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309580352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139809309581248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229992144"}, {"nodeId": "139809229992256"}, {"nodeId": "139809229992368"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229992144": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229992256": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229992368": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309581696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229992480"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139809229992480": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}]}}, "139809309582592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229992592"}, {"nodeId": "139809229992704"}, {"nodeId": "139809229992816"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229992592": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229992704": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229992816": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309583040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309583488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309583936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309584384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309584832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309585280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309585728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309586176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309586624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309587072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}, {"nodeId": "139809229992928"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809229992928": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809250723264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229991248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304610624"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304611072"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304611520"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304611968"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304612416"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304612864"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304613312"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304613760"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304614656"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304615104"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304615552"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304616448"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304616896"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304617344"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304617792"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304618240"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304618688"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304619136"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304619584"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304620032"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304620480"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304620928"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304621376"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304621824"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304622272"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304622720"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304623168"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304623616"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304624064"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304624512"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304739904"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304740352"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304740800"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304741248"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304741696"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304742144"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304742592"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304743040"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304743488"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304743936"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304744384"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304744832"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304745280"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304745728"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304746176"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304746624"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170578944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809170577824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304747968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304748416"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229995280"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225068432"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304750656"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304751104"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304751552"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304752000"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304752448"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304752896"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304753344"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304753792"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304754240"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304754688"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304755136"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304755584"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304887360"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304887808"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304888256"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304888704"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809304889152"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809229991248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304609280"}, {"nodeId": "139809304609728"}, {"nodeId": "139809304610176"}]}}, "139809304609280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304609728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225064512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225064512": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809251079296"}, {"nodeId": "139809251081408"}]}}, "139809304610176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "139809304610624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304611520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809304611968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225064624"}, {"nodeId": "139809225064736"}, {"nodeId": "139809225064848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225064624": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225064736": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225064848": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304612864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809304613312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225064960"}, {"nodeId": "139809225065072"}, {"nodeId": "139809225065184"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225064960": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809225065072": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225065184": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139809304614656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304615104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225065296"}, {"nodeId": "139809225065408"}, {"nodeId": "139809225065520"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225065296": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225065408": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225065520": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304615552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225065632"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139809225065632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}]}}, "139809304616448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225065744"}, {"nodeId": "139809225065856"}, {"nodeId": "139809225065968"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225065744": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225065856": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225065968": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304616896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809304617344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304617792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304618240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304618688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304619136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304619584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304620032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304620480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304620928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304621376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809225066080"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225066080": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809304621824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304622272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225066192"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809225066192": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304622720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809225066416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225066416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}]}}, "139809304623168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809304623616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304624064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304624512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304739904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809304740352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225066528"}, {"nodeId": "139809225066640"}, {"nodeId": "139809225066752"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225066528": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225066640": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225066752": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304740800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225066864"}, {"nodeId": "139809225066976"}, {"nodeId": "139809225067088"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225066864": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809225066976": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225067088": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304741248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809225067200"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225067200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809304741696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809225067424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225067424": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250723264"}]}}, "139809304742144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067536"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250723264"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809225067536": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304742592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067648"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809225067648": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304743040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067760"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250723264"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809225067760": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304743488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250723264"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809304743936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225067872"}, {"nodeId": "139809225067984"}, {"nodeId": "139809225068096"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809225067872": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809225067984": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809225068096": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809304744384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225068208"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809225068208": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304744832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304745280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304745728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225068320"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139809225068320": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809304746176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304746624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809170578944": {"type": "Function", "content": {"typeVars": [".0.139809170578944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809170578944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809170578944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723264"}, "def": "139809170578944", "variance": "INVARIANT"}}, "139809170577824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304747968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809304748416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229995280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304748864"}, {"nodeId": "139809304749312"}]}}, "139809304748864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304749312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225068432": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304749760"}, {"nodeId": "139809304750208"}]}}, "139809304749760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809304750208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723968"}, {"nodeId": "139809225068768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809225068768": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809250722912"}]}}, "139809304750656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225068880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225068880": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809304751104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304751552": {"type": "Function", "content": {"typeVars": [".0.139809304751552"], "argTypes": [{"nodeId": ".0.139809304751552"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": ".0.139809304751552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809304751552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723264"}, "def": "139809304751552", "variance": "INVARIANT"}}, "139809304752000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304752448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250723264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304752896": {"type": "Function", "content": {"typeVars": [".0.139809304752896"], "argTypes": [{"nodeId": ".0.139809304752896"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".0.139809304752896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809304752896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250723264"}, "def": "139809304752896", "variance": "INVARIANT"}}, "139809304753344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304753792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809225069104"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225069104": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809251081408"}]}}, "139809304754240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304754688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304755136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304755584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304887360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304887808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304888256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304888704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809304889152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723264"}, {"nodeId": "139809250723616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809338536032": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221352288"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242446448"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242447008"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242447344"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297192928"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297193376"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297193824"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297194272"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297194720"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297195168"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297195616"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.139809338536032"}], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": ".1.139809338536032"}]}], "isAbstract": true}}, ".1.139809338536032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338536032", "variance": "INVARIANT"}}, "139809221352288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "139809242446448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297190240"}, {"nodeId": "139809297190688"}]}}, "139809297190240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338536032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297190688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242447008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297191136"}, {"nodeId": "139809297191584"}]}}, "139809297191136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809297191584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809250723968"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809242447344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297192032"}, {"nodeId": "139809297192480"}]}}, "139809297192032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297192480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809297192928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297193376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297193824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "139809297194272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297194720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338536032"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "139809297195168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, {"nodeId": ".1.139809338536032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139809297195616": {"type": "Function", "content": {"typeVars": [".0.139809297195616"], "argTypes": [{"nodeId": ".0.139809297195616"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809338536032"}]}], "returnType": {"nodeId": ".0.139809297195616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809297195616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809338536032"}]}, "def": "139809297195616", "variance": "INVARIANT"}}, "139809309587520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309587968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229993040"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229993040": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309588416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809229993264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229993264": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}}, "139809309588864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809309737024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309737472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309737920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229993376"}, {"nodeId": "139809229993488"}, {"nodeId": "139809229993600"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229993376": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229993488": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229993600": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309738368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229993712"}, {"nodeId": "139809229993824"}, {"nodeId": "139809229993936"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229993712": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809251079296"}]}}, "139809229993824": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229993936": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309738816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}, {"nodeId": "139809229994048"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809229994048": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809309739264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809229994272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229994272": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}}, "139809309739712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994384"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229994384": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309740160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994496"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229994496": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309740608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994608"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229994608": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309741056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809309741504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229994720"}, {"nodeId": "139809229994832"}, {"nodeId": "139809229994944"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229994720": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809251081408"}]}]}}, "139809229994832": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229994944": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309741952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229995056"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229995056": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309742400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309742848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309743296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229995168"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139809229995168": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "N"}]}}, "139809309743744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309744192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809170405216": {"type": "Function", "content": {"typeVars": [".0.139809170405216"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809170405216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809170405216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722912"}, "def": "139809170405216", "variance": "INVARIANT"}}, "139809170404320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081408"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309745536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309745984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229990240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309746432"}, {"nodeId": "139809309746880"}]}}, "139809309746432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309746880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309747328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309747776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309748224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309748672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309749120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809229995504"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229995504": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809251081408"}]}}, "139809309749568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309752256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809229995728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229995728": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}]}}, "139809304608832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809216805376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216805600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216805824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216806048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216806272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216806496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216921664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216921888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216922112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216922784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313530464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809242690640"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242690640": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809242690416"}]}}, "139809242690416": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809313532704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "139809313534496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "139809217270656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217270880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217271104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809237735616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237735616": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "A"}]}}, "139809217271328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809283959584": {"type": "Union", "content": {"items": [{"nodeId": "139809266693312"}, {"nodeId": "N"}]}}, "139809266693312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809317475872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266818896": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809217267744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217267968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217268192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736960"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809301228096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139809301228544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250729248"}, {"nodeId": "139809225631648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225631648": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809301228992": {"type": "Function", "content": {"typeVars": [".0.139809301228992"], "argTypes": [{"nodeId": ".0.139809301228992"}, {"nodeId": "139809225631872"}], "returnType": {"nodeId": ".0.139809301228992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139809301228992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250729248"}, "def": "139809301228992", "variance": "INVARIANT"}}, "139809225631872": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809225069888": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809304896320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250722560"}, {"nodeId": "139809225070000"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "139809225070000": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}]}}, "139809225068544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304896768"}, {"nodeId": "139809304897216"}]}}, "139809304896768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304897216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304897664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809304898112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809304898560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225069552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809304899008"}, {"nodeId": "139809304899456"}]}}, "139809304899008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250723968"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809304899456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809304899904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809225070784"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139809225070784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139809304901248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304901696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304902144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809304902592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809225070672"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139809225070672": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}]}}, "139809305018432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305018880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250723616"}, {"nodeId": "139809250723616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809251065920": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221086784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__int__"]}}, "139809221086784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251065920"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262990112": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317301920"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__trunc__"]}}, "139809317301920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809322198272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338538848"}, "def": "139809322198272", "variance": "INVARIANT"}}, "139809322198720": {"type": "Function", "content": {"typeVars": [".0.139809322198720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229981280"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".0.139809322198720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "139809229981280": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, ".0.139809322198720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338538848"}, "def": "139809322198720", "variance": "INVARIANT"}}, "139809322199168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229981616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229981616": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "0"}]}}, "139809174968960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174969632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174968064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809174967840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322201408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322201856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322202304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809322203648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809251079296"}, {"nodeId": "139809229982176"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "139809229982176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809179274144": {"type": "Function", "content": {"typeVars": [".0.139809179274144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229982288"}, {"nodeId": "139809229982624"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": ".0.139809179274144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "139809229982288": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809251079296"}]}, {"nodeId": "139809251066976"}, {"nodeId": "139809251081408"}]}}, "139809229982624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.139809179274144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338538848"}, "def": "139809179274144", "variance": "INVARIANT"}}, "139809308950592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308951040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308951488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308951936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308952384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338539200": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309104320"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309104768"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309105216"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309105664"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809175443424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175443872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175442528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309107456"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309107904"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309108352"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309108800"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309109248"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309109696"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309110144"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309110592"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229981056"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309111936"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309112384"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309112832"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309113280"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309113728"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309212736"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309213184"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229984528"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309214976"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309215424"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309215872"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309216320"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229985200"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309217664"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309218112"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309218560"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309219008"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309219456"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309219904"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309220352"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309220800"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309221248"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309221696"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309222144"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309222592"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809309104320": {"type": "Function", "content": {"typeVars": [".0.139809309104320"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229984640"}], "returnType": {"nodeId": ".0.139809309104320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139809229984640": {"type": "Union", "content": {"items": [{"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}]}}, "139809251066272": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221088576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__float__"]}}, "139809221088576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251066272"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809309104320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539200"}, "def": "139809309104320", "variance": "INVARIANT"}}, "139809309104768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229984864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229984864": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809309105216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309105664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809175443424": {"type": "Function", "content": {"typeVars": [".0.139809175443424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809175443424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809175443424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539200"}, "def": "139809175443424", "variance": "INVARIANT"}}, "139809175443872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809175442528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309107456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309107904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309108352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309108800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309109248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309109696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309110144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309110592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229985088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229985088": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809229981056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309111040"}, {"nodeId": "139809309111488"}]}}, "139809309111040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309111488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309111936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309112384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309112832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309113280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309113728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309212736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309213184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229985536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229985536": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809229984528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309213632"}, {"nodeId": "139809309214080"}, {"nodeId": "139809309214528"}]}}, "139809309213632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809229985760"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229985760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259102480"}}}, "139809259102480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809309214080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809229985872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229985872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259101024"}}}, "139809259101024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809338539552": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229985648"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175449696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809175451040"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309225728"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309226176"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309226624"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309227072"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309227520"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309227968"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309228416"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309311040"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309311488"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309311936"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309312384"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309312832"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309313280"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309313728"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309314176"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309314624"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309315072"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809229985648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309223040"}, {"nodeId": "139809309223488"}]}}, "139809309223040": {"type": "Function", "content": {"typeVars": [".0.139809309223040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229986656"}, {"nodeId": "139809229986768"}], "returnType": {"nodeId": ".0.139809309223040"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "139809229986656": {"type": "Union", "content": {"items": [{"nodeId": "139809338539552"}, {"nodeId": "139809251066624"}, {"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}]}}, "139809251066624": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221090144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__complex__"]}}, "139809221090144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251066624"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229986768": {"type": "Union", "content": {"items": [{"nodeId": "139809338539552"}, {"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}]}}, ".0.139809309223040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539552"}, "def": "139809309223040", "variance": "INVARIANT"}}, "139809309223488": {"type": "Function", "content": {"typeVars": [".0.139809309223488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809229986880"}], "returnType": {"nodeId": ".0.139809309223488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "139809229986880": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251066624"}, {"nodeId": "139809251066272"}, {"nodeId": "139809251079296"}, {"nodeId": "139809338539552"}]}}, ".0.139809309223488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338539552"}, "def": "139809309223488", "variance": "INVARIANT"}}, "139809175449696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809175451040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309225728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309226176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309226624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309227072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309227520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309227968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309228416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309311040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309311488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309311936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309312384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309312832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309313280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309313728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309314176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309314624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309315072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539552"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309214528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809309214976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809229986208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229986208": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}]}}, "139809309215424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309215872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309216320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229985200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809309216768"}, {"nodeId": "139809309217216"}]}}, "139809309216768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809309217216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309217664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309218112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309218560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309219008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309219456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309219904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309220352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309220800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309221248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309221696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309222144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309222592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338539200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809308952832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308953280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229982848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229982848": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809308953728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308954176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308954624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308955072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308955520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308955968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308956416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229983072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229983072": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809229980496": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809308956864"}, {"nodeId": "139809308957312"}, {"nodeId": "139809308957760"}, {"nodeId": "139809308958208"}, {"nodeId": "139809308958656"}, {"nodeId": "139809308959104"}]}}, "139809308956864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308957312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809308957760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809229983744"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229983744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259102480"}}}, "139809308958208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809229983856"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229983856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259101024"}}}, "139809308958656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809308959104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809308959552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809229984080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809229984080": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809308960000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308960448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308960896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308961344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308961792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308962240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308962688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308963136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308963584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308964032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809308964480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809308964928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809308965376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809308965824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809308966272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309098048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309098496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809309098944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229984416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229984416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809309099392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309099840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309100288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309100736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309101184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309101632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309102080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309102528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309102976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309103424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309103872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305155328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305155776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305156224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809305156672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225073248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305157120"}, {"nodeId": "139809305157568"}]}}, "139809305157120": {"type": "Function", "content": {"typeVars": [".-1.139809305157120"], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".-1.139809305157120"}]}, {"nodeId": "N"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139809305157120": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139809242253232"}, "def": "139809305157120", "variance": "INVARIANT"}}, "139809242253232": {"type": "Union", "content": {"items": [{"nodeId": "139809262985184", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985536", "args": [{"nodeId": "A"}]}]}}, "139809262985184": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317295648"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.139809262985184"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__lt__"]}}, ".1.139809262985184": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262985184", "variance": "CONTRAVARIANT"}}, "139809317295648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262985184", "args": [{"nodeId": ".1.139809262985184"}]}, {"nodeId": ".1.139809262985184"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262985536": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317296096"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139809262985536"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__gt__"]}}, ".1.139809262985536": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262985536", "variance": "CONTRAVARIANT"}}, "139809317296096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262985536", "args": [{"nodeId": ".1.139809262985536"}]}, {"nodeId": ".1.139809262985536"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305157568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809224994464"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139809224994464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "139809225074816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225074816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791920"}}}, "139809254791920": {"type": "Union", "content": {"items": [{"nodeId": "139809262985184", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985536", "args": [{"nodeId": "A"}]}]}}, "139809305158016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305158464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225074368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305158912"}, {"nodeId": "139809305159360"}]}}, "139809305158912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809250724672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305159360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225074480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305159808"}, {"nodeId": "139809305160256"}]}}, "139809305159808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809250724672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809305160256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250723968"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809305160704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809225075040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225075040": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809225074704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305161152"}, {"nodeId": "139809305161600"}]}}, "139809305161152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305161600": {"type": "Function", "content": {"typeVars": [".-1.139809305161600"], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".-1.139809305161600"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809225075264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305161600": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305161600", "variance": "INVARIANT"}}, "139809225075264": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809305161600"}, {"nodeId": ".1.139809250724672"}]}}, "139809305162048": {"type": "Function", "content": {"typeVars": [".0.139809305162048"], "argTypes": [{"nodeId": ".0.139809305162048"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": ".0.139809305162048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305162048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "def": "139809305162048", "variance": "INVARIANT"}}, "139809305162496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305162944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305163392": {"type": "Function", "content": {"typeVars": [".0.139809305163392"], "argTypes": [{"nodeId": ".0.139809305163392"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".0.139809305163392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305163392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, "def": "139809305163392", "variance": "INVARIANT"}}, "139809305163840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305164288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250724672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305164736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305165184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305313344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305313792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}, {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809250724672"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305314240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809305317824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305318272": {"type": "Function", "content": {"typeVars": [".0.139809305318272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809305318272"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.139809305318272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "def": "139809305318272", "variance": "INVARIANT"}}, "139809305318720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305319168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809251071904", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251071904": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809178833568"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251071904"}, {"nodeId": ".2.139809251071904"}], "bases": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809251071904"}]}], "isAbstract": false}}, ".1.139809251071904": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251071904", "variance": "COVARIANT"}}, ".2.139809251071904": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251071904", "variance": "COVARIANT"}}, "139809178833568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071904", "args": [{"nodeId": ".1.139809251071904"}, {"nodeId": ".2.139809251071904"}]}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809251071904"}, {"nodeId": ".2.139809251071904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305319616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809251072256", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251072256": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809178836704"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251072256"}, {"nodeId": ".2.139809251072256"}], "bases": [{"nodeId": "139809251069792", "args": [{"nodeId": ".2.139809251072256"}]}], "isAbstract": false}}, ".1.139809251072256": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072256", "variance": "COVARIANT"}}, ".2.139809251072256": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072256", "variance": "COVARIANT"}}, "139809178836704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072256", "args": [{"nodeId": ".1.139809251072256"}, {"nodeId": ".2.139809251072256"}]}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809251072256"}, {"nodeId": ".2.139809251072256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305320064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809251072608", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251072608": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183876480"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}], "bases": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}]}], "isAbstract": false}}, ".1.139809251072608": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072608", "variance": "COVARIANT"}}, ".2.139809251072608": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251072608", "variance": "COVARIANT"}}, "139809183876480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251072608", "args": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}]}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": ".1.139809251072608"}, {"nodeId": ".2.139809251072608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225075376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305320512"}, {"nodeId": "139809305320960"}]}}, "139809305320512": {"type": "Function", "content": {"typeVars": [".-1.139809305320512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305320512"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809305320512"}, {"nodeId": "139809225076720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.139809305320512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305320512", "variance": "INVARIANT"}}, "139809225076720": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809305320960": {"type": "Function", "content": {"typeVars": [".-1.139809305320960", ".-2.139809305320960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305320960"}]}, {"nodeId": ".-2.139809305320960"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809305320960"}, {"nodeId": ".-2.139809305320960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139809305320960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305320960", "variance": "INVARIANT"}}, ".-2.139809305320960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305320960", "variance": "INVARIANT"}}, "139809225076160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305321408"}, {"nodeId": "139809305321856"}]}}, "139809305321408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": "139809225076944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809225076944": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": "N"}]}}, "139809305321856": {"type": "Function", "content": {"typeVars": [".-1.139809305321856"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}, {"nodeId": "139809225077056"}], "returnType": {"nodeId": "139809225077168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225077056": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305321856"}]}}, ".-1.139809305321856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305321856", "variance": "INVARIANT"}}, "139809225077168": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305321856"}]}}, "139809225076496": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305322304"}, {"nodeId": "139809305322752"}]}}, "139809305322304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": ".2.139809250725024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305322752": {"type": "Function", "content": {"typeVars": [".-1.139809305322752"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}, {"nodeId": "139809225077392"}], "returnType": {"nodeId": "139809225077504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225077392": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305322752"}]}}, ".-1.139809305322752": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305322752", "variance": "INVARIANT"}}, "139809225077504": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-1.139809305322752"}]}}, "139809305323200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305323648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": ".2.139809250725024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305324096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809305324544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": ".1.139809250725024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305324992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305325440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250725024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305325888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809305326336": {"type": "Function", "content": {"typeVars": [".-1.139809305326336", ".-2.139809305326336"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809305326336"}, {"nodeId": ".-2.139809305326336"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809225077728"}, {"nodeId": "139809225077840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305326336": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326336", "variance": "INVARIANT"}}, ".-2.139809305326336": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326336", "variance": "INVARIANT"}}, "139809225077728": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".-1.139809305326336"}]}}, "139809225077840": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-2.139809305326336"}]}}, "139809305326784": {"type": "Function", "content": {"typeVars": [".-1.139809305326784", ".-2.139809305326784"], "argTypes": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809305326784"}, {"nodeId": ".-2.139809305326784"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809225077952"}, {"nodeId": "139809225078064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305326784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326784", "variance": "INVARIANT"}}, ".-2.139809305326784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305326784", "variance": "INVARIANT"}}, "139809225077952": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".-1.139809305326784"}]}}, "139809225078064": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809250725024"}, {"nodeId": ".-2.139809305326784"}]}}, "139809225076832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305327232"}, {"nodeId": "139809305327680"}]}}, "139809305327232": {"type": "Function", "content": {"typeVars": [".0.139809305327232"], "argTypes": [{"nodeId": ".0.139809305327232"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}], "returnType": {"nodeId": ".0.139809305327232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305327232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "def": "139809305327232", "variance": "INVARIANT"}}, "139809305327680": {"type": "Function", "content": {"typeVars": [".0.139809305327680"], "argTypes": [{"nodeId": ".0.139809305327680"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225078400"}]}], "returnType": {"nodeId": ".0.139809305327680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809305327680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}, "def": "139809305327680", "variance": "INVARIANT"}}, "139809225078400": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250725024"}, {"nodeId": ".2.139809250725024"}]}}, "139809338537440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221508032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221508480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292209952"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242678320"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292211296"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242682240"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242682688"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}], "isAbstract": true}}, ".1.139809338537440": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537440", "variance": "INVARIANT"}}, ".2.139809338537440": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338537440", "variance": "INVARIANT"}}, "139809221508032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809221508480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292209952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242678320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292210400"}, {"nodeId": "139809292210848"}]}}, "139809292210400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}], "returnType": {"nodeId": ".2.139809338537440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809292210848": {"type": "Function", "content": {"typeVars": [".-1.139809292210848"], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": "139809242682800"}], "returnType": {"nodeId": "139809242682912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139809242682800": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537440"}, {"nodeId": ".-1.139809292210848"}]}}, ".-1.139809292210848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292210848", "variance": "INVARIANT"}}, "139809242682912": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809338537440"}, {"nodeId": ".-1.139809292210848"}]}}, "139809292211296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}], "returnType": {"nodeId": "139809242683136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242683136": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}}, "139809242682240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292211744"}, {"nodeId": "139809292212192"}]}}, "139809292211744": {"type": "Function", "content": {"typeVars": [".-1.139809292211744"], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": "139809242683360"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809242683472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809242683360": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809292211744"}, {"nodeId": "N"}]}}, ".-1.139809292211744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292211744", "variance": "INVARIANT"}}, "139809242683472": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809292211744"}, {"nodeId": "N"}]}}, "139809292212192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": ".2.139809338537440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809242682688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292212640"}, {"nodeId": "139809292213088"}, {"nodeId": "139809292213536"}]}}, "139809292212640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809292213088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809242683808"}]}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809242683808": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}}, "139809292213536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809338537440"}, {"nodeId": ".2.139809338537440"}]}, {"nodeId": ".2.139809338537440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809229437776": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330758144"}]}}, "139809330758144": {"type": "Function", "content": {"typeVars": [".0.139809330758144"], "argTypes": [{"nodeId": ".0.139809330758144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809330758144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330758144", "variance": "INVARIANT"}}, "139809175292160": {"type": "Function", "content": {"typeVars": [".0.139809175292160"], "argTypes": [{"nodeId": ".0.139809175292160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809175292160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809175292160", "variance": "INVARIANT"}}, "139809330759040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330759488": {"type": "Function", "content": {"typeVars": [".0.139809330759488"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809330759488"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809330759488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330759488", "variance": "INVARIANT"}}, "139809330759936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809330760384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330760832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330761280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330761728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330762176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330762624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330763072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330763520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330763968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330764416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809229730336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229730336": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}]}}, "139809330764864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809229730560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229730560": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}]}}, "139809330766208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330766656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139809175291488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809309316864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722560"}, "def": "139809309316864", "variance": "INVARIANT"}}, "139809309317312": {"type": "Function", "content": {"typeVars": [".0.139809309317312"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809309317312"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.139809309317312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250722560"}, "def": "139809309317312", "variance": "INVARIANT"}}, "139809309317760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309318208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309318656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309319104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229987440"}, {"nodeId": "139809229987552"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "139809229987440": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229987552": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309319552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809309320000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229987664"}, {"nodeId": "139809229987776"}, {"nodeId": "139809229987888"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229987664": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809229987776": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229987888": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309320448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139809309321344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229988000"}, {"nodeId": "139809229988112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229988000": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229988112": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309321792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809309322240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250721856"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "139809250721856": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309315968"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__"]}}, "139809309315968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250721856"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309322688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229988224"}, {"nodeId": "139809229988336"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229988224": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229988336": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309323136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309323584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309324032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309324480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309324928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309325376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309325824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309326272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309326720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309442112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309442560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309443008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309443456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309443904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309444352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309444800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229988448"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229988448": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309445248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229988672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229988672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809309445696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809309446144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309446592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809309447040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229988784"}, {"nodeId": "139809229988896"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229988784": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229988896": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309447488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809229989008"}, {"nodeId": "139809229989120"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229989008": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229989120": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309447936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809309448384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229989344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229989344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809309448832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989456"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229989456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309449280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989568"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229989568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309449728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989680"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809229989680": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309450176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809309450624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229989792"}, {"nodeId": "139809229989904"}, {"nodeId": "139809229990016"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809229989792": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809229989904": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809229990016": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "N"}]}}, "139809309451072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229990128"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809229990128": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809309451520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309451968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309452416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722208"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250722208": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809309316416"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__"]}}, "139809309316416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722208"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809229987104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229987104": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809309452864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809309453312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229986544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809234286880"}, {"nodeId": "139809309453760"}, {"nodeId": "139809309454208"}]}}, "139809234286880": {"type": "Function", "content": {"typeVars": [".-1.139809234286880"], "argTypes": [{"nodeId": "139809229990464"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809234286880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809229990464": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809234286880"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809234286880"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809229990352"}, {"nodeId": ".-1.139809234286880"}]}]}}, ".-1.139809234286880": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234286880", "variance": "INVARIANT"}}, "139809229990352": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809309453760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309454208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809229990576"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809229990576": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809309455104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309455552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309456000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309456448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309456896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809229990688"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229990688": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809309457344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309457792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309573184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309573632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809309574080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309574528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309574976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309575424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309575872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809309576320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229991024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229991024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809242117248": {"type": "Concrete", "content": {"module": "import_test", "simpleName": "A", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250302208": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809334213344"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242146384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242146608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250173648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250173760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196038560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809334214240"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809334213344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233723664"}, {"nodeId": "139809233723776"}, {"nodeId": "139809233724000"}, {"nodeId": "139809233724112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "139809233723664": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809250303264": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296277664"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296278112"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296278560"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296279008"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296277664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809262733088": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266818560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216936448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266820688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259097328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338536032", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259097888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317804000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317804448"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809266818560": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809216936448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266820688": {"type": "Union", "content": {"items": [{"nodeId": "139809262732736"}, {"nodeId": "N"}]}}, "139809262732736": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317803104"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["load_module"]}}, "139809317803104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732736"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809259097328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259097888": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809317804000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242691760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "139809242691760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809317804448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296278112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809296278560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233727584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139809233727584": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809296279008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303264"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809233723776": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233724000": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809233724112": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809242146384": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809242146608": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250173648": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809250173760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809196038560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233724224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233724224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809334214240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809242109504": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196036768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196035872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196035424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196034976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196034528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196034304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196033856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196032064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195998144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}, {"nodeId": "139809250303968"}], "isAbstract": false}}, "139809196036768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233724336"}], "returnType": {"nodeId": "139809233724448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233724336": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233724448": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809196035872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233724560"}, {"nodeId": "139809233724672"}], "returnType": {"nodeId": "139809233724784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233724560": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233724672": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233724784": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809196035424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196034976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196034528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196034304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809196033856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139809196032064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233724896"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139809233724896": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809195998144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139809250305024": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296284384"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296284832"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296285280"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139809250302912"}], "isAbstract": false}}, "139809296284384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305024"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233728480"}], "returnType": {"nodeId": "139809233728592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139809233728480": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233728592": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809296284832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296285280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305024"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233728704"}, {"nodeId": "139809233728816"}], "returnType": {"nodeId": "139809233728928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139809233728704": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233728816": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233728928": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809250302912": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250303968": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296279904"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296280352"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196038784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296281248"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195984032"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250303264"}], "isAbstract": true}}, "139809296279904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809296280352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233727696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233727696": {"type": "Union", "content": {"items": [{"nodeId": "139809262731680"}, {"nodeId": "N"}]}}, "139809196038784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233727808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233727808": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296281248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303968"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809195984032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233727920"}, {"nodeId": "139809233728144"}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "139809233727920": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}, {"nodeId": "139809259147808"}, {"nodeId": "139809259148512"}, {"nodeId": "139809259148160"}]}}, "139809259147808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179353600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259147104"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179353600": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259148864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259146048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179167072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296571232"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242266224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259356448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259356224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809179167072": {"type": "Tuple", "content": {"items": []}}, "139809296571232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259146048"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809242266224": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809259356448": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809259356224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259147104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179171216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146752"}], "isAbstract": false}}, "139809179171216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259146752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259146400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259148512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179355840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179355840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259158016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259148160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179354944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179354944": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809233728144": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809233728032"}]}}, "139809233728032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809250866368": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}]}}, "139809242105280": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204321440"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809242105280"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__fspath__"]}}, ".1.139809242105280": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809242105280", "variance": "COVARIANT"}}, "139809204321440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242105280", "args": [{"nodeId": ".1.139809242105280"}]}], "returnType": {"nodeId": ".1.139809242105280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242109856": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195997248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195997696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195996800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195996352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195995904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195995456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195995008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195993888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195993664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}, {"nodeId": "139809250303968"}], "isAbstract": false}}, "139809195997248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725008"}], "returnType": {"nodeId": "139809233725120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233725008": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233725120": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809195997696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725232"}, {"nodeId": "139809233725344"}], "returnType": {"nodeId": "139809233725456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233725232": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233725344": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233725456": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809195996800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195996352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195995904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195995456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139809195995008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "139809195993888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809233725568"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139809233725568": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809195993664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139809242110208": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195992544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195992096"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}], "isAbstract": false}}, "139809195992544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725680"}], "returnType": {"nodeId": "139809233725792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233725680": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233725792": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809195992096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233725904"}, {"nodeId": "139809233726016"}], "returnType": {"nodeId": "139809233726128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233725904": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233726016": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233726128": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809250302560": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195990528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195990080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195990976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195989632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809195990528": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "139809195990080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301856"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "139809242108800": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242329968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325728480"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195659040"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809242329968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809325728480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108800"}, {"nodeId": "139809233721200"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "139809233721200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809195659040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250301856": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325730720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325731168"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325731616"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "139809250301504"}], "isAbstract": false}}, "139809325730720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301856"}, {"nodeId": "139809242115488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809242115488": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288459360"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288459808"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288460256"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809203976480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288461152"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288461600"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288464288"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288464736"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288465184"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288465632"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288466080"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288466528"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288466976"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288467424"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288467872"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288468320"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288469216"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288469664"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288470112"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288585504"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238386720"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288589088"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288589536"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288589984"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288590432"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288590880"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288591328"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288592672"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288593120"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288593568"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288594016"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288594464"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288594912"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204079968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288596256"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288596704"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288597152"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288597600"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288598048"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288598496"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288598944"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288599840"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "139809242114432"}], "isAbstract": false}}, "139809288459360": {"type": "Function", "content": {"typeVars": [".0.139809288459360"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809238389296"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809288459360"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "139809238389296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, ".0.139809288459360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288459360", "variance": "INVARIANT"}}, "139809288459808": {"type": "Function", "content": {"typeVars": [".0.139809288459808"], "argTypes": [{"nodeId": ".0.139809288459808"}], "returnType": {"nodeId": ".0.139809288459808"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809288459808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288459808", "variance": "INVARIANT"}}, "139809288460256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238389520"}, {"nodeId": "139809238389632"}, {"nodeId": "139809238389744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809238389520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238389632": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809238389744": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809203976480": {"type": "Function", "content": {"typeVars": [".0.139809203976480"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809203976480"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809203976480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809203976480", "variance": "INVARIANT"}}, "139809288461152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809238389856"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809238389856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242326832"}}}, "139809242326832": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809288461600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "139809288464288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288464736": {"type": "Function", "content": {"typeVars": [".0.139809288464736"], "argTypes": [{"nodeId": ".0.139809288464736"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288464736"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139809288464736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288464736", "variance": "INVARIANT"}}, "139809338532864": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297040544"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221194944"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242432112"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297042336"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297042784"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221195168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221195616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221196288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221196512"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809338532864"}]}], "isAbstract": true}}, ".1.139809338532864": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532864", "variance": "COVARIANT"}}, ".2.139809338532864": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532864", "variance": "CONTRAVARIANT"}}, ".3.139809338532864": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338532864", "variance": "COVARIANT"}}, "139809297040544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221194944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, {"nodeId": ".2.139809338532864"}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242432112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297041440"}, {"nodeId": "139809297041888"}]}}, "139809297041440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, {"nodeId": "0"}, {"nodeId": "139809242444880"}, {"nodeId": "139809242444992"}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242444880": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242444992": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297041888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242445104"}], "returnType": {"nodeId": ".1.139809338532864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242445104": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297042336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297042784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809221195168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221195616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221196288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221196512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809338532864"}, {"nodeId": ".2.139809338532864"}, {"nodeId": ".3.139809338532864"}]}], "returnType": {"nodeId": "139809242445552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242445552": {"type": "Union", "content": {"items": [{"nodeId": "139809338532864", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809288465184": {"type": "Function", "content": {"typeVars": [".0.139809288465184"], "argTypes": [{"nodeId": ".0.139809288465184"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288465184"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139809288465184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288465184", "variance": "INVARIANT"}}, "139809288465632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288466080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288466528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288466976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288467424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288467872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288468320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288469216": {"type": "Function", "content": {"typeVars": [".0.139809288469216"], "argTypes": [{"nodeId": ".0.139809288469216"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288469216"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288469216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288469216", "variance": "INVARIANT"}}, "139809288469664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "139809288470112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809238389968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238389968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242326832"}}}, "139809288585504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "139809238386720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288585952"}, {"nodeId": "139809288586400"}, {"nodeId": "139809288586848"}, {"nodeId": "139809288587296"}, {"nodeId": "139809288587744"}, {"nodeId": "139809288588192"}, {"nodeId": "139809288588640"}]}}, "139809288585952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238390192"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238390304"}, {"nodeId": "139809238390416"}, {"nodeId": "139809238390528"}], "returnType": {"nodeId": "139809250297984"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254785088"}}}, "139809254785088": {"type": "Union", "content": {"items": [{"nodeId": "139809254785424"}, {"nodeId": "139809254787216"}, {"nodeId": "139809254786096"}]}}, "139809254785424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254787328"}}}, "139809254787328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254787216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254604160"}}}, "139809254604160": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254786096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254603600"}}}, "139809254603600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809238390304": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238390416": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238390528": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250297984": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296665056"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200687360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200687808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200688032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200688480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296667296"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296667744"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296668192"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296668640"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296669088"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296669536"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296669984"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296670432"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139809250297632"}, {"nodeId": "139809251070848"}], "isAbstract": false}}, "139809296665056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809233715376"}, {"nodeId": "139809233715488"}, {"nodeId": "139809233715600"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139809251070144": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221609056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221610176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221611072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221611744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221612416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221613088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221613760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221614432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221615104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221616000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221616672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221617568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221618464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221619136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221619808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221620480"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242683248"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242683584"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221738784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221739456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221740352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221741472"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809251070144"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251070144"}]}], "isAbstract": true}}, ".1.139809251070144": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251070144", "variance": "INVARIANT"}}, "139809221609056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221610176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221611072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221611744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221612416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221613088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221613760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221614432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809251070144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809221615104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221616000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809251070144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809221616672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251070144"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809221617568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809221618464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221619136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221619808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809242683920"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809242683920": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809221620480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242683248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809292221152"}, {"nodeId": "139809255091648"}, {"nodeId": "139809292222048"}]}}, "139809292221152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809255091648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809292222048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": ".1.139809251070144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242683584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809255091424"}, {"nodeId": "139809255090752"}, {"nodeId": "139809255090976"}]}}, "139809255091424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809255090752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809255090976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809221738784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": ".1.139809251070144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221739456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251070144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809221740352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809221741472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809251070144"}]}, {"nodeId": "139809242684256"}, {"nodeId": "139809242684368"}, {"nodeId": "139809242684480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809242684256": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809242684368": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809242684480": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809233715376": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715488": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715600": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809200687360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251070496": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221742368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}], "isAbstract": true}}, "139809221742368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070496"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809200687808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809200688032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809200688480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296667296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809233715712"}, {"nodeId": "139809233715824"}, {"nodeId": "139809233715936"}, {"nodeId": "139809233716048"}, {"nodeId": "139809233716160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139809233715712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715824": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233715936": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233716048": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809233716160": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809296667744": {"type": "Function", "content": {"typeVars": [".0.139809296667744"], "argTypes": [{"nodeId": ".0.139809296667744"}], "returnType": {"nodeId": ".0.139809296667744"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296667744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250297984"}, "def": "139809296667744", "variance": "INVARIANT"}}, "139809296668192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809296668640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296669088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296669536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296669984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296670432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297984"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809250297632": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242329632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242145264"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296743136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296743584"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296744032"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296662816"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296663264"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296663712"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296664160"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296664608"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139809262746112"}], "isAbstract": false}}, "139809242329632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242145264": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809296743136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809296743584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296744032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296662816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296663264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296663712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296664160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296664608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297632"}, {"nodeId": "139809233715264"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233715264": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809262746112": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296573024"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296573472"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296573920"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296574368"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296574816"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296575264"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296575712"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296576160"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296576608"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809255094784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296577056"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296577504"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296577952"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296578400"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296578848"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296579296"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266692192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296579744"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296580192"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296728352"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200250368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296729248"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296573024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809296573472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296573920": {"type": "Function", "content": {"typeVars": [".0.139809296573920"], "argTypes": [{"nodeId": ".0.139809296573920"}], "returnType": {"nodeId": ".0.139809296573920"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296573920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262746112"}, "def": "139809296573920", "variance": "INVARIANT"}}, "139809296574368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233532768"}, {"nodeId": "139809233532880"}, {"nodeId": "139809233532992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809233532768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809233532880": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809233532992": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809296574816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296575264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296575712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296576160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296576608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809255094784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809296577056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296577504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809296577952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296578400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296578848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233533104"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533104": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296579296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266692192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809296579744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809251081408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296580192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233533216"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533216": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296728352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809200250368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296729248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746112"}, {"nodeId": "139809233533328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139809233533328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809251070848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221743936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221744384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221744608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221744832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221745056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221745280"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": true}}, "139809221743936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221744384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221744608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809242684592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242684592": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809221744832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221745056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221745280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251070848"}], "returnType": {"nodeId": "139809251070848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288586400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238390640"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809262747168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809254599904": {"type": "Union", "content": {"items": [{"nodeId": "139809254599680"}, {"nodeId": "139809254599568"}, {"nodeId": "139809254598560"}]}}, "139809254599680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254601584"}}}, "139809254601584": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254599568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259359584"}}}, "139809259359584": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809254598560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599792"}}}, "139809254599792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809262747168": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242145152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296734176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200245216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296735072"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296735520"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296735968"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139809262746464"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809242145152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254600240"}}}, "139809254600240": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809254601920"}]}}, "139809254601920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809254791584": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722912"}]}]}}, "139809296734176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}, {"nodeId": "139809233533888"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233534112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "139809233533888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254600240"}}}, "139809233534112": {"type": "Union", "content": {"items": [{"nodeId": "139809233534000"}, {"nodeId": "N"}]}}, "139809233534000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262702368"}}}, "139809262702368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809200245216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296735072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296735520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262747168"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809296735968": {"type": "Function", "content": {"typeVars": [".0.139809296735968"], "argTypes": [{"nodeId": ".0.139809296735968"}], "returnType": {"nodeId": ".0.139809296735968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296735968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262747168"}, "def": "139809296735968", "variance": "INVARIANT"}}, "139809262746464": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296729696"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296730144"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296730592"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296731040"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139809262746112"}], "isAbstract": false}}, "139809296729696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296730144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809233533440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809233533440": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296730592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809233533552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809233533552": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296731040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809233533664"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533664": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809288586848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238390080"}, {"nodeId": "139809238391200"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254601584"}}}, "139809238391200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809250296928": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296741344"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296741792"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139809250296224"}, {"nodeId": "139809250296576"}], "isAbstract": false}}, "139809296741344": {"type": "Function", "content": {"typeVars": [".0.139809296741344"], "argTypes": [{"nodeId": ".0.139809296741344"}], "returnType": {"nodeId": ".0.139809296741344"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296741344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250296928"}, "def": "139809296741344", "variance": "INVARIANT"}}, "139809296741792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296928"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809250296224": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296738656"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296739104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296739552"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809296738656": {"type": "Function", "content": {"typeVars": [".0.139809296738656"], "argTypes": [{"nodeId": ".0.139809296738656"}], "returnType": {"nodeId": ".0.139809296738656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296738656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250296224"}, "def": "139809296738656", "variance": "INVARIANT"}}, "139809296739104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296224"}, {"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139809296739552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296224"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809262746816": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262746464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296731488"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296731936"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296732384"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296732832"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296733280"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296733728"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139809262746112"}], "isAbstract": false}}, "139809296731488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}], "returnType": {"nodeId": "139809262746464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296731936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296732384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296732832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809296733280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809233533776"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233533776": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809296733728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262746816"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809250296576": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296740000"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296740448"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296740896"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809296740000": {"type": "Function", "content": {"typeVars": [".0.139809296740000"], "argTypes": [{"nodeId": ".0.139809296740000"}], "returnType": {"nodeId": ".0.139809296740000"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296740000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250296576"}, "def": "139809296740000", "variance": "INVARIANT"}}, "139809296740448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296576"}, {"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139809296740896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250296576"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809288587296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238391312"}, {"nodeId": "139809238391648"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238391312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599792"}}}, "139809238391648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809288587744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238391760"}, {"nodeId": "139809238392096"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238391760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259359584"}}}, "139809238392096": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809288588192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238392208"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238392208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809288588640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238390976"}, {"nodeId": "139809238392320"}, {"nodeId": "139809238392544"}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809238390976": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238392320": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238392544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288589088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288589536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288589984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288590432": {"type": "Function", "content": {"typeVars": [".0.139809288590432"], "argTypes": [{"nodeId": ".0.139809288590432"}], "returnType": {"nodeId": ".0.139809288590432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288590432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288590432", "variance": "INVARIANT"}}, "139809288590880": {"type": "Function", "content": {"typeVars": [".0.139809288590880"], "argTypes": [{"nodeId": ".0.139809288590880"}, {"nodeId": "139809238392768"}], "returnType": {"nodeId": ".0.139809288590880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139809288590880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288590880", "variance": "INVARIANT"}}, "139809238392768": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809242114432"}]}}, "139809242114432": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203959648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809209031520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809209032416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203967520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203967296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203967072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203966848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203966624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288283616"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288284064"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288284512"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288284960"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288285408"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288285856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288286304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288286752"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288287200"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288287648"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288288096"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288288544"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288288992"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288289440"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288289888"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288454880"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288455328"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288455776"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288456224"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288456672"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288457120"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203974016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809203961920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288458464"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809203959648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809209031520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809209032416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203967520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203967296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203967072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203966848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809203966624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288283616": {"type": "Function", "content": {"typeVars": [".0.139809288283616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809238388400"}], "returnType": {"nodeId": ".0.139809288283616"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139809238388400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, ".0.139809288283616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288283616", "variance": "INVARIANT"}}, "139809288284064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288284512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288284960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288285408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288285856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288286304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288286752": {"type": "Function", "content": {"typeVars": [".0.139809288286752"], "argTypes": [{"nodeId": ".0.139809288286752"}, {"nodeId": "139809238388512"}], "returnType": {"nodeId": ".0.139809288286752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288286752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288286752", "variance": "INVARIANT"}}, "139809238388512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288287200": {"type": "Function", "content": {"typeVars": [".0.139809288287200"], "argTypes": [{"nodeId": ".0.139809288287200"}, {"nodeId": "139809238388624"}], "returnType": {"nodeId": ".0.139809288287200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288287200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288287200", "variance": "INVARIANT"}}, "139809238388624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288287648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288288096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288288544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288288992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288289440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288289888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809238388736"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "139809238388736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288454880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114432"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "139809288455328": {"type": "Function", "content": {"typeVars": [".0.139809288455328"], "argTypes": [{"nodeId": ".0.139809288455328"}, {"nodeId": "139809238388848"}], "returnType": {"nodeId": ".0.139809288455328"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139809288455328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288455328", "variance": "INVARIANT"}}, "139809238388848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288455776": {"type": "Function", "content": {"typeVars": [".0.139809288455776"], "argTypes": [{"nodeId": ".0.139809288455776"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809288455776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.139809288455776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288455776", "variance": "INVARIANT"}}, "139809288456224": {"type": "Function", "content": {"typeVars": [".0.139809288456224"], "argTypes": [{"nodeId": ".0.139809288456224"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809288456224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.139809288456224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288456224", "variance": "INVARIANT"}}, "139809288456672": {"type": "Function", "content": {"typeVars": [".0.139809288456672"], "argTypes": [{"nodeId": ".0.139809288456672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809288456672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.139809288456672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288456672", "variance": "INVARIANT"}}, "139809288457120": {"type": "Function", "content": {"typeVars": [".0.139809288457120"], "argTypes": [{"nodeId": ".0.139809288457120"}, {"nodeId": "139809238388960"}], "returnType": {"nodeId": ".0.139809288457120"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139809288457120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809288457120", "variance": "INVARIANT"}}, "139809238388960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809203974016": {"type": "Function", "content": {"typeVars": [".0.139809203974016"], "argTypes": [{"nodeId": ".0.139809203974016"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": ".0.139809203974016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809203974016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809203974016", "variance": "INVARIANT"}}, "139809203961920": {"type": "Function", "content": {"typeVars": [".0.139809203961920"], "argTypes": [{"nodeId": ".0.139809203961920"}], "returnType": {"nodeId": ".0.139809203961920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809203961920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114432"}, "def": "139809203961920", "variance": "INVARIANT"}}, "139809288458464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139809288591328": {"type": "Function", "content": {"typeVars": [".0.139809288591328"], "argTypes": [{"nodeId": ".0.139809288591328"}, {"nodeId": "139809238392880"}], "returnType": {"nodeId": ".0.139809288591328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139809288591328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288591328", "variance": "INVARIANT"}}, "139809238392880": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809242114432"}]}}, "139809288592672": {"type": "Function", "content": {"typeVars": [".0.139809288592672"], "argTypes": [{"nodeId": ".0.139809288592672"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": ".0.139809288592672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.139809288592672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288592672", "variance": "INVARIANT"}}, "139809288593120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288593568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238392992"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "139809238392992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809288594016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139809238393104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809288594464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "139809288594912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "139809204079968": {"type": "Function", "content": {"typeVars": [".0.139809204079968"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809204079968"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809204079968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809204079968", "variance": "INVARIANT"}}, "139809288596256": {"type": "Function", "content": {"typeVars": [".0.139809288596256"], "argTypes": [{"nodeId": ".0.139809288596256"}], "returnType": {"nodeId": ".0.139809288596256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288596256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288596256", "variance": "INVARIANT"}}, "139809288596704": {"type": "Function", "content": {"typeVars": [".0.139809288596704"], "argTypes": [{"nodeId": ".0.139809288596704"}], "returnType": {"nodeId": ".0.139809288596704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288596704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242115488"}, "def": "139809288596704", "variance": "INVARIANT"}}, "139809288597152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288597600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393216"}, {"nodeId": "139809238393328"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809238393216": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238393328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288598048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393440"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "139809238393440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809288598496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139809288598944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238393552"}, {"nodeId": "139809238393664"}, {"nodeId": "139809238393776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "139809238393552": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238393664": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238393776": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288599840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242115488"}, {"nodeId": "139809238393888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139809238393888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809325731168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301856"}, {"nodeId": "139809233721424"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139809233721424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809325731616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301856"}, {"nodeId": "139809233721536"}], "returnType": {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809233721536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809250301504": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195662400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195661504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195661280"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233719968"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195661056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195660384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195660832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195660160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195659936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195659712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195658592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809195662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233720304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139809233720304": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809195661504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}, {"nodeId": "139809233720416"}], "returnType": {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809233720416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809195661280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250301504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "139809233719968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809325608608"}, {"nodeId": "139809325609056"}]}}, "139809325608608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301504"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "139809325609056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "139809233720640"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301504"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "139809233720640": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809195661056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233720864"}], "returnType": {"nodeId": "139809250301856"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "139809233720864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250866368"}}}, "139809195660384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250298688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250298688": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288013408"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288013856"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288014304"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288014752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288015200"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195702560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "139809288013408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288013856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288014304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288014752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288015200": {"type": "Function", "content": {"typeVars": [".-1.139809288015200"], "argTypes": [{"nodeId": "139809250298688"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288015200"}], "returnType": {"nodeId": "139809233717840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.139809288015200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288015200", "variance": "INVARIANT"}}, "139809233717840": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.139809288015200"}]}}, "139809195702560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298688"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809233717952"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233717952": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809195660832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250300448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250300448": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325601440"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325601888"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195689568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195688896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250176000"}]}], "isAbstract": false}}, "139809325601440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}, {"nodeId": "139809233719072"}], "returnType": {"nodeId": "139809233719856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809233719072": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809233719856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242144816"}}}, "139809242144816": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809325601888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250300448"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139809195689568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195688896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300448"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250176000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242144816"}}}, "139809195660160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195659936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809233720976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233720976": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809242116896"}]}, {"nodeId": "N"}]}}, "139809242116896": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325605472"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325605920"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325606368"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242145040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242143248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250301504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809242114784"}], "isAbstract": false}}, "139809325605472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116896"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139809325605920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116896"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809325606368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116896"}], "returnType": {"nodeId": "139809242105280", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242145040": {"type": "Union", "content": {"items": [{"nodeId": "139809250301152"}, {"nodeId": "N"}]}}, "139809250301152": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325606816"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809325606816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301152"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139809242143248": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242114784": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242114432"}], "isAbstract": false}}, "139809195659712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809233721088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233721088": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809195658592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250301504"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195990976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233726240"}, {"nodeId": "139809233726352"}], "returnType": {"nodeId": "139809233726464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139809233726240": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233726352": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233726464": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809195989632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233726576"}], "returnType": {"nodeId": "139809233726688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139809233726576": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809233726688": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809242110560": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330460064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195988960"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305376"}], "isAbstract": false}}, "139809330460064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242110560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233726912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "139809233726912": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809195988960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809233727136"}], "returnType": {"nodeId": "139809233551424"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "139809233727136": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809233551424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250305376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250305376": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330315552"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330316000"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330316448"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330316896"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139809250302912"}], "isAbstract": false}}, "139809330315552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233729040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233729040": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809330316000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233729376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233729376": {"type": "Tuple", "content": {"items": [{"nodeId": "139809233729152"}, {"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}]}}, "139809233729152": {"type": "Union", "content": {"items": [{"nodeId": "139809250303264"}, {"nodeId": "N"}]}}, "139809330316448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330316896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305376"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233729488"}], "returnType": {"nodeId": "139809233729600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "139809233729488": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809233729600": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809242110912": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330460960"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "139809250305728"}, {"nodeId": "139809250304672"}], "isAbstract": false}}, "139809330460960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242110912"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "139809250305728": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330317344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330317792"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330318240"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330318688"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139809250303616"}, {"nodeId": "139809250304320"}], "isAbstract": true}}, "139809330317344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139809330317792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809330318240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809233729712"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809233729712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809330318688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250305728"}, {"nodeId": "139809233729824"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809233729824": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250303616": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195968992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250303264"}], "isAbstract": true}}, "139809195968992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250303616"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809250304320": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196342880"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250303968"}], "isAbstract": true}}, "139809196342880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304320"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809250304672": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296282592"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296283040"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296283488"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296283936"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "139809250303616"}, {"nodeId": "139809250304320"}], "isAbstract": true}}, "139809296282592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809296283040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "139809296283488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233728256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809233728256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296283936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250304672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809242111264": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250305728"}, {"nodeId": "139809250304672"}], "isAbstract": false}}, "139809242111616": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330461408"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330461856"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330462304"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330626848"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330627296"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330627744"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330628192"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139809250304320"}], "isAbstract": false}}, "139809330461408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "139809330461856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809233727248"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809233727248": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809330462304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809330626848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250302208"}], "returnType": {"nodeId": "139809262733088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139809330627296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809262733088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139809330627744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139809330628192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242111616"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251075424": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234325056"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330636928"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330637376"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330637824"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330638272"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330638720"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330639168"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330639616"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330640064"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234325168"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330641408"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330641856"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234326400"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "isAbstract": false}}, ".1.139809251075424": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075424", "variance": "INVARIANT"}}, ".2.139809251075424": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075424", "variance": "INVARIANT"}}, "139809234325056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330633344"}, {"nodeId": "139809275377056"}, {"nodeId": "139809330634240"}, {"nodeId": "139809330633792"}, {"nodeId": "139809330635136"}, {"nodeId": "139809330634688"}, {"nodeId": "139809330635584"}, {"nodeId": "139809330636032"}]}}, "139809330633344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809275377056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "N"}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809330634240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330633792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809330635136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809234326064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809234326064": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}}, "139809330634688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809234326288"}]}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809234326288": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809251075424"}]}}, "139809330635584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330636032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": "139809250722912"}, {"nodeId": "139809250722912"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809330636928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330637376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".1.139809251075424"}], "returnType": {"nodeId": ".2.139809251075424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330637824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809330638272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": ".1.139809251075424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330638720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251075424"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809330639168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809330639616": {"type": "Function", "content": {"typeVars": [".0.139809330639616"], "argTypes": [{"nodeId": ".0.139809330639616"}], "returnType": {"nodeId": ".0.139809330639616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809330639616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809330639616", "variance": "INVARIANT"}}, "139809330640064": {"type": "Function", "content": {"typeVars": [".0.139809330640064"], "argTypes": [{"nodeId": ".0.139809330640064"}], "returnType": {"nodeId": ".0.139809330640064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809330640064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809330640064", "variance": "INVARIANT"}}, "139809234325168": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330640512"}, {"nodeId": "139809330640960"}]}}, "139809330640512": {"type": "Function", "content": {"typeVars": [".-1.139809330640512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809330640512"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330640512"}, {"nodeId": "139809234326736"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809330640512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330640512", "variance": "INVARIANT"}}, "139809234326736": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809330640960": {"type": "Function", "content": {"typeVars": [".-1.139809330640960", ".-2.139809330640960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809330640960"}]}, {"nodeId": ".-2.139809330640960"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330640960"}, {"nodeId": ".-2.139809330640960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809330640960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330640960", "variance": "INVARIANT"}}, ".-2.139809330640960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330640960", "variance": "INVARIANT"}}, "139809330641408": {"type": "Function", "content": {"typeVars": [".-1.139809330641408", ".-2.139809330641408"], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809234326848"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": "139809234326960"}, {"nodeId": "139809234327072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234326848": {"type": "Union", "content": {"items": [{"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330641408"}, {"nodeId": ".-2.139809330641408"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809330641408"}, {"nodeId": ".-2.139809330641408"}]}]}}, ".-1.139809330641408": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641408", "variance": "INVARIANT"}}, ".-2.139809330641408": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641408", "variance": "INVARIANT"}}, "139809234326960": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".-1.139809330641408"}]}}, "139809234327072": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251075424"}, {"nodeId": ".-2.139809330641408"}]}}, "139809330641856": {"type": "Function", "content": {"typeVars": [".-1.139809330641856", ".-2.139809330641856"], "argTypes": [{"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, {"nodeId": "139809234327184"}], "returnType": {"nodeId": "139809251075424", "args": [{"nodeId": "139809234327296"}, {"nodeId": "139809234327408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234327184": {"type": "Union", "content": {"items": [{"nodeId": "139809251075424", "args": [{"nodeId": ".-1.139809330641856"}, {"nodeId": ".-2.139809330641856"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": ".-1.139809330641856"}, {"nodeId": ".-2.139809330641856"}]}]}}, ".-1.139809330641856": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641856", "variance": "INVARIANT"}}, ".-2.139809330641856": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809330641856", "variance": "INVARIANT"}}, "139809234327296": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".-1.139809330641856"}]}}, "139809234327408": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251075424"}, {"nodeId": ".-2.139809330641856"}]}}, "139809234326400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330642304"}, {"nodeId": "139809326235712"}]}}, "139809330642304": {"type": "Function", "content": {"typeVars": [".0.139809330642304"], "argTypes": [{"nodeId": ".0.139809330642304"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}], "returnType": {"nodeId": ".0.139809330642304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809330642304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809330642304", "variance": "INVARIANT"}}, "139809326235712": {"type": "Function", "content": {"typeVars": [".0.139809326235712"], "argTypes": [{"nodeId": ".0.139809326235712"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809234327744"}]}], "returnType": {"nodeId": ".0.139809326235712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326235712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075424", "args": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}, "def": "139809326235712", "variance": "INVARIANT"}}, "139809234327744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251075424"}, {"nodeId": ".2.139809251075424"}]}}, "139809251075776": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234326512"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326237056"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326237504"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326237952"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326238400"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326238848"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326239296"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326239744"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234327520"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234327856"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326241984"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326242432"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326242880"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326243328"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326243776"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326244224"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326244672"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326245120"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326245568"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326246016"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326246464"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326246912"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326247360"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326247808"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326248256"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234328528"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326249600"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.139809251075776"}], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809251075776"}]}], "isAbstract": false}}, ".1.139809251075776": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075776", "variance": "INVARIANT"}}, "139809234326512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326236160"}, {"nodeId": "139809326236608"}]}}, "139809326236160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "139809326236608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "139809326237056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234327968"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234327968": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326237504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328080": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326237952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328192"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328192": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326238400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328304"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328304": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}]}}, "139809326238848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326239296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326239744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234327520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326240192"}, {"nodeId": "139809326240640"}]}}, "139809326240192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809251075776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326240640": {"type": "Function", "content": {"typeVars": [".0.139809326240640"], "argTypes": [{"nodeId": ".0.139809326240640"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": ".0.139809326240640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326240640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326240640", "variance": "INVARIANT"}}, "139809234327856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326241088"}, {"nodeId": "139809326241536"}]}}, "139809326241088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809326241536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809250723968"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809326241984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234328752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234328752": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809326242432": {"type": "Function", "content": {"typeVars": [".0.139809326242432"], "argTypes": [{"nodeId": ".0.139809326242432"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": ".0.139809326242432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326242432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326242432", "variance": "INVARIANT"}}, "139809326242880": {"type": "Function", "content": {"typeVars": [".0.139809326242880"], "argTypes": [{"nodeId": ".0.139809326242880"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": ".0.139809326242880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326242880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326242880", "variance": "INVARIANT"}}, "139809326243328": {"type": "Function", "content": {"typeVars": [".0.139809326243328"], "argTypes": [{"nodeId": ".0.139809326243328"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": ".0.139809326243328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326243328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326243328", "variance": "INVARIANT"}}, "139809326243776": {"type": "Function", "content": {"typeVars": [".0.139809326243776"], "argTypes": [{"nodeId": ".0.139809326243776"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326243776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326243776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326243776", "variance": "INVARIANT"}}, "139809326244224": {"type": "Function", "content": {"typeVars": [".0.139809326244224"], "argTypes": [{"nodeId": ".0.139809326244224"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326244224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326244224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326244224", "variance": "INVARIANT"}}, "139809326244672": {"type": "Function", "content": {"typeVars": [".0.139809326244672"], "argTypes": [{"nodeId": ".0.139809326244672"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326244672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326244672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326244672", "variance": "INVARIANT"}}, "139809326245120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139809326245568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "139809326246016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809251075776"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "139809326246464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139809326246912": {"type": "Function", "content": {"typeVars": [".0.139809326246912"], "argTypes": [{"nodeId": ".0.139809326246912"}], "returnType": {"nodeId": ".0.139809326246912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326246912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326246912", "variance": "INVARIANT"}}, "139809326247360": {"type": "Function", "content": {"typeVars": [".0.139809326247360"], "argTypes": [{"nodeId": ".0.139809326247360"}], "returnType": {"nodeId": ".0.139809326247360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326247360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, "def": "139809326247360", "variance": "INVARIANT"}}, "139809326247808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139809326248256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": ".1.139809251075776"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "139809234328528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330636480"}, {"nodeId": "139809326249152"}]}}, "139809330636480": {"type": "Function", "content": {"typeVars": [".-1.139809330636480"], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".-1.139809330636480"}]}, {"nodeId": "N"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139809330636480": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139809242253232"}, "def": "139809330636480", "variance": "INVARIANT"}}, "139809326249152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809234275904"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139809234275904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139809251075776"}], "returnType": {"nodeId": "139809234329200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234329200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791920"}}}, "139809326249600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075776", "args": [{"nodeId": ".1.139809251075776"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251075776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139809251076128": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326250048"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326250496"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326250944"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326251392"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326366784"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326367232"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326367680"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326368128"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326368576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326369024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326369472"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326369920"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326370368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326370816"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326371264"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326371712"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326372160"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326372608"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326373056"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326373504"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326373952"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326374848"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326375296"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326375744"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326376192"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326376640"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326377536"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326377984"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326378432"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326378880"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326379328"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326379776"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326380224"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326380672"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326381120"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326381568"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326382016"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326382464"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326514240"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326514688"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326515136"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326515584"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326516032"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326516480"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326516928"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326517376"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326517824"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326518272"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809187744672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326518720"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326519168"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326519616"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326520064"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326520512"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326520960"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326521408"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326521856"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326522304"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326522752"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326523200"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326523648"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326524096"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326524544"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326524992"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326525440"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326525888"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326526336"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326526784"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809251076128"}]}], "isAbstract": false}}, "139809326250048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139809326250496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326250944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326251392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338539552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326366784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809234329312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234329312": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809326367232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329424"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329424": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326367680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329536"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329536": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326368128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329648"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329648": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326368576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234329760"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809234329760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326369024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326369472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326369920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326370368": {"type": "Function", "content": {"typeVars": [".0.139809326370368"], "argTypes": [{"nodeId": ".0.139809326370368"}, {"nodeId": "139809234329984"}], "returnType": {"nodeId": ".0.139809326370368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326370368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326370368", "variance": "INVARIANT"}}, "139809234329984": {"type": "Union", "content": {"items": [{"nodeId": "139809251079296"}, {"nodeId": "139809250723968"}]}}, "139809326370816": {"type": "Function", "content": {"typeVars": [".0.139809326370816"], "argTypes": [{"nodeId": ".0.139809326370816"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".0.139809326370816"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809326370816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326370816", "variance": "INVARIANT"}}, "139809326371264": {"type": "Function", "content": {"typeVars": [".0.139809326371264"], "argTypes": [{"nodeId": ".0.139809326371264"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".0.139809326371264"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809326371264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326371264", "variance": "INVARIANT"}}, "139809326371712": {"type": "Function", "content": {"typeVars": [".0.139809326371712"], "argTypes": [{"nodeId": ".0.139809326371712"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809326371712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326371712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326371712", "variance": "INVARIANT"}}, "139809326372160": {"type": "Function", "content": {"typeVars": [".0.139809326372160"], "argTypes": [{"nodeId": ".0.139809326372160"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809326372160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326372160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326372160", "variance": "INVARIANT"}}, "139809326372608": {"type": "Function", "content": {"typeVars": [".0.139809326372608"], "argTypes": [{"nodeId": ".0.139809326372608"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326372608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326372608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326372608", "variance": "INVARIANT"}}, "139809326373056": {"type": "Function", "content": {"typeVars": [".0.139809326373056"], "argTypes": [{"nodeId": ".0.139809326373056"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326373056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326373056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326373056", "variance": "INVARIANT"}}, "139809326373504": {"type": "Function", "content": {"typeVars": [".0.139809326373504"], "argTypes": [{"nodeId": ".0.139809326373504"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326373504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326373504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326373504", "variance": "INVARIANT"}}, "139809326373952": {"type": "Function", "content": {"typeVars": [".0.139809326373952"], "argTypes": [{"nodeId": ".0.139809326373952"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809326373952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326373952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326373952", "variance": "INVARIANT"}}, "139809326374848": {"type": "Function", "content": {"typeVars": [".0.139809326374848"], "argTypes": [{"nodeId": ".0.139809326374848"}], "returnType": {"nodeId": ".0.139809326374848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326374848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326374848", "variance": "INVARIANT"}}, "139809326375296": {"type": "Function", "content": {"typeVars": [".0.139809326375296"], "argTypes": [{"nodeId": ".0.139809326375296"}], "returnType": {"nodeId": ".0.139809326375296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326375296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326375296", "variance": "INVARIANT"}}, "139809326375744": {"type": "Function", "content": {"typeVars": [".0.139809326375744"], "argTypes": [{"nodeId": ".0.139809326375744"}, {"nodeId": "139809338538848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326375744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139809326375744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326375744", "variance": "INVARIANT"}}, "139809326376192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330320"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234330320": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326376640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330432"}, {"nodeId": "139809234330544"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139809234330432": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809234330544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326377536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330656"}, {"nodeId": "139809234330768"}, {"nodeId": "139809234330880"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139809234330656": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809234330768": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234330880": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326377984": {"type": "Function", "content": {"typeVars": [".0.139809326377984"], "argTypes": [{"nodeId": ".0.139809326377984"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326377984"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.139809326377984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326377984", "variance": "INVARIANT"}}, "139809326378432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234330992"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234330992": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326378880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139809326379328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139809326379776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809326380224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326380672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326381120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326381568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326382016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326382464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326514240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326514688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326515136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326515584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326516032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326516480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326516928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139809326517376": {"type": "Function", "content": {"typeVars": [".0.139809326517376"], "argTypes": [{"nodeId": ".0.139809326517376"}, {"nodeId": "139809338538848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326517376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139809326517376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326517376", "variance": "INVARIANT"}}, "139809326517824": {"type": "Function", "content": {"typeVars": [".0.139809326517824"], "argTypes": [{"nodeId": ".0.139809326517824"}], "returnType": {"nodeId": ".0.139809326517824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326517824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326517824", "variance": "INVARIANT"}}, "139809326518272": {"type": "Function", "content": {"typeVars": [".0.139809326518272"], "argTypes": [{"nodeId": ".0.139809326518272"}, {"nodeId": "139809234331552"}], "returnType": {"nodeId": ".0.139809326518272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139809326518272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326518272", "variance": "INVARIANT"}}, "139809234331552": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809187744672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809187707616"}, {"nodeId": "139809187707840"}, {"nodeId": "139809187708064"}]}}, "139809187707616": {"type": "Function", "content": {"typeVars": [".-1.139809187707616"], "argTypes": [{"nodeId": "139809187744336"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809187707616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809187744336": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": ".-1.139809187707616"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809187707616"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809187744000"}, {"nodeId": ".-1.139809187707616"}]}]}}, ".-1.139809187707616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809187707616", "variance": "INVARIANT"}}, "139809187744000": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809187707840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809187708064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809338538848"}, {"nodeId": "139809187744448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809187744448": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326518720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809234331776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139809234331776": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809326519168": {"type": "Function", "content": {"typeVars": [".0.139809326519168"], "argTypes": [{"nodeId": ".0.139809326519168"}, {"nodeId": "139809234331888"}], "returnType": {"nodeId": ".0.139809326519168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139809326519168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326519168", "variance": "INVARIANT"}}, "139809234331888": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326519616": {"type": "Function", "content": {"typeVars": [".0.139809326519616"], "argTypes": [{"nodeId": ".0.139809326519616"}, {"nodeId": "139809234332000"}], "returnType": {"nodeId": ".0.139809326519616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139809326519616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326519616", "variance": "INVARIANT"}}, "139809234332000": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326520064": {"type": "Function", "content": {"typeVars": [".0.139809326520064"], "argTypes": [{"nodeId": ".0.139809326520064"}, {"nodeId": "139809234332112"}, {"nodeId": "139809234332224"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326520064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.139809326520064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326520064", "variance": "INVARIANT"}}, "139809234332112": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809234332224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326520512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234332336"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234332336": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326520960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234332448"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139809234332448": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809251076128"}]}}, "139809326521408": {"type": "Function", "content": {"typeVars": [".0.139809326521408"], "argTypes": [{"nodeId": ".0.139809326521408"}, {"nodeId": "139809338538848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326521408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139809326521408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326521408", "variance": "INVARIANT"}}, "139809326521856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809234332784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139809234332784": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809326522304": {"type": "Function", "content": {"typeVars": [".0.139809326522304"], "argTypes": [{"nodeId": ".0.139809326522304"}, {"nodeId": "139809234332896"}], "returnType": {"nodeId": ".0.139809326522304"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139809326522304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326522304", "variance": "INVARIANT"}}, "139809234332896": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326522752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234333008"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809234333008": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326523200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234333120"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139809234333120": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326523648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139809326524096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076128"}, {"nodeId": "139809234333232"}, {"nodeId": "139809234333344"}, {"nodeId": "139809234333456"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139809234333232": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}]}}, "139809234333344": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234333456": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326524544": {"type": "Function", "content": {"typeVars": [".0.139809326524544"], "argTypes": [{"nodeId": ".0.139809326524544"}, {"nodeId": "139809234333568"}], "returnType": {"nodeId": ".0.139809326524544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139809326524544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326524544", "variance": "INVARIANT"}}, "139809234333568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809326524992": {"type": "Function", "content": {"typeVars": [".0.139809326524992"], "argTypes": [{"nodeId": ".0.139809326524992"}], "returnType": {"nodeId": ".0.139809326524992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326524992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326524992", "variance": "INVARIANT"}}, "139809326525440": {"type": "Function", "content": {"typeVars": [".0.139809326525440"], "argTypes": [{"nodeId": ".0.139809326525440"}], "returnType": {"nodeId": ".0.139809326525440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326525440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326525440", "variance": "INVARIANT"}}, "139809326525888": {"type": "Function", "content": {"typeVars": [".0.139809326525888"], "argTypes": [{"nodeId": ".0.139809326525888"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809326525888"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.139809326525888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326525888", "variance": "INVARIANT"}}, "139809326526336": {"type": "Function", "content": {"typeVars": [".0.139809326526336"], "argTypes": [{"nodeId": ".0.139809326526336"}], "returnType": {"nodeId": ".0.139809326526336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326526336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326526336", "variance": "INVARIANT"}}, "139809326526784": {"type": "Function", "content": {"typeVars": [".0.139809326526784"], "argTypes": [{"nodeId": ".0.139809326526784"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326526784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.139809326526784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076128"}, "def": "139809326526784", "variance": "INVARIANT"}}, "139809251076480": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809187774976"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234328640"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326528576"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326529024"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326529472"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326529920"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326612544"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326612992"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326613440"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326613888"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326614336"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326614784"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326615232"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326615680"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326616128"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326616576"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326617024"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326617472"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326617920"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326618368"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326618816"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326619264"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326619712"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326620160"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326620608"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326621056"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326621504"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326621952"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326622400"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326622848"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251076480"}], "bases": [{"nodeId": "139809338536032", "args": [{"nodeId": ".1.139809251076480"}]}], "isAbstract": false}}, ".1.139809251076480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251076480", "variance": "INVARIANT"}}, "139809187774976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809234333792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234333792": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234328640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326527680"}, {"nodeId": "139809326528128"}]}}, "139809326527680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809234334016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "139809234334016": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326528128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809234334128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "139809234334128": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809326528576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326529024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326529472": {"type": "Function", "content": {"typeVars": [".0.139809326529472"], "argTypes": [{"nodeId": ".0.139809326529472"}], "returnType": {"nodeId": ".0.139809326529472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326529472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326529472", "variance": "INVARIANT"}}, "139809326529920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326612544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326612992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326613440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338538848"}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809326613888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809326614336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": ".1.139809251076480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326614784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": ".1.139809251076480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326615232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326615680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809326616128": {"type": "Function", "content": {"typeVars": [".0.139809326616128"], "argTypes": [{"nodeId": ".0.139809326616128"}], "returnType": {"nodeId": ".0.139809326616128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326616128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326616128", "variance": "INVARIANT"}}, "139809326616576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809326617024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": ".1.139809251076480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326617472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251079296"}, {"nodeId": ".1.139809251076480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809326617920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326618368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326618816": {"type": "Function", "content": {"typeVars": [".0.139809326618816"], "argTypes": [{"nodeId": ".0.139809326618816"}], "returnType": {"nodeId": "139809234334688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326618816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326618816", "variance": "INVARIANT"}}, "139809234334688": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809234334464"}, {"nodeId": "N"}, {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251076480"}]}]}}, "139809234334464": {"type": "Tuple", "content": {"items": []}}, "139809326619264": {"type": "Function", "content": {"typeVars": [".0.139809326619264"], "argTypes": [{"nodeId": ".0.139809326619264"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": ".0.139809326619264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326619264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326619264", "variance": "INVARIANT"}}, "139809326619712": {"type": "Function", "content": {"typeVars": [".0.139809326619712"], "argTypes": [{"nodeId": ".0.139809326619712"}, {"nodeId": ".0.139809326619712"}], "returnType": {"nodeId": ".0.139809326619712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326619712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326619712", "variance": "INVARIANT"}}, "139809326620160": {"type": "Function", "content": {"typeVars": [".0.139809326620160"], "argTypes": [{"nodeId": ".0.139809326620160"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326620160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326620160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326620160", "variance": "INVARIANT"}}, "139809326620608": {"type": "Function", "content": {"typeVars": [".0.139809326620608"], "argTypes": [{"nodeId": ".0.139809326620608"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809326620608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809326620608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, "def": "139809326620608", "variance": "INVARIANT"}}, "139809326621056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326621504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326621952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326622400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}, {"nodeId": "139809251076480", "args": [{"nodeId": ".1.139809251076480"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809326622848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809250917216": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234329872"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326625088"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326625536"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809326625984"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809187859136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234334240"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234335024"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321534400"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321534848"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321535296"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321535744"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321536192"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321536640"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321537088"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321537536"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321537984"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321538432"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321538880"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321539328"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321539776"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321540224"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321540672"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321541120"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321541568"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321542016"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321542464"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139809250917216"}], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "isAbstract": false}}, ".1.139809250917216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250917216", "variance": "INVARIANT"}}, "139809234329872": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326623296"}, {"nodeId": "139809326623744"}, {"nodeId": "139809326624192"}, {"nodeId": "139809326624640"}]}}, "139809326623296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809326623744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809326624192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326624640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326625088": {"type": "Function", "content": {"typeVars": [".0.139809326625088"], "argTypes": [{"nodeId": ".0.139809326625088"}], "returnType": {"nodeId": ".0.139809326625088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809326625088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809326625088", "variance": "INVARIANT"}}, "139809326625536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809326625984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809234335136"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809234335360"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139809234335136": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234335360": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}}, "139809187859136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "139809234335584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "139809234335584": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234334240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326626880"}, {"nodeId": "139809326627328"}, {"nodeId": "139809326627776"}]}}, "139809326626880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809326627328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809326627776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809234335024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809326628224"}, {"nodeId": "139809321533504"}, {"nodeId": "139809321533952"}]}}, "139809326628224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809321533504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809321533952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "N"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809321534400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": ".1.139809250917216"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139809321534848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321535296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321535744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321536192": {"type": "Function", "content": {"typeVars": [".-1.139809321536192"], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".-1.139809321536192"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": "139809234335920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321536192": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321536192", "variance": "INVARIANT"}}, "139809234335920": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250917216"}, {"nodeId": ".-1.139809321536192"}]}}, "139809321536640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321537088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321537536": {"type": "Function", "content": {"typeVars": [".-1.139809321537536"], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": ".-1.139809321537536"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": "139809234336032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321537536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321537536", "variance": "INVARIANT"}}, "139809234336032": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809250917216"}, {"nodeId": ".-1.139809321537536"}]}}, "139809321537984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321538432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321538880": {"type": "Function", "content": {"typeVars": [".0.139809321538880"], "argTypes": [{"nodeId": ".0.139809321538880"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321538880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321538880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321538880", "variance": "INVARIANT"}}, "139809262990464": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317302368"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.139809262990464"}, {"nodeId": ".2.139809262990464"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["items"]}}, ".1.139809262990464": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990464", "variance": "COVARIANT"}}, ".2.139809262990464": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262990464", "variance": "COVARIANT"}}, "139809317302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809262990464"}, {"nodeId": ".2.139809262990464"}]}], "returnType": {"nodeId": "139809338536384", "args": [{"nodeId": "139809229436768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229436768": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262990464"}, {"nodeId": ".2.139809262990464"}]}}, "139809321539328": {"type": "Function", "content": {"typeVars": [".0.139809321539328"], "argTypes": [{"nodeId": ".0.139809321539328"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321539328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321539328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321539328", "variance": "INVARIANT"}}, "139809321539776": {"type": "Function", "content": {"typeVars": [".0.139809321539776"], "argTypes": [{"nodeId": ".0.139809321539776"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321539776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321539776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321539776", "variance": "INVARIANT"}}, "139809321540224": {"type": "Function", "content": {"typeVars": [".0.139809321540224"], "argTypes": [{"nodeId": ".0.139809321540224"}, {"nodeId": "139809262990464", "args": [{"nodeId": ".1.139809250917216"}, {"nodeId": "139809338538848"}]}], "returnType": {"nodeId": ".0.139809321540224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321540224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, "def": "139809321540224", "variance": "INVARIANT"}}, "139809321540672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321541120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321541568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321542016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321542464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917216", "args": [{"nodeId": ".1.139809250917216"}]}, {"nodeId": "139809250917216", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262978848": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321542912"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809262978848"}], "bases": [{"nodeId": "139809251069440", "args": [{"nodeId": ".1.139809262978848"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809262978848"}]}], "isAbstract": false}}, ".1.139809262978848": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262978848", "variance": "COVARIANT"}}, "139809321542912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978848", "args": [{"nodeId": ".1.139809262978848"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262978848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262979200": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321543360"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}], "bases": [{"nodeId": "139809251069088", "args": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": "139809266824384"}]}], "isAbstract": false}}, ".1.139809262979200": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262979200", "variance": "COVARIANT"}}, ".2.139809262979200": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262979200", "variance": "COVARIANT"}}, "139809321543360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979200", "args": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809234336704"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234336704": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}}, "139809266824384": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262979200"}, {"nodeId": ".2.139809262979200"}]}}, "139809262979552": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321543808"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809262979552"}], "bases": [{"nodeId": "139809251069792", "args": [{"nodeId": ".1.139809262979552"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809262979552"}]}], "isAbstract": false}}, ".1.139809262979552": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262979552", "variance": "COVARIANT"}}, "139809321543808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979552", "args": [{"nodeId": ".1.139809262979552"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262979552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251076832": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321544256"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251076832"}, {"nodeId": ".2.139809251076832"}], "bases": [{"nodeId": "139809251071904", "args": [{"nodeId": ".1.139809251076832"}, {"nodeId": ".2.139809251076832"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809251076832"}]}], "isAbstract": false}}, ".1.139809251076832": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251076832", "variance": "COVARIANT"}}, ".2.139809251076832": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251076832", "variance": "COVARIANT"}}, "139809321544256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251076832", "args": [{"nodeId": ".1.139809251076832"}, {"nodeId": ".2.139809251076832"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251076832"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251077184": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321544704"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}], "bases": [{"nodeId": "139809251072608", "args": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": "139809254795616"}]}], "isAbstract": false}}, ".1.139809251077184": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077184", "variance": "COVARIANT"}}, ".2.139809251077184": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077184", "variance": "COVARIANT"}}, "139809321544704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077184", "args": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809234336928"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809234336928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}}, "139809254795616": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251077184"}, {"nodeId": ".2.139809251077184"}]}}, "139809251077536": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321545152"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139809251077536"}, {"nodeId": ".2.139809251077536"}], "bases": [{"nodeId": "139809251072256", "args": [{"nodeId": ".1.139809251077536"}, {"nodeId": ".2.139809251077536"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".2.139809251077536"}]}], "isAbstract": false}}, ".1.139809251077536": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077536", "variance": "COVARIANT"}}, ".2.139809251077536": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077536", "variance": "COVARIANT"}}, "139809321545152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077536", "args": [{"nodeId": ".1.139809251077536"}, {"nodeId": ".2.139809251077536"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".2.139809251077536"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251077888": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321545600"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321546048"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321546496"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321546944"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321547392"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321547840"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321548288"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234335696"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234337264"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809251077888"}]}], "isAbstract": false}}, ".1.139809251077888": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077888", "variance": "INVARIANT"}}, ".2.139809251077888": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251077888", "variance": "INVARIANT"}}, "139809321545600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809234337152"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "139809234337152": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}}, "139809321546048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": ".1.139809251077888"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "139809321546496": {"type": "Function", "content": {"typeVars": [".0.139809321546496"], "argTypes": [{"nodeId": ".0.139809321546496"}], "returnType": {"nodeId": ".0.139809321546496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321546496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "def": "139809321546496", "variance": "INVARIANT"}}, "139809321546944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321547392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809251076832", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321547840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809251077184", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321548288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}], "returnType": {"nodeId": "139809251077536", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234335696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321548736"}, {"nodeId": "139809321549184"}]}}, "139809321548736": {"type": "Function", "content": {"typeVars": [".-1.139809321548736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321548736"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251077888", "args": [{"nodeId": ".-1.139809321548736"}, {"nodeId": "139809234337600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809321548736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321548736", "variance": "INVARIANT"}}, "139809234337600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809321549184": {"type": "Function", "content": {"typeVars": [".-1.139809321549184", ".-2.139809321549184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321549184"}]}, {"nodeId": ".-2.139809321549184"}], "returnType": {"nodeId": "139809251077888", "args": [{"nodeId": ".-1.139809321549184"}, {"nodeId": ".-2.139809321549184"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139809321549184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321549184", "variance": "INVARIANT"}}, ".-2.139809321549184": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321549184", "variance": "INVARIANT"}}, "139809234337264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321648192"}, {"nodeId": "139809321648640"}]}}, "139809321648192": {"type": "Function", "content": {"typeVars": [".-1.139809321648192"], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": "139809229422768"}]}, {"nodeId": ".1.139809251077888"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809229422880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139809229422768": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321648192"}, {"nodeId": "N"}]}}, ".-1.139809321648192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321648192", "variance": "INVARIANT"}}, "139809229422880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321648192"}, {"nodeId": "N"}]}}, "139809321648640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251077888", "args": [{"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}]}, {"nodeId": ".1.139809251077888"}, {"nodeId": ".2.139809251077888"}], "returnType": {"nodeId": ".2.139809251077888"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139809250917568": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809254795392"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234337376"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321652672"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321653120"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321653568"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}], "isAbstract": false}}, ".1.139809250917568": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250917568", "variance": "INVARIANT"}}, ".2.139809250917568": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250917568", "variance": "INVARIANT"}}, "139809254795392": {"type": "Union", "content": {"items": [{"nodeId": "139809255095456"}, {"nodeId": "N"}]}}, "139809255095456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809234337376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321649088"}, {"nodeId": "139809321649536"}, {"nodeId": "139809321649984"}, {"nodeId": "139809321650432"}, {"nodeId": "139809321650880"}, {"nodeId": "139809321651328"}, {"nodeId": "139809321651776"}, {"nodeId": "139809321652224"}]}}, "139809321649088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809321649536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809321649984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809229423104": {"type": "Union", "content": {"items": [{"nodeId": "139809234276576"}, {"nodeId": "N"}]}}, "139809234276576": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321650432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423216"}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139809229423216": {"type": "Union", "content": {"items": [{"nodeId": "139809234276800"}, {"nodeId": "N"}]}}, "139809234276800": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321650880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423328"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809229423328": {"type": "Union", "content": {"items": [{"nodeId": "139809234276128"}, {"nodeId": "N"}]}}, "139809234276128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321651328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423440"}, {"nodeId": "139809262990816", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139809229423440": {"type": "Union", "content": {"items": [{"nodeId": "139809234277024"}, {"nodeId": "N"}]}}, "139809234277024": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809321651776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423552"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809229423776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809229423552": {"type": "Union", "content": {"items": [{"nodeId": "139809234277248"}, {"nodeId": "N"}]}}, "139809234277248": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809229423776": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}}, "139809321652224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": "139809229423888"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809229424112"}]}, {"nodeId": ".2.139809250917568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139809229423888": {"type": "Union", "content": {"items": [{"nodeId": "139809234277472"}, {"nodeId": "N"}]}}, "139809234277472": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": [], "argNames": []}}, "139809229424112": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".2.139809250917568"}]}}, "139809321652672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, {"nodeId": ".1.139809250917568"}], "returnType": {"nodeId": ".2.139809250917568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809321653120": {"type": "Function", "content": {"typeVars": [".0.139809321653120"], "argTypes": [{"nodeId": ".0.139809321653120"}], "returnType": {"nodeId": ".0.139809321653120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321653120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, "def": "139809321653120", "variance": "INVARIANT"}}, "139809321653568": {"type": "Function", "content": {"typeVars": [".0.139809321653568"], "argTypes": [{"nodeId": ".0.139809321653568"}], "returnType": {"nodeId": ".0.139809321653568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321653568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250917568", "args": [{"nodeId": ".1.139809250917568"}, {"nodeId": ".2.139809250917568"}]}, "def": "139809321653568", "variance": "INVARIANT"}}, "139809251078240": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321654016"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321654464"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183056384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321655360"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321655808"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321656256"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321656704"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321657152"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321657600"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321658048"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321658496"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229422656"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229424336"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321660736"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183059072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229424560"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321662080"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809321662528"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229424896"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "isAbstract": false}}, ".1.139809251078240": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251078240", "variance": "INVARIANT"}}, ".2.139809251078240": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251078240", "variance": "INVARIANT"}}, "139809321654016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "139809321654464": {"type": "Function", "content": {"typeVars": [".0.139809321654464"], "argTypes": [{"nodeId": ".0.139809321654464"}, {"nodeId": "139809229424448"}], "returnType": {"nodeId": ".0.139809321654464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.139809321654464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321654464", "variance": "INVARIANT"}}, "139809229424448": {"type": "Union", "content": {"items": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "N"}]}}, "139809183056384": {"type": "Function", "content": {"typeVars": [".0.139809183056384"], "argTypes": [{"nodeId": ".0.139809183056384"}], "returnType": {"nodeId": ".0.139809183056384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809183056384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809183056384", "variance": "INVARIANT"}}, "139809321655360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809321655808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321656256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321656704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251078240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321657152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809321657600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809321658048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139809321658496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229422656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321658944"}, {"nodeId": "139809321659392"}]}}, "139809321658944": {"type": "Function", "content": {"typeVars": [".-1.139809321658944"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": "139809229424672"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809229424784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139809229424672": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321658944"}, {"nodeId": "N"}]}}, ".-1.139809321658944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321658944", "variance": "INVARIANT"}}, "139809229424784": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139809321658944"}, {"nodeId": "N"}]}}, "139809321659392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139809229424336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321659840"}, {"nodeId": "139809321660288"}]}}, "139809321659840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}], "returnType": {"nodeId": ".2.139809251078240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139809321660288": {"type": "Function", "content": {"typeVars": [".-1.139809321660288"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": ".1.139809251078240"}, {"nodeId": "139809229425008"}], "returnType": {"nodeId": "139809229425120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139809229425008": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-1.139809321660288"}]}}, ".-1.139809321660288": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321660288", "variance": "INVARIANT"}}, "139809229425120": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-1.139809321660288"}]}}, "139809321660736": {"type": "Function", "content": {"typeVars": [".0.139809321660736"], "argTypes": [{"nodeId": ".0.139809321660736"}], "returnType": {"nodeId": ".0.139809321660736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809321660736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321660736", "variance": "INVARIANT"}}, "139809183059072": {"type": "Function", "content": {"typeVars": [".0.139809183059072"], "argTypes": [{"nodeId": ".0.139809183059072"}], "returnType": {"nodeId": ".0.139809183059072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809183059072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809183059072", "variance": "INVARIANT"}}, "139809229424560": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321661184"}, {"nodeId": "139809321661632"}]}}, "139809321661184": {"type": "Function", "content": {"typeVars": [".-1.139809321661184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321661184"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": ".-1.139809321661184"}, {"nodeId": "139809229425456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.139809321661184": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321661184", "variance": "INVARIANT"}}, "139809229425456": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809321661632": {"type": "Function", "content": {"typeVars": [".-1.139809321661632", ".-2.139809321661632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809321661632"}]}, {"nodeId": ".-2.139809321661632"}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": ".-1.139809321661632"}, {"nodeId": ".-2.139809321661632"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139809321661632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321661632", "variance": "INVARIANT"}}, ".-2.139809321661632": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321661632", "variance": "INVARIANT"}}, "139809321662080": {"type": "Function", "content": {"typeVars": [".-1.139809321662080", ".-2.139809321662080"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809321662080"}, {"nodeId": ".-2.139809321662080"}]}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": "139809229425568"}, {"nodeId": "139809229425680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321662080": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662080", "variance": "INVARIANT"}}, ".-2.139809321662080": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662080", "variance": "INVARIANT"}}, "139809229425568": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".-1.139809321662080"}]}}, "139809229425680": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-2.139809321662080"}]}}, "139809321662528": {"type": "Function", "content": {"typeVars": [".-1.139809321662528", ".-2.139809321662528"], "argTypes": [{"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809321662528"}, {"nodeId": ".-2.139809321662528"}]}], "returnType": {"nodeId": "139809251078240", "args": [{"nodeId": "139809229425792"}, {"nodeId": "139809229425904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809321662528": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662528", "variance": "INVARIANT"}}, ".-2.139809321662528": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809321662528", "variance": "INVARIANT"}}, "139809229425792": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".-1.139809321662528"}]}}, "139809229425904": {"type": "Union", "content": {"items": [{"nodeId": ".2.139809251078240"}, {"nodeId": ".-2.139809321662528"}]}}, "139809229424896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809321662976"}, {"nodeId": "139809321663424"}]}}, "139809321662976": {"type": "Function", "content": {"typeVars": [".0.139809321662976"], "argTypes": [{"nodeId": ".0.139809321662976"}, {"nodeId": "139809262990816", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}], "returnType": {"nodeId": ".0.139809321662976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321662976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321662976", "variance": "INVARIANT"}}, "139809321663424": {"type": "Function", "content": {"typeVars": [".0.139809321663424"], "argTypes": [{"nodeId": ".0.139809321663424"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809229426240"}]}], "returnType": {"nodeId": ".0.139809321663424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809321663424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078240", "args": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}, "def": "139809321663424", "variance": "INVARIANT"}}, "139809229426240": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809251078240"}, {"nodeId": ".2.139809251078240"}]}}, "139809338528288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170844896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262731680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263661936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170845568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809170846240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305152192"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809170844896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}], "returnType": {"nodeId": "139809225073808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225073808": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809251081760": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313371552"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809313371552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081760"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809263661936": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809170845568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809170846240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305152192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528288"}, {"nodeId": "139809338527232"}, {"nodeId": "139809225074144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225074144": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809338538496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229733136"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809229733136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809322196928"}, {"nodeId": "139809322197376"}, {"nodeId": "139809322197824"}]}}, "139809322196928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538496"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809322197376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538496"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809322197824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338538496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251073312": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225078176"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305475136"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305475584"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305476032"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305476480"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305591872"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305592320"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305592768"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305593216"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305593664"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305594112"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305594560"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305595008"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305595456"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305595904"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305596352"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305596800"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305597248"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305597696"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305598144"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305598592"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251073312"}], "bases": [{"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251073312"}]}], "isAbstract": false}}, ".1.139809251073312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251073312", "variance": "COVARIANT"}}, "139809225078176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305474240"}, {"nodeId": "139809305474688"}]}}, "139809305474240": {"type": "Function", "content": {"typeVars": [".0.139809305474240"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809305474240"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809305474240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "def": "139809305474240", "variance": "INVARIANT"}}, "139809305474688": {"type": "Function", "content": {"typeVars": [".0.139809305474688"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": ".0.139809305474688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139809305474688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "def": "139809305474688", "variance": "INVARIANT"}}, "139809305475136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809305475584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305476032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139809305476480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305591872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305592320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305592768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305593216": {"type": "Function", "content": {"typeVars": [".-1.139809305593216"], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809305593216"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": "139809225080304"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139809305593216": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305593216", "variance": "INVARIANT"}}, "139809225080304": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251073312"}, {"nodeId": ".-1.139809305593216"}]}}, "139809305593664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305594112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305594560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305595008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305595456": {"type": "Function", "content": {"typeVars": [".-1.139809305595456"], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305595456"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": "139809225080416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305595456": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305595456", "variance": "INVARIANT"}}, "139809225080416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251073312"}, {"nodeId": ".-1.139809305595456"}]}}, "139809305595904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".1.139809251073312"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305596352": {"type": "Function", "content": {"typeVars": [".-1.139809305596352"], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": ".-1.139809305596352"}]}], "returnType": {"nodeId": "139809251073312", "args": [{"nodeId": "139809225080528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809305596352": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809305596352", "variance": "INVARIANT"}}, "139809225080528": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251073312"}, {"nodeId": ".-1.139809305596352"}]}}, "139809305596800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305597248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305597696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305598144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073312", "args": [{"nodeId": ".1.139809251073312"}]}, {"nodeId": "139809338536384", "args": [{"nodeId": "139809338527232"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305598592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809251073664": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305599040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305599488"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305599936"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305600384"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809251073664"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": "139809266818672"}]}], "isAbstract": false}}, ".1.139809251073664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251073664", "variance": "INVARIANT"}}, "139809305599040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073664", "args": [{"nodeId": ".1.139809251073664"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251073664"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "139809305599488": {"type": "Function", "content": {"typeVars": [".0.139809305599488"], "argTypes": [{"nodeId": ".0.139809305599488"}], "returnType": {"nodeId": ".0.139809305599488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809305599488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251073664", "args": [{"nodeId": ".1.139809251073664"}]}, "def": "139809305599488", "variance": "INVARIANT"}}, "139809305599936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251073664", "args": [{"nodeId": ".1.139809251073664"}]}], "returnType": {"nodeId": "139809225441568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225441568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": ".1.139809251073664"}]}}, "139809305600384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809266818672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": ".1.139809251073664"}]}}, "139809250725376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809171317792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809171318240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809171318464"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225079520"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305603072"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305603520"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305603968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305604416"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305604864"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225441344"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305606208"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809171317792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809171318240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809171318464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225079520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305602176"}, {"nodeId": "139809305602624"}]}}, "139809305602176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305602624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809305603072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305603520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809305603968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305604416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305604864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225441344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809305605312"}, {"nodeId": "139809305605760"}]}}, "139809305605312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809251079296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305605760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809250725376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809305606208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725376"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250725728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259358688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809301076832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259358016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305606656"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305607104"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809305607552"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300496448"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300496896"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300497344"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300497792"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809259358688": {"type": "Union", "content": {"items": [{"nodeId": "139809266691744"}, {"nodeId": "N"}]}}, "139809266691744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809301076832": {"type": "Union", "content": {"items": [{"nodeId": "139809266681888"}, {"nodeId": "N"}]}}, "139809266681888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259358016": {"type": "Union", "content": {"items": [{"nodeId": "139809255094336"}, {"nodeId": "N"}]}}, "139809255094336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305606656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809225442016"}, {"nodeId": "139809225442352"}, {"nodeId": "139809225442688"}, {"nodeId": "139809225442912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "139809225442016": {"type": "Union", "content": {"items": [{"nodeId": "139809224995360"}, {"nodeId": "N"}]}}, "139809224995360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225442352": {"type": "Union", "content": {"items": [{"nodeId": "139809224995584"}, {"nodeId": "N"}]}}, "139809224995584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809225442688": {"type": "Union", "content": {"items": [{"nodeId": "139809224995808"}, {"nodeId": "N"}]}}, "139809224995808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809225442912": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809305607104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809224994688"}], "returnType": {"nodeId": "139809250725728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809224994688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809305607552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809224995136"}], "returnType": {"nodeId": "139809250725728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809224995136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809300496448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "139809224996032"}], "returnType": {"nodeId": "139809250725728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809224996032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809300496896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "A"}, {"nodeId": "139809225443696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809225443696": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809300497344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809300497792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250725728"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250726080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809241936320": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300501824"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.139809241936320"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__fspath__"]}}, ".1.139809241936320": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809241936320", "variance": "COVARIANT"}}, "139809300501824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809241936320", "args": [{"nodeId": ".1.139809241936320"}]}], "returnType": {"nodeId": ".1.139809241936320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250726432": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300502720"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139809250726432"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__anext__"]}}, ".1.139809250726432": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "139809338533216", "args": [{"nodeId": "A"}]}, "def": "139809250726432", "variance": "COVARIANT"}}, "139809338533216": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221197184"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338533216"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__await__"]}}, ".1.139809338533216": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533216", "variance": "COVARIANT"}}, "139809221197184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338533216"}]}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.139809338533216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809300502720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250726432", "args": [{"nodeId": ".1.139809250726432"}]}], "returnType": {"nodeId": ".1.139809250726432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251074016": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225445040"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300644800"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300645248"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809251074016"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251074016"}]}], "isAbstract": false}}, ".1.139809251074016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251074016", "variance": "INVARIANT"}}, "139809225445040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809300512128"}, {"nodeId": "139809300643904"}, {"nodeId": "139809300644352"}]}}, "139809300512128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, {"nodeId": "N"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809225448176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225448176": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809251074016"}, {"nodeId": "N"}]}}, "139809300643904": {"type": "Function", "content": {"typeVars": [".-1.139809300643904"], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, {"nodeId": "139809224996928"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300643904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809224996928": {"type": "Function", "content": {"typeVars": [".-1.139809224996928"], "argTypes": [{"nodeId": ".-1.139809224996928"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809224996928": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809224996928", "variance": "INVARIANT"}}, ".-1.139809300643904": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300643904", "variance": "INVARIANT"}}, "139809300644352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, {"nodeId": "139809224996704"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809251074016"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809224996704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139809251074016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809300644800": {"type": "Function", "content": {"typeVars": [".0.139809300644800"], "argTypes": [{"nodeId": ".0.139809300644800"}], "returnType": {"nodeId": ".0.139809300644800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809300644800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}, "def": "139809300644800", "variance": "INVARIANT"}}, "139809300645248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074016", "args": [{"nodeId": ".1.139809251074016"}]}], "returnType": {"nodeId": ".1.139809251074016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250726784": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300651968"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809250726784"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__"]}}, ".1.139809250726784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250726784", "variance": "COVARIANT"}}, "139809300651968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250726784", "args": [{"nodeId": ".1.139809250726784"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809250726784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251074368": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225448512"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300659136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300659584"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809251074368"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251074368"}]}], "isAbstract": false}}, ".1.139809251074368": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251074368", "variance": "INVARIANT"}}, "139809225448512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809300656448"}, {"nodeId": "139809300656896"}, {"nodeId": "139809300657344"}, {"nodeId": "139809300657792"}, {"nodeId": "139809300658240"}, {"nodeId": "139809300658688"}]}}, "139809300656448": {"type": "Function", "content": {"typeVars": [".-1.139809300656448"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540096"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300656448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809225540096": {"type": "Function", "content": {"typeVars": [".-1.139809225540096"], "argTypes": [{"nodeId": ".-1.139809225540096"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809225540096": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540096", "variance": "INVARIANT"}}, ".-1.139809300656448": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300656448", "variance": "INVARIANT"}}, "139809300656896": {"type": "Function", "content": {"typeVars": [".-1.139809300656896", ".-2.139809300656896"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225539872"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300656896"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300656896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139809225539872": {"type": "Function", "content": {"typeVars": [".-1.139809225539872", ".-2.139809225539872"], "argTypes": [{"nodeId": ".-1.139809225539872"}, {"nodeId": ".-2.139809225539872"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809225539872": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539872", "variance": "INVARIANT"}}, ".-2.139809225539872": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539872", "variance": "INVARIANT"}}, ".-1.139809300656896": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300656896", "variance": "INVARIANT"}}, ".-2.139809300656896": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300656896", "variance": "INVARIANT"}}, "139809300657344": {"type": "Function", "content": {"typeVars": [".-1.139809300657344", ".-2.139809300657344", ".-3.139809300657344"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225539648"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300657344"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300657344"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809300657344"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139809225539648": {"type": "Function", "content": {"typeVars": [".-1.139809225539648", ".-2.139809225539648", ".-3.139809225539648"], "argTypes": [{"nodeId": ".-1.139809225539648"}, {"nodeId": ".-2.139809225539648"}, {"nodeId": ".-3.139809225539648"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.139809225539648": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539648", "variance": "INVARIANT"}}, ".-2.139809225539648": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539648", "variance": "INVARIANT"}}, ".-3.139809225539648": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225539648", "variance": "INVARIANT"}}, ".-1.139809300657344": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657344", "variance": "INVARIANT"}}, ".-2.139809300657344": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657344", "variance": "INVARIANT"}}, ".-3.139809300657344": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657344", "variance": "INVARIANT"}}, "139809300657792": {"type": "Function", "content": {"typeVars": [".-1.139809300657792", ".-2.139809300657792", ".-3.139809300657792", ".-4.139809300657792"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540320"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300657792"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300657792"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809300657792"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809300657792"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139809225540320": {"type": "Function", "content": {"typeVars": [".-1.139809225540320", ".-2.139809225540320", ".-3.139809225540320", ".-4.139809225540320"], "argTypes": [{"nodeId": ".-1.139809225540320"}, {"nodeId": ".-2.139809225540320"}, {"nodeId": ".-3.139809225540320"}, {"nodeId": ".-4.139809225540320"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.139809225540320": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-2.139809225540320": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-3.139809225540320": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-4.139809225540320": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540320", "variance": "INVARIANT"}}, ".-1.139809300657792": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, ".-2.139809300657792": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, ".-3.139809300657792": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, ".-4.139809300657792": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300657792", "variance": "INVARIANT"}}, "139809300658240": {"type": "Function", "content": {"typeVars": [".-1.139809300658240", ".-2.139809300658240", ".-3.139809300658240", ".-4.139809300658240", ".-5.139809300658240"], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540544"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809300658240"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-5.139809300658240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "139809225540544": {"type": "Function", "content": {"typeVars": [".-1.139809225540544", ".-2.139809225540544", ".-3.139809225540544", ".-4.139809225540544", ".-5.139809225540544"], "argTypes": [{"nodeId": ".-1.139809225540544"}, {"nodeId": ".-2.139809225540544"}, {"nodeId": ".-3.139809225540544"}, {"nodeId": ".-4.139809225540544"}, {"nodeId": ".-5.139809225540544"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.139809225540544": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-2.139809225540544": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-3.139809225540544": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-4.139809225540544": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-5.139809225540544": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809225540544", "variance": "INVARIANT"}}, ".-1.139809300658240": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-2.139809300658240": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-3.139809300658240": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-4.139809300658240": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, ".-5.139809300658240": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809300658240", "variance": "INVARIANT"}}, "139809300658688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, {"nodeId": "139809225540768"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "139809225540768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809300659136": {"type": "Function", "content": {"typeVars": [".0.139809300659136"], "argTypes": [{"nodeId": ".0.139809300659136"}], "returnType": {"nodeId": ".0.139809300659136"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809300659136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}, "def": "139809300659136", "variance": "INVARIANT"}}, "139809300659584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074368", "args": [{"nodeId": ".1.139809251074368"}]}], "returnType": {"nodeId": ".1.139809251074368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809241936672": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300850816"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.139809241936672"}], "bases": [{"nodeId": "139809259143232", "args": [{"nodeId": ".1.139809241936672"}]}], "protocolMembers": ["flush", "write"]}}, ".1.139809241936672": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809241936672", "variance": "CONTRAVARIANT"}}, "139809300850816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809241936672", "args": [{"nodeId": ".1.139809241936672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809259143232": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313883296"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139809259143232"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["write"]}}, ".1.139809259143232": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809259143232", "variance": "CONTRAVARIANT"}}, "139809313883296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259143232", "args": [{"nodeId": ".1.139809259143232"}]}, {"nodeId": ".1.139809259143232"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809250727136": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300852160"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139809250727136"}, {"nodeId": ".2.139809250727136"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__pow__"]}}, ".1.139809250727136": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727136", "variance": "CONTRAVARIANT"}}, ".2.139809250727136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727136", "variance": "COVARIANT"}}, "139809300852160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250727136", "args": [{"nodeId": ".1.139809250727136"}, {"nodeId": ".2.139809250727136"}]}, {"nodeId": ".1.139809250727136"}], "returnType": {"nodeId": ".2.139809250727136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250727488": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300852608"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139809250727488"}, {"nodeId": ".2.139809250727488"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__pow__"]}}, ".1.139809250727488": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727488", "variance": "CONTRAVARIANT"}}, ".2.139809250727488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727488", "variance": "COVARIANT"}}, "139809300852608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250727488", "args": [{"nodeId": ".1.139809250727488"}, {"nodeId": ".2.139809250727488"}]}, {"nodeId": ".1.139809250727488"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.139809250727488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809250727840": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809300853056"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139809250727840"}, {"nodeId": ".2.139809250727840"}, {"nodeId": ".3.139809250727840"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__pow__"]}}, ".1.139809250727840": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727840", "variance": "CONTRAVARIANT"}}, ".2.139809250727840": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727840", "variance": "CONTRAVARIANT"}}, ".3.139809250727840": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250727840", "variance": "COVARIANT"}}, "139809300853056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250727840", "args": [{"nodeId": ".1.139809250727840"}, {"nodeId": ".2.139809250727840"}, {"nodeId": ".3.139809250727840"}]}, {"nodeId": ".1.139809250727840"}, {"nodeId": ".2.139809250727840"}], "returnType": {"nodeId": ".3.139809250727840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809251074720": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225623920"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301016000"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301016448"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301016896"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.139809251074720"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251074720"}]}], "isAbstract": false}}, ".1.139809251074720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251074720", "variance": "INVARIANT"}}, "139809225623920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809301015104"}, {"nodeId": "139809301015552"}]}}, "139809301015104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}, {"nodeId": "139809338532512", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809301015552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}, {"nodeId": "139809262989760", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262989760": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317301024"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317301472"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809262989760"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.139809262989760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262989760", "variance": "COVARIANT"}}, "139809317301024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989760", "args": [{"nodeId": ".1.139809262989760"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809317301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989760", "args": [{"nodeId": ".1.139809262989760"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262989760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809301016000": {"type": "Function", "content": {"typeVars": [".0.139809301016000"], "argTypes": [{"nodeId": ".0.139809301016000"}], "returnType": {"nodeId": ".0.139809301016000"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809301016000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}, "def": "139809301016000", "variance": "INVARIANT"}}, "139809301016448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": ".1.139809251074720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809301016896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251074720", "args": [{"nodeId": ".1.139809251074720"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250728192": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301017792"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139809250728192"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__round__"]}}, ".1.139809250728192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250728192", "variance": "COVARIANT"}}, "139809301017792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250728192", "args": [{"nodeId": ".1.139809250728192"}]}], "returnType": {"nodeId": ".1.139809250728192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250728544": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301018240"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139809250728544"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__round__"]}}, ".1.139809250728544": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250728544", "variance": "COVARIANT"}}, "139809301018240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250728544", "args": [{"nodeId": ".1.139809250728544"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809250728544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809241937024": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "139809262986944", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139809262987296", "args": [{"nodeId": "139809338538848"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "139809262986944": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317297440"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.139809262986944"}, {"nodeId": ".2.139809262986944"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__add__"]}}, ".1.139809262986944": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262986944", "variance": "CONTRAVARIANT"}}, ".2.139809262986944": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262986944", "variance": "COVARIANT"}}, "139809317297440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262986944", "args": [{"nodeId": ".1.139809262986944"}, {"nodeId": ".2.139809262986944"}]}, {"nodeId": ".1.139809262986944"}], "returnType": {"nodeId": ".2.139809262986944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262987296": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317297888"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.139809262987296"}, {"nodeId": ".2.139809262987296"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__radd__"]}}, ".1.139809262987296": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987296", "variance": "CONTRAVARIANT"}}, ".2.139809262987296": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987296", "variance": "COVARIANT"}}, "139809317297888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262987296", "args": [{"nodeId": ".1.139809262987296"}, {"nodeId": ".2.139809262987296"}]}, {"nodeId": ".1.139809262987296"}], "returnType": {"nodeId": ".2.139809262987296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251075072": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809225627392"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301226304"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301226752"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809251075072"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809251075072"}]}], "isAbstract": false}}, ".1.139809251075072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251075072", "variance": "COVARIANT"}}, "139809225627392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809301220928"}, {"nodeId": "139809301221376"}, {"nodeId": "139809301221824"}, {"nodeId": "139809301222272"}, {"nodeId": "139809301222720"}, {"nodeId": "139809301223168"}]}}, "139809301220928": {"type": "Function", "content": {"typeVars": [".-1.139809301220928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301220928"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225628624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.139809301220928": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301220928", "variance": "INVARIANT"}}, "139809225628624": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301220928"}]}}, "139809301221376": {"type": "Function", "content": {"typeVars": [".-1.139809301221376", ".-2.139809301221376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301221376"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301221376"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225628848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.139809301221376": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221376", "variance": "INVARIANT"}}, ".-2.139809301221376": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221376", "variance": "INVARIANT"}}, "139809225628848": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301221376"}, {"nodeId": ".-2.139809301221376"}]}}, "139809301221824": {"type": "Function", "content": {"typeVars": [".-1.139809301221824", ".-2.139809301221824", ".-3.139809301221824"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301221824"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301221824"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809301221824"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225629072"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.139809301221824": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221824", "variance": "INVARIANT"}}, ".-2.139809301221824": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221824", "variance": "INVARIANT"}}, ".-3.139809301221824": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301221824", "variance": "INVARIANT"}}, "139809225629072": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301221824"}, {"nodeId": ".-2.139809301221824"}, {"nodeId": ".-3.139809301221824"}]}}, "139809301222272": {"type": "Function", "content": {"typeVars": [".-1.139809301222272", ".-2.139809301222272", ".-3.139809301222272", ".-4.139809301222272"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301222272"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301222272"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809301222272"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809301222272"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225629296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.139809301222272": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, ".-2.139809301222272": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, ".-3.139809301222272": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, ".-4.139809301222272": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222272", "variance": "INVARIANT"}}, "139809225629296": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301222272"}, {"nodeId": ".-2.139809301222272"}, {"nodeId": ".-3.139809301222272"}, {"nodeId": ".-4.139809301222272"}]}}, "139809301222720": {"type": "Function", "content": {"typeVars": [".-1.139809301222720", ".-2.139809301222720", ".-3.139809301222720", ".-4.139809301222720", ".-5.139809301222720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-1.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-2.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-3.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-4.139809301222720"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": ".-5.139809301222720"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809225629520"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.139809301222720": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-2.139809301222720": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-3.139809301222720": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-4.139809301222720": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, ".-5.139809301222720": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809301222720", "variance": "INVARIANT"}}, "139809225629520": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139809301222720"}, {"nodeId": ".-2.139809301222720"}, {"nodeId": ".-3.139809301222720"}, {"nodeId": ".-4.139809301222720"}, {"nodeId": ".-5.139809301222720"}]}}, "139809301223168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809251075072", "args": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "139809301226304": {"type": "Function", "content": {"typeVars": [".0.139809301226304"], "argTypes": [{"nodeId": ".0.139809301226304"}], "returnType": {"nodeId": ".0.139809301226304"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809301226304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251075072", "args": [{"nodeId": ".1.139809251075072"}]}, "def": "139809301226304", "variance": "INVARIANT"}}, "139809301226752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251075072", "args": [{"nodeId": ".1.139809251075072"}]}], "returnType": {"nodeId": ".1.139809251075072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250728896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250729600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809250729952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809250730304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826176"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809266826176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262866544"}}}, "139809262866544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250730656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250729248"}], "isAbstract": false}}, "139809250731008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250731360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250731712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250732064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250732416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301229888"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809301229888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250732416"}, {"nodeId": "139809338527232"}, {"nodeId": "139809225631984"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "139809225631984": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250732768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250733120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250733472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301230336"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266824720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809301230336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250733472"}, {"nodeId": "139809338527232"}, {"nodeId": "139809225632096"}, {"nodeId": "139809225632208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "139809225632096": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809225632208": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266824720": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266826512": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250733824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250734176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250734528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250734880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250735232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250735584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250735936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266826064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266823712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266824944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266825840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266825616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809266826848": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809266826064": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809266823712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266824944": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266825840": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809266825616": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250736288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250736640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250736992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250737344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731712"}], "isAbstract": false}}, "139809250737696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731712"}], "isAbstract": false}}, "139809250902080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731712"}], "isAbstract": false}}, "139809250902432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250733472"}], "isAbstract": false}}, "139809250902784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250733824"}], "isAbstract": false}}, "139809250903136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250733824"}], "isAbstract": false}}, "139809250903488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250734528"}], "isAbstract": false}}, "139809250903840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250904192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250904544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250904896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250905248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250905600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250905952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250904544"}], "isAbstract": false}}, "139809250906304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250906656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250907008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250907360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250907712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250908064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250908416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250908768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}], "isAbstract": false}}, "139809250909120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250735232"}], "isAbstract": false}}, "139809250909472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250735232"}], "isAbstract": false}}, "139809250909824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250735936"}], "isAbstract": false}}, "139809250910176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250909824"}], "isAbstract": false}}, "139809250910528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250736992"}], "isAbstract": false}}, "139809250910880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301230784"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250910528"}], "isAbstract": false}}, "139809301230784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250910880"}, {"nodeId": "139809250722560"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139809250911232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301231232"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250910528"}], "isAbstract": false}}, "139809301231232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250911232"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139809250911584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809301231680"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250910528"}], "isAbstract": false}}, "139809301231680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250911584"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139809250911936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809250912288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250912640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250912992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250913344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250913696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250914048": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250914400": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250914752": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250915104": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250915456": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250915808": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250911936"}], "isAbstract": false}}, "139809250306080": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196347616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196348064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196348736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196348288"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809196347616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809196348064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809196348736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809196348288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306080"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250306432": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196349632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196350080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196350304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196350976"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233727360"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196350528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196351200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196351424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196351648"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "139809196349632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196350080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196350304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250306432"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196350976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250306432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "139809233727360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809330323616"}, {"nodeId": "139809330324064"}, {"nodeId": "139809330324512"}, {"nodeId": "139809330324960"}, {"nodeId": "139809330325408"}, {"nodeId": "139809330325856"}, {"nodeId": "139809330326304"}]}}, "139809330323616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233730048"}, {"nodeId": "139809338538848"}, {"nodeId": "139809233730160"}, {"nodeId": "139809233730272"}, {"nodeId": "139809233730384"}], "returnType": {"nodeId": "139809250297984"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233730048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254785088"}}}, "139809233730160": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233730272": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233730384": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809330324064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233730496"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809262747168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233730496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809330324512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233729936"}, {"nodeId": "139809233731056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233729936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254601584"}}}, "139809233731056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809330324960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233731168"}, {"nodeId": "139809233944640"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233731168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599792"}}}, "139809233944640": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809330325408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233944752"}, {"nodeId": "139809233945088"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250296224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233944752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809259359584"}}}, "139809233945088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139809330325856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233945200"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809251070496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233945200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254599904"}}}, "139809330326304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809233945312"}, {"nodeId": "139809233945424"}, {"nodeId": "139809233945536"}], "returnType": {"nodeId": "139809251070144", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139809233945312": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233945424": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233945536": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809196350528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196351200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250306432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809196351424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196351648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306432"}, {"nodeId": "139809233945760"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139809233945760": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250306784": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196353216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330328992"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330329440"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330329888"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809330330336"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "139809250306080"}], "isAbstract": true}}, "139809196353216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}], "returnType": {"nodeId": "139809250306432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809330328992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250296224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809330329440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139809330329888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139809330330336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250306784"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250299392": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195701216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250902432"}], "isAbstract": false}}, "139809195701216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299392"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250300096": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325599200"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195692256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195691584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195692032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250175888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325600992"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "139809250299744"}], "isAbstract": false}}, "139809262744704": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213296064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213285312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213285760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213286432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238238592"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238239824"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238240608"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238241056"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238241504"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238241952"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238242736"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238243072"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809283863072"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809283863520"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809283863968"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262744704"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262744704": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262744704", "variance": "INVARIANT"}}, "139809213296064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213285312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213285760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213286432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238238592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283852320"}, {"nodeId": "139809266881856"}, {"nodeId": "139809283853216"}]}}, "139809283852320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238240720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238240720": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809262744352": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213375968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213374848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213373952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213373280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213372608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213371936"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238120064"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238121408"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238122080"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238122192"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280487520"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280487968"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280488416"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213299648"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238238144"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280490208"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280490656"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280491104"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262744352"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262744352": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262744352", "variance": "INVARIANT"}}, "139809213375968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213374848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213373952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809238121856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238121856": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809213373280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809238121968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238121968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809213372608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809213371936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238120064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280483040"}, {"nodeId": "139809266888128"}, {"nodeId": "139809280483936"}]}}, "139809280483040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139809266888128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139809280483936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": ".1.139809262744352"}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139809238121408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280484384"}, {"nodeId": "139809280484832"}, {"nodeId": "139809280485280"}]}}, "139809280484384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809280484832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238237248"}], "returnType": {"nodeId": "139809238237472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809238237248": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238237472": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280485280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238237584"}, {"nodeId": "139809238237696"}, {"nodeId": "139809238237808"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238238032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "139809238237584": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238237696": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238237808": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809238238032": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809238122080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280485728"}, {"nodeId": "139809280486176"}]}}, "139809280485728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238238368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238238368": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280486176": {"type": "Function", "content": {"typeVars": [".-1.139809280486176"], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": ".-1.139809280486176"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238238480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139809280486176": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809280486176", "variance": "INVARIANT"}}, "139809238238480": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": ".-1.139809280486176"}]}}, "139809238122192": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280486624"}, {"nodeId": "139809280487072"}]}}, "139809280486624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809238238816"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238238816": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280487072": {"type": "Function", "content": {"typeVars": [".-1.139809280487072"], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": ".-1.139809280487072"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809238238928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139809280487072": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809280487072", "variance": "INVARIANT"}}, "139809238238928": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": ".-1.139809280487072"}]}}, "139809280487520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238239040"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809238239040": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809280487968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238239152"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809238239152": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809280488416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238239264"}], "returnType": {"nodeId": "139809238239488"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809238239264": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809238239488": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809213299648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809238239712"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238239712": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809238238144": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809280489312"}, {"nodeId": "139809280489760"}]}}, "139809280489312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139809262744352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809280489760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "139809238240048"}], "returnType": {"nodeId": "139809238240272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809238240048": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809238240272": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744352"}, {"nodeId": "A"}]}}, "139809280490208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}], "returnType": {"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809280490656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809280491104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809266881856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238240832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238240832": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "N"}]}}, "139809283853216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238240944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238240944": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "N"}]}}, "139809238239824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283853664"}, {"nodeId": "139809266883872"}, {"nodeId": "139809283854560"}]}}, "139809283853664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241168": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809266883872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241280": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "N"}]}}, "139809283854560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241392": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "N"}]}}, "139809238240608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283855008"}, {"nodeId": "139809266883200"}, {"nodeId": "139809283855904"}]}}, "139809283855008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241616": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809266883200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241728": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "N"}]}}, "139809283855904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238241840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241840": {"type": "Union", "content": {"items": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "N"}]}}, "139809238241056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283856352"}, {"nodeId": "139809266882976"}, {"nodeId": "139809283857248"}]}}, "139809283856352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809238242176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139809238242176": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809266882976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809238242400"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139809238242400": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "A"}]}}, "139809283857248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809238242624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139809238242624": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "A"}]}}, "139809238241504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283857696"}, {"nodeId": "139809266882528"}, {"nodeId": "139809283858592"}]}}, "139809283857696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809266882528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809283858592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": ".1.139809262744704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238241952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809283859040"}, {"nodeId": "139809266882304"}, {"nodeId": "139809283859936"}]}}, "139809283859040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809266882304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809283859936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139809238242736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809266881408"}, {"nodeId": "139809283860384"}, {"nodeId": "139809283861280"}]}}, "139809266881408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238243296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809284059680"}]}}, "139809284059680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809283860384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809238243408"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243408": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809284059904"}]}}, "139809284059904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}], "returnType": {"nodeId": "139809251081408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809283861280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "139809238243520"}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243520": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "139809284058784"}]}}, "139809284058784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238243072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809266882752"}, {"nodeId": "139809283861728"}, {"nodeId": "139809283862624"}]}}, "139809266882752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238243744"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238243968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238243744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809284059008"}]}}, "139809284059008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238243968": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809283861728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809238244080"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238244304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238244080": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809284058336"}]}}, "139809284058336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": "139809250722912"}]}], "returnType": {"nodeId": "139809251081408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238244304": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809283862624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "139809238244416"}, {"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809238244640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139809238244416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "139809284058560"}]}}, "139809284058560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744352", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": ".1.139809262744704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809238244640": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262744704"}, {"nodeId": "139809338538848"}]}}, "139809283863072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}], "returnType": {"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809283863520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262744704", "args": [{"nodeId": ".1.139809262744704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809283863968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809325599200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719184": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809195692256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719408"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719408": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809195691584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719520"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719520": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809195692032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719632"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233719632": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809250175888": {"type": "Union", "content": {"items": [{"nodeId": "139809250301504"}, {"nodeId": "N"}]}}, "139809325600992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233719744"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139809233719744": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809250299744": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250177568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250177344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266683456"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266684800"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266686144"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266685696"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809250177568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809250177344": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809266683456": {"type": "Function", "content": {"typeVars": [".-1.139809266683456"], "argTypes": [{"nodeId": ".-1.139809266683456"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".-1.139809266683456"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.139809266683456": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266683456", "variance": "INVARIANT"}}, "139809250177680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809266684800": {"type": "Function", "content": {"typeVars": [".-1.139809266684800"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".-1.139809266684800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.139809266684800": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266684800", "variance": "INVARIANT"}}, "139809266686144": {"type": "Function", "content": {"typeVars": [".-1.139809266686144"], "argTypes": [{"nodeId": ".-1.139809266686144"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.139809266686144": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266686144", "variance": "INVARIANT"}}, "139809266685696": {"type": "Function", "content": {"typeVars": [".-1.139809266685696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139809266685696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.139809266685696": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139809250177680"}, "def": "139809266685696", "variance": "INVARIANT"}}, "139809250300800": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195665088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195664640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809195664416"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233718512"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250300448"}]}], "isAbstract": false}}, "139809195665088": {"type": "Function", "content": {"typeVars": [".0.139809195665088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809233720080"}]}], "returnType": {"nodeId": ".0.139809195665088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "139809233720080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242144816"}}}, ".0.139809195665088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250300800"}, "def": "139809195665088", "variance": "INVARIANT"}}, "139809195664640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300800"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809195664416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300800"}], "returnType": {"nodeId": "139809251072960", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233718512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809325604576"}, {"nodeId": "139809325605024"}]}}, "139809325604576": {"type": "Function", "content": {"typeVars": [".0.139809325604576"], "argTypes": [{"nodeId": ".0.139809325604576"}], "returnType": {"nodeId": ".0.139809325604576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809325604576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250300800"}, "def": "139809325604576", "variance": "INVARIANT"}}, "139809325605024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250300800"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250300448"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139809242108448": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "139809242108800"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195658816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250305024"}], "isAbstract": true}}, "139809195658816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242108448"}, {"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "139809242109152": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809195657024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325730272"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "139809242108448"}], "isAbstract": false}}, "139809195657024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809242108800"}], "returnType": {"nodeId": "139809338531808", "args": [{"nodeId": "139809250301856"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "139809325730272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242109152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139809262739424": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809325737888"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["find_spec"]}}, "139809325737888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739424"}, {"nodeId": "139809250722560"}, {"nodeId": "139809237740208"}, {"nodeId": "139809237740320"}], "returnType": {"nodeId": "139809237740432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139809237740208": {"type": "Union", "content": {"items": [{"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809237740320": {"type": "Union", "content": {"items": [{"nodeId": "139809262733088"}, {"nodeId": "N"}]}}, "139809237740432": {"type": "Union", "content": {"items": [{"nodeId": "139809250302208"}, {"nodeId": "N"}]}}, "139809241938432": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217468608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217470848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217471968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217472864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217473088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217473760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809217468608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740656"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740656": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740768"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740768": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740880"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740880": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237740992"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237740992": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217470848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741104"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741104": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741216"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741328"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741328": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741440"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741440": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741552"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741552": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217471968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741664"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741664": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741776": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237741888"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237741888": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742000"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742000": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217472864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742112"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742112": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217473088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742224"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742224": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217473760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742336"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742336": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809259144992": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313886432"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139809259144992"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809259144992": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809259144992", "variance": "COVARIANT"}}, "139809313886432": {"type": "Function", "content": {"typeVars": [".-1.139809313886432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": ".1.139809259144992"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139809313886432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.139809313886432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809313886432", "variance": "INVARIANT"}}, "139809241938784": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217467264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217476896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217477792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217478016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338539200"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809217467264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742448"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742448": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742560"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742560": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742672"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742784"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742784": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237742896"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237742896": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217476896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743008"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743008": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743120"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743120": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743232"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743232": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743344"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217477792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743456"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743456": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217478016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743568"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809241939136": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217562880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217563776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217564000"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809263659024"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809217562208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217562432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743792"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217562656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237743904"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237743904": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217562880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744016"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744016": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744128": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744240"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744240": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744352"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217563776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744464"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217564000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744576"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744576": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809263659024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139809338538848"}]}}, "139809262739776": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263659136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313057568"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809263659136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242267232"}}}, "139809242267232": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809313057568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262739776"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809241939488": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217566464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217566688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217566912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217567136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809217566464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744800"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744800": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217566688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237744912"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237744912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217566912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237745024"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237745024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809217567136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237745136"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237745136": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242103872": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217567584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217568928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217569152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809217567584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237745360"}], "returnType": {"nodeId": "139809237745472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237745360": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263654656"}, {"nodeId": "139809263654544"}, {"nodeId": "139809237745248"}]}}, "139809263654656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262870016"}}}, "139809262870016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139809263654544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262869568"}}}, "139809262869568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139809237745248": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809237745472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262870016"}}}, "139809217568928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237860528"}], "returnType": {"nodeId": "139809237860640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237860528": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263654656"}, {"nodeId": "139809263654544"}, {"nodeId": "139809237860416"}]}}, "139809237860416": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809237860640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262869568"}}}, "139809217569152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237860864"}], "returnType": {"nodeId": "139809237860976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237860864": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263654656"}, {"nodeId": "139809263654544"}, {"nodeId": "139809237860752"}]}}, "139809237860752": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809237860976": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242104224": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217568480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217570944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217571168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217571392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217571616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809217568480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861088"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861088": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217570944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861200"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861200": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217571168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861312"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861312": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217571392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861424"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861424": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809217571616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237861536"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237861536": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809262740128": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242322912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263663280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809263663504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "139809242322912": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809263663280": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809263663504": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242104576": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217575424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217575872"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809242321008"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250180032"}]}], "isAbstract": false}}, "139809217575424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237864000"}], "returnType": {"nodeId": "139809237864112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237864000": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263663616"}, {"nodeId": "139809263654432"}]}}, "139809263663616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809262871808": {"type": "Union", "content": {"items": [{"nodeId": "139809266692640"}, {"nodeId": "N"}]}}, "139809266692640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338534624": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297050400"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221276864"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242444768"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297052192"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221275968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221277760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221277984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221278208"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}], "bases": [{"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534624"}]}], "isAbstract": true}}, ".1.139809338534624": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534624", "variance": "COVARIANT"}}, ".2.139809338534624": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534624", "variance": "CONTRAVARIANT"}}, "139809297050400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221276864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}, {"nodeId": ".2.139809338534624"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242444768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297051296"}, {"nodeId": "139809297051744"}]}}, "139809297051296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}, {"nodeId": "0"}, {"nodeId": "139809242446560"}, {"nodeId": "139809242446672"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446560": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242446672": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297051744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242446784"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446784": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297052192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221275968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221277760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221277984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221278208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809338534624"}, {"nodeId": ".2.139809338534624"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338534272": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221274176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809297049952"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139809338534272"}], "bases": [{"nodeId": "139809338533920", "args": [{"nodeId": ".1.139809338534272"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.139809338534272": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338534272", "variance": "COVARIANT"}}, "139809221274176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534272"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809338534272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809297049952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534272"}]}], "returnType": {"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338534272"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338533920": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221268352"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338533920"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__aiter__"]}}, ".1.139809338533920": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533920", "variance": "COVARIANT"}}, "139809221268352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533920", "args": [{"nodeId": ".1.139809338533920"}]}], "returnType": {"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809338533920"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809263654432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809237864112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809217575872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809237864224"}], "returnType": {"nodeId": "139809237864336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237864224": {"type": "Tuple", "content": {"items": [{"nodeId": "139809263663616"}, {"nodeId": "139809263654432"}]}}, "139809237864336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809242321008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262871808"}}}, "139809250180032": {"type": "Union", "content": {"items": [{"nodeId": "139809225548160"}, {"nodeId": "N"}]}}, "139809225548160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338534624", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262731328": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216800448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262731680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259096656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216800896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216801568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313373344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313373792"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242686272"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809216800448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}], "returnType": {"nodeId": "139809242688960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242688960": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809259096656": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809216800896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809216801568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313373344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "139809262731680"}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "139809242689408"}, {"nodeId": "139809242689520"}, {"nodeId": "139809242689632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "139809242689408": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242689520": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}, {"nodeId": "N"}]}}, "139809242689632": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809313373792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809242686272": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809313521952"}, {"nodeId": "139809313522400"}]}}, "139809313521952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "N"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809262731328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809313522400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262731328"}, {"nodeId": "139809338527232"}, {"nodeId": "139809242690192"}], "returnType": {"nodeId": "139809262734848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809242690192": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262734848": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217170112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217170560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217170784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217171008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217171232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217171456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317589216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317589664"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217170112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809237731360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237731360": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809251081760"}]}, {"nodeId": "N"}]}}, "139809217170560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809237731584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237731584": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809217170784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809262734496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262734496": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317586080"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317586080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734496"}, {"nodeId": "139809338527232"}, {"nodeId": "139809237731248"}], "returnType": {"nodeId": "139809262731328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "139809237731248": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809217171008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217171232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217171456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317589216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}, {"nodeId": "139809259292928"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809259292928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809317589664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734848"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809262732384": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317801312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317801760"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317802208"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317802656"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317801312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139809317801760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317802208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809317802656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262732384"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262733440": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809216937568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317805792"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317806240"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317806688"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242687952"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}], "bases": [{"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}], "isAbstract": false}}, ".1.139809262733440": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733440", "variance": "COVARIANT"}}, ".2.139809262733440": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733440", "variance": "CONTRAVARIANT"}}, ".3.139809262733440": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733440", "variance": "COVARIANT"}}, "139809216937568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}], "returnType": {"nodeId": "139809242692096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242692096": {"type": "Union", "content": {"items": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809317805792": {"type": "Function", "content": {"typeVars": [".0.139809317805792"], "argTypes": [{"nodeId": ".0.139809317805792"}], "returnType": {"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809317805792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, "def": "139809317805792", "variance": "INVARIANT"}}, "139809317806240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317806688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, {"nodeId": ".2.139809262733440"}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242687952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809317807136"}, {"nodeId": "139809317807584"}]}}, "139809317807136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, {"nodeId": "0"}, {"nodeId": "139809242692432"}, {"nodeId": "139809242692544"}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242692432": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242692544": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317807584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733440", "args": [{"nodeId": ".1.139809262733440"}, {"nodeId": ".2.139809262733440"}, {"nodeId": ".3.139809262733440"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242692656"}], "returnType": {"nodeId": ".1.139809262733440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242692656": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262733792": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217059680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317808928"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317809376"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317809824"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242692208"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317811168"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317811616"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}], "bases": [{"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "isAbstract": false}}, ".1.139809262733792": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733792", "variance": "COVARIANT"}}, ".2.139809262733792": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262733792", "variance": "CONTRAVARIANT"}}, "139809217059680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "returnType": {"nodeId": "139809242692880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242692880": {"type": "Union", "content": {"items": [{"nodeId": "139809338533216", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809317808928": {"type": "Function", "content": {"typeVars": [".0.139809317808928"], "argTypes": [{"nodeId": ".0.139809317808928"}], "returnType": {"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809317808928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, "def": "139809317808928", "variance": "INVARIANT"}}, "139809317809376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338533568": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221265888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221266112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221266336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809221266560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221266784"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242444656"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221267008"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}], "bases": [{"nodeId": "139809338533216", "args": [{"nodeId": ".3.139809338533568"}]}], "isAbstract": true}}, ".1.139809338533568": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533568", "variance": "COVARIANT"}}, ".2.139809338533568": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533568", "variance": "CONTRAVARIANT"}}, ".3.139809338533568": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338533568", "variance": "COVARIANT"}}, "139809221265888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809242445888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242445888": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809221266112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809262731680"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221266336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809262737312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221266560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809221266784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}, {"nodeId": ".2.139809338533568"}], "returnType": {"nodeId": ".1.139809338533568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242444656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809297047712"}, {"nodeId": "139809297048160"}]}}, "139809297047712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}, {"nodeId": "0"}, {"nodeId": "139809242446112"}, {"nodeId": "139809242446224"}], "returnType": {"nodeId": ".1.139809338533568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446112": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809242446224": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809297048160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809242446336"}], "returnType": {"nodeId": ".1.139809338533568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809242446336": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809221267008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809338533568"}, {"nodeId": ".2.139809338533568"}, {"nodeId": ".3.139809338533568"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317809824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, {"nodeId": ".2.139809262733792"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809242692208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809259293824"}, {"nodeId": "139809317810272"}]}}, "139809259293824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, {"nodeId": "0"}, {"nodeId": "139809237729456"}, {"nodeId": "139809237729568"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237729456": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809237729568": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317810272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809237729792"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262733792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237729792": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317811168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262733792", "args": [{"nodeId": ".1.139809262733792"}, {"nodeId": ".2.139809262733792"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317811616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139809262734144": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217065952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317812960"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317813408"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317813856"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809237729680"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}], "bases": [{"nodeId": "139809338533568", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "isAbstract": false}}, ".1.139809262734144": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262734144", "variance": "COVARIANT"}}, ".2.139809262734144": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262734144", "variance": "CONTRAVARIANT"}}, ".3.139809262734144": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262734144", "variance": "COVARIANT"}}, "139809217065952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "returnType": {"nodeId": "139809237730576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237730576": {"type": "Union", "content": {"items": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809237730464"}]}, {"nodeId": "N"}]}}, "139809237730464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809317812960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317813408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.139809262734144"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317813856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}, {"nodeId": ".2.139809262734144"}], "returnType": {"nodeId": ".1.139809262734144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809237729680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809317585184"}, {"nodeId": "139809317585632"}]}}, "139809317585184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}, {"nodeId": "0"}, {"nodeId": "139809237730912"}, {"nodeId": "139809237731024"}], "returnType": {"nodeId": ".1.139809262734144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237730912": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "139809338527232"}]}}, "139809237731024": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809317585632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262734144", "args": [{"nodeId": ".1.139809262734144"}, {"nodeId": ".2.139809262734144"}, {"nodeId": ".3.139809262734144"}]}, {"nodeId": "139809250729248"}, {"nodeId": "N"}, {"nodeId": "139809237731136"}], "returnType": {"nodeId": ".1.139809262734144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139809237731136": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262735200": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217173024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217173248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217173472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317591456"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217173024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}], "returnType": {"nodeId": "139809237732256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809237732256": {"type": "Union", "content": {"items": [{"nodeId": "139809338527232"}, {"nodeId": "139809262733088"}]}}, "139809217173248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217173472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317591456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735200"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809262735552": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217175264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217175712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217175936"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317593248"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317593696"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217175264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217175712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217175936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317593248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317593696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735552"}, {"nodeId": "A"}, {"nodeId": "139809237733152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237733152": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262735904": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217177728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217177952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217178176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217178400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317595936"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317596384"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317596832"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217177728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217177952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217178176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217178400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317595936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317596384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317596832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262735904"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262736256": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217181088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217181312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217181536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317598624"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317599072"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217181088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217181312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217181536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317598624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317599072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736256"}, {"nodeId": "A"}, {"nodeId": "139809237734160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237734160": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262736608": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217182432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217265728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217265952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317600864"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317470496"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217182432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217265728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217265952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317600864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139809317470496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262736608"}, {"nodeId": "A"}, {"nodeId": "139809237734832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237734832": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809262737664": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217273120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217272896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217273344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317477664"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317478112"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317478560"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217273120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217272896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217273344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317477664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}, {"nodeId": "A"}, {"nodeId": "139809237735952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237735952": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809317478112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809317478560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262737664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262738016": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217275136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217275360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809217275584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317480352"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317480800"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317481248"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809217275136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217275360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809217275584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}], "returnType": {"nodeId": "139809338538144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809317480352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}, {"nodeId": "A"}, {"nodeId": "139809237736624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139809237736624": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809317480800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809317481248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738016"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262738720": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317291616"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809317291616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262738720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262984128": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317294304"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809317294304": {"type": "Function", "content": {"typeVars": [".-1.139809317294304"], "argTypes": [{"nodeId": "139809262984128"}, {"nodeId": ".-1.139809317294304"}], "returnType": {"nodeId": ".-1.139809317294304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809317294304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809317294304", "variance": "INVARIANT"}}, "139809262984480": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317294752"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139809262984480"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__next__"]}}, ".1.139809262984480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262984480", "variance": "COVARIANT"}}, "139809317294752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262984480", "args": [{"nodeId": ".1.139809262984480"}]}], "returnType": {"nodeId": ".1.139809262984480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262984832": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317295200"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139809262984832"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__anext__"]}}, ".1.139809262984832": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262984832", "variance": "COVARIANT"}}, "139809317295200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262984832", "args": [{"nodeId": ".1.139809262984832"}]}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".1.139809262984832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262985888": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317296544"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.139809262985888"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__le__"]}}, ".1.139809262985888": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262985888", "variance": "CONTRAVARIANT"}}, "139809317296544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262985888", "args": [{"nodeId": ".1.139809262985888"}]}, {"nodeId": ".1.139809262985888"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262986240": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317296992"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.139809262986240"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__ge__"]}}, ".1.139809262986240": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262986240", "variance": "CONTRAVARIANT"}}, "139809317296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262986240", "args": [{"nodeId": ".1.139809262986240"}]}, {"nodeId": ".1.139809262986240"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262986592": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "139809262985184", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985536", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262985888", "args": [{"nodeId": "A"}]}, {"nodeId": "139809262986240", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "139809262987648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317298336"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.139809262987648"}, {"nodeId": ".2.139809262987648"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__sub__"]}}, ".1.139809262987648": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987648", "variance": "CONTRAVARIANT"}}, ".2.139809262987648": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262987648", "variance": "COVARIANT"}}, "139809317298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262987648", "args": [{"nodeId": ".1.139809262987648"}, {"nodeId": ".2.139809262987648"}]}, {"nodeId": ".1.139809262987648"}], "returnType": {"nodeId": ".2.139809262987648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262988000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317298784"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.139809262988000"}, {"nodeId": ".2.139809262988000"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__rsub__"]}}, ".1.139809262988000": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988000", "variance": "CONTRAVARIANT"}}, ".2.139809262988000": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988000", "variance": "COVARIANT"}}, "139809317298784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262988000", "args": [{"nodeId": ".1.139809262988000"}, {"nodeId": ".2.139809262988000"}]}, {"nodeId": ".1.139809262988000"}], "returnType": {"nodeId": ".2.139809262988000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262988352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317299232"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.139809262988352"}, {"nodeId": ".2.139809262988352"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__divmod__"]}}, ".1.139809262988352": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988352", "variance": "CONTRAVARIANT"}}, ".2.139809262988352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988352", "variance": "COVARIANT"}}, "139809317299232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262988352", "args": [{"nodeId": ".1.139809262988352"}, {"nodeId": ".2.139809262988352"}]}, {"nodeId": ".1.139809262988352"}], "returnType": {"nodeId": ".2.139809262988352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262988704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317299680"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.139809262988704"}, {"nodeId": ".2.139809262988704"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__rdivmod__"]}}, ".1.139809262988704": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988704", "variance": "CONTRAVARIANT"}}, ".2.139809262988704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262988704", "variance": "COVARIANT"}}, "139809317299680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262988704", "args": [{"nodeId": ".1.139809262988704"}, {"nodeId": ".2.139809262988704"}]}, {"nodeId": ".1.139809262988704"}], "returnType": {"nodeId": ".2.139809262988704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809262989056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317300128"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139809262989056"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__iter__"]}}, ".1.139809262989056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262989056", "variance": "COVARIANT"}}, "139809317300128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989056", "args": [{"nodeId": ".1.139809262989056"}]}], "returnType": {"nodeId": ".1.139809262989056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262989408": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317300576"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139809262989408"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__aiter__"]}}, ".1.139809262989408": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262989408", "variance": "COVARIANT"}}, "139809317300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262989408", "args": [{"nodeId": ".1.139809262989408"}]}], "returnType": {"nodeId": ".1.139809262989408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262991168": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317303712"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317304160"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139809262991168"}, {"nodeId": ".2.139809262991168"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.139809262991168": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991168", "variance": "CONTRAVARIANT"}}, ".2.139809262991168": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991168", "variance": "COVARIANT"}}, "139809317303712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991168", "args": [{"nodeId": ".1.139809262991168"}, {"nodeId": ".2.139809262991168"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809317304160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991168", "args": [{"nodeId": ".1.139809262991168"}, {"nodeId": ".2.139809262991168"}]}, {"nodeId": ".1.139809262991168"}], "returnType": {"nodeId": ".2.139809262991168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262991520": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317304608"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317305056"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}], "bases": [{"nodeId": "139809262991168", "args": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.139809262991520": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991520", "variance": "CONTRAVARIANT"}}, ".2.139809262991520": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262991520", "variance": "INVARIANT"}}, "139809317304608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991520", "args": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}]}, {"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809317305056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991520", "args": [{"nodeId": ".1.139809262991520"}, {"nodeId": ".2.139809262991520"}]}, {"nodeId": ".1.139809262991520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809262991872": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317305504"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["fileno"]}}, "139809317305504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262991872"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262992224": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809317305952"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.139809262992224"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["read"]}}, ".1.139809262992224": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262992224", "variance": "COVARIANT"}}, "139809317305952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262992224", "args": [{"nodeId": ".1.139809262992224"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262992224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809262992576": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313882400"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139809262992576"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["readline"]}}, ".1.139809262992576": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262992576", "variance": "COVARIANT"}}, "139809313882400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262992576", "args": [{"nodeId": ".1.139809262992576"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809262992576"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809262992928": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313882848"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139809262992928"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["readline"]}}, ".1.139809262992928": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262992928", "variance": "COVARIANT"}}, "139809313882848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262992928", "args": [{"nodeId": ".1.139809262992928"}]}], "returnType": {"nodeId": ".1.139809262992928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809259143584": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313883744"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809251081408"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139809313883744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259143584"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259143936": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313884192"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809251081408"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139809313884192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259143936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259144288": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313884640"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809229426352"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809259143584"}, {"nodeId": "139809259143936"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "139809313884640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259144288"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809229426352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809313885088"}, {"nodeId": "139809313885536"}]}}, "139809313885088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259144288"}, {"nodeId": "139809250723968"}], "returnType": {"nodeId": "139809338535680", "args": [{"nodeId": "139809338538848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313885536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259144288"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259144640": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "139809251067680"}, {"nodeId": "139809251081408"}], "protocolMembers": ["__buffer__", "__len__"]}}, "139809259145344": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809254746848", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__dataclass_fields__"]}}, "139809254746848": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250167376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250165696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250165584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262732032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250164800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284060576"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284061472"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284061920"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809254746848"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809254746848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254746848", "variance": "INVARIANT"}}, "139809250167376": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809254746848"}, {"nodeId": "0"}]}}, "139809250165696": {"type": "Union", "content": {"items": [{"nodeId": "139809254746496", "args": [{"nodeId": ".1.139809254746848"}]}, {"nodeId": "0"}]}}, "139809254746496": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284060128"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139809254746496"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, ".1.139809254746496": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254746496", "variance": "COVARIANT"}}, "139809284060128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254746496", "args": [{"nodeId": ".1.139809254746496"}]}], "returnType": {"nodeId": ".1.139809254746496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250165584": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809250164800": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "0"}]}}, "139809284060576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254746848", "args": [{"nodeId": ".1.139809254746848"}]}, {"nodeId": ".1.139809254746848"}, {"nodeId": "139809233566656"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809234164688"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338537088", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "139809233566656": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.139809254746848"}, "argKinds": [], "argNames": []}}, "139809234164688": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809284061472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254746848", "args": [{"nodeId": ".1.139809254746848"}]}, {"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "139809284061920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809251080352": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225816576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220739808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220740032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318039648"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220740256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220740480"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809225816576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220739136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809242438832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242438832": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220739360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220739584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220739808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220740032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809242439056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242439056": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318039648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242439280"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809242439504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "139809242439280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139809250722560"}]}}, "139809242439504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809220740256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338529344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338529344": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220946496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313898080"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220946496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529344"}], "returnType": {"nodeId": "139809338530048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338530048": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220949408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220950528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220950752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220950976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296879392"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220951648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220951200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296881632"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296882080"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220949408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220950528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809242443088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242443088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220950752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220950976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296879392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242443312"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "139809242443312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220951648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338529344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220951200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}], "returnType": {"nodeId": "139809338529696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338529696": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220947616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296876256"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220947616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529696"}], "returnType": {"nodeId": "139809338530048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296876256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529696"}, {"nodeId": "139809338530048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139809296881632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338528992": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313893152"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313893600"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313894048"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809313893152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528992"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313893600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528992"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313894048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528992"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296882080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530048"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313898080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338529344"}, {"nodeId": "139809338530048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139809220740480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080352"}], "returnType": {"nodeId": "139809338529696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338528640": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220940224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220940672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220940896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220941120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220941344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313891360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313891808"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313892256"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220940224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220940672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809242441856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242441856": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809220940896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220941120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220941344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313891360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}, {"nodeId": "139809242442304"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "139809242442304": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809313891808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313892256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338528640"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338530400": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296882528"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296882976"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296883424"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296883872"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296882528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "139809296882976": {"type": "Function", "content": {"typeVars": [".-1.139809296882976"], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": ".-1.139809296882976"}], "returnType": {"nodeId": ".-1.139809296882976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809296882976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809296882976", "variance": "INVARIANT"}}, "139809296883424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296883872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530400"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338528992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809338530752": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296885664"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296885664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338530752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250917920": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250916160"}], "isAbstract": false}}, "139809250916160": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296674912"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296675360"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296675808"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296676256"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296676704"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "139809338538144"}], "isAbstract": false}}, "139809296674912": {"type": "Function", "content": {"typeVars": [".-1.139809296674912"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139809296674912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.139809296674912": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809296674912", "variance": "INVARIANT"}}, "139809296675360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "139809296675808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "139809338538144"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139809296676256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "139809229436096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "139809229436096": {"type": "Union", "content": {"items": [{"nodeId": "139809259143232", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809296676704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250916160"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139809251067328": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221093056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__index__"]}}, "139809221093056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251067328"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809338531104": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221095072"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809338531104"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__abs__"]}}, ".1.139809338531104": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338531104", "variance": "COVARIANT"}}, "139809221095072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531104", "args": [{"nodeId": ".1.139809338531104"}]}], "returnType": {"nodeId": ".1.139809338531104"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809338531456": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242254240"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139809338531456"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__round__"]}}, ".1.139809338531456": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809338531456", "variance": "COVARIANT"}}, "139809242254240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809296889248"}, {"nodeId": "139809296889696"}]}}, "139809296889248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531456", "args": [{"nodeId": ".1.139809338531456"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296889696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338531456", "args": [{"nodeId": ".1.139809338531456"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".1.139809338531456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809251068032": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221183744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__hash__"]}}, "139809221183744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251068032"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809251068384": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.139809251068384"}, {"nodeId": ".2.139809251068384"}, {"nodeId": ".3.139809251068384"}, {"nodeId": ".4.139809251068384"}], "bases": [{"nodeId": "139809338533216", "args": [{"nodeId": ".3.139809251068384"}]}, {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809251068384"}, {"nodeId": ".2.139809251068384"}, {"nodeId": ".3.139809251068384"}]}], "isAbstract": true}}, ".1.139809251068384": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "COVARIANT"}}, ".2.139809251068384": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "CONTRAVARIANT"}}, ".3.139809251068384": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "COVARIANT"}}, ".4.139809251068384": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809251068384", "variance": "INVARIANT"}}, "139809251071200": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242685712"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809221747968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809259293376"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292468512"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139809242685712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809254530560"}, {"nodeId": "139809254533920"}]}}, "139809254530560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071200"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809242687280"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809242687280": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809254533920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071200"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139809221747968": {"type": "Function", "content": {"typeVars": [".0.139809221747968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809221747968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139809221747968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071200"}, "def": "139809221747968", "variance": "INVARIANT"}}, "139809259293376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071200"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292468512": {"type": "Function", "content": {"typeVars": [".0.139809292468512"], "argTypes": [{"nodeId": ".0.139809292468512"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809292468512"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139809292468512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071200"}, "def": "139809292468512", "variance": "INVARIANT"}}, "139809251071552": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292468960"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292469408"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292469856"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292470304"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292470752"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292471200"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292471648"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292472096"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292472544"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292472992"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}], "isAbstract": true}}, "139809292468960": {"type": "Function", "content": {"typeVars": [".0.139809292468960"], "argTypes": [{"nodeId": ".0.139809292468960"}], "returnType": {"nodeId": ".0.139809292468960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809292468960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071552"}, "def": "139809292468960", "variance": "INVARIANT"}}, "139809292469408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}, {"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139809292469856": {"type": "Function", "content": {"typeVars": [".-1.139809292469856"], "argTypes": [{"nodeId": "139809251071552"}, {"nodeId": "0"}, {"nodeId": ".-1.139809292469856"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139809292469856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292469856", "variance": "INVARIANT"}}, "139809292470304": {"type": "Function", "content": {"typeVars": [".-1.139809292470304"], "argTypes": [{"nodeId": ".-1.139809292470304"}, {"nodeId": ".-1.139809292470304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809292470304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809292470304", "variance": "INVARIANT"}}, "139809292470752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809292471200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}], "returnType": {"nodeId": "139809251072608", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292471648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}], "returnType": {"nodeId": "139809251071904", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292472096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251071552"}], "returnType": {"nodeId": "139809251072256", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809292472544": {"type": "Function", "content": {"typeVars": [".0.139809292472544"], "argTypes": [{"nodeId": ".0.139809292472544"}, {"nodeId": ".0.139809292472544"}], "returnType": {"nodeId": ".0.139809292472544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292472544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071552"}, "def": "139809292472544", "variance": "INVARIANT"}}, "139809292472992": {"type": "Function", "content": {"typeVars": [".0.139809292472992"], "argTypes": [{"nodeId": ".0.139809292472992"}, {"nodeId": ".0.139809292472992"}], "returnType": {"nodeId": ".0.139809292472992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809292472992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251071552"}, "def": "139809292472992", "variance": "INVARIANT"}}, "139809338537792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262731680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250859088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250868608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292473440"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292474336"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809292475232"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250859088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809250868608": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809292473440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537792"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809242688176"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "139809242688176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809292474336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537792"}, {"nodeId": "139809242688400"}, {"nodeId": "139809242688624"}, {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809242688848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "139809242688400": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809242688624": {"type": "Union", "content": {"items": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139809242688848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809292475232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809338537792"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251078592": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313572896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313573344"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313573792"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809313572896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313573344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313573792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251078944": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809251073312", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313575584"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313576032"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313576480"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313576928"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313577376"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313577824"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313578272"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313578720"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313579168"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809313579616"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}], "isAbstract": true}}, "139809313575584": {"type": "Function", "content": {"typeVars": [".0.139809313575584"], "argTypes": [{"nodeId": ".0.139809313575584"}], "returnType": {"nodeId": ".0.139809313575584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809313575584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078944"}, "def": "139809313575584", "variance": "INVARIANT"}}, "139809313576032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}, {"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139809313576480": {"type": "Function", "content": {"typeVars": [".-1.139809313576480"], "argTypes": [{"nodeId": "139809251078944"}, {"nodeId": "0"}, {"nodeId": ".-1.139809313576480"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139809313576480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809313576480", "variance": "INVARIANT"}}, "139809313576928": {"type": "Function", "content": {"typeVars": [".-1.139809313576928"], "argTypes": [{"nodeId": ".-1.139809313576928"}, {"nodeId": ".-1.139809313576928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139809313576928": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809313576928", "variance": "INVARIANT"}}, "139809313577376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}], "returnType": {"nodeId": "139809251072608", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313577824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}], "returnType": {"nodeId": "139809251071904", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313578272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}], "returnType": {"nodeId": "139809251072256", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809313578720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251078944"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809313579168": {"type": "Function", "content": {"typeVars": [".0.139809313579168"], "argTypes": [{"nodeId": ".0.139809313579168"}, {"nodeId": ".0.139809313579168"}], "returnType": {"nodeId": ".0.139809313579168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809313579168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078944"}, "def": "139809313579168", "variance": "INVARIANT"}}, "139809313579616": {"type": "Function", "content": {"typeVars": [".0.139809313579616"], "argTypes": [{"nodeId": ".0.139809313579616"}, {"nodeId": ".0.139809313579616"}], "returnType": {"nodeId": ".0.139809313579616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809313579616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251078944"}, "def": "139809313579616", "variance": "INVARIANT"}}, "139809251079648": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809242260064"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809225812768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318030688"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318031584"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139809242260064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809318029344"}, {"nodeId": "139809318029792"}]}}, "139809318029344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079648"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809242436368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "139809242436368": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809318029792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079648"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "139809225812768": {"type": "Function", "content": {"typeVars": [".0.139809225812768"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338531808", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139809225812768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139809225812768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251079648"}, "def": "139809225812768", "variance": "INVARIANT"}}, "139809318030688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251079648"}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809318031584": {"type": "Function", "content": {"typeVars": [".0.139809318031584"], "argTypes": [{"nodeId": ".0.139809318031584"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809318031584"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139809318031584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809251079648"}, "def": "139809318031584", "variance": "INVARIANT"}}, "139809251080000": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225813664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225814784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225815008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809225815232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318035168"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318035616"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318036064"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809225813664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225814112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809242437264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242437264": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809225814336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225814560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225814784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225815008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809225815232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}], "returnType": {"nodeId": "139809242437600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242437600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318035168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}, {"nodeId": "139809242437936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809242438160"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "139809242437936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809242438160": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318035616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809318036064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080000"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809251080704": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220742048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220742272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318041888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809318042336"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809220742048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220742272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}], "returnType": {"nodeId": "139809242439728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242439728": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318041888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}, {"nodeId": "139809250722560"}, {"nodeId": "139809242439952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "139809242439952": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809318042336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251080704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809251081056": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296564960"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220744960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809220745184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296567648"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296568096"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296568544"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809296564960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809242440736"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "139809242440736": {"type": "Union", "content": {"items": [{"nodeId": "139809251080000"}, {"nodeId": "139809251080352"}, {"nodeId": "139809251080704"}]}}, "139809220744064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220744512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "139809242440960"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242440960": {"type": "Union", "content": {"items": [{"nodeId": "139809251080000"}, {"nodeId": "139809251080352"}, {"nodeId": "139809251080704"}]}}, "139809220744736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220744960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809220745184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}], "returnType": {"nodeId": "139809242441184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242441184": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296567648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296568096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809296568544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809251081056"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809251078592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809259147456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179172224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146400"}], "isAbstract": false}}, "139809179172224": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259149216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179358416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241929984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242267008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179358416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241929984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174800416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930336"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259106848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174800416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241930336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174801648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317424"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174801648": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317424": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107968": {"type": "Union", "content": {"items": [{"nodeId": "139809241930336"}, {"nodeId": "N"}]}}, "139809259106848": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809242317312": {"type": "Union", "content": {"items": [{"nodeId": "139809241930336"}, {"nodeId": "N"}]}}, "139809242267008": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259149568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179360992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241929984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242267344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179360992": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242267344": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259149920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179363344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930688"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179363344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241930688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174802544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259106624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174802544": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259106624": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259150272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179364352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242267456"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179364352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809242267456": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259150624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179365248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179365248": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259150976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179366592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179366592": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259151328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179367712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242262752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241836256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179367712": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242262752": {"type": "Union", "content": {"items": [{"nodeId": "139809241832736"}, {"nodeId": "139809241831328"}, {"nodeId": "139809241832032"}]}}, "139809241832736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179773392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179773392": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241833792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809241831328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179768016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179768016": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241832032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179771488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179771488": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241836256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259151680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179369056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179369056": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317536": {"type": "Union", "content": {"items": [{"nodeId": "139809241832736"}, {"nodeId": "139809241831328"}, {"nodeId": "139809241832032"}]}}, "139809242317648": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259152032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179485344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179485344": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259152384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179486688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179486688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259152736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179487584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179487584": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259153088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179488704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179488704": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259153440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179489824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179489824": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241931392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174804560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259104944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174804560": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259104944": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259153792": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179490944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179490944": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259154144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179491840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242316976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242316864"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179491840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242316976": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809242316864": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259154496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179493296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241929632"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179493296": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241929632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174798400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241929280"}], "isAbstract": false}}, "139809174798400": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259107632": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241929280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259154848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179494640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317088"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179494640": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317088": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259155200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179495424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931040"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179495424": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241931040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174803552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174803552": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259107856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259155552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179496768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242317200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241931040"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179496768": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242317200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259155904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179497440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179497440": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259156256": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179498336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179498336": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259156608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179499232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809179499232": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259156960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809259157312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809259157664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809259158368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179500352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241835200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179500352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241835200": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259158720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179632800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241836256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179632800": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259159072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179633696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241841184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179633696": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241841184": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809241825344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179634704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241929984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179634704": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241825696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179635936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179635936": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241826048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179636832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259109648"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179636832": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259109648": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241826400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179637616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179637616": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241826752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179638736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179638736": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241928928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179777984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809179777984": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241827104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179639744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179639744": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241827456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179640976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179640976": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241827808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179641872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241928928"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179641872": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241828160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179642656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179642656": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241828512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179643552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259109536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179643552": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259109536": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241828864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179644448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179644448": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241829216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179645792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241925056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179645792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241925056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809241829568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179646912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241930688"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179646912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241829920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179762864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259109984"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179762864": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259109984": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241830272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179763536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179763536": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241830624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179765216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259109872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179765216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259109872": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809259107072": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539552"}]}}, "139809241830976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179766784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241832736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179766784": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241831680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179769808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259107520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179769808": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259107296": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107408": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809259107520": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241832384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179772384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179772384": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241833088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179774400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179774400": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241833440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809179775408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241833792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259158016"}], "isAbstract": false}}, "139809179775408": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241834144": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241833792"}], "isAbstract": false}}, "139809241834496": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241833792"}], "isAbstract": false}}, "139809241834848": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241833792"}], "isAbstract": false}}, "139809241835552": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241835200"}], "isAbstract": false}}, "139809241835904": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241835200"}], "isAbstract": false}}, "139809241836608": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241836960": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241837312": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241837664": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241838016": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241838368": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241838720": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241839072": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241839424": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241839776": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241840128": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241840480": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241840832": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241836256"}], "isAbstract": false}}, "139809241923648": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241924000": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241924352": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241924704": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241841184"}], "isAbstract": false}}, "139809241925408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241925760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241926112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241926464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241926816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241927168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241927520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241927872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241928224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241928576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "139809241925056"}], "isAbstract": false}}, "139809241931744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174805568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932448"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259148864"}], "isAbstract": false}}, "139809174805568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241932448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174806240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809241932096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259148864"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809174806240": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241932096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "139809259146048"}], "isAbstract": false}}, "139809259105056": {"type": "Union", "content": {"items": [{"nodeId": "139809259158016"}, {"nodeId": "N"}]}}, "139809241932800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174806352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174806352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241933152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174806688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105168"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174806688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259105168": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139809241933504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174807024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174807024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809241933856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174807360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174807360": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809259105504": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241934208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174808144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809259158016"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174808144": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259105616": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241934560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174808928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259158016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174808928": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809241934912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174809152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809259105840"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174809152": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809259105728": {"type": "Union", "content": {"items": [{"nodeId": "139809241932096"}, {"nodeId": "N"}]}}, "139809259105840": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809241935264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809174809376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809241932096"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809241932096"}], "isAbstract": false}}, "139809174809376": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809262745760": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250731360"}, {"nodeId": "139809250736992"}], "isAbstract": false}}, "139809250295872": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296736416"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296736864"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296737312"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296737760"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296738208"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}, {"nodeId": "139809251070496"}], "isAbstract": false}}, "139809296736416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}, {"nodeId": "139809251081408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "139809296736864": {"type": "Function", "content": {"typeVars": [".0.139809296736864"], "argTypes": [{"nodeId": ".0.139809296736864"}], "returnType": {"nodeId": ".0.139809296736864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809296736864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250295872"}, "def": "139809296736864", "variance": "INVARIANT"}}, "139809296737312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296737760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}], "returnType": {"nodeId": "139809250723616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809296738208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250295872"}, {"nodeId": "139809233534448"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809233534448": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250297280": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296742240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296742688"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139809262746816"}], "isAbstract": false}}, "139809296742240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297280"}, {"nodeId": "139809262746464"}, {"nodeId": "139809262746464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "139809296742688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250297280"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809250298336": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296670880"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296671328"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "139809250297984"}], "isAbstract": false}}, "139809296670880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298336"}, {"nodeId": "139809233716384"}, {"nodeId": "139809233716496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "139809233716384": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233716496": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809296671328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250298336"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242116544": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296671776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296672224"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809200783872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809296673120"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139809262983424"}], "isAbstract": false}}, "139809296671776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}, {"nodeId": "139809233716608"}, {"nodeId": "139809338527936"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "139809233716608": {"type": "Union", "content": {"items": [{"nodeId": "139809262983424"}, {"nodeId": "N"}]}}, "139809262983424": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275712608"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183283488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275713504"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275713952"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275714400"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809275712608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183283488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809275713504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275713952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}], "returnType": {"nodeId": "139809229431616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229431616": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809275714400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983424"}, {"nodeId": "139809229431840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139809229431840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809296672224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}, {"nodeId": "139809233716720"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809233716720": {"type": "Union", "content": {"items": [{"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}]}}, "139809200783872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}], "returnType": {"nodeId": "139809233716832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233716832": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809296673120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242116544"}, {"nodeId": "139809233717056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809233717056": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809250916512": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250725728"}], "isAbstract": false}}, "139809250916864": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250299040": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288016096"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288016544"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288016992"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288017440"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "139809288016096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250299040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288016544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250299040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288016992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288017440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250299040"}], "returnType": {"nodeId": "139809250299040"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809250310656": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250309600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242329856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242149296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809254738048"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288018784"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288019232"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288019680"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288020128"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288020576"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288021024"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288021472"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288021920"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288022368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288022816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288023264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288023712"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288024160"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288024608"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288025056"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288025504"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288025952"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233946544"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233951360"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288143136"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288143584"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288144032"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288144480"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288144928"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288145376"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288145824"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233954832"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233955392"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288148064"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288148512"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233956176"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233957744"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288150752"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233957632"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233957856"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288152992"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288153440"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288153888"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288154336"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288154784"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288155232"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288155680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288156128"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288156576"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250309600": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250170848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250171296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276038048"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276038496"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276038944"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276039392"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276039840"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191589280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191588832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191588608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191588384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191586368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809250170848": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250171296": {"type": "Union", "content": {"items": [{"nodeId": "139809255095904"}, {"nodeId": "N"}]}}, "139809255095904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}], "returnType": {"nodeId": "139809250310656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809276038048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809233951136"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233951248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "139809233951136": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809233951248": {"type": "Union", "content": {"items": [{"nodeId": "139809233556576"}, {"nodeId": "N"}]}}, "139809233556576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}], "returnType": {"nodeId": "139809250310656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809276038496": {"type": "Function", "content": {"typeVars": [".0.139809276038496"], "argTypes": [{"nodeId": ".0.139809276038496"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139809276038496"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.139809276038496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250309600"}, "def": "139809276038496", "variance": "INVARIANT"}}, "139809276038944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250310656"}, {"nodeId": "139809254738048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139809254738048": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276036480"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250736992"}], "isAbstract": false}}, "139809276036480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254738048"}, {"nodeId": "139809234161328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "139809234161328": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809276039392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250310656"}, {"nodeId": "139809254738048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139809276039840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233951584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139809233951584": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809191589280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233951808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139809233951808": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809191588832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233952032"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233952032": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809191588608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809191588384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809191586368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809242329856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809242149296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288018784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288019232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "139809288019680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233953376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233953376": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288020128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250310656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "139809288020576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809233953488"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "139809233953488": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809288021024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809233953712"}, {"nodeId": "139809233953936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "139809233953712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250171072"}}}, "139809250171072": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809250310656"}]}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}]}}, "139809233953936": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809254745440": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250169280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250169392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250169056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275978336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275978784"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275979232"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275979680"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275980128"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275980576"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275981024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275981472"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809250169280": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250169392": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250169056": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809275978336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "139809275978784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275979232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}], "returnType": {"nodeId": "139809234162896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234162896": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809275979680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139809275980128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338532160", "args": [{"nodeId": "139809338538848"}]}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "139809275980576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139809275981024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809275981472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745440"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288021472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809233953824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "139809233953824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242149072"}}}, "139809242149072": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288021920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233954048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233954048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242149072"}}}, "139809288022368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288022816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288023264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288023712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233954160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809233954160": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288024160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233954272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809233954272": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288024608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288025056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288025504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233954384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233954384": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288025952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233954720"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233954720": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809233954496"}]}}, "139809233954496": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809233946544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288026400"}, {"nodeId": "139809288026848"}]}}, "139809288026400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233955056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139809233955056": {"type": "Union", "content": {"items": [{"nodeId": "139809233954944"}, {"nodeId": "N"}]}}, "139809233954944": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288026848": {"type": "Function", "content": {"typeVars": [".-1.139809288026848"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288026848"}], "returnType": {"nodeId": "139809233955280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139809288026848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288026848", "variance": "INVARIANT"}}, "139809233955280": {"type": "Union", "content": {"items": [{"nodeId": "139809233955168"}, {"nodeId": ".-1.139809288026848"}]}}, "139809233955168": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809233951360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288027296"}, {"nodeId": "139809288027744"}]}}, "139809288027296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233955616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139809233955616": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233955504"}]}, {"nodeId": "N"}]}}, "139809233955504": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288027744": {"type": "Function", "content": {"typeVars": [".-1.139809288027744"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288027744"}], "returnType": {"nodeId": "139809233955840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139809288027744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288027744", "variance": "INVARIANT"}}, "139809233955840": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233955728"}]}, {"nodeId": ".-1.139809288027744"}]}}, "139809233955728": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288143136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233955952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "139809233955952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250166256"}}}, "139809250166256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "139809250166480"}]}}, "139809250166480": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250166032"}, {"nodeId": "139809250722560"}]}}, "139809250166032": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288143584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233956064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "139809233956064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288144032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288144480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288144928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288145376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288145824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "139809233954832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288146272"}, {"nodeId": "139809288146720"}]}}, "139809288146272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233956512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "139809233956512": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233956400"}]}, {"nodeId": "N"}]}}, "139809233956400": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809288146720": {"type": "Function", "content": {"typeVars": [".-1.139809288146720"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288146720"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233956848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.139809288146720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288146720", "variance": "INVARIANT"}}, "139809233956848": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809233956736"}]}, {"nodeId": ".-1.139809288146720"}]}}, "139809233956736": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809233955392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288147168"}, {"nodeId": "139809288147616"}]}}, "139809288147168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233957184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "139809233957184": {"type": "Union", "content": {"items": [{"nodeId": "139809233957072"}, {"nodeId": "N"}]}}, "139809233957072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250169504"}}}, "139809250169504": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250168608"}]}}, "139809250168608": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250165808"}, {"nodeId": "139809250167712"}, {"nodeId": "139809250722560"}]}}, "139809250165808": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809250167712": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288147616": {"type": "Function", "content": {"typeVars": [".-1.139809288147616"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288147616"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809233957520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.139809288147616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288147616", "variance": "INVARIANT"}}, "139809233957520": {"type": "Union", "content": {"items": [{"nodeId": "139809233956960"}, {"nodeId": ".-1.139809288147616"}]}}, "139809233956960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250169504"}}}, "139809288148064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "139809288148512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "139809233956176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288148960"}, {"nodeId": "139809288149408"}]}}, "139809288148960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233957296"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139809233957296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288149408": {"type": "Function", "content": {"typeVars": [".-1.139809288149408"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288149408"}], "returnType": {"nodeId": "139809233957408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288149408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288149408", "variance": "INVARIANT"}}, "139809233957408": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288149408"}]}}, "139809233957744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288149856"}, {"nodeId": "139809288150304"}]}}, "139809288149856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809233957968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139809233957968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288150304": {"type": "Function", "content": {"typeVars": [".-1.139809288150304"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288150304"}], "returnType": {"nodeId": "139809233958080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288150304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288150304", "variance": "INVARIANT"}}, "139809233958080": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288150304"}]}}, "139809288150752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "139809233957632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288151200"}, {"nodeId": "139809288151648"}]}}, "139809288151200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233958304"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233958304": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288151648": {"type": "Function", "content": {"typeVars": [".-1.139809288151648"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288151648"}], "returnType": {"nodeId": "139809233958416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288151648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288151648", "variance": "INVARIANT"}}, "139809233958416": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288151648"}]}}, "139809233957856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288152096"}, {"nodeId": "139809288152544"}]}}, "139809288152096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "N"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233958640"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139809233958640": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288152544": {"type": "Function", "content": {"typeVars": [".-1.139809288152544"], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": ".-1.139809288152544"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809233958752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139809288152544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288152544", "variance": "INVARIANT"}}, "139809233958752": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809288152544"}]}}, "139809288152992": {"type": "Function", "content": {"typeVars": [".0.139809288152992"], "argTypes": [{"nodeId": ".0.139809288152992"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".0.139809288152992"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809288152992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250310656"}, "def": "139809288152992", "variance": "INVARIANT"}}, "139809288153440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809233958976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233958976": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288153888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338538848"}, {"nodeId": "139809233959088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139809233959088": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288154336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233959200"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "139809233959200": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288154784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288155232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233959312"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "139809233959312": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288155680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250309600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139809288156128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233959424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233959424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809288156576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310656"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809233959760"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233959760": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809233959536"}]}}, "139809233959536": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139809250311008": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288157024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288157472"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288157920"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288158368"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288158816"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288274208"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288274656"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288275104"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288275552"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288276000"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288276448"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288276896"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288277344"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288277792"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288278240"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288278688"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "139809250310656"}], "isAbstract": false}}, "139809288157024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809233959872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139809233959872": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288157472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809338535680", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233959984"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "139809233959984": {"type": "Union", "content": {"items": [{"nodeId": "139809250310656"}, {"nodeId": "N"}]}}, "139809288157920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250310656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288158368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": "139809250310656"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288158816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809233960208"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809233960208": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809254745088": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275984160"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275984608"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275985056"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275985504"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275984160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809250310656"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "139809275984608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809250310656"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "139809275985056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233560384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "139809233560384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809275985504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254745088"}, {"nodeId": "139809338538144"}, {"nodeId": "139809233560160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "139809233560160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809288274208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809233960656"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809233960656": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288274656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809234157632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139809234157632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288275104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809234157744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139809234157744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288275552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809234157856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139809234157856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809288276000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809234158080"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809234158080": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288276448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809234158416"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809234158416": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288276896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "A"}, {"nodeId": "139809234158752"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139809234158752": {"type": "Union", "content": {"items": [{"nodeId": "139809254745088"}, {"nodeId": "N"}]}}, "139809288277344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288277792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288278240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}, {"nodeId": "139809338527936"}, {"nodeId": "139809234158976"}, {"nodeId": "139809234159088"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139809234158976": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234159088": {"type": "Union", "content": {"items": [{"nodeId": "139809250309600"}, {"nodeId": "N"}]}}, "139809288278688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311008"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250311360": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250311008"}], "isAbstract": false}}, "139809242115136": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242114432"}], "isAbstract": false}}, "139809242115840": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242115488"}, {"nodeId": "139809242114784"}], "isAbstract": false}}, "139809242116192": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139809242115488"}, {"nodeId": "139809242115136"}], "isAbstract": false}}, "139809262745056": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288421664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288422560"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288423008"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288423456"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288423904"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288424352"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288424800"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288425248"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288425696"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809288426144"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809238389184"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139809262745056"}], "bases": [{"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}], "isAbstract": false}}, ".1.139809262745056": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262745056", "variance": "INVARIANT"}}, "139809288421664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": "139809338537440", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "139809288422560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": ".1.139809262745056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "139809288423008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809288423456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288423904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": ".1.139809262745056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809288424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809288424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809262745056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288425248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809288425696": {"type": "Function", "content": {"typeVars": [".-1.139809288425696", ".-2.139809288425696"], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809288425696"}, {"nodeId": ".-2.139809288425696"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809238394448"}, {"nodeId": "139809238394560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809288425696": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288425696", "variance": "INVARIANT"}}, ".-2.139809288425696": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288425696", "variance": "INVARIANT"}}, "139809238394448": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-1.139809288425696"}]}}, "139809238394560": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-2.139809288425696"}]}}, "139809288426144": {"type": "Function", "content": {"typeVars": [".-1.139809288426144", ".-2.139809288426144"], "argTypes": [{"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": ".-1.139809288426144"}, {"nodeId": ".-2.139809288426144"}]}], "returnType": {"nodeId": "139809250725024", "args": [{"nodeId": "139809238394672"}, {"nodeId": "139809238394784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809288426144": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288426144", "variance": "INVARIANT"}}, ".-2.139809288426144": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809288426144", "variance": "INVARIANT"}}, "139809238394672": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-1.139809288426144"}]}}, "139809238394784": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".-2.139809288426144"}]}}, "139809238389184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809288426592"}, {"nodeId": "139809288427040"}]}}, "139809288426592": {"type": "Function", "content": {"typeVars": [".0.139809288426592"], "argTypes": [{"nodeId": ".0.139809288426592"}, {"nodeId": "139809338537088", "args": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}], "returnType": {"nodeId": ".0.139809288426592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288426592": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, "def": "139809288426592", "variance": "INVARIANT"}}, "139809288427040": {"type": "Function", "content": {"typeVars": [".0.139809288427040"], "argTypes": [{"nodeId": ".0.139809288427040"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809238395232"}]}], "returnType": {"nodeId": ".0.139809288427040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809288427040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262745056", "args": [{"nodeId": ".1.139809262745056"}]}, "def": "139809288427040", "variance": "INVARIANT"}}, "139809238395232": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262745056"}, {"nodeId": ".1.139809262745056"}]}}, "139809241937376": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204652960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204321888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204320992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204320096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204317856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204319200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204318304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204313824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204316288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204316736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338539200"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809204652960": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204321888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395456"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395456": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204320992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395568"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395568": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204320096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395680"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395792"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395792": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204317856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238395904"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238395904": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396016"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396016": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396128"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396128": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396240"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396240": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204319200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396352"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396352": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396464"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396576"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396576": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396688"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204318304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396800"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396800": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204313824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238396912"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238396912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204316288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238397024"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238397024": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204316736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238397136"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238397136": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809262745408": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204312032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204309344"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279461408"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279461856"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279462304"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279462752"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279463200"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279463648"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809279464096"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262745408"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262745408": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262745408", "variance": "INVARIANT"}}, "139809204312032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": ".1.139809262745408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809204309344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": ".1.139809262745408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279461408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279461856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809279462304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809279462752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279463200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809238397584"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139809238397584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242326832"}}}, "139809279463648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809262745408"}]}], "returnType": {"nodeId": ".1.139809262745408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809279464096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809242105632": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204661248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204302368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204301248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204301472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204300800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204300576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204299904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204299680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204298336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204297664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204296992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204296320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809204661248": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204302368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238397920"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238397920": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204301248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398032"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398032": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204301472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398144"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398144": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204300800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398256"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398256": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204300576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398368"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398368": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204299904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398480"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398480": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204299680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398592"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398592": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398704"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398704": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204297664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398816"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398816": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238398928"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238398928": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204296320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399040"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399040": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242105984": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204662928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204294752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204292960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204292736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204291840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204292288"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809250722560"}]}], "isAbstract": false}}, "139809204662928": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204294752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399600"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399600": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399712"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399712": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204292736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399824"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399824": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204291840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238399936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238399936": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204292288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809238400048"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238400048": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809242106336": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204849680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204253664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204252320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809204849680": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204253664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233394416"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233394416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809204252320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233394528"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233394528": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242106688": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280037984"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280038432"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280038880"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.139809242106688"}], "bases": [{"nodeId": "139809338532160", "args": [{"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809242106688"}]}]}, {"nodeId": "139809254747904", "args": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}]}], "isAbstract": false}}, ".1.139809242106688": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809242106688", "variance": "INVARIANT"}}, "139809280037984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}], "returnType": {"nodeId": "139809262745408", "args": [{"nodeId": ".1.139809242106688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809280038432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139809280038880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242106688", "args": [{"nodeId": ".1.139809242106688"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254747904": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284170336"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809192244416"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809254747904"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.139809254747904": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254747904", "variance": "COVARIANT"}}, "139809284170336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254747904"}]}], "returnType": {"nodeId": ".1.139809254747904"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809192244416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254747904"}]}, {"nodeId": "139809234169168"}, {"nodeId": "139809234169280"}, {"nodeId": "139809234169392"}], "returnType": {"nodeId": "139809234169504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234169168": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234169280": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234169392": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234169504": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809242107040": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280169056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280169504"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809250297984"}], "isAbstract": false}}, "139809280169056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242107040"}, {"nodeId": "139809250297984"}, {"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "139809262741888": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242319552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242326048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242137872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262873824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262873936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809237865120"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250394176"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250394624"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250395072"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250395520"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250395968"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250396416"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250396864"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250397312"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250397760"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262741888"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262741888": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262741888", "variance": "INVARIANT"}}, "139809242319552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809242137312": {"type": "Union", "content": {"items": [{"nodeId": "139809263664960"}, {"nodeId": "139809338535680", "args": [{"nodeId": "139809242136864"}]}]}}, "139809263664960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809242136864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809242326048": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "N"}]}}, "139809242137872": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "N"}]}}, "139809262873824": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "N"}]}}, "139809262873936": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "A"}]}}, "139809237865120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809266887232"}, {"nodeId": "139809255088512"}, {"nodeId": "139809255088960"}, {"nodeId": "139809255089408"}, {"nodeId": "139809255089856"}, {"nodeId": "139809255090304"}]}}, "139809266887232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238067104"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238067328"}, {"nodeId": "139809238067552"}, {"nodeId": "139809238067776"}, {"nodeId": "139809238068000"}, {"nodeId": "139809238068112"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238068448"}, {"nodeId": "139809238068672"}, {"nodeId": "139809238068784"}, {"nodeId": "139809238069008"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238069120"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238069232"}, {"nodeId": "139809238069344"}, {"nodeId": "139809238069456"}, {"nodeId": "139809238069680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238067104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238067328": {"type": "Union", "content": {"items": [{"nodeId": "139809238067216"}, {"nodeId": "N"}]}}, "139809238067216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238067552": {"type": "Union", "content": {"items": [{"nodeId": "139809238067440"}, {"nodeId": "N"}]}}, "139809238067440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809262872368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139809338538848"}, {"nodeId": "139809251070144", "args": [{"nodeId": "A"}]}]}}, "139809238067776": {"type": "Union", "content": {"items": [{"nodeId": "139809238067664"}, {"nodeId": "N"}]}}, "139809238067664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238068000": {"type": "Union", "content": {"items": [{"nodeId": "139809238067888"}, {"nodeId": "N"}]}}, "139809238067888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238068112": {"type": "Union", "content": {"items": [{"nodeId": "139809266885664"}, {"nodeId": "N"}]}}, "139809266885664": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238068448": {"type": "Union", "content": {"items": [{"nodeId": "139809238068336"}, {"nodeId": "N"}]}}, "139809238068336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238068672": {"type": "Union", "content": {"items": [{"nodeId": "139809238068560"}, {"nodeId": "N"}]}}, "139809238068560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809242138096": {"type": "Union", "content": {"items": [{"nodeId": "139809338537088", "args": [{"nodeId": "139809250722912"}, {"nodeId": "139809242137648"}]}, {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809242137200"}]}]}}, "139809242137648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809242137200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238068784": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238069008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238069120": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238069232": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238069344": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238069456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238069680": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238069568"}]}, {"nodeId": "N"}]}}, "139809238069568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255088512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238069792"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238070016"}, {"nodeId": "139809238070240"}, {"nodeId": "139809238070464"}, {"nodeId": "139809238070688"}, {"nodeId": "139809238070800"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238071136"}, {"nodeId": "139809238071360"}, {"nodeId": "139809238071472"}, {"nodeId": "139809238071696"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238071808"}, {"nodeId": "139809238071920"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238072032"}, {"nodeId": "139809238072144"}, {"nodeId": "139809238072368"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238069792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238070016": {"type": "Union", "content": {"items": [{"nodeId": "139809238069904"}, {"nodeId": "N"}]}}, "139809238069904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238070240": {"type": "Union", "content": {"items": [{"nodeId": "139809238070128"}, {"nodeId": "N"}]}}, "139809238070128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238070464": {"type": "Union", "content": {"items": [{"nodeId": "139809238070352"}, {"nodeId": "N"}]}}, "139809238070352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238070688": {"type": "Union", "content": {"items": [{"nodeId": "139809238070576"}, {"nodeId": "N"}]}}, "139809238070576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238070800": {"type": "Union", "content": {"items": [{"nodeId": "139809266887456"}, {"nodeId": "N"}]}}, "139809266887456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238071136": {"type": "Union", "content": {"items": [{"nodeId": "139809238071024"}, {"nodeId": "N"}]}}, "139809238071024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238071360": {"type": "Union", "content": {"items": [{"nodeId": "139809238071248"}, {"nodeId": "N"}]}}, "139809238071248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238071472": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238071696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238071808": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238071920": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238072032": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238072144": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238072368": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238072256"}]}, {"nodeId": "N"}]}}, "139809238072256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255088960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238072480"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238072704"}, {"nodeId": "139809238072928"}, {"nodeId": "139809238073152"}, {"nodeId": "139809238106288"}, {"nodeId": "139809238106400"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238106736"}, {"nodeId": "139809238106960"}, {"nodeId": "0"}, {"nodeId": "139809238107296"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238107408"}, {"nodeId": "139809238107520"}, {"nodeId": "139809238107632"}, {"nodeId": "139809238107744"}, {"nodeId": "139809238107856"}, {"nodeId": "139809238108080"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238072480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238072704": {"type": "Union", "content": {"items": [{"nodeId": "139809238072592"}, {"nodeId": "N"}]}}, "139809238072592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238072928": {"type": "Union", "content": {"items": [{"nodeId": "139809238072816"}, {"nodeId": "N"}]}}, "139809238072816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238073152": {"type": "Union", "content": {"items": [{"nodeId": "139809238073040"}, {"nodeId": "N"}]}}, "139809238073040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238106288": {"type": "Union", "content": {"items": [{"nodeId": "139809238106176"}, {"nodeId": "N"}]}}, "139809238106176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238106400": {"type": "Union", "content": {"items": [{"nodeId": "139809266887008"}, {"nodeId": "N"}]}}, "139809266887008": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238106736": {"type": "Union", "content": {"items": [{"nodeId": "139809238106624"}, {"nodeId": "N"}]}}, "139809238106624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238106960": {"type": "Union", "content": {"items": [{"nodeId": "139809238106848"}, {"nodeId": "N"}]}}, "139809238106848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238107296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238107408": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238107520": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238107632": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238107744": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238107856": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238108080": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238107968"}]}, {"nodeId": "N"}]}}, "139809238107968": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255089408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809238108192"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238108416"}, {"nodeId": "139809238108640"}, {"nodeId": "139809238108864"}, {"nodeId": "139809238109088"}, {"nodeId": "139809238109200"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238109536"}, {"nodeId": "139809238109760"}, {"nodeId": "139809238109872"}, {"nodeId": "139809238110096"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "0"}, {"nodeId": "139809238110320"}, {"nodeId": "139809238110432"}, {"nodeId": "139809238110544"}, {"nodeId": "139809238110656"}, {"nodeId": "139809238110880"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238108192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238108416": {"type": "Union", "content": {"items": [{"nodeId": "139809238108304"}, {"nodeId": "N"}]}}, "139809238108304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238108640": {"type": "Union", "content": {"items": [{"nodeId": "139809238108528"}, {"nodeId": "N"}]}}, "139809238108528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238108864": {"type": "Union", "content": {"items": [{"nodeId": "139809238108752"}, {"nodeId": "N"}]}}, "139809238108752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238109088": {"type": "Union", "content": {"items": [{"nodeId": "139809238108976"}, {"nodeId": "N"}]}}, "139809238108976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238109200": {"type": "Union", "content": {"items": [{"nodeId": "139809266886560"}, {"nodeId": "N"}]}}, "139809266886560": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238109536": {"type": "Union", "content": {"items": [{"nodeId": "139809238109424"}, {"nodeId": "N"}]}}, "139809238109424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238109760": {"type": "Union", "content": {"items": [{"nodeId": "139809238109648"}, {"nodeId": "N"}]}}, "139809238109648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238109872": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238110096": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238110320": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238110432": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238110544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238110656": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238110880": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238110768"}]}, {"nodeId": "N"}]}}, "139809238110768": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255089856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "139809250722912"}]}, {"nodeId": "139809238110992"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238111216"}, {"nodeId": "139809238111440"}, {"nodeId": "139809238111664"}, {"nodeId": "139809238111888"}, {"nodeId": "139809238112000"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238112336"}, {"nodeId": "139809238112560"}, {"nodeId": "139809238112896"}, {"nodeId": "139809238113008"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238113344"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139809238113232"}, {"nodeId": "139809238113456"}, {"nodeId": "139809238113680"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238110992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238111216": {"type": "Union", "content": {"items": [{"nodeId": "139809238111104"}, {"nodeId": "N"}]}}, "139809238111104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238111440": {"type": "Union", "content": {"items": [{"nodeId": "139809238111328"}, {"nodeId": "N"}]}}, "139809238111328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238111664": {"type": "Union", "content": {"items": [{"nodeId": "139809238111552"}, {"nodeId": "N"}]}}, "139809238111552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238111888": {"type": "Union", "content": {"items": [{"nodeId": "139809238111776"}, {"nodeId": "N"}]}}, "139809238111776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238112000": {"type": "Union", "content": {"items": [{"nodeId": "139809266886336"}, {"nodeId": "N"}]}}, "139809266886336": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238112336": {"type": "Union", "content": {"items": [{"nodeId": "139809238112224"}, {"nodeId": "N"}]}}, "139809238112224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238112560": {"type": "Union", "content": {"items": [{"nodeId": "139809238112448"}, {"nodeId": "N"}]}}, "139809238112448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238112896": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238113008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238113344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238113232": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238113456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238113680": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238113568"}]}, {"nodeId": "N"}]}}, "139809238113568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809255090304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": "A"}]}, {"nodeId": "139809238113904"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238114128"}, {"nodeId": "139809238114352"}, {"nodeId": "139809238114576"}, {"nodeId": "139809238114800"}, {"nodeId": "139809238114912"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809238115248"}, {"nodeId": "139809238115472"}, {"nodeId": "139809238115584"}, {"nodeId": "139809238115808"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338535328", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809238115920"}, {"nodeId": "139809238116032"}, {"nodeId": "139809238116144"}, {"nodeId": "139809238116256"}, {"nodeId": "139809238116368"}, {"nodeId": "139809238116592"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139809238113904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238114128": {"type": "Union", "content": {"items": [{"nodeId": "139809238114016"}, {"nodeId": "N"}]}}, "139809238114016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238114352": {"type": "Union", "content": {"items": [{"nodeId": "139809238114240"}, {"nodeId": "N"}]}}, "139809238114240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238114576": {"type": "Union", "content": {"items": [{"nodeId": "139809238114464"}, {"nodeId": "N"}]}}, "139809238114464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238114800": {"type": "Union", "content": {"items": [{"nodeId": "139809238114688"}, {"nodeId": "N"}]}}, "139809238114688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809262872368"}}}, "139809238114912": {"type": "Union", "content": {"items": [{"nodeId": "139809266885440"}, {"nodeId": "N"}]}}, "139809266885440": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139809238115248": {"type": "Union", "content": {"items": [{"nodeId": "139809238115136"}, {"nodeId": "N"}]}}, "139809238115136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809254791584"}}}, "139809238115472": {"type": "Union", "content": {"items": [{"nodeId": "139809238115360"}, {"nodeId": "N"}]}}, "139809238115360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242138096"}}}, "139809238115584": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238115808": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139809238115920": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809238116032": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238116144": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809238116256": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238116368": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809238116592": {"type": "Union", "content": {"items": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809238116480"}]}, {"nodeId": "N"}]}}, "139809238116480": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809250394176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}], "returnType": {"nodeId": "139809238116704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238116704": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809250394624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809238116816"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139809238116816": {"type": "Union", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "N"}]}}, "139809250395072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809238116928"}, {"nodeId": "139809238117040"}], "returnType": {"nodeId": "139809238117264"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "139809238116928": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262741888"}, {"nodeId": "N"}]}}, "139809238117040": {"type": "Union", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "N"}]}}, "139809238117264": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139809262741888"}, {"nodeId": ".1.139809262741888"}]}}, "139809250395520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "139809250395968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250396416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250396864": {"type": "Function", "content": {"typeVars": [".0.139809250396864"], "argTypes": [{"nodeId": ".0.139809250396864"}], "returnType": {"nodeId": ".0.139809250396864"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809250396864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, "def": "139809250396864", "variance": "INVARIANT"}}, "139809250397312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741888", "args": [{"nodeId": ".1.139809262741888"}]}, {"nodeId": "139809238117488"}, {"nodeId": "139809238117600"}, {"nodeId": "139809238117712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809238117488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809238117600": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809238117712": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809250397760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809280169504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242107040"}], "returnType": {"nodeId": "139809233522576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233522576": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242107392": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809204862672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204466208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809204467776"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338539200"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338539200"}]}], "isAbstract": false}}, "139809204862672": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809204466208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233524144"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233524144": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233523584"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233523584": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233523920"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233523920": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233524256"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233524256": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809204467776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233524368"}], "returnType": {"nodeId": "139809338539200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233524368": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}, {"nodeId": "139809338539200"}]}}, "139809242107744": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809199835392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199849536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199850432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199850656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199850880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199851104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809199835392": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809199849536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233525824"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233525824": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199850432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526160"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526160": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199850656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526496"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526496": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199850880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526608"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526608": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809199851104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233526720"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233526720": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809242108096": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809199837296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809280335584"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809199852896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809259144992", "args": [{"nodeId": "139809338538848"}]}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538848"}]}], "isAbstract": false}}, "139809199837296": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}]}}, "139809280335584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809233530416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "139809233530416": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809199852896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809233530192"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233530192": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}]}}, "139809242104928": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250308896"}], "isAbstract": false}}, "139809250308896": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258638016"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258638464"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258638912"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258639360"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191451936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191454624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809191455744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}, {"nodeId": "139809250308544"}], "isAbstract": false}}, "139809258638016": {"type": "Function", "content": {"typeVars": [".0.139809258638016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258638016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139809258638016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258638016", "variance": "INVARIANT"}}, "139809258638464": {"type": "Function", "content": {"typeVars": [".0.139809258638464"], "argTypes": [{"nodeId": ".0.139809258638464"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258638464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258638464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258638464", "variance": "INVARIANT"}}, "139809258638912": {"type": "Function", "content": {"typeVars": [".0.139809258638912"], "argTypes": [{"nodeId": ".0.139809258638912"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258638912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258638912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258638912", "variance": "INVARIANT"}}, "139809258639360": {"type": "Function", "content": {"typeVars": [".0.139809258639360"], "argTypes": [{"nodeId": ".0.139809258639360"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258639360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258639360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809258639360", "variance": "INVARIANT"}}, "139809191451936": {"type": "Function", "content": {"typeVars": [".0.139809191451936"], "argTypes": [{"nodeId": ".0.139809191451936"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809191451936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809191451936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809191451936", "variance": "INVARIANT"}}, "139809191454624": {"type": "Function", "content": {"typeVars": [".0.139809191454624"], "argTypes": [{"nodeId": ".0.139809191454624"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809191454624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809191454624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809191454624", "variance": "INVARIANT"}}, "139809191455744": {"type": "Function", "content": {"typeVars": [".0.139809191455744"], "argTypes": [{"nodeId": ".0.139809191455744"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809191455744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809191455744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308896"}, "def": "139809191455744", "variance": "INVARIANT"}}, "139809250308544": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250170624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196571808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809191445216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258759424"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258759872"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258760320"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258760768"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258761216"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258761664"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "139809250307840"}], "isAbstract": false}}, "139809250170624": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809196571808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308544"}], "returnType": {"nodeId": "139809233950576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233950576": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809191445216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308544"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258759424": {"type": "Function", "content": {"typeVars": [".0.139809258759424"], "argTypes": [{"nodeId": ".0.139809258759424"}, {"nodeId": ".0.139809258759424"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258759424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258759424", "variance": "INVARIANT"}}, "139809258759872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308544"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258760320": {"type": "Function", "content": {"typeVars": [".0.139809258760320"], "argTypes": [{"nodeId": ".0.139809258760320"}, {"nodeId": ".0.139809258760320"}], "returnType": {"nodeId": ".0.139809258760320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258760320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258760320", "variance": "INVARIANT"}}, "139809258760768": {"type": "Function", "content": {"typeVars": [".0.139809258760768"], "argTypes": [{"nodeId": ".0.139809258760768"}, {"nodeId": ".0.139809258760768"}], "returnType": {"nodeId": ".0.139809258760768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258760768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258760768", "variance": "INVARIANT"}}, "139809258761216": {"type": "Function", "content": {"typeVars": [".0.139809258761216"], "argTypes": [{"nodeId": ".0.139809258761216"}, {"nodeId": ".0.139809258761216"}], "returnType": {"nodeId": ".0.139809258761216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139809258761216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258761216", "variance": "INVARIANT"}}, "139809258761664": {"type": "Function", "content": {"typeVars": [".0.139809258761664"], "argTypes": [{"nodeId": ".0.139809258761664"}], "returnType": {"nodeId": ".0.139809258761664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809258761664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308544"}, "def": "139809258761664", "variance": "INVARIANT"}}, "139809250307840": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196567328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196568000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250170064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196568224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196568448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258755392"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258755840"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258756288"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258756736"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809196567328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809196568000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250170064": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}]}}, "139809196568224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "139809196568448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250724672", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "139809258755392": {"type": "Function", "content": {"typeVars": [".0.139809258755392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": ".0.139809258755392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139809258755392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250307840"}, "def": "139809258755392", "variance": "INVARIANT"}}, "139809258755840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258756288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "139809258756736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307840"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, "139809254745792": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250309248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250307840"}], "isAbstract": false}}, "139809250309248": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809191457312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258640256"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809250308896"}], "isAbstract": false}}, "139809191457312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258640256": {"type": "Function", "content": {"typeVars": [".0.139809258640256"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139809258640256"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139809258640256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250309248"}, "def": "139809258640256", "variance": "INVARIANT"}}, "139809254746144": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809254747200": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250732416"}], "isAbstract": false}}, "139809254747552": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284165856"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234165248"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809254747552"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809254747552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254747552", "variance": "INVARIANT"}}, "139809284165856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254747552", "args": [{"nodeId": ".1.139809254747552"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "139809234165248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809284166304"}, {"nodeId": "139809284166752"}]}}, "139809284166304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809254747552", "args": [{"nodeId": ".1.139809254747552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139809284166752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809254747552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139809254748256": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809233566432"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809192117856"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139809254748256"}], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.139809254748256": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254748256", "variance": "COVARIANT"}}, "139809233566432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254748256"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809254748256"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809192117856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254748256"}]}, {"nodeId": "139809234169728"}, {"nodeId": "139809234169840"}, {"nodeId": "139809234169952"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139809234170064"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139809234169728": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234169840": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234169952": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234170064": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809254748608": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284172128"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809284172128": {"type": "Function", "content": {"typeVars": [".-1.139809284172128"], "argTypes": [{"nodeId": "139809254748608"}, {"nodeId": ".-1.139809284172128"}], "returnType": {"nodeId": ".-1.139809284172128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139809284172128": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "139809266691296"}, "def": "139809284172128", "variance": "INVARIANT"}}, "139809266691296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809254748960": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284172576"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809254748960"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809255095232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284173024"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139809254748960"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254748960"}]}, {"nodeId": "139809254748608"}], "isAbstract": false}}, ".1.139809254748960": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254748960", "variance": "COVARIANT"}}, "139809284172576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748960", "args": [{"nodeId": ".1.139809254748960"}]}, {"nodeId": "139809234272320"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139809234272320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".1.139809254748960"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809255095232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338532864", "args": [{"nodeId": ".1.139809254748960"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809284173024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254748960", "args": [{"nodeId": ".1.139809254748960"}]}, {"nodeId": "139809234170624"}, {"nodeId": "139809234170736"}, {"nodeId": "139809234170848"}], "returnType": {"nodeId": "139809234170960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234170624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234170736": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234170848": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234170960": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809254749312": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284174368"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809284174368": {"type": "Function", "content": {"typeVars": [".-1.139809284174368"], "argTypes": [{"nodeId": "139809254749312"}, {"nodeId": ".-1.139809284174368"}], "returnType": {"nodeId": ".-1.139809284174368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139809284174368": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "139809266687040"}, "def": "139809284174368", "variance": "INVARIANT"}}, "139809266687040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809254749664": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284174816"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809254749664"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809266689056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809233566208"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139809254749664"}], "bases": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254749664"}]}, {"nodeId": "139809254749312"}], "isAbstract": false}}, ".1.139809254749664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809254749664", "variance": "COVARIANT"}}, "139809284174816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254749664", "args": [{"nodeId": ".1.139809254749664"}]}, {"nodeId": "139809234273216"}, {"nodeId": "139809250724320", "args": [{"nodeId": "A"}]}, {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139809234273216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338534272", "args": [{"nodeId": ".1.139809254749664"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809266689056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809338534624", "args": [{"nodeId": ".1.139809254749664"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139809233566208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254749664", "args": [{"nodeId": ".1.139809254749664"}]}, {"nodeId": "139809234171856"}, {"nodeId": "139809234171968"}, {"nodeId": "139809234172080"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139809234172192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "139809234171856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234171968": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234172080": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809234172192": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809254750016": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284177056"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["close"]}}, "139809284177056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750016"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254750368": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809284177504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275363616"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139809254750368"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254750368"}]}], "isAbstract": false}}, ".1.139809254750368": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "139809254750016"}, "def": "139809254750368", "variance": "INVARIANT"}}, "139809284177504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750368", "args": [{"nodeId": ".1.139809254750368"}]}, {"nodeId": ".1.139809254750368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139809275363616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750368", "args": [{"nodeId": ".1.139809254750368"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139809254750720": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275364064"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["aclose"]}}, "139809275364064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254750720"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "139809338527232"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254751072": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275364512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809234274560"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139809254751072"}], "bases": [{"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809254751072"}]}], "isAbstract": false}}, ".1.139809254751072": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "139809254750720"}, "def": "139809254751072", "variance": "INVARIANT"}}, "139809275364512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751072", "args": [{"nodeId": ".1.139809254751072"}]}, {"nodeId": ".1.139809254751072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139809234274560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751072", "args": [{"nodeId": ".1.139809254751072"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "139809254751424": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275365408"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275365856"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "139809275365408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751424"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "139809275365856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751424"}, {"nodeId": "139809234172976"}, {"nodeId": "139809234173088"}, {"nodeId": "139809234173200"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234172976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234173088": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234173200": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809254751776": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275366304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275366752"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139809254751776"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809254751776"}]}], "isAbstract": false}}, ".1.139809254751776": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139809242149520"}, "def": "139809254751776", "variance": "INVARIANT"}}, "139809242149520": {"type": "Union", "content": {"items": [{"nodeId": "139809251070144", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "N"}]}}, "139809275366304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809254751776"}]}, {"nodeId": ".1.139809254751776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "139809275366752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809254751776"}]}, {"nodeId": "139809234173312"}, {"nodeId": "139809234173424"}, {"nodeId": "139809234173536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234173312": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234173424": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234173536": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262977088": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.139809262977088"}], "bases": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809262977088"}]}], "isAbstract": false}}, ".1.139809262977088": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139809242149520"}, "def": "139809262977088", "variance": "INVARIANT"}}, "139809262977440": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.139809262977440"}], "bases": [{"nodeId": "139809254751776", "args": [{"nodeId": ".1.139809262977440"}]}], "isAbstract": false}}, ".1.139809262977440": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139809242149520"}, "def": "139809262977440", "variance": "INVARIANT"}}, "139809262977792": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275367200"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275367648"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275368096"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275368544"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275368992"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275369440"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275369888"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275367200": {"type": "Function", "content": {"typeVars": [".-1.139809275367200"], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": "139809254747904", "args": [{"nodeId": ".-1.139809275367200"}]}], "returnType": {"nodeId": ".-1.139809275367200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139809275367200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809275367200", "variance": "INVARIANT"}}, "139809275367648": {"type": "Function", "content": {"typeVars": [".-1.139809275367648"], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": ".-1.139809275367648"}], "returnType": {"nodeId": ".-1.139809275367648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139809275367648": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139809242150640"}, "def": "139809275367648", "variance": "INVARIANT"}}, "139809242150640": {"type": "Union", "content": {"items": [{"nodeId": "139809254747904", "args": [{"nodeId": "A"}]}, {"nodeId": "139809242150080"}]}}, "139809242150080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809266686368"}}}, "139809266686368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809255226080"}, {"nodeId": "139809255226864"}, {"nodeId": "139809255227088"}], "returnType": {"nodeId": "139809255227200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809255226080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809255226864": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809255227088": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809255227200": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809275368096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": "139809234273888"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809234274784"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139809234273888": {"type": "Function", "content": {"typeVars": [".-2.139809234273888"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234273888"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234273888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234273888", "variance": "INVARIANT"}}, "139809234274784": {"type": "Function", "content": {"typeVars": [".-2.139809234274784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234274784"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234274784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234274784", "variance": "INVARIANT"}}, "139809275368544": {"type": "Function", "content": {"typeVars": [".0.139809275368544"], "argTypes": [{"nodeId": ".0.139809275368544"}], "returnType": {"nodeId": ".0.139809275368544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809275368544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262977792"}, "def": "139809275368544", "variance": "INVARIANT"}}, "139809275368992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262977792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275369440": {"type": "Function", "content": {"typeVars": [".0.139809275369440"], "argTypes": [{"nodeId": ".0.139809275369440"}], "returnType": {"nodeId": ".0.139809275369440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275369440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262977792"}, "def": "139809275369440", "variance": "INVARIANT"}}, "139809275369888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262977792"}, {"nodeId": "139809234322144"}, {"nodeId": "139809234322256"}, {"nodeId": "139809234322368"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809234322144": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234322256": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234322368": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262978144": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275370336"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275364960"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275371232"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275371680"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275372128"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275372576"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275373024"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275370784"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275373472"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275373920"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275370336": {"type": "Function", "content": {"typeVars": [".-1.139809275370336"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809254747904", "args": [{"nodeId": ".-1.139809275370336"}]}], "returnType": {"nodeId": ".-1.139809275370336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139809275370336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809275370336", "variance": "INVARIANT"}}, "139809275364960": {"type": "Function", "content": {"typeVars": [".-1.139809275364960"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809254748256", "args": [{"nodeId": ".-1.139809275364960"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.139809275364960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139809275364960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809275364960", "variance": "INVARIANT"}}, "139809275371232": {"type": "Function", "content": {"typeVars": [".-1.139809275371232"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": ".-1.139809275371232"}], "returnType": {"nodeId": ".-1.139809275371232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139809275371232": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139809242150640"}, "def": "139809275371232", "variance": "INVARIANT"}}, "139809275371680": {"type": "Function", "content": {"typeVars": [".-1.139809275371680"], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": ".-1.139809275371680"}], "returnType": {"nodeId": ".-1.139809275371680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139809275371680": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "139809242151200"}, "def": "139809275371680", "variance": "INVARIANT"}}, "139809242151200": {"type": "Union", "content": {"items": [{"nodeId": "139809254748256", "args": [{"nodeId": "A"}]}, {"nodeId": "139809242151424"}]}}, "139809242151424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809266688832"}}}, "139809266688832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809255222720"}, {"nodeId": "139809255222048"}, {"nodeId": "139809255223840"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": "139809254796288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809255222720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809255222048": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809255223840": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809254796288": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, "139809275372128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809234274336"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809234275232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139809234274336": {"type": "Function", "content": {"typeVars": [".-2.139809234274336"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234274336"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234274336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234274336", "variance": "INVARIANT"}}, "139809234275232": {"type": "Function", "content": {"typeVars": [".-2.139809234275232"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139809234275232"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234275232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234275232", "variance": "INVARIANT"}}, "139809275372576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809234275008"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809234275680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139809234275008": {"type": "Function", "content": {"typeVars": [".-2.139809234275008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".-2.139809234275008"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234275008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234275008", "variance": "INVARIANT"}}, "139809234275680": {"type": "Function", "content": {"typeVars": [".-2.139809234275680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139809338533216", "args": [{"nodeId": ".-2.139809234275680"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139809234275680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809234275680", "variance": "INVARIANT"}}, "139809275373024": {"type": "Function", "content": {"typeVars": [".0.139809275373024"], "argTypes": [{"nodeId": ".0.139809275373024"}], "returnType": {"nodeId": ".0.139809275373024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809275373024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262978144"}, "def": "139809275373024", "variance": "INVARIANT"}}, "139809275370784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275373472": {"type": "Function", "content": {"typeVars": [".0.139809275373472"], "argTypes": [{"nodeId": ".0.139809275373472"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.139809275373472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139809275373472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262978144"}, "def": "139809275373472", "variance": "INVARIANT"}}, "139809275373920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978144"}, {"nodeId": "139809234324496"}, {"nodeId": "139809234324608"}, {"nodeId": "139809234324720"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139809338527936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139809234324496": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809234324608": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809234324720": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809262978496": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139809262978496"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809234324384"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275375712"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275376160"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809234275456"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809234276352"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139809262978496"}], "bases": [{"nodeId": "139809254747904", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": "139809254748256", "args": [{"nodeId": ".1.139809262978496"}]}], "isAbstract": false}}, ".1.139809262978496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262978496", "variance": "INVARIANT"}}, "139809234324384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809275374368"}, {"nodeId": "139809275374816"}]}}, "139809275374368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "139809275374816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": ".1.139809262978496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "139809275375712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}], "returnType": {"nodeId": ".1.139809262978496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809275376160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139809234275456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139809262978496"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809234276352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262978496", "args": [{"nodeId": ".1.139809262978496"}]}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338533568", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "139809262979904": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275496480"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275496928"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275497376"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["close", "seek", "write"]}}, "139809275496480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979904"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139809275496928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979904"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809275497376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262979904"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262980256": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275497824"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275498272"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275498720"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["close", "read", "seek"]}}, "139809275497824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980256"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139809275498272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980256"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139809275498720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980256"}], "returnType": {"nodeId": "139809338527232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809242111968": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "139809262979904"}, {"nodeId": "139809262980256"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "139809262980608": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275499168"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275499168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980608"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229426688"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229426688": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809262980960": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275499616"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275499616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262980960"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229426912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229426912": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809262981312": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275500064"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275500064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262981312"}, {"nodeId": "139809262980256"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809242113728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809242113728": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262980256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275720672"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275721120"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275721568"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275722016"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275722464"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275722912"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275723360"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275904288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275904736"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275905184"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809262982720"}], "isAbstract": false}}, "139809275720672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809262980256"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809275721120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "139809275721568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809229433072"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "139809229433072": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275722016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809229433184"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "139809229433184": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275722464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275722912": {"type": "Function", "content": {"typeVars": [".0.139809275722912"], "argTypes": [{"nodeId": ".0.139809275722912"}], "returnType": {"nodeId": ".0.139809275722912"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275722912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242113728"}, "def": "139809275722912", "variance": "INVARIANT"}}, "139809275723360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809229433408"}, {"nodeId": "139809229433520"}, {"nodeId": "139809229433632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229433408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229433520": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229433632": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275904288": {"type": "Function", "content": {"typeVars": [".0.139809275904288"], "argTypes": [{"nodeId": ".0.139809275904288"}], "returnType": {"nodeId": ".0.139809275904288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275904288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242113728"}, "def": "139809275904288", "variance": "INVARIANT"}}, "139809275904736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275905184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113728"}, {"nodeId": "139809250722560"}, {"nodeId": "139809234278368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809234278368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262982720": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275709472"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275709920"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809275709472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982720"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229430944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229430944": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809275709920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982720"}, {"nodeId": "139809250722912"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809229431168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139809229431168": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809262981664": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275500512"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275500512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262981664"}, {"nodeId": "139809262979904"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809242113376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809242113376": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262979904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275717536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275717984"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275718432"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275718880"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275719328"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275719776"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275720224"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139809262982720"}], "isAbstract": false}}, "139809275717536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809262979904"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139809275717984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "139809275718432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139809275718880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275719328": {"type": "Function", "content": {"typeVars": [".0.139809275719328"], "argTypes": [{"nodeId": ".0.139809275719328"}], "returnType": {"nodeId": ".0.139809275719328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275719328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242113376"}, "def": "139809275719328", "variance": "INVARIANT"}}, "139809275719776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809229432512"}, {"nodeId": "139809229432624"}, {"nodeId": "139809229432736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229432512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229432624": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229432736": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275720224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113376"}, {"nodeId": "139809250722560"}, {"nodeId": "139809234277920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139809234277920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809262982016": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275500960"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275500960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982016"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262983072"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809262983072": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275710368"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183284384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275711264"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275711712"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275712160"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": true}}, "139809275710368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183284384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809275711264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275711712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}], "returnType": {"nodeId": "139809229431280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229431280": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809275712160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983072"}, {"nodeId": "139809229431392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139809229431392": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}]}}, "139809262982368": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275501408"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "protocolMembers": ["__call__"]}}, "139809275501408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262982368"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809262983424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809242112320": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183377312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183374176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183373952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183373056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183373504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809183371712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275504544"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809250724320", "args": [{"nodeId": "139809338527232"}]}], "isAbstract": false}}, "139809183377312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427136"}], "returnType": {"nodeId": "139809262980608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427136": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427248"}], "returnType": {"nodeId": "139809262980960"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427248": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183373952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427360"}], "returnType": {"nodeId": "139809262981312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427360": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183373056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427472"}], "returnType": {"nodeId": "139809262981664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427472": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183373504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427584"}], "returnType": {"nodeId": "139809262982016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427584": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809183371712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809229427696"}], "returnType": {"nodeId": "139809262982368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809229427696": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809275504544": {"type": "Function", "content": {"typeVars": [".0.139809275504544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809229427920"}, {"nodeId": "139809229428032"}, {"nodeId": "139809229428144"}, {"nodeId": "139809229428256"}, {"nodeId": "139809229428368"}, {"nodeId": "139809229428480"}], "returnType": {"nodeId": ".0.139809275504544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "139809229427920": {"type": "Union", "content": {"items": [{"nodeId": "139809262981312"}, {"nodeId": "N"}]}}, "139809229428032": {"type": "Union", "content": {"items": [{"nodeId": "139809262981664"}, {"nodeId": "N"}]}}, "139809229428144": {"type": "Union", "content": {"items": [{"nodeId": "139809262982016"}, {"nodeId": "N"}]}}, "139809229428256": {"type": "Union", "content": {"items": [{"nodeId": "139809262982368"}, {"nodeId": "N"}]}}, "139809229428368": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809229428480": {"type": "Union", "content": {"items": [{"nodeId": "139809338527936"}, {"nodeId": "N"}]}}, ".0.139809275504544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809229426464"}, "def": "139809275504544", "variance": "INVARIANT"}}, "139809229426464": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}]}}, "139809242112672": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275714848"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183282592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275715744"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "139809262983072"}], "isAbstract": true}}, "139809275714848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242112672"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183282592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242112672"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809229432064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139809229432064": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809338538848"}]}}, "139809275715744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242112672"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809242113024": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275716192"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809183281472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275717088"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139809262983424"}], "isAbstract": true}}, "139809275716192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113024"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139809183281472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113024"}, {"nodeId": "139809251081408"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809229432288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139809229432288": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}}, "139809275717088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242113024"}, {"nodeId": "139809251081408"}, {"nodeId": "139809338527936"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139809242114080": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242111968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275905632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275906080"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275906528"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275906976"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275907424"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275907872"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275908320"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275908768"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275909216"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275909664"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275910112"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275910560"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275911008"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275911456"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275911904"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275912352"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275912800"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275913248"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275913696"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275914144"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275914592"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275915040"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139809251070848"}], "isAbstract": false}}, "139809275905632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809242111968"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "139809275906080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809275906528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229433968"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229433968": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275906976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229434080"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139809229434080": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275907424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275907872": {"type": "Function", "content": {"typeVars": [".0.139809275907872"], "argTypes": [{"nodeId": ".0.139809275907872"}], "returnType": {"nodeId": ".0.139809275907872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275907872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114080"}, "def": "139809275907872", "variance": "INVARIANT"}}, "139809275908320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139809275908768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139809275909216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275909664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139809275910112": {"type": "Function", "content": {"typeVars": [".0.139809275910112"], "argTypes": [{"nodeId": ".0.139809275910112"}], "returnType": {"nodeId": ".0.139809275910112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275910112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809242114080"}, "def": "139809275910112", "variance": "INVARIANT"}}, "139809275910560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229434304"}, {"nodeId": "139809229434416"}, {"nodeId": "139809229434528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229434304": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229434416": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229434528": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275911008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809275911456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275911904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275912352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275912800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275913248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275913696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}, {"nodeId": "139809229434752"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229434752": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275914144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275914592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275915040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809242114080"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262983776": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275915488"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275915936"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275916384"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275916832"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275917280"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275917728"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275918176"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275918624"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275919072"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275919520"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275919968"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275969824"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275970272"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275970720"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275971168"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275971616"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275972064"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275972512"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275972960"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275973408"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275973856"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809275974304"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139809251070496"}], "isAbstract": false}}, "139809275915488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809242111968"}, {"nodeId": "139809262980608"}, {"nodeId": "139809262980960"}, {"nodeId": "139809262981312"}, {"nodeId": "139809262981664"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "139809275915936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809275916384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229434864"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229434864": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275916832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229434976"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139809229434976": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275917280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275917728": {"type": "Function", "content": {"typeVars": [".0.139809275917728"], "argTypes": [{"nodeId": ".0.139809275917728"}], "returnType": {"nodeId": ".0.139809275917728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275917728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262983776"}, "def": "139809275917728", "variance": "INVARIANT"}}, "139809275918176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809250722912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139809275918624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722912"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139809275919072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275919520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809275919968": {"type": "Function", "content": {"typeVars": [".0.139809275919968"], "argTypes": [{"nodeId": ".0.139809275919968"}], "returnType": {"nodeId": ".0.139809275919968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139809275919968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262983776"}, "def": "139809275919968", "variance": "INVARIANT"}}, "139809275969824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229435312"}, {"nodeId": "139809229435424"}, {"nodeId": "139809229435536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139809229435312": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139809229435424": {"type": "Union", "content": {"items": [{"nodeId": "139809250729248"}, {"nodeId": "N"}]}}, "139809229435536": {"type": "Union", "content": {"items": [{"nodeId": "139809262736960"}, {"nodeId": "N"}]}}, "139809275970272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139809275970720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275971168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275971616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275972064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275972512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275972960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}, {"nodeId": "139809229435648"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139809229435648": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809275973408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275973856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809275974304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262983776"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809254735936": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809254736288": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254735936"}], "isAbstract": false}}, "139809254736640": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254736288"}], "isAbstract": false}}, "139809254736992": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254736288"}], "isAbstract": false}}, "139809254737344": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254735936"}, {"nodeId": "139809250736640"}], "isAbstract": false}}, "139809254737696": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254735936"}], "isAbstract": false}}, "139809254738400": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254738752": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254739104": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254739456": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254739808": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254740160": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254740512": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254740864": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254741216": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254741568": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254741920": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254742272": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254742624": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254738048"}], "isAbstract": false}}, "139809254742976": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254743328": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254743680": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276036928"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809276036928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809254743680"}, {"nodeId": "139809234161440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "139809234161440": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809254744032": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254744384": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809254744736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139809254742624"}], "isAbstract": false}}, "139809250309952": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276042528"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276042976"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276043424"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276043872"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276044320"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139809250309600"}], "isAbstract": false}}, "139809276042528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233952256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139809233952256": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276042976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233952480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233952480": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276043424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233952592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233952592": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250311712"}]}}, "139809250311712": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267520384"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267520832"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267521280"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267521728"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267522176"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809267520384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809234159200"}, {"nodeId": "139809234159312"}, {"nodeId": "139809234159424"}, {"nodeId": "139809234159536"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "139809234159200": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809234159312": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809234159424": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809234159536": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809267520832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809234159648"}, {"nodeId": "139809234159760"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "139809234159648": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "139809250723264"}, {"nodeId": "139809250722560"}]}}, "139809234159760": {"type": "Union", "content": {"items": [{"nodeId": "139809254745440"}, {"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809267521280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809250722560"}, {"nodeId": "139809234159872"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "139809234159872": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809267521728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809267522176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250311712"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809276043872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809276044320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309952"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809250310304": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809255095680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809254745088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276044768"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276045216"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276045664"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276046112"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276046560"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276047008"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139809250309600"}], "isAbstract": false}}, "139809255095680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809276044768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809233952704"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338527936"}, {"nodeId": "139809338527936"}, {"nodeId": "139809233952816"}, {"nodeId": "139809338527936"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233561504"}, {"nodeId": "139809254745088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "139809233952704": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809233952816": {"type": "Union", "content": {"items": [{"nodeId": "139809233561280"}, {"nodeId": "N"}]}}, "139809233561280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250309600"}], "returnType": {"nodeId": "139809250310656"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809233561504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809276045216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809233953040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139809233953040": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276045664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809233953264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809233953264": {"type": "Tuple", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}]}}, "139809276046112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809276046560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809276047008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250310304"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139809262740480": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139809262740480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139809262740480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276049472"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276049920"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809276050368"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139809262740480"}], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, ".1.139809262740480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809262740480", "variance": "INVARIANT"}}, "139809276049472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262740480", "args": [{"nodeId": ".1.139809262740480"}]}, {"nodeId": "139809237864672"}, {"nodeId": "139809338538848"}, {"nodeId": "139809237864784"}, {"nodeId": "139809237864896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "139809237864672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809237864784": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262740480"}, {"nodeId": "N"}]}}, "139809237864896": {"type": "Union", "content": {"items": [{"nodeId": ".1.139809262740480"}, {"nodeId": "N"}]}}, "139809276049920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262740480", "args": [{"nodeId": ".1.139809262740480"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809276050368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139809262738368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139809262740832": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809262741184": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809254534144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338539200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242320224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242138208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809262740832"}], "isAbstract": false}}, "139809254534144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741184"}, {"nodeId": "139809238066320"}, {"nodeId": "139809338539200"}, {"nodeId": "139809238066432"}, {"nodeId": "139809238066544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "139809238066320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238066432": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809238066544": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809242320224": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809242138208": {"type": "Union", "content": {"items": [{"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809262741536": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809254534592"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809262740832"}], "isAbstract": false}}, "139809254534592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262741536"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238066656"}, {"nodeId": "139809238066768"}, {"nodeId": "139809238066880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "139809238066656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242137312"}}}, "139809238066768": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809238066880": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809250307136": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250403136"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250403584"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}], "isAbstract": false}}, "139809250403136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809250403584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307136"}, {"nodeId": "139809250722560"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809250307488": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250405376"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809196561728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250407168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250407616"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250408960"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809250409856"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196565984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258750464"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258750912"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258751360"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139809233730832"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809250307840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "A"}, {"nodeId": "139809250307840"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139809250916160"}], "isAbstract": false}}, "139809250405376": {"type": "Function", "content": {"typeVars": [".-1.139809250405376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "139809250307136"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139809250405376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.139809250405376": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250405376", "variance": "INVARIANT"}}, "139809196561728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250724320", "args": [{"nodeId": "139809338538144"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139809250307136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "139809250407168": {"type": "Function", "content": {"typeVars": [".-1.139809250407168"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".-1.139809250407168"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809250407168": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250407168", "variance": "INVARIANT"}}, "139809250407616": {"type": "Function", "content": {"typeVars": [".-1.139809250407616"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139809338532160", "args": [{"nodeId": ".-1.139809250407616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139809250407616": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250407616", "variance": "INVARIANT"}}, "139809250408960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338527232"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809250409856": {"type": "Function", "content": {"typeVars": [".-1.139809250409856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".-1.139809250409856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139809250409856": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809250409856", "variance": "INVARIANT"}}, "139809196565984": {"type": "Function", "content": {"typeVars": [".-1.139809196565984"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139809262732032", "args": [{"nodeId": "139809250722560"}, {"nodeId": ".-1.139809196565984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139809196565984": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809196565984", "variance": "INVARIANT"}}, "139809258750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809258750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}], "returnType": {"nodeId": "139809250724672", "args": [{"nodeId": "139809250722560"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809233730832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139809258751808"}, {"nodeId": "139809258752704"}]}}, "139809258751808": {"type": "Function", "content": {"typeVars": [".-1.139809258751808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139809258751808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.139809258751808": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139809338527232"}, "def": "139809258751808", "variance": "INVARIANT"}}, "139809258752704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250307488"}, {"nodeId": "139809250722560"}, {"nodeId": "139809233949344"}, {"nodeId": "139809233949456"}, {"nodeId": "139809233949568"}, {"nodeId": "139809233949680"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "139809233949344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250170288"}}}, "139809250170288": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809338531808", "args": [{"nodeId": "139809250172192"}]}]}, {"nodeId": "139809338537088", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}]}}, "139809250172192": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}}, "139809233949456": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233949568": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809233949680": {"type": "Union", "content": {"items": [{"nodeId": "139809338538144"}, {"nodeId": "N"}]}}, "139809250308192": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809196570688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258757632"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}, {"nodeId": "139809250307840"}], "isAbstract": false}}, "139809196570688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809250308192"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809258757632": {"type": "Function", "content": {"typeVars": [".0.139809258757632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": ".0.139809258757632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139809258757632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809250308192"}, "def": "139809258757632", "variance": "INVARIANT"}}, "139809262743648": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262877408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262877520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258644736"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809262877408": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809262877520": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809258644736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743648"}, {"nodeId": "139809250722560"}, {"nodeId": "139809238121296"}, {"nodeId": "139809238120960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "139809238121296": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "139809250722912"}, {"nodeId": "N"}]}}, "139809238120960": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809262744000": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258645184"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139809338538848"}], "isAbstract": false}}, "139809258645184": {"type": "Function", "content": {"typeVars": [".0.139809258645184"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139809338538848"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": ".0.139809258645184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.139809258645184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139809262744000"}, "def": "139809258645184", "variance": "INVARIANT"}}, "139809259145696": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809258646528"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809258646528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809259145696"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809262742240": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "139809250730656"}], "isAbstract": false}}, "139809262742592": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809262872704"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242321344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213134688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267591744"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267592192"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267592640"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267593088"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809262872704": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242321344": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809213134688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809267591744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809238118496"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139809238118496": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809267592192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809338538848"}, {"nodeId": "139809262742944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "139809262742944": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250724672", "args": [{"nodeId": "139809242324032"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242261744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809262742592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267593536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267594432"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267594880"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267595328"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267595776"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267596224"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809267596672"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266942016"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266942464"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809242324032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809242325264": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262744000"}, {"nodeId": "139809242324144"}]}}, "139809242324144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325040"}}}, "139809242325040": {"type": "Union", "content": {"items": [{"nodeId": "139809242323248"}, {"nodeId": "139809242323808"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809262742944"}]}, {"nodeId": "139809242324704"}, {"nodeId": "139809242324928"}]}}, "139809242323248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809250724672", "args": [{"nodeId": "139809262874496"}]}}}, "139809262874496": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262744000"}, {"nodeId": "139809338538848"}]}}, "139809242323808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242139328"}}}, "139809242139328": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139809250724672", "args": [{"nodeId": "139809262742944"}]}]}}, "139809242324704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242139216"}}}, "139809242139216": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809262742944"}, {"nodeId": "139809262742944"}]}}, "139809242324928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242320112"}}}, "139809242320112": {"type": "Tuple", "content": {"items": [{"nodeId": "139809262873152"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}, {"nodeId": "139809262742944"}]}}, "139809262873152": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809242261744": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "N"}]}}, "139809267593536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809262742592"}, {"nodeId": "139809238118720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "139809238118720": {"type": "Union", "content": {"items": [{"nodeId": "139809250724672", "args": [{"nodeId": "139809238118608"}]}, {"nodeId": "N"}]}}, "139809238118608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809267594432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "139809267594880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139809267595328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238118832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809238118832": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250723968"}]}}, "139809267595776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238119056"}], "returnType": {"nodeId": "139809238117376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139809238119056": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250723968"}]}}, "139809238117376": {"type": "Union", "content": {"items": [{"nodeId": "139809262742944"}, {"nodeId": "139809238118944"}]}}, "139809238118944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809267596224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238119280"}, {"nodeId": "139809238119504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139809238119280": {"type": "Union", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809250723968"}]}}, "139809238119504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809267596672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809338538848"}, {"nodeId": "139809238119392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "139809238119392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809266942016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}, {"nodeId": "139809238119728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "139809238119728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139809242325264"}}}, "139809266942464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742944"}], "returnType": {"nodeId": "139809238119840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238119840": {"type": "Tuple", "content": {"items": [{"nodeId": "139809338538848"}, {"nodeId": "139809338538848"}]}}, "139809267592640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "139809267593088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262742592"}, {"nodeId": "139809338538848"}, {"nodeId": "139809262743296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "139809262743296": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338527936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809338538848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809242325376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266942912"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266943360"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266943808"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266944256"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266944704"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139809213129984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266946048"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266946496"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139809266946944"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "139809338527232"}], "isAbstract": false}}, "139809242325376": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266942912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139809266943360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809338527936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "139809266943808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}], "returnType": {"nodeId": "139809238119952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809238119952": {"type": "Union", "content": {"items": [{"nodeId": "139809250722560"}, {"nodeId": "N"}]}}, "139809266944256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809338538848"}, {"nodeId": "139809338531808", "args": [{"nodeId": "139809250722560"}]}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "139809266944704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809250722560"}], "returnType": {"nodeId": "139809250722560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "139809213129984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266946048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}], "returnType": {"nodeId": "139809338538848"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139809266946496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "139809266946944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139809262743296"}, {"nodeId": "139809250722560"}, {"nodeId": "139809338538848"}], "returnType": {"nodeId": "139809262743648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "139809171320704": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "139809250302560"}, "argKinds": [], "argNames": []}}}, "exprTypes": {"import_test": [{"startOffset": 105, "endOffset": 134, "line": 6, "type": {"nodeId": "139809171320704"}}]}, "definitions": {"import_test": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250722560"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139809250725024", "args": [{"nodeId": "139809250722560"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "A": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242117248"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250302208"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242109504"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242109856"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242110208"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250302560"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242110560"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242110912"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242111264"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242111616"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303264"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251075424"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251075776"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251076128"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251076480"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250917216"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262978848"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262979200"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262979552"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251076832"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251077184"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251077536"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251077888"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250917568"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251078240"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338527232"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338527936"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338528288"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338538144"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338538496"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338538848"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338539200"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338539552"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250721856"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250722208"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250722560"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250722912"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250723264"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250723616"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250723968"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250724320"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250724672"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250725024"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251072960"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251073312"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251073664"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250725376"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250725728"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250726080"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241936320"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250726432"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251074016"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250726784"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251074368"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241936672"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250727136"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250727488"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250727840"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251074720"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250728192"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250728544"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241937024"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251075072"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250728896"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250729248"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250729600"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250729952"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250730304"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250730656"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250731008"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250731360"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250731712"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250732064"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250732416"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250732768"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250733120"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250733472"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250733824"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250734176"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250734528"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250734880"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250735232"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250735584"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250735936"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250736288"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250736640"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250736992"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250737344"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250737696"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250902080"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250902432"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250902784"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250903136"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250903488"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250903840"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250904192"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250904544"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250904896"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250905248"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250905600"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250905952"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250906304"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250906656"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250907008"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250907360"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250907712"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250908064"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250908416"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250908768"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250909120"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250909472"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250909824"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250910176"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250910528"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250910880"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250911232"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250911584"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250911936"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250912288"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250912640"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250912992"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250913344"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250913696"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250914048"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250914400"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250914752"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250915104"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250915456"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250915808"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250302912"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303264"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303616"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250303968"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250304320"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250304672"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250305024"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250305376"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250305728"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250306080"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250306432"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250306784"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250298688"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250299392"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250300096"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250300448"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250300800"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242116896"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250301152"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250301504"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242108448"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242109152"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250301856"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262739424"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241938432"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241938784"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241939136"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262739776"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241939488"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242103872"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242104224"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262740128"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242104576"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251081760"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262731328"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262731680"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262732032"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262732384"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262732736"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262733088"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262733440"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262733792"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262734144"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262734496"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262734848"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262735200"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262735552"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262735904"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262736256"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262736608"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262736960"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262737312"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262737664"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262738016"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262738368"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262738720"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262739072"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262984128"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262984480"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262984832"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262985184"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262985536"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262985888"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262986240"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262986592"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262986944"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262987296"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262987648"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262988000"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262988352"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262988704"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262989056"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262989408"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262989760"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262990112"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262990464"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262990816"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262991168"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262991520"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262991872"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262992224"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262992576"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262992928"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259143232"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259143584"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259143936"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259144288"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259144640"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259144992"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259145344"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080352"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338528640"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338528992"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338529344"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338529696"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338530048"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338530400"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338530752"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250917920"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251065920"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251066272"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251066624"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251066976"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251067328"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338531104"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338531456"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251067680"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251068032"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338531808"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338532160"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338532512"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338532864"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338533216"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338533568"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251068384"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338533920"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338534272"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338534624"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338534976"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338535328"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338535680"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338536032"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338536384"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338536736"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251068736"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251069088"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251069440"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251069792"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338537088"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338537440"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251070144"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251070496"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251070848"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251071200"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251071552"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809338537792"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251071904"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251072256"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251072608"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251078592"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251078944"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251079296"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251079648"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080000"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080352"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251080704"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251081056"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809251081408"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259146048"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259146400"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259146752"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259147104"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259147456"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259147808"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259148160"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259148512"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259148864"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259149216"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259149568"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259149920"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259150272"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259150624"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259150976"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259151328"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259151680"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259152032"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259152384"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259152736"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259153088"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259153440"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259153792"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259154144"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259154496"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259154848"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259155200"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259155552"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259155904"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259156256"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259156608"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259156960"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259157312"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259157664"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259158016"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259158368"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259158720"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259159072"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241825344"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241825696"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241826048"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241826400"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241826752"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241827104"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241827456"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241827808"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241828160"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241828512"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241828864"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241829216"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241829568"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241829920"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241830272"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241830624"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241830976"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241831328"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241831680"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241832032"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241832384"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241832736"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241833088"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241833440"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241833792"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241834144"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241834496"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241834848"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241835200"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241835552"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241835904"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241836256"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241836608"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241836960"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241837312"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241837664"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241838016"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241838368"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241838720"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241839072"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241839424"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241839776"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241840128"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241840480"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241840832"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241841184"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241923648"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241924000"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241924352"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241924704"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241925056"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241925408"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241925760"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241926112"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241926464"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241926816"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241927168"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241927520"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241927872"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241928224"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241928576"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241928928"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241929280"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241929632"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241929984"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241930336"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241930688"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241931040"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241931392"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241931744"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241932096"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241932448"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241932800"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241933152"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241933504"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241933856"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241934208"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241934560"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241934912"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241935264"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262745760"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262746112"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262746464"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262746816"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262747168"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250295872"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250296224"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250296576"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250296928"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250297280"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250297632"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250297984"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250298336"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242116544"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250916160"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250916512"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250916864"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250298688"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250299040"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250310656"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250311008"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250311360"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242114432"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242114784"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242115136"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242115488"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242115840"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242116192"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262745056"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809241937376"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242105280"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262745408"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242105632"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242105984"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242106336"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242106688"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242107040"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242107392"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242107744"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242108096"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262744352"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262744704"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242104928"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254745792"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254746144"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254746496"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254746848"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254747200"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254747552"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254747904"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254748256"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254748608"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254748960"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254749312"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254749664"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254750016"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254750368"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254750720"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254751072"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254751424"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254751776"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262977088"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262977440"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262977792"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262978144"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262978496"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262979904"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262980256"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242111968"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262980608"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262980960"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262981312"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262981664"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262982016"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262982368"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242112320"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262982720"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262983072"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262983424"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242112672"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242113024"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242113376"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242113728"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809242114080"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262983776"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250310656"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309600"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254745440"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254745088"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254735936"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254736288"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254736640"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254736992"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254737344"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254737696"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254738048"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254738400"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254738752"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254739104"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254739456"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254739808"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254740160"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254740512"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254740864"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254741216"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254741568"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254741920"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254742272"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254742624"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254742976"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254743328"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254743680"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254744032"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254744384"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809254744736"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309600"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309952"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250310304"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262740480"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262740832"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262741184"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262741536"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262741888"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250307136"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250307488"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250307840"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250308192"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250308544"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250308896"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250309248"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262743648"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262744000"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809259145696"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809250311712"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262742240"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262742592"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262742944"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139809262743296"}}}}}, "names": {"import_test": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "im", "kind": "Module", "fullname": "importlib.machinery"}, {"name": "c", "kind": "Module", "fullname": "collections"}, {"name": "deque", "kind": "ImportedType", "fullname": "collections.deque"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "A", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}]}} \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/samples/subtypes.py b/utbot-python-types/src/test/resources/samples/subtypes.py index 4528ce1d79..81646d3cc3 100644 --- a/utbot-python-types/src/test/resources/samples/subtypes.py +++ b/utbot-python-types/src/test/resources/samples/subtypes.py @@ -52,4 +52,22 @@ def func_abs(x: SupportsAbs[T]): return abs(x) -b: int = 10 \ No newline at end of file +b: int = 10 + + +class SupportsCall(Protocol): + def __call__(self, *args, **kwargs): + ... + + +class HasF(Protocol): + f: SupportsCall + + +class SupportsSpecificCall(Protocol): + def __call__(self, *args, **kwargs) -> HasF: + ... + + +class HasSpecificF(Protocol): + f: SupportsSpecificCall \ No newline at end of file diff --git a/utbot-python-types/src/test/resources/subtypes.json b/utbot-python-types/src/test/resources/subtypes.json index aea0ffd3b1..bf2ddac832 100644 --- a/utbot-python-types/src/test/resources/subtypes.json +++ b/utbot-python-types/src/test/resources/subtypes.json @@ -1 +1 @@ -{"nodeStorage": {"140042307290208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281883952"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436856736"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436857184"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436857632"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436858080"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436858528"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436858976"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436859424"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436860320"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436860768"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436861216"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436861664"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436862112"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436862560"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436863008"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436863456"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436863904"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436864352"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436864800"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436865248"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436865696"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436866144"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436866592"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436867040"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436867488"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436867936"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436868384"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436868832"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436869280"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436869728"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436952352"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436952800"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436953248"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436953696"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436954144"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436954592"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436955040"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436955488"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436955936"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436956384"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436956832"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436957280"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436957728"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436958176"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436958624"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436959072"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436959520"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281884176"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436961312"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436961760"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436962208"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436962656"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436963104"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436963552"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436964000"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436964448"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436964896"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436965344"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436965792"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436966240"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436966688"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436967136"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436967584"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": false}}, "140042281883952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042436855840"}, {"nodeId": "140042436856288"}]}}, "140042436855840": {"type": "Function", "content": {"typeVars": [".0.140042436855840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": ".0.140042436855840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "140042512502976": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298632096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286578288"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236324416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483447200"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483447648"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483448096"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483448544"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483448992"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483449440"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474799392"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474799840"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474800288"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474800736"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474801184"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474801632"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474802080"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474802528"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474803872"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474804320"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042236321728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "140042298632096": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "140042307292672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282199056"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432709792"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432710240"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432710688"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432711136"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432711584"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282199504"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282200288"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282200624"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432714720"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432715168"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432715616"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432716064"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432716512"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432716960"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432717408"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432717856"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432718304"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282200960"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}], "bases": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "isAbstract": false}}, ".1.140042307292672": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307292672", "variance": "INVARIANT"}}, ".2.140042307292672": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307292672", "variance": "INVARIANT"}}, "140042282199056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432607648"}, {"nodeId": "140042432608096"}, {"nodeId": "140042432608544"}, {"nodeId": "140042432608992"}, {"nodeId": "140042432609440"}, {"nodeId": "140042432609888"}, {"nodeId": "140042432708896"}, {"nodeId": "140042432709344"}]}}, "140042432607648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432608096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".2.140042307292672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140042432608544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042298390336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474639360"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474639808"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042298390336"}, {"nodeId": ".2.140042298390336"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.140042298390336": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298390336", "variance": "INVARIANT"}}, ".2.140042298390336": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298390336", "variance": "COVARIANT"}}, "140042474639360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042298390336"}, {"nodeId": ".2.140042298390336"}]}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042298390336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512507200": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273124896"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512507200"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__iter__"]}}, ".1.140042512507200": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512507200", "variance": "COVARIANT"}}, "140042273124896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512507200"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512507200"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042512507552": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273161280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475009216"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140042512507552"}], "bases": [{"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512507552"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.140042512507552": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512507552", "variance": "COVARIANT"}}, "140042273161280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512507552"}]}], "returnType": {"nodeId": ".1.140042512507552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042475009216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512507552"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512507552"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "140042474639808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042298390336"}, {"nodeId": ".2.140042298390336"}]}, {"nodeId": ".1.140042298390336"}], "returnType": {"nodeId": ".2.140042298390336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432608992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".2.140042307292672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042432609440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042282199952"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282199952": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}}, "140042432609888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042282200176"}]}, {"nodeId": ".2.140042307292672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042282200176": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307292672"}]}}, "140042432708896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307292320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282197264"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432594208"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432594656"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432595104"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432595552"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432596000"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432596448"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432596896"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432597344"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282197376"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432598688"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432599136"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282198496"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282198608"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432601376"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282198832"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432602720"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432603168"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432603616"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432604064"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432604512"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432604960"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432605408"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432605856"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432606304"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432606752"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432607200"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042307292320"}], "bases": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042307292320"}]}], "isAbstract": false}}, ".1.140042307292320": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307292320", "variance": "INVARIANT"}}, "140042282197264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432429216"}, {"nodeId": "140042432429664"}]}}, "140042432429216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432429664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432594208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432594656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": ".1.140042307292320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432595104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432595552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".1.140042307292320"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042307614176": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042277864160"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__index__"]}}, "140042277864160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512514240": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281663872"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441496992"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236001216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236001888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236000320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042235999424"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441499232"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441499680"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441500128"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441501472"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240293376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441502816"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441503264"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441503712"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441504160"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441504608"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441505056"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441505504"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441505952"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441506400"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449240352"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449240800"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449241248"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449241696"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449242144"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281878128"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449245280"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449245728"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449246176"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449246624"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449247072"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449247520"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449247968"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449248416"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449248864"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449249312"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449249760"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449250208"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449250656"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449251104"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449251552"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449252000"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449252448"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449252896"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449253344"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449253792"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449254240"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449254688"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449255136"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449255584"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449256032"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450125088"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450125536"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450125984"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450126432"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450126880"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042281663872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441496096"}, {"nodeId": "140042441496544"}]}}, "140042441496096": {"type": "Function", "content": {"typeVars": [".0.140042441496096"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281878800"}], "returnType": {"nodeId": ".0.140042441496096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140042281878800": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307600800"}, {"nodeId": "140042307614176"}, {"nodeId": "140042298389632"}]}}, "140042307616288": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440752512"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__buffer__"]}}, "140042440752512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307291264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231705472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231706144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231706368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231706592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231706816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231707040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231707264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231707488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231707712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231707936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231708160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231708384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437578528"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437578976"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437579424"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437579872"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282192672"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437581216"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437581664"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437582112"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282193680"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437583456"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437584800"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437585248"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437585696"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437586144"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437587040"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437587488"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042231705472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231706144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231706368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042282193344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282193344": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "N"}]}}, "140042307291968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432419808"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432420256"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432420704"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195696"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432422048"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432422496"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432422944"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432423392"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432423840"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282197152"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432425184"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432425632"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432426080"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432426528"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432426976"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042307291968"}], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042307291968"}]}], "isAbstract": false}}, ".1.140042307291968": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307291968", "variance": "COVARIANT"}}, "140042432419808": {"type": "Function", "content": {"typeVars": [".0.140042432419808"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": ".0.140042432419808"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.140042432419808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, "def": "140042432419808", "variance": "INVARIANT"}}, "140042432420256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432420704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512503328": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437587936"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282194240"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195024"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195136"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195248"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195360"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195472"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432416672"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "140042512514240"}], "isAbstract": false}}, "140042437587936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140042282194240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437588384"}, {"nodeId": "140042437588832"}]}}, "140042437588384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437588832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282195024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437589280"}, {"nodeId": "140042437589728"}]}}, "140042437589280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437589728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282195136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437590176"}, {"nodeId": "140042437590624"}]}}, "140042437590176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437590624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282195248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432413984"}, {"nodeId": "140042432414432"}]}}, "140042432413984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432414432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282195360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432414880"}, {"nodeId": "140042432415328"}]}}, "140042432414880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432415328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282195472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432415776"}, {"nodeId": "140042432416224"}]}}, "140042432415776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432416224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432416672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042282195920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282195920": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}]}}, "140042282195696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432421152"}, {"nodeId": "140042432421600"}]}}, "140042432421152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".1.140042307291968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432421600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307291616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231804000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231804448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231805568"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282195584"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432419360"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042231804000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231804448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231805568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282195584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432418464"}, {"nodeId": "140042432418912"}]}}, "140042432418464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291616"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432418912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291616"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042432419360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291616"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042282197040"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282197040": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042432422048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307291968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432422496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432422944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432423392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432423840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282197152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432424288"}, {"nodeId": "140042432424736"}]}}, "140042432424288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432424736": {"type": "Function", "content": {"typeVars": [".-1.140042432424736"], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": ".-1.140042432424736"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042282197488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432424736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432424736", "variance": "INVARIANT"}}, "140042282197488": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307291968"}, {"nodeId": ".-1.140042432424736"}]}}, "140042432425184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432425632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432426080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432426528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291968", "args": [{"nodeId": ".1.140042307291968"}]}, {"nodeId": "A"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042432426976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042302643488": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269316192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269316640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269316864"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449718848"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449719296"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449720640"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269316192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643488"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512513536": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236318592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236318144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236317920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236317024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236317248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236317472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236316576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236316352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042236316128"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286578624"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281660288"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441491168"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441491616"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441492064"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441492512"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441492960"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042236315904"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441493856"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441494304"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042236318592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236318144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236317920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042302637152", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302637152": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441328448"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441328896"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441329344"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441329792"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441330240"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441330688"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441331136"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441331584"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441332032"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441332480"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441332928"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441333376"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441333824"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}], "bases": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "isAbstract": false}}, ".1.140042302637152": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302637152", "variance": "INVARIANT"}}, ".2.140042302637152": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302637152", "variance": "COVARIANT"}}, "140042441328448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140042441328896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, {"nodeId": ".1.140042302637152"}], "returnType": {"nodeId": ".2.140042302637152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441329344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042302637152"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042441329792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042441330240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441330688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441331136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042302637152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307604320": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482898240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482898688"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482899136"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482899584"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482900032"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482900480"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482900928"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482901376"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482901824"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482902272"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482902720"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482903168"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140042307604320"}], "bases": [{"nodeId": "140042307603616"}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042307604320"}]}], "isAbstract": false}}, ".1.140042307604320": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307604320", "variance": "COVARIANT"}}, "140042482898240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042307604320"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140042512512480": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273511168"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294263168"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482906752"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482907200"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482907648"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482908096"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482908544"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}], "bases": [{"nodeId": "140042512510720", "args": [{"nodeId": ".1.140042512512480"}]}], "isAbstract": true}}, ".1.140042512512480": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512512480", "variance": "INVARIANT"}}, ".2.140042512512480": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512512480", "variance": "COVARIANT"}}, "140042273511168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}, {"nodeId": ".1.140042512512480"}], "returnType": {"nodeId": ".2.140042512512480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042294263168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042482905856"}, {"nodeId": "140042482906304"}]}}, "140042482905856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}, {"nodeId": ".1.140042512512480"}], "returnType": {"nodeId": "140042294481680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294481680": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042512512480"}, {"nodeId": "N"}]}}, "140042482906304": {"type": "Function", "content": {"typeVars": [".-1.140042482906304"], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}, {"nodeId": ".1.140042512512480"}, {"nodeId": "140042294481792"}], "returnType": {"nodeId": "140042294481904"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140042294481792": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042512512480"}, {"nodeId": ".-1.140042482906304"}]}}, ".-1.140042482906304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482906304", "variance": "INVARIANT"}}, "140042294481904": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042512512480"}, {"nodeId": ".-1.140042482906304"}]}}, "140042482906752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}], "returnType": {"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307603968": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482892864"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482893312"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482893760"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482894208"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482894656"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482895104"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482895552"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482896000"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482896448"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482896896"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482897344"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482897792"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}], "bases": [{"nodeId": "140042307603616"}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042302492784"}]}], "isAbstract": false}}, ".1.140042307603968": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307603968", "variance": "COVARIANT"}}, ".2.140042307603968": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307603968", "variance": "COVARIANT"}}, "140042482892864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140042482893312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294478432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307607840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282201408"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432720544"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432720992"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432721440"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432721888"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432722336"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432722784"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432723232"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432723680"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432724128"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432724576"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432856352"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432856800"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432857248"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432857696"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432858144"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432858592"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432859040"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432859488"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432859936"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432860384"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432860832"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432861280"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432861728"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432862176"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432862624"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432863072"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432863520"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432863968"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432864416"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432864864"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432865312"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042307607840"}], "bases": [{"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042307607840"}]}], "isAbstract": false}}, ".1.140042307607840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307607840", "variance": "INVARIANT"}}, "140042282201408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432719648"}, {"nodeId": "140042432720096"}]}}, "140042432719648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432720096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432720544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": ".1.140042307607840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432720992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432721440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432721888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432722336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": ".1.140042307607840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432722784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432723232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432723680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432724128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432724576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432856352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": ".1.140042307607840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432856800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432857248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432857696": {"type": "Function", "content": {"typeVars": [".-1.140042432857696"], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042432857696"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042282203536"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140042432857696": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432857696", "variance": "INVARIANT"}}, "140042282203536": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307607840"}, {"nodeId": ".-1.140042432857696"}]}}, "140042432858144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432858592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432859040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432859488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432859936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512511776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273343744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482768512"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482768960"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482769408"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482769856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482770304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482770752"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482771200"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482771648"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482772096"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482772544"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.140042512511776"}], "bases": [{"nodeId": "140042512510720", "args": [{"nodeId": ".1.140042512511776"}]}], "isAbstract": true}}, ".1.140042512511776": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512511776", "variance": "COVARIANT"}}, "140042273343744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482768512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042482768960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482769408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482769856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482770304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482770752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482771200": {"type": "Function", "content": {"typeVars": [".-1.140042482771200"], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".-1.140042482771200"}]}], "returnType": {"nodeId": "140042512511776", "args": [{"nodeId": "140042294477200"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482771200": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482771200", "variance": "INVARIANT"}}, "140042294477200": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042512511776"}, {"nodeId": ".-1.140042482771200"}]}}, "140042482771648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482772096": {"type": "Function", "content": {"typeVars": [".-1.140042482772096"], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".-1.140042482772096"}]}], "returnType": {"nodeId": "140042512511776", "args": [{"nodeId": "140042294477424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482772096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482772096", "variance": "INVARIANT"}}, "140042294477424": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042512511776"}, {"nodeId": ".-1.140042482772096"}]}}, "140042482772544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512511776"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042512510720": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273238240"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512510720"}], "bases": [{"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512510720"}]}, {"nodeId": "140042512510368", "args": [{"nodeId": ".1.140042512510720"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.140042512510720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512510720", "variance": "COVARIANT"}}, "140042273238240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510720", "args": [{"nodeId": ".1.140042512510720"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042512510368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273234880"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512510368"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__contains__"]}}, ".1.140042512510368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512510368", "variance": "COVARIANT"}}, "140042273234880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510368", "args": [{"nodeId": ".1.140042512510368"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432860384": {"type": "Function", "content": {"typeVars": [".0.140042432860384"], "argTypes": [{"nodeId": ".0.140042432860384"}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": ".0.140042432860384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432860384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "def": "140042432860384", "variance": "INVARIANT"}}, "140042432860832": {"type": "Function", "content": {"typeVars": [".-1.140042432860832"], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".-1.140042432860832"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042282203760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432860832": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432860832", "variance": "INVARIANT"}}, "140042282203760": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307607840"}, {"nodeId": ".-1.140042432860832"}]}}, "140042432861280": {"type": "Function", "content": {"typeVars": [".0.140042432861280"], "argTypes": [{"nodeId": ".0.140042432861280"}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": ".0.140042432861280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432861280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "def": "140042432861280", "variance": "INVARIANT"}}, "140042432861728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042282203872"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282203872": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307607840"}, {"nodeId": "N"}]}}, "140042432862176": {"type": "Function", "content": {"typeVars": [".0.140042432862176"], "argTypes": [{"nodeId": ".0.140042432862176"}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": ".0.140042432862176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432862176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "def": "140042432862176", "variance": "INVARIANT"}}, "140042432862624": {"type": "Function", "content": {"typeVars": [".-1.140042432862624"], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".-1.140042432862624"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042282203984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432862624": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432862624", "variance": "INVARIANT"}}, "140042282203984": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307607840"}, {"nodeId": ".-1.140042432862624"}]}}, "140042432863072": {"type": "Function", "content": {"typeVars": [".0.140042432863072"], "argTypes": [{"nodeId": ".0.140042432863072"}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042307607840"}]}], "returnType": {"nodeId": ".0.140042432863072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432863072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, "def": "140042432863072", "variance": "INVARIANT"}}, "140042432863520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432863968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432864416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432864864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307607840"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432865312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042512512128": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273345312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273354048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482773888"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482774336"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482774784"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482775232"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482775680"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482776128"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482776576"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.140042512512128"}], "bases": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512512128"}]}], "isAbstract": true}}, ".1.140042512512128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512512128", "variance": "INVARIANT"}}, "140042273345312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, {"nodeId": ".1.140042512512128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042273354048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, {"nodeId": ".1.140042512512128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042482773888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042482774336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}], "returnType": {"nodeId": ".1.140042512512128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042482774784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, {"nodeId": ".1.140042512512128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042482775232": {"type": "Function", "content": {"typeVars": [".0.140042482775232"], "argTypes": [{"nodeId": ".0.140042482775232"}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512512128"}]}], "returnType": {"nodeId": ".0.140042482775232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042482775232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, "def": "140042482775232", "variance": "INVARIANT"}}, "140042482775680": {"type": "Function", "content": {"typeVars": [".0.140042482775680"], "argTypes": [{"nodeId": ".0.140042482775680"}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140042482775680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042482775680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, "def": "140042482775680", "variance": "INVARIANT"}}, "140042482776128": {"type": "Function", "content": {"typeVars": [".0.140042482776128"], "argTypes": [{"nodeId": ".0.140042482776128"}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042512512128"}]}], "returnType": {"nodeId": ".0.140042482776128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042482776128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, "def": "140042482776128", "variance": "INVARIANT"}}, "140042482776576": {"type": "Function", "content": {"typeVars": [".0.140042482776576"], "argTypes": [{"nodeId": ".0.140042482776576"}, {"nodeId": "140042512511776", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140042482776576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042482776576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512512128", "args": [{"nodeId": ".1.140042512512128"}]}, "def": "140042482776576", "variance": "INVARIANT"}}, "140042294478432": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482893760": {"type": "Function", "content": {"typeVars": [".-1.140042482893760"], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482893760"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".-1.140042482893760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482893760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482893760", "variance": "INVARIANT"}}, "140042482894208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482894656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042294478656"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042294478656": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482895104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042294478880"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042294478880": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482895552": {"type": "Function", "content": {"typeVars": [".-1.140042482895552"], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482895552"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294479216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482895552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482895552", "variance": "INVARIANT"}}, "140042294479216": {"type": "Union", "content": {"items": [{"nodeId": "140042294479104"}, {"nodeId": ".-1.140042482895552"}]}}, "140042294479104": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482896000": {"type": "Function", "content": {"typeVars": [".-1.140042482896000"], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482896000"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294479552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482896000": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482896000", "variance": "INVARIANT"}}, "140042294479552": {"type": "Union", "content": {"items": [{"nodeId": "140042294479440"}, {"nodeId": ".-1.140042482896000"}]}}, "140042294479440": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482896448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294479888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042294479888": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482896896": {"type": "Function", "content": {"typeVars": [".-1.140042482896896"], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482896896"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".-1.140042482896896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482896896": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482896896", "variance": "INVARIANT"}}, "140042482897344": {"type": "Function", "content": {"typeVars": [".-1.140042482897344"], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482897344"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294480224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482897344": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482897344", "variance": "INVARIANT"}}, "140042294480224": {"type": "Union", "content": {"items": [{"nodeId": "140042294480112"}, {"nodeId": ".-1.140042482897344"}]}}, "140042294480112": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482897792": {"type": "Function", "content": {"typeVars": [".-1.140042482897792"], "argTypes": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482897792"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294480560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482897792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482897792", "variance": "INVARIANT"}}, "140042294480560": {"type": "Union", "content": {"items": [{"nodeId": "140042294480448"}, {"nodeId": ".-1.140042482897792"}]}}, "140042294480448": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042307603616": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482777024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482777472"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "140042307602560"}], "isAbstract": false}}, "140042482777024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603616"}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140042482777472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307603616"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307602560": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273122656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__len__"]}}, "140042273122656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307602560"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042302492784": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307603968"}, {"nodeId": ".2.140042307603968"}]}}, "140042482907200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}], "returnType": {"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042512512480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042482907648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}], "returnType": {"nodeId": "140042307604672", "args": [{"nodeId": ".2.140042512512480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307604672": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482903616"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482904064"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482904512"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482904960"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042307604672"}], "bases": [{"nodeId": "140042307603616"}, {"nodeId": "140042512510720", "args": [{"nodeId": ".1.140042307604672"}]}], "isAbstract": false}}, ".1.140042307604672": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307604672", "variance": "COVARIANT"}}, "140042482903616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604672", "args": [{"nodeId": ".1.140042307604672"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": ".1.140042307604672"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140042482904064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604672", "args": [{"nodeId": ".1.140042307604672"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482904512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604672", "args": [{"nodeId": ".1.140042307604672"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307604672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042482904960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604672", "args": [{"nodeId": ".1.140042307604672"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307604672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042482908096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482908544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512480"}, {"nodeId": ".2.140042512512480"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482898688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307604320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482899136": {"type": "Function", "content": {"typeVars": [".-1.140042482899136"], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482899136"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".-1.140042482899136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482899136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482899136", "variance": "INVARIANT"}}, "140042482899584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482900032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307604320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042482900480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307604320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042482900928": {"type": "Function", "content": {"typeVars": [".-1.140042482900928"], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482900928"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294480896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482900928": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482900928", "variance": "INVARIANT"}}, "140042294480896": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307604320"}, {"nodeId": ".-1.140042482900928"}]}}, "140042482901376": {"type": "Function", "content": {"typeVars": [".-1.140042482901376"], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482901376"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294481008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482901376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482901376", "variance": "INVARIANT"}}, "140042294481008": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307604320"}, {"nodeId": ".-1.140042482901376"}]}}, "140042482901824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".1.140042307604320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482902272": {"type": "Function", "content": {"typeVars": [".-1.140042482902272"], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482902272"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": ".-1.140042482902272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482902272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482902272", "variance": "INVARIANT"}}, "140042482902720": {"type": "Function", "content": {"typeVars": [".-1.140042482902720"], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482902720"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294481232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482902720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482902720", "variance": "INVARIANT"}}, "140042294481232": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307604320"}, {"nodeId": ".-1.140042482902720"}]}}, "140042482903168": {"type": "Function", "content": {"typeVars": [".-1.140042482903168"], "argTypes": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307604320"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042482903168"}]}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042294481344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042482903168": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042482903168", "variance": "INVARIANT"}}, "140042294481344": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307604320"}, {"nodeId": ".-1.140042482903168"}]}}, "140042441331584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042307604672", "args": [{"nodeId": ".2.140042302637152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441332032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042441332928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042302637152"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042441333376": {"type": "Function", "content": {"typeVars": [".-1.140042441333376", ".-2.140042441333376"], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042441333376"}, {"nodeId": ".-2.140042441333376"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042294490192"}, {"nodeId": "140042294490304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441333376": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042441333376", "variance": "INVARIANT"}}, ".-2.140042441333376": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042441333376", "variance": "INVARIANT"}}, "140042294490192": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".-1.140042441333376"}]}}, "140042294490304": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042302637152"}, {"nodeId": ".-2.140042441333376"}]}}, "140042441333824": {"type": "Function", "content": {"typeVars": [".-1.140042441333824", ".-2.140042441333824"], "argTypes": [{"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".2.140042302637152"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042441333824"}, {"nodeId": ".-2.140042441333824"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042294490416"}, {"nodeId": "140042294490528"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441333824": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042441333824", "variance": "INVARIANT"}}, ".-2.140042441333824": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042441333824", "variance": "INVARIANT"}}, "140042294490416": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302637152"}, {"nodeId": ".-1.140042441333824"}]}}, "140042294490528": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042302637152"}, {"nodeId": ".-2.140042441333824"}]}}, "140042236317024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236317248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236317472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236316576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236316352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042281663424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281663424": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042236316128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286578624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042474814176"}, {"nodeId": "140042474814624"}]}}, "140042474814176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042474814624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "140042281660288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042474815072"}, {"nodeId": "140042441490720"}]}}, "140042474815072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042441490720": {"type": "Function", "content": {"typeVars": [".-1.140042441490720"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140042441490720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.140042441490720": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042441490720", "variance": "INVARIANT"}}, "140042441491168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140042441491616": {"type": "Function", "content": {"typeVars": [".-1.140042441491616"], "argTypes": [{"nodeId": ".-1.140042441491616"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".-1.140042441491616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042441491616": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042441491616", "variance": "INVARIANT"}}, "140042441492064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512513536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441492512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042441492960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042236315904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "140042441493856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302644192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042302644192": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269319776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449721984"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449722432"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269319776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302644192"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449721984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302644192"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302644192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449722432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302644192"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302644192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441494304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513536"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302644192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042269316640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643488"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269316864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643488"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449718848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643488"}, {"nodeId": "140042512513536"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "140042449719296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643488"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449720640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643488"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512511072": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294261712"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475288192"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475288640"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475289088"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475289536"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475289984"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042512511072"}], "bases": [{"nodeId": "140042512510720", "args": [{"nodeId": ".1.140042512511072"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042512511072"}]}], "isAbstract": true}}, ".1.140042512511072": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512511072", "variance": "COVARIANT"}}, "140042294261712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042475287296"}, {"nodeId": "140042475287744"}]}}, "140042475287296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042512511072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042475287744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042475288192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}, {"nodeId": "A"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "140042475288640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042475289088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042475289536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512511072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042475289984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511072"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512511072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042512507904": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273164192"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512507904"}], "bases": [{"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512507904"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.140042512507904": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512507904", "variance": "COVARIANT"}}, "140042273164192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042512507904"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512507904"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042231706592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042282193456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282193456": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "N"}]}}, "140042231706816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042282193568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282193568": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "N"}]}}, "140042231707040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231707264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231707488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042307616288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231707712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231707936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231708160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231708384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437578528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042437578976": {"type": "Function", "content": {"typeVars": [".0.140042437578976"], "argTypes": [{"nodeId": ".0.140042437578976"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042437578976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307291264"}, "def": "140042437578976", "variance": "INVARIANT"}}, "140042437579424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042282193792"}, {"nodeId": "140042282193904"}, {"nodeId": "140042282194016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042282193792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042282193904": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042307296896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302488752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302489088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307235152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428570464"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428570912"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428571360"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042302488752": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042302489088": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042307235152": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042302642080": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449802112"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302495920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269239872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269240096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269240320"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042449802112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642080"}, {"nodeId": "140042294760880"}, {"nodeId": "140042302642432"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "140042294760880": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042302642432": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269241888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269242336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269242560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269242784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269243008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269243232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269243456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302496144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449807040"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269241888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042294760992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294760992": {"type": "Union", "content": {"items": [{"nodeId": "140042302642432"}, {"nodeId": "N"}]}}, "140042269242336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269242560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042302636800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302636800": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268873824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268874944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268874496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268875168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268875392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268875616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268875840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268876064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268876288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268876512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268876736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268876960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268877184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268877408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268877632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268877856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268878528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440864512"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440866752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441327552"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042268873824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268874944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268874496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268875168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268875392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268875616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268875840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307290560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281884960"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437067936"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437068384"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437068832"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437069280"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437069728"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437070176"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437071072"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437071520"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437072416"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437072864"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437073312"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437073760"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437074208"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437074656"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437075104"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437075552"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437076000"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437076448"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437076896"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437077344"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437077792"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437078240"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437078688"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437079136"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437079584"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437080032"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437080480"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437080928"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437081376"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437081824"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437082272"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437082720"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437165344"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437165792"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437166240"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437166688"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437167136"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437167584"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437168032"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437168480"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231503488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231502592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437169824"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437170272"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281887872"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437171616"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437172064"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437172512"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437172960"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437173408"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437173856"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437174304"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437174752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437175200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437175648"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437176096"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437176544"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437177440"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042281884960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042436968032"}, {"nodeId": "140042437067040"}, {"nodeId": "140042437067488"}]}}, "140042436968032": {"type": "Function", "content": {"typeVars": [".0.140042436968032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281888992"}], "returnType": {"nodeId": ".0.140042436968032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042281888992": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042307614176"}]}, {"nodeId": "140042307614176"}, {"nodeId": "140042307601856"}, {"nodeId": "140042307616288"}]}}, "140042307601856": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273113248"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__bytes__"]}}, "140042273113248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307601856"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042436968032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290560"}, "def": "140042436968032", "variance": "INVARIANT"}}, "140042437067040": {"type": "Function", "content": {"typeVars": [".0.140042437067040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042437067040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.140042437067040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290560"}, "def": "140042437067040", "variance": "INVARIANT"}}, "140042437067488": {"type": "Function", "content": {"typeVars": [".0.140042437067488"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042437067488"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042437067488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290560"}, "def": "140042437067488", "variance": "INVARIANT"}}, "140042437067936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437068384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042437068832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281889104"}, {"nodeId": "140042281889216"}, {"nodeId": "140042281889328"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281889104": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042281889216": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281889328": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437069280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042437069728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281889440"}, {"nodeId": "140042281889552"}, {"nodeId": "140042281889664"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281889440": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307616288"}]}]}}, "140042281889552": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281889664": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437070176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140042437071072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281889776"}, {"nodeId": "140042281889888"}, {"nodeId": "140042281890000"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281889776": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042281889888": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281890000": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437071520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281890112"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140042281890112": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}]}}, "140042437072416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281890224"}, {"nodeId": "140042281890336"}, {"nodeId": "140042281890448"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281890224": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042281890336": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281890448": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437072864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437073312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437073760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437074208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437074656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437075104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437075552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437076000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437076448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307616288"}]}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437076896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}, {"nodeId": "140042281890560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042281890560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042307290912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281888880"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437179232"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437179680"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437180128"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437180576"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437181024"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437329184"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437329632"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437330080"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437330976"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437331424"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437331872"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437332768"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437333216"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437333664"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437334112"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437334560"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437335008"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437335456"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437335904"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437336352"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437336800"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437337248"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437337696"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437338144"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437338592"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437339040"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437339488"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437339936"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437340384"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437340832"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437341280"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437341728"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437342176"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437342624"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437343072"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437343520"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437343968"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437344416"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437344864"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437460256"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437460704"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437461152"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437461600"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437462048"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437462496"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437462944"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231512000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231693600"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437464288"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437464736"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281892912"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282192560"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437466976"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437467424"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437467872"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437468320"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437468768"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437469216"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437469664"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437470112"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437470560"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437471008"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437471456"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437471904"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437472352"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437472800"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437473248"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437473696"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042437474144"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512511424", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042281888880": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437177888"}, {"nodeId": "140042437178336"}, {"nodeId": "140042437178784"}]}}, "140042437177888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437178336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042281893584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281893584": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042307614176"}]}, {"nodeId": "140042307614176"}, {"nodeId": "140042307616288"}]}}, "140042437178784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "140042437179232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437179680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437180128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042437180576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042281893696"}, {"nodeId": "140042282188864"}, {"nodeId": "140042282188976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281893696": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042282188864": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282188976": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437181024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437329184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042437329632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282189088"}, {"nodeId": "140042282189200"}, {"nodeId": "140042282189312"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042282189088": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307616288"}]}]}}, "140042282189200": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282189312": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437330080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140042437330976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307614176"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437331424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282189424"}, {"nodeId": "140042282189536"}, {"nodeId": "140042282189648"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042282189424": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042282189536": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282189648": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437331872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282189760"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140042282189760": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}]}}, "140042437332768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282189872"}, {"nodeId": "140042282189984"}, {"nodeId": "140042282190096"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042282189872": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042282189984": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282190096": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437333216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042437333664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437334112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437334560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437335008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437335456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437335904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437336352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437336800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437337248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307616288"}]}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437337696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}, {"nodeId": "140042282190208"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042282190208": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042437338144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437338592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282190320"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042282190320": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437339040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042282190544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282190544": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290912"}, {"nodeId": "140042307290912"}, {"nodeId": "140042307290912"}]}}, "140042437339488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042437339936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437340384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437340832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437341280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042437341728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282190656"}, {"nodeId": "140042282190768"}, {"nodeId": "140042282190880"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042282190656": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042282190768": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282190880": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437342176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282190992"}, {"nodeId": "140042282191104"}, {"nodeId": "140042282191216"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042282190992": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042282191104": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282191216": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437342624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}, {"nodeId": "140042282191328"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042282191328": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042437343072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042282191552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282191552": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290912"}, {"nodeId": "140042307290912"}, {"nodeId": "140042307290912"}]}}, "140042437343520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282191664"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290912"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042282191664": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437343968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282191776"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042282191776": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437344416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282191888"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290912"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042282191888": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437344864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140042437460256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282192000"}, {"nodeId": "140042282192112"}, {"nodeId": "140042282192224"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042282192000": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307616288"}]}]}}, "140042282192112": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042282192224": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437460704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282192336"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042282192336": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437461152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437461600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437462048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282192448"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140042282192448": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437462496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437462944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042231512000": {"type": "Function", "content": {"typeVars": [".0.140042231512000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042231512000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042231512000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290912"}, "def": "140042231512000", "variance": "INVARIANT"}}, "140042231693600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307616288"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437464288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042437464736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042281892912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437465184"}, {"nodeId": "140042437465632"}]}}, "140042437465184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437465632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282192560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437466080"}, {"nodeId": "140042437466528"}]}}, "140042437466080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042437466528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307291616"}, {"nodeId": "140042282192896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042282192896": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042307614176"}]}, {"nodeId": "140042307290560"}]}}, "140042437466976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282193008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282193008": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307291616"}]}}, "140042437467424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437467872": {"type": "Function", "content": {"typeVars": [".0.140042437467872"], "argTypes": [{"nodeId": ".0.140042437467872"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": ".0.140042437467872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042437467872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290912"}, "def": "140042437467872", "variance": "INVARIANT"}}, "140042437468320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437468768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437469216": {"type": "Function", "content": {"typeVars": [".0.140042437469216"], "argTypes": [{"nodeId": ".0.140042437469216"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".0.140042437469216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042437469216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290912"}, "def": "140042437469216", "variance": "INVARIANT"}}, "140042437469664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437470112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042282193232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282193232": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307616288"}]}}, "140042437470560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437471008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437471456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437471904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437472352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437472800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437473248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437473696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437474144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290912"}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042512511424": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273242496"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294262160"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294262720"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294263056"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482764928"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482765376"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482765824"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482766272"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482766720"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482767168"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042482767616"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.140042512511424"}], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": ".1.140042512511424"}]}], "isAbstract": true}}, ".1.140042512511424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512511424", "variance": "INVARIANT"}}, "140042273242496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042512514240"}, {"nodeId": ".1.140042512511424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "140042294262160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042482762240"}, {"nodeId": "140042482762688"}]}}, "140042482762240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042512511424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482762688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042294262720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042482763136"}, {"nodeId": "140042482763584"}]}}, "140042482763136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042512514240"}, {"nodeId": ".1.140042512511424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042482763584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042307291616"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512511424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042294263056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042482764032"}, {"nodeId": "140042482764480"}]}}, "140042482764032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482764480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042482764928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": ".1.140042512511424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042482765376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042482765824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512511424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "140042482766272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042482766720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042512511424"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "140042482767168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, {"nodeId": ".1.140042512511424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042482767616": {"type": "Function", "content": {"typeVars": [".0.140042482767616"], "argTypes": [{"nodeId": ".0.140042482767616"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042512511424"}]}], "returnType": {"nodeId": ".0.140042482767616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042482767616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042512511424"}]}, "def": "140042482767616", "variance": "INVARIANT"}}, "140042437077344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437077792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281890672"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042281890672": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437078240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042281890896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281890896": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}]}}, "140042437078688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042437079136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437079584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437080032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281891008"}, {"nodeId": "140042281891120"}, {"nodeId": "140042281891232"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281891008": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042281891120": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281891232": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437080480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281891344"}, {"nodeId": "140042281891456"}, {"nodeId": "140042281891568"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281891344": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307614176"}]}}, "140042281891456": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281891568": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437080928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}, {"nodeId": "140042281891680"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042281891680": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042437081376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042281891904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281891904": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}]}}, "140042437081824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281892016"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042281892016": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437082272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281892128"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042281892128": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437082720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281892240"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042281892240": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437165344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140042437165792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281892352"}, {"nodeId": "140042281892464"}, {"nodeId": "140042281892576"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281892352": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307616288"}]}]}}, "140042281892464": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281892576": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042437166240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281892688"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042281892688": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437166688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437167136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437167584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281892800"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "140042281892800": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "N"}]}}, "140042437168032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437168480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042231503488": {"type": "Function", "content": {"typeVars": [".0.140042231503488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042231503488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042231503488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290560"}, "def": "140042231503488", "variance": "INVARIANT"}}, "140042231502592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307616288"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437169824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042437170272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042281887872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437170720"}, {"nodeId": "140042437171168"}]}}, "140042437170720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437171168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437171616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437172064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437172512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437172960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437173408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042281893136"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042281893136": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307616288"}]}}, "140042437173856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437174304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437174752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437175200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437175648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437176096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437176544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042281893360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281893360": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}]}}, "140042437177440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042268876064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268876288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268876512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268876736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268876960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268877184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268877408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268877632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268877856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268878528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042440864512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042294489968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294489968": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042294489744"}]}}, "140042294489744": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042440866752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "140042441327552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636800"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042302636800"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "140042269242784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269243008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269243232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042294761440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294761440": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "A"}]}}, "140042269243456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302496144": {"type": "Union", "content": {"items": [{"nodeId": "140042307073216"}, {"nodeId": "N"}]}}, "140042307073216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042449807040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302495920": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042269239872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642080"}], "returnType": {"nodeId": "140042302642432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269240096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642080"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269240320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642080"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042428570464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140042428570912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307296896"}, {"nodeId": "140042277545664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042277545664": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042428571360": {"type": "Function", "content": {"typeVars": [".0.140042428571360"], "argTypes": [{"nodeId": ".0.140042428571360"}, {"nodeId": "140042277545888"}], "returnType": {"nodeId": ".0.140042428571360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140042428571360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307296896"}, "def": "140042428571360", "variance": "INVARIANT"}}, "140042277545888": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042282194016": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042437579872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307290208"}, {"nodeId": "140042282194128"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "140042282194128": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}]}}, "140042282192672": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437580320"}, {"nodeId": "140042437580768"}]}}, "140042437580320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437580768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437581216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042437581664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042437582112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042282193680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042437582560"}, {"nodeId": "140042437583008"}]}}, "140042437582560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042437583008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042437583456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042282194912"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042282194912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140042437584800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437585248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437585696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042437586144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042282194800"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "140042282194800": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}]}}, "140042437587040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042437587488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307291264"}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307600800": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042278252640"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__int__"]}}, "140042278252640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307600800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042298389632": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474638464"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__trunc__"]}}, "140042474638464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298389632"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042441496096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042441496096", "variance": "INVARIANT"}}, "140042441496544": {"type": "Function", "content": {"typeVars": [".0.140042441496544"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281878912"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".0.140042441496544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "140042281878912": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, ".0.140042441496544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042441496544", "variance": "INVARIANT"}}, "140042441496992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042281879248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281879248": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "0"}]}}, "140042236001216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236001888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042236000320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042235999424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441499232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441499680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441500128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441501472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042307614176"}, {"nodeId": "140042281879808"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "140042281879808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042240293376": {"type": "Function", "content": {"typeVars": [".0.140042240293376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281879920"}, {"nodeId": "140042281880256"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".0.140042240293376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "140042281879920": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042307614176"}]}, {"nodeId": "140042307601856"}, {"nodeId": "140042307616288"}]}}, "140042281880256": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.140042240293376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042240293376", "variance": "INVARIANT"}}, "140042441502816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441503264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441503712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441504160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441504608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512514592": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450127328"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450127776"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450128224"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450128672"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231249408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231249856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231248512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450130464"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450130912"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450131360"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450131808"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450132256"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450132704"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450133152"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450133600"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281878688"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450134944"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450135392"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450135840"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450136288"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450136736"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450137184"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450137632"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281882160"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450139424"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450139872"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450140320"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042450140768"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281882832"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436707488"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436707936"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436708384"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436708832"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436709280"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436709728"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436710176"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436710624"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436711072"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436711520"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436711968"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436712416"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042450127328": {"type": "Function", "content": {"typeVars": [".0.140042450127328"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281882272"}], "returnType": {"nodeId": ".0.140042450127328"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "140042281882272": {"type": "Union", "content": {"items": [{"nodeId": "140042307601152"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307616288"}]}}, "140042307601152": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042278253536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__float__"]}}, "140042278253536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307601152"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042450127328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512514592"}, "def": "140042450127328", "variance": "INVARIANT"}}, "140042450127776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042281882496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281882496": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042450128224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450128672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231249408": {"type": "Function", "content": {"typeVars": [".0.140042231249408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042231249408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042231249408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512514592"}, "def": "140042231249408", "variance": "INVARIANT"}}, "140042231249856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231248512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450130464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450130912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450131360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450131808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450132256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450132704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450133152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450133600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042281882720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042281882720": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042281878688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042450134048"}, {"nodeId": "140042450134496"}]}}, "140042450134048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042450134496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042450134944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450135392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450135840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450136288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450136736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450137184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450137632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042281883168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281883168": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042281882160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042450138080"}, {"nodeId": "140042450138528"}, {"nodeId": "140042450138976"}]}}, "140042450138080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042281883392"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042281883392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298635344"}}}, "140042298635344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042450138528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042281883504"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042281883504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298637696"}}}, "140042298637696": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042307289152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281883280"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231321472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231322816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436715552"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436716000"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436716448"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436716896"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436717344"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436717792"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436718240"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436718688"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436719136"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436719584"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436720032"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436720480"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436720928"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436721376"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436721824"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436722272"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436854048"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042281883280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042436712864"}, {"nodeId": "140042436713312"}]}}, "140042436712864": {"type": "Function", "content": {"typeVars": [".0.140042436712864"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281884288"}, {"nodeId": "140042281884400"}], "returnType": {"nodeId": ".0.140042436712864"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "140042281884288": {"type": "Union", "content": {"items": [{"nodeId": "140042307289152"}, {"nodeId": "140042307601504"}, {"nodeId": "140042307601152"}, {"nodeId": "140042307614176"}]}}, "140042307601504": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042278255104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__complex__"]}}, "140042278255104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307601504"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042281884400": {"type": "Union", "content": {"items": [{"nodeId": "140042307289152"}, {"nodeId": "140042307601152"}, {"nodeId": "140042307614176"}]}}, ".0.140042436712864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307289152"}, "def": "140042436712864", "variance": "INVARIANT"}}, "140042436713312": {"type": "Function", "content": {"typeVars": [".0.140042436713312"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042281884512"}], "returnType": {"nodeId": ".0.140042436713312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "140042281884512": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307601504"}, {"nodeId": "140042307601152"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307289152"}]}}, ".0.140042436713312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307289152"}, "def": "140042436713312", "variance": "INVARIANT"}}, "140042231321472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231322816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436715552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436716000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436716448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436716896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436717344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042436717792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436718240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436718688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436719136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436719584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042436720032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436720480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436720928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436721376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436721824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436722272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436854048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450138976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042450139424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042281883840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281883840": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}]}}, "140042450139872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450140320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450140768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281882832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042436706592"}, {"nodeId": "140042436707040"}]}}, "140042436706592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042436707040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042436707488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436707936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436708384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436708832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436709280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436709728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436710176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436710624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436711072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436711520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436711968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436712416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441505056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441505504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042281880480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042281880480": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042441505952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441506400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449240352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449240800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449241248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449241696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449242144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042281880704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281880704": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042281878128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449242592"}, {"nodeId": "140042449243040"}, {"nodeId": "140042449243488"}, {"nodeId": "140042449243936"}, {"nodeId": "140042449244384"}, {"nodeId": "140042449244832"}]}}, "140042449242592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449243040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042449243488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042281881376"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042281881376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298635344"}}}, "140042449243936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042281881488"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042281881488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298637696"}}}, "140042449244384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042449244832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042449245280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042281881712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042281881712": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042449245728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449246176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449246624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449247072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449247520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449247968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449248416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449248864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449249312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449249760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449250208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042449250656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042449251104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042449251552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449252000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449252448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449252896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042449253344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042281882048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281882048": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}]}}, "140042449253792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449254240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449254688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449255136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449255584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449256032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042450125088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042450125536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042450125984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042450126432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042450126880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432596000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": ".1.140042307292320"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042432596448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": ".1.140042307292320"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432596896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307614176"}, {"nodeId": ".1.140042307292320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042432597344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": ".1.140042307292320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282197376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432597792"}, {"nodeId": "140042432598240"}]}}, "140042432597792": {"type": "Function", "content": {"typeVars": [".-1.140042432597792"], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".-1.140042432597792"}]}, {"nodeId": "N"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140042432597792": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140042294068944"}, "def": "140042432597792", "variance": "INVARIANT"}}, "140042294068944": {"type": "Union", "content": {"items": [{"nodeId": "140042298384704", "args": [{"nodeId": "A"}]}, {"nodeId": "140042298385056", "args": [{"nodeId": "A"}]}]}}, "140042298384704": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429264640"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.140042298384704"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__lt__"]}}, ".1.140042298384704": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298384704", "variance": "CONTRAVARIANT"}}, "140042429264640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298384704", "args": [{"nodeId": ".1.140042298384704"}]}, {"nodeId": ".1.140042298384704"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298385056": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429265088"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140042298385056"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__gt__"]}}, ".1.140042298385056": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298385056", "variance": "CONTRAVARIANT"}}, "140042429265088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298385056", "args": [{"nodeId": ".1.140042298385056"}]}, {"nodeId": ".1.140042298385056"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432598240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042282242496"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140042282242496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140042307292320"}], "returnType": {"nodeId": "140042282198944"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042282198944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298413056"}}}, "140042298413056": {"type": "Union", "content": {"items": [{"nodeId": "140042298384704", "args": [{"nodeId": "A"}]}, {"nodeId": "140042298385056", "args": [{"nodeId": "A"}]}]}}, "140042432598688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432599136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042282198496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432599584"}, {"nodeId": "140042432600032"}]}}, "140042432599584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".1.140042307292320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432600032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282198608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432600480"}, {"nodeId": "140042432600928"}]}}, "140042432600480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307614176"}, {"nodeId": ".1.140042307292320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042432600928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307291616"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042432601376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042282199168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042282199168": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307291616"}]}}, "140042282198832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432601824"}, {"nodeId": "140042432602272"}]}}, "140042432601824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432602272": {"type": "Function", "content": {"typeVars": [".-1.140042432602272"], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".-1.140042432602272"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042282199392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432602272": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432602272", "variance": "INVARIANT"}}, "140042282199392": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042432602272"}, {"nodeId": ".1.140042307292320"}]}}, "140042432602720": {"type": "Function", "content": {"typeVars": [".0.140042432602720"], "argTypes": [{"nodeId": ".0.140042432602720"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": ".0.140042432602720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432602720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "def": "140042432602720", "variance": "INVARIANT"}}, "140042432603168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432603616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432604064": {"type": "Function", "content": {"typeVars": [".0.140042432604064"], "argTypes": [{"nodeId": ".0.140042432604064"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".0.140042432604064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432604064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, "def": "140042432604064", "variance": "INVARIANT"}}, "140042432604512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432604960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307292320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432605408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432605856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432606304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432606752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307292320"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432607200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042432709344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432709792": {"type": "Function", "content": {"typeVars": [".0.140042432709792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042432709792"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.140042432709792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "def": "140042432709792", "variance": "INVARIANT"}}, "140042432710240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432710688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042307606784", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307606784": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042239920832"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042307606784"}, {"nodeId": ".2.140042307606784"}], "bases": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042307606784"}]}], "isAbstract": false}}, ".1.140042307606784": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307606784", "variance": "COVARIANT"}}, ".2.140042307606784": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307606784", "variance": "COVARIANT"}}, "140042239920832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606784", "args": [{"nodeId": ".1.140042307606784"}, {"nodeId": ".2.140042307606784"}]}], "returnType": {"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042307606784"}, {"nodeId": ".2.140042307606784"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432711136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042307607136", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307607136": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042239837792"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042307607136"}, {"nodeId": ".2.140042307607136"}], "bases": [{"nodeId": "140042307604672", "args": [{"nodeId": ".2.140042307607136"}]}], "isAbstract": false}}, ".1.140042307607136": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307607136", "variance": "COVARIANT"}}, ".2.140042307607136": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307607136", "variance": "COVARIANT"}}, "140042239837792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607136", "args": [{"nodeId": ".1.140042307607136"}, {"nodeId": ".2.140042307607136"}]}], "returnType": {"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042307607136"}, {"nodeId": ".2.140042307607136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432711584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042307607488", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307607488": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042239656896"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042307607488"}, {"nodeId": ".2.140042307607488"}], "bases": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042307607488"}, {"nodeId": ".2.140042307607488"}]}], "isAbstract": false}}, ".1.140042307607488": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307607488", "variance": "COVARIANT"}}, ".2.140042307607488": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307607488", "variance": "COVARIANT"}}, "140042239656896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307607488", "args": [{"nodeId": ".1.140042307607488"}, {"nodeId": ".2.140042307607488"}]}], "returnType": {"nodeId": "140042302637152", "args": [{"nodeId": ".1.140042307607488"}, {"nodeId": ".2.140042307607488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282199504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432712032"}, {"nodeId": "140042432712480"}]}}, "140042432712032": {"type": "Function", "content": {"typeVars": [".-1.140042432712032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042432712032"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": ".-1.140042432712032"}, {"nodeId": "140042282200848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.140042432712032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432712032", "variance": "INVARIANT"}}, "140042282200848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042432712480": {"type": "Function", "content": {"typeVars": [".-1.140042432712480", ".-2.140042432712480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042432712480"}]}, {"nodeId": ".-2.140042432712480"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": ".-1.140042432712480"}, {"nodeId": ".-2.140042432712480"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140042432712480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432712480", "variance": "INVARIANT"}}, ".-2.140042432712480": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432712480", "variance": "INVARIANT"}}, "140042282200288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432712928"}, {"nodeId": "140042432713376"}]}}, "140042432712928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}], "returnType": {"nodeId": "140042282201072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282201072": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": "N"}]}}, "140042432713376": {"type": "Function", "content": {"typeVars": [".-1.140042432713376"], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}, {"nodeId": "140042282201184"}], "returnType": {"nodeId": "140042282201296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042282201184": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": ".-1.140042432713376"}]}}, ".-1.140042432713376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432713376", "variance": "INVARIANT"}}, "140042282201296": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": ".-1.140042432713376"}]}}, "140042282200624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432713824"}, {"nodeId": "140042432714272"}]}}, "140042432713824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}], "returnType": {"nodeId": ".2.140042307292672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432714272": {"type": "Function", "content": {"typeVars": [".-1.140042432714272"], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}, {"nodeId": "140042282201520"}], "returnType": {"nodeId": "140042282201632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042282201520": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": ".-1.140042432714272"}]}}, ".-1.140042432714272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432714272", "variance": "INVARIANT"}}, "140042282201632": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": ".-1.140042432714272"}]}}, "140042432714720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432715168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}], "returnType": {"nodeId": ".2.140042307292672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432715616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042432716064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": ".1.140042307292672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432716512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307292672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432716960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307292672"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432717408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042432717856": {"type": "Function", "content": {"typeVars": [".-1.140042432717856", ".-2.140042432717856"], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042432717856"}, {"nodeId": ".-2.140042432717856"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042282201856"}, {"nodeId": "140042282201968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432717856": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432717856", "variance": "INVARIANT"}}, ".-2.140042432717856": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432717856", "variance": "INVARIANT"}}, "140042282201856": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".-1.140042432717856"}]}}, "140042282201968": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": ".-2.140042432717856"}]}}, "140042432718304": {"type": "Function", "content": {"typeVars": [".-1.140042432718304", ".-2.140042432718304"], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042432718304"}, {"nodeId": ".-2.140042432718304"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042282202080"}, {"nodeId": "140042282202192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432718304": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432718304", "variance": "INVARIANT"}}, ".-2.140042432718304": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432718304", "variance": "INVARIANT"}}, "140042282202080": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".-1.140042432718304"}]}}, "140042282202192": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307292672"}, {"nodeId": ".-2.140042432718304"}]}}, "140042282200960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432718752"}, {"nodeId": "140042432719200"}]}}, "140042432718752": {"type": "Function", "content": {"typeVars": [".0.140042432718752"], "argTypes": [{"nodeId": ".0.140042432718752"}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}], "returnType": {"nodeId": ".0.140042432718752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432718752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "def": "140042432718752", "variance": "INVARIANT"}}, "140042432719200": {"type": "Function", "content": {"typeVars": [".0.140042432719200"], "argTypes": [{"nodeId": ".0.140042432719200"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042282202528"}]}], "returnType": {"nodeId": ".0.140042432719200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042432719200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}, "def": "140042432719200", "variance": "INVARIANT"}}, "140042282202528": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307292672"}, {"nodeId": ".2.140042307292672"}]}}, "140042512512832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273513184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273513632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483041216"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294477648"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483042560"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294481568"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294482016"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}], "bases": [{"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}], "isAbstract": true}}, ".1.140042512512832": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512512832", "variance": "INVARIANT"}}, ".2.140042512512832": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512512832", "variance": "INVARIANT"}}, "140042273513184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042273513632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".1.140042512512832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042483041216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294477648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483041664"}, {"nodeId": "140042483042112"}]}}, "140042483041664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".1.140042512512832"}], "returnType": {"nodeId": ".2.140042512512832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042483042112": {"type": "Function", "content": {"typeVars": [".-1.140042483042112"], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".1.140042512512832"}, {"nodeId": "140042294482128"}], "returnType": {"nodeId": "140042294482240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "140042294482128": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042512512832"}, {"nodeId": ".-1.140042483042112"}]}}, ".-1.140042483042112": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042483042112", "variance": "INVARIANT"}}, "140042294482240": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042512512832"}, {"nodeId": ".-1.140042483042112"}]}}, "140042483042560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}], "returnType": {"nodeId": "140042294482464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294482464": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}}, "140042294481568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483043008"}, {"nodeId": "140042483043456"}]}}, "140042483043008": {"type": "Function", "content": {"typeVars": [".-1.140042483043008"], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": "140042294482688"}]}, {"nodeId": ".1.140042512512832"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042294482800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294482688": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042483043008"}, {"nodeId": "N"}]}}, ".-1.140042483043008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042483043008", "variance": "INVARIANT"}}, "140042294482800": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042483043008"}, {"nodeId": "N"}]}}, "140042483043456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}], "returnType": {"nodeId": ".2.140042512512832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042294482016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483043904"}, {"nodeId": "140042483044352"}, {"nodeId": "140042483044800"}]}}, "140042483043904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".2.140042512512832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042483044352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042294483136"}]}, {"nodeId": ".2.140042512512832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042294483136": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}}, "140042483044800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042512512832"}, {"nodeId": ".2.140042512512832"}]}, {"nodeId": ".2.140042512512832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140042286578288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483446304"}]}}, "140042483446304": {"type": "Function", "content": {"typeVars": [".0.140042483446304"], "argTypes": [{"nodeId": ".0.140042483446304"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042483446304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042483446304", "variance": "INVARIANT"}}, "140042236324416": {"type": "Function", "content": {"typeVars": [".0.140042236324416"], "argTypes": [{"nodeId": ".0.140042236324416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042236324416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042236324416", "variance": "INVARIANT"}}, "140042483447200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042483447648": {"type": "Function", "content": {"typeVars": [".0.140042483447648"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042483447648"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042483447648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042483447648", "variance": "INVARIANT"}}, "140042483448096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042483448544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042483448992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042483449440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474799392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042474799840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042474800288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042474800736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042474801184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474801632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042474802080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042281660736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281660736": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}]}}, "140042474802528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042281660960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281660960": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}]}}, "140042474803872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042474804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042236321728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042436855840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042436855840", "variance": "INVARIANT"}}, "140042436856288": {"type": "Function", "content": {"typeVars": [".0.140042436856288"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042436856288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.140042436856288": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042436856288", "variance": "INVARIANT"}}, "140042436856736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436857184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436857632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042436858080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042281885072"}, {"nodeId": "140042281885184"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "140042281885072": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281885184": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436858528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042436858976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281885296"}, {"nodeId": "140042281885408"}, {"nodeId": "140042281885520"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281885296": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}]}}, "140042281885408": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281885520": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436859424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140042436860320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042281885632"}, {"nodeId": "140042281885744"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281885632": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281885744": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436860768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042436861216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307289504"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "140042307289504": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436854944"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__"]}}, "140042436854944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289504"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436861664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042281885856"}, {"nodeId": "140042281885968"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281885856": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281885968": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436862112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436862560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436863008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436863456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436863904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436864352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436864800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436865248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436865696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436866144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436866592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436867040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436867488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042436867936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042436868384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436868832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281886080"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042281886080": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042436869280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042281886304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281886304": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042436869728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042436952352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042436952800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042436953248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042281886416"}, {"nodeId": "140042281886528"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281886416": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281886528": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436953696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042281886640"}, {"nodeId": "140042281886752"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281886640": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281886752": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436954144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042436954592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042281886976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281886976": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042436955040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281887088"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042281887088": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042436955488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281887200"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042281887200": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042436955936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281887312"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042281887312": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042436956384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140042436956832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281887424"}, {"nodeId": "140042281887536"}, {"nodeId": "140042281887648"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042281887424": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}]}}, "140042281887536": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042281887648": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "N"}]}}, "140042436957280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281887760"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042281887760": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042436957728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436958176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436958624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307289856"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307289856": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042436855392"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__"]}}, "140042436855392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307289856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042281884736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042281884736": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042436959072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042436959520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042281884176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042436959968"}, {"nodeId": "140042436960416"}, {"nodeId": "140042436960864"}]}}, "140042436959968": {"type": "Function", "content": {"typeVars": [".-1.140042436959968"], "argTypes": [{"nodeId": "140042281888096"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": ".-1.140042436959968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042281888096": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": ".-1.140042436959968"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042436959968"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042281887984"}, {"nodeId": ".-1.140042436959968"}]}]}}, ".-1.140042436959968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042436959968", "variance": "INVARIANT"}}, "140042281887984": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042436960416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436960864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "140042281888208"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042281888208": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042436961312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436961760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436962208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436962656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436963104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042281888320"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042281888320": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307291616"}]}}, "140042436963552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436964000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436964448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436964896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042436965344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436965792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436966240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436966688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436967136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042436967584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042281888656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042281888656": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042130489408": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "P", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042508167296"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["f"]}}, "140042508167296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130489408"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "140042130489760": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "S", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042508171552"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042508171552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130489760"}, {"nodeId": "140042122656032"}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "140042122656032": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042307501248": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286194736"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500350784"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500351232"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500351680"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042243681504"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286199104"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286199888"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500355264"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500355712"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500356160"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500356608"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500357056"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500357504"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500489280"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500489728"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500490176"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500490624"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500491072"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500491520"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500491968"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500492416"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500492864"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500493312"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500493760"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500494208"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500494656"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.140042307501248"}], "bases": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "isAbstract": false}}, ".1.140042307501248": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307501248", "variance": "INVARIANT"}}, "140042286194736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500348992"}, {"nodeId": "140042500349440"}, {"nodeId": "140042500349888"}, {"nodeId": "140042500350336"}]}}, "140042500348992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042500349440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042500349888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500350336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500350784": {"type": "Function", "content": {"typeVars": [".0.140042500350784"], "argTypes": [{"nodeId": ".0.140042500350784"}], "returnType": {"nodeId": ".0.140042500350784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500350784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "def": "140042500350784", "variance": "INVARIANT"}}, "140042500351232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500351680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042286200000"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042286200224"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140042286200000": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286200224": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}}, "140042243681504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "140042286200448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "140042286200448": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286199104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500352576"}, {"nodeId": "140042500353024"}, {"nodeId": "140042500353472"}]}}, "140042500352576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042500353024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500353472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042286199888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500353920"}, {"nodeId": "140042500354368"}, {"nodeId": "140042500354816"}]}}, "140042500353920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042500354368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042500354816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "N"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042500355264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": ".1.140042307501248"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140042500355712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500356160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500356608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500357056": {"type": "Function", "content": {"typeVars": [".-1.140042500357056"], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": ".-1.140042500357056"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": "140042286200784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042500357056": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042500357056", "variance": "INVARIANT"}}, "140042286200784": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307501248"}, {"nodeId": ".-1.140042500357056"}]}}, "140042500357504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500489280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500489728": {"type": "Function", "content": {"typeVars": [".-1.140042500489728"], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": ".-1.140042500489728"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": "140042286200896"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042500489728": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042500489728", "variance": "INVARIANT"}}, "140042286200896": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307501248"}, {"nodeId": ".-1.140042500489728"}]}}, "140042500490176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500490624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500491072": {"type": "Function", "content": {"typeVars": [".0.140042500491072"], "argTypes": [{"nodeId": ".0.140042500491072"}, {"nodeId": "140042298389984", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": ".0.140042500491072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500491072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "def": "140042500491072", "variance": "INVARIANT"}}, "140042298389984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474638912"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.140042298389984"}, {"nodeId": ".2.140042298389984"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["items"]}}, ".1.140042298389984": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298389984", "variance": "COVARIANT"}}, ".2.140042298389984": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298389984", "variance": "COVARIANT"}}, "140042474638912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298389984", "args": [{"nodeId": ".1.140042298389984"}, {"nodeId": ".2.140042298389984"}]}], "returnType": {"nodeId": "140042512511776", "args": [{"nodeId": "140042286577280"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286577280": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042298389984"}, {"nodeId": ".2.140042298389984"}]}}, "140042500491520": {"type": "Function", "content": {"typeVars": [".0.140042500491520"], "argTypes": [{"nodeId": ".0.140042500491520"}, {"nodeId": "140042298389984", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": ".0.140042500491520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500491520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "def": "140042500491520", "variance": "INVARIANT"}}, "140042500491968": {"type": "Function", "content": {"typeVars": [".0.140042500491968"], "argTypes": [{"nodeId": ".0.140042500491968"}, {"nodeId": "140042298389984", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": ".0.140042500491968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500491968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "def": "140042500491968", "variance": "INVARIANT"}}, "140042500492416": {"type": "Function", "content": {"typeVars": [".0.140042500492416"], "argTypes": [{"nodeId": ".0.140042500492416"}, {"nodeId": "140042298389984", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": ".0.140042500492416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500492416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "def": "140042500492416", "variance": "INVARIANT"}}, "140042500492864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500493312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500493760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500494208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500494656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, {"nodeId": "140042307501248", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042130490112": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "S1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042508172000"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042508172000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130490112"}, {"nodeId": "140042122655808"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "140042122655808": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042130754912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130489408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140042130490464": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "R", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042508172896"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["f"]}}, "140042508172896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130490464"}], "returnType": {"nodeId": "140042130490464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130490816": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "RImpl", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504225056"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042504225056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130490816"}], "returnType": {"nodeId": "140042130490816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130759168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042130490464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140042222980672": {"type": "Function", "content": {"typeVars": [".-1.140042222980672"], "argTypes": [{"nodeId": "140042512506496", "args": [{"nodeId": ".-1.140042222980672"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "140042512506496": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273116608"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512506496"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__abs__"]}}, ".1.140042512506496": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512506496", "variance": "COVARIANT"}}, "140042273116608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512506496", "args": [{"nodeId": ".1.140042512506496"}]}], "returnType": {"nodeId": ".1.140042512506496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042222980672": {"type": "TypeVar", "content": {"varName": "T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042222980672", "variance": "INVARIANT"}}, "140042307610304": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286189920"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504231552"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504232000"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504232448"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504232896"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504233344"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504233792"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504234240"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504234688"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286190032"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504236032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504236480"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286191264"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}], "bases": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}], "isAbstract": false}}, ".1.140042307610304": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307610304", "variance": "INVARIANT"}}, ".2.140042307610304": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307610304", "variance": "INVARIANT"}}, "140042286189920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504227968"}, {"nodeId": "140042378488160"}, {"nodeId": "140042504228864"}, {"nodeId": "140042504228416"}, {"nodeId": "140042504229760"}, {"nodeId": "140042504229312"}, {"nodeId": "140042504230208"}, {"nodeId": "140042504230656"}]}}, "140042504227968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042378488160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "N"}, {"nodeId": ".2.140042307610304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042504228864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042504228416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042298390336", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": ".2.140042307610304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042504229760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042286190928"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042286190928": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}}, "140042504229312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042286191152"}]}, {"nodeId": ".2.140042307610304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042286191152": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307610304"}]}}, "140042504230208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042504230656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290560"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042504231552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042504232000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": ".1.140042307610304"}], "returnType": {"nodeId": ".2.140042307610304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042504232448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042504232896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": ".1.140042307610304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042504233344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307610304"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042504233792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042504234240": {"type": "Function", "content": {"typeVars": [".0.140042504234240"], "argTypes": [{"nodeId": ".0.140042504234240"}], "returnType": {"nodeId": ".0.140042504234240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042504234240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, "def": "140042504234240", "variance": "INVARIANT"}}, "140042504234688": {"type": "Function", "content": {"typeVars": [".0.140042504234688"], "argTypes": [{"nodeId": ".0.140042504234688"}], "returnType": {"nodeId": ".0.140042504234688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042504234688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, "def": "140042504234688", "variance": "INVARIANT"}}, "140042286190032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504235136"}, {"nodeId": "140042504235584"}]}}, "140042504235136": {"type": "Function", "content": {"typeVars": [".-1.140042504235136"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042504235136"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307610304", "args": [{"nodeId": ".-1.140042504235136"}, {"nodeId": "140042286191600"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140042504235136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504235136", "variance": "INVARIANT"}}, "140042286191600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042504235584": {"type": "Function", "content": {"typeVars": [".-1.140042504235584", ".-2.140042504235584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042504235584"}]}, {"nodeId": ".-2.140042504235584"}], "returnType": {"nodeId": "140042307610304", "args": [{"nodeId": ".-1.140042504235584"}, {"nodeId": ".-2.140042504235584"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140042504235584": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504235584", "variance": "INVARIANT"}}, ".-2.140042504235584": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504235584", "variance": "INVARIANT"}}, "140042504236032": {"type": "Function", "content": {"typeVars": [".-1.140042504236032", ".-2.140042504236032"], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042286191712"}], "returnType": {"nodeId": "140042307610304", "args": [{"nodeId": "140042286191824"}, {"nodeId": "140042286191936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286191712": {"type": "Union", "content": {"items": [{"nodeId": "140042307610304", "args": [{"nodeId": ".-1.140042504236032"}, {"nodeId": ".-2.140042504236032"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": ".-1.140042504236032"}, {"nodeId": ".-2.140042504236032"}]}]}}, ".-1.140042504236032": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504236032", "variance": "INVARIANT"}}, ".-2.140042504236032": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504236032", "variance": "INVARIANT"}}, "140042286191824": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".-1.140042504236032"}]}}, "140042286191936": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307610304"}, {"nodeId": ".-2.140042504236032"}]}}, "140042504236480": {"type": "Function", "content": {"typeVars": [".-1.140042504236480", ".-2.140042504236480"], "argTypes": [{"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, {"nodeId": "140042286192048"}], "returnType": {"nodeId": "140042307610304", "args": [{"nodeId": "140042286192160"}, {"nodeId": "140042286192272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286192048": {"type": "Union", "content": {"items": [{"nodeId": "140042307610304", "args": [{"nodeId": ".-1.140042504236480"}, {"nodeId": ".-2.140042504236480"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": ".-1.140042504236480"}, {"nodeId": ".-2.140042504236480"}]}]}}, ".-1.140042504236480": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504236480", "variance": "INVARIANT"}}, ".-2.140042504236480": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042504236480", "variance": "INVARIANT"}}, "140042286192160": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".-1.140042504236480"}]}}, "140042286192272": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307610304"}, {"nodeId": ".-2.140042504236480"}]}}, "140042286191264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504236928"}, {"nodeId": "140042504237376"}]}}, "140042504236928": {"type": "Function", "content": {"typeVars": [".0.140042504236928"], "argTypes": [{"nodeId": ".0.140042504236928"}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}], "returnType": {"nodeId": ".0.140042504236928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042504236928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, "def": "140042504236928", "variance": "INVARIANT"}}, "140042504237376": {"type": "Function", "content": {"typeVars": [".0.140042504237376"], "argTypes": [{"nodeId": ".0.140042504237376"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042286192608"}]}], "returnType": {"nodeId": ".0.140042504237376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042504237376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610304", "args": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}, "def": "140042504237376", "variance": "INVARIANT"}}, "140042286192608": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307610304"}, {"nodeId": ".2.140042307610304"}]}}, "140042307610656": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307610656"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286191376"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504238720"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504239168"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504239616"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504240064"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504240512"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042499997760"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042499998208"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286192384"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286192720"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500000448"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500000896"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500001344"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500001792"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500002240"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500002688"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500003136"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500003584"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500004032"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500004480"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500004928"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500005376"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500005824"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500006272"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500006720"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286193392"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500008064"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.140042307610656"}], "bases": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042307610656"}]}], "isAbstract": false}}, ".1.140042307610656": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307610656", "variance": "INVARIANT"}}, "140042286191376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504237824"}, {"nodeId": "140042504238272"}]}}, "140042504237824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "140042504238272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "140042504238720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042286192832"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286192832": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}]}}, "140042504239168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042286192944"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286192944": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}]}}, "140042504239616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042286193056"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286193056": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}]}}, "140042504240064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042286193168"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286193168": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}]}}, "140042504240512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042499997760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042499998208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042286192384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042499998656"}, {"nodeId": "140042499999104"}]}}, "140042499998656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".1.140042307610656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042499999104": {"type": "Function", "content": {"typeVars": [".0.140042499999104"], "argTypes": [{"nodeId": ".0.140042499999104"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": ".0.140042499999104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042499999104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042499999104", "variance": "INVARIANT"}}, "140042286192720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042499999552"}, {"nodeId": "140042500000000"}]}}, "140042499999552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307614176"}, {"nodeId": ".1.140042307610656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042500000000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042307291616"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042500000448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042286193616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286193616": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307291616"}]}}, "140042500000896": {"type": "Function", "content": {"typeVars": [".0.140042500000896"], "argTypes": [{"nodeId": ".0.140042500000896"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": ".0.140042500000896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500000896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500000896", "variance": "INVARIANT"}}, "140042500001344": {"type": "Function", "content": {"typeVars": [".0.140042500001344"], "argTypes": [{"nodeId": ".0.140042500001344"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": ".0.140042500001344"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500001344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500001344", "variance": "INVARIANT"}}, "140042500001792": {"type": "Function", "content": {"typeVars": [".0.140042500001792"], "argTypes": [{"nodeId": ".0.140042500001792"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": ".0.140042500001792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500001792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500001792", "variance": "INVARIANT"}}, "140042500002240": {"type": "Function", "content": {"typeVars": [".0.140042500002240"], "argTypes": [{"nodeId": ".0.140042500002240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500002240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500002240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500002240", "variance": "INVARIANT"}}, "140042500002688": {"type": "Function", "content": {"typeVars": [".0.140042500002688"], "argTypes": [{"nodeId": ".0.140042500002688"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500002688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500002688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500002688", "variance": "INVARIANT"}}, "140042500003136": {"type": "Function", "content": {"typeVars": [".0.140042500003136"], "argTypes": [{"nodeId": ".0.140042500003136"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500003136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500003136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500003136", "variance": "INVARIANT"}}, "140042500003584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": ".1.140042307610656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140042500004032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042512514240"}, {"nodeId": ".1.140042307610656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "140042500004480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042307610656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "140042500004928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": ".1.140042307610656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140042500005376": {"type": "Function", "content": {"typeVars": [".0.140042500005376"], "argTypes": [{"nodeId": ".0.140042500005376"}], "returnType": {"nodeId": ".0.140042500005376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500005376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500005376", "variance": "INVARIANT"}}, "140042500005824": {"type": "Function", "content": {"typeVars": [".0.140042500005824"], "argTypes": [{"nodeId": ".0.140042500005824"}], "returnType": {"nodeId": ".0.140042500005824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500005824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, "def": "140042500005824", "variance": "INVARIANT"}}, "140042500006272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": ".1.140042307610656"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140042500006720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": ".1.140042307610656"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "140042286193392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504231104"}, {"nodeId": "140042500007616"}]}}, "140042504231104": {"type": "Function", "content": {"typeVars": [".-1.140042504231104"], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".-1.140042504231104"}]}, {"nodeId": "N"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.140042504231104": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "140042294068944"}, "def": "140042504231104", "variance": "INVARIANT"}}, "140042500007616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042285871200"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "140042285871200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140042307610656"}], "returnType": {"nodeId": "140042286194064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042286194064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298413056"}}}, "140042500008064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307610656", "args": [{"nodeId": ".1.140042307610656"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307610656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042307611008": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500008512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500008960"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500009408"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500009856"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500010304"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500010752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500011200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500011648"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500012096"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500012544"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500012992"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500013440"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500096064"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500096512"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500096960"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500097408"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500097856"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500098304"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500098752"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500099200"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500099648"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500100544"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500100992"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500101440"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500101888"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500102336"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500103232"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500103680"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500104128"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500104576"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500105024"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500105472"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500105920"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500106368"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500106816"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500107264"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500107712"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500108160"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500108608"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500109056"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500109504"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500109952"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500110400"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500110848"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500111296"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500111744"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500243520"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500243968"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042248740576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500244416"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500244864"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500245312"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500245760"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500246208"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500246656"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500247104"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500247552"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500248000"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500248448"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500248896"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500249344"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500249792"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500250240"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500250688"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500251136"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500251584"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500252032"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500252480"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307611008"}]}], "isAbstract": false}}, "140042500008512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140042500008960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500009408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500009856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500010304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042286194176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286194176": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042500010752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286194288"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286194288": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500011200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286194400"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286194400": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500011648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286194512"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286194512": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500012096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286194624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286194624": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500012544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500012992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500013440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500096064": {"type": "Function", "content": {"typeVars": [".0.140042500096064"], "argTypes": [{"nodeId": ".0.140042500096064"}, {"nodeId": "140042286194848"}], "returnType": {"nodeId": ".0.140042500096064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500096064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500096064", "variance": "INVARIANT"}}, "140042286194848": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307291616"}]}}, "140042500096512": {"type": "Function", "content": {"typeVars": [".0.140042500096512"], "argTypes": [{"nodeId": ".0.140042500096512"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".0.140042500096512"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042500096512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500096512", "variance": "INVARIANT"}}, "140042500096960": {"type": "Function", "content": {"typeVars": [".0.140042500096960"], "argTypes": [{"nodeId": ".0.140042500096960"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".0.140042500096960"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042500096960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500096960", "variance": "INVARIANT"}}, "140042500097408": {"type": "Function", "content": {"typeVars": [".0.140042500097408"], "argTypes": [{"nodeId": ".0.140042500097408"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": ".0.140042500097408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500097408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500097408", "variance": "INVARIANT"}}, "140042500097856": {"type": "Function", "content": {"typeVars": [".0.140042500097856"], "argTypes": [{"nodeId": ".0.140042500097856"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": ".0.140042500097856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500097856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500097856", "variance": "INVARIANT"}}, "140042500098304": {"type": "Function", "content": {"typeVars": [".0.140042500098304"], "argTypes": [{"nodeId": ".0.140042500098304"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500098304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500098304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500098304", "variance": "INVARIANT"}}, "140042500098752": {"type": "Function", "content": {"typeVars": [".0.140042500098752"], "argTypes": [{"nodeId": ".0.140042500098752"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500098752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500098752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500098752", "variance": "INVARIANT"}}, "140042500099200": {"type": "Function", "content": {"typeVars": [".0.140042500099200"], "argTypes": [{"nodeId": ".0.140042500099200"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042500099200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500099200": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500099200", "variance": "INVARIANT"}}, "140042500099648": {"type": "Function", "content": {"typeVars": [".0.140042500099648"], "argTypes": [{"nodeId": ".0.140042500099648"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": ".0.140042500099648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500099648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500099648", "variance": "INVARIANT"}}, "140042500100544": {"type": "Function", "content": {"typeVars": [".0.140042500100544"], "argTypes": [{"nodeId": ".0.140042500100544"}], "returnType": {"nodeId": ".0.140042500100544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500100544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500100544", "variance": "INVARIANT"}}, "140042500100992": {"type": "Function", "content": {"typeVars": [".0.140042500100992"], "argTypes": [{"nodeId": ".0.140042500100992"}], "returnType": {"nodeId": ".0.140042500100992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500100992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500100992", "variance": "INVARIANT"}}, "140042500101440": {"type": "Function", "content": {"typeVars": [".0.140042500101440"], "argTypes": [{"nodeId": ".0.140042500101440"}, {"nodeId": "140042512514240"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042500101440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140042500101440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500101440", "variance": "INVARIANT"}}, "140042500101888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286195184"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042286195184": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500102336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286195296"}, {"nodeId": "140042286195408"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042286195296": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042286195408": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042500103232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286195520"}, {"nodeId": "140042286195632"}, {"nodeId": "140042286195744"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140042286195520": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}]}}, "140042286195632": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286195744": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042500103680": {"type": "Function", "content": {"typeVars": [".0.140042500103680"], "argTypes": [{"nodeId": ".0.140042500103680"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500103680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.140042500103680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500103680", "variance": "INVARIANT"}}, "140042500104128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286195856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042286195856": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500104576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "140042500105024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "140042500105472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042500105920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500106368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500106816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500107264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500107712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500108160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500108608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500109056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500109504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500109952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500110400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500110848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500111296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140042500111744": {"type": "Function", "content": {"typeVars": [".0.140042500111744"], "argTypes": [{"nodeId": ".0.140042500111744"}, {"nodeId": "140042512514240"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042500111744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140042500111744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500111744", "variance": "INVARIANT"}}, "140042500243520": {"type": "Function", "content": {"typeVars": [".0.140042500243520"], "argTypes": [{"nodeId": ".0.140042500243520"}], "returnType": {"nodeId": ".0.140042500243520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500243520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500243520", "variance": "INVARIANT"}}, "140042500243968": {"type": "Function", "content": {"typeVars": [".0.140042500243968"], "argTypes": [{"nodeId": ".0.140042500243968"}, {"nodeId": "140042286196416"}], "returnType": {"nodeId": ".0.140042500243968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140042500243968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500243968", "variance": "INVARIANT"}}, "140042286196416": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042248740576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042248789504"}, {"nodeId": "140042248789728"}, {"nodeId": "140042248789952"}]}}, "140042248789504": {"type": "Function", "content": {"typeVars": [".-1.140042248789504"], "argTypes": [{"nodeId": "140042248740240"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": ".-1.140042248789504"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042248740240": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": ".-1.140042248789504"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042248789504"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042248739904"}, {"nodeId": ".-1.140042248789504"}]}]}}, ".-1.140042248789504": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042248789504", "variance": "INVARIANT"}}, "140042248739904": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042248789728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248789952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "140042248740352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042248740352": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042500244416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042286196640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140042286196640": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042500244864": {"type": "Function", "content": {"typeVars": [".0.140042500244864"], "argTypes": [{"nodeId": ".0.140042500244864"}, {"nodeId": "140042286196752"}], "returnType": {"nodeId": ".0.140042500244864"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140042500244864": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500244864", "variance": "INVARIANT"}}, "140042286196752": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500245312": {"type": "Function", "content": {"typeVars": [".0.140042500245312"], "argTypes": [{"nodeId": ".0.140042500245312"}, {"nodeId": "140042286196864"}], "returnType": {"nodeId": ".0.140042500245312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140042500245312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500245312", "variance": "INVARIANT"}}, "140042286196864": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500245760": {"type": "Function", "content": {"typeVars": [".0.140042500245760"], "argTypes": [{"nodeId": ".0.140042500245760"}, {"nodeId": "140042286196976"}, {"nodeId": "140042286197088"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500245760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.140042500245760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500245760", "variance": "INVARIANT"}}, "140042286196976": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042286197088": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500246208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286197200"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042286197200": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500246656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286197312"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042286197312": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307611008"}]}}, "140042500247104": {"type": "Function", "content": {"typeVars": [".0.140042500247104"], "argTypes": [{"nodeId": ".0.140042500247104"}, {"nodeId": "140042512514240"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042500247104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.140042500247104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500247104", "variance": "INVARIANT"}}, "140042500247552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042286197648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140042286197648": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042500248000": {"type": "Function", "content": {"typeVars": [".0.140042500248000"], "argTypes": [{"nodeId": ".0.140042500248000"}, {"nodeId": "140042286197760"}], "returnType": {"nodeId": ".0.140042500248000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140042500248000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500248000", "variance": "INVARIANT"}}, "140042286197760": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042500248448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286197872"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042286197872": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042500248896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286197984"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042286197984": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042500249344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140042500249792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611008"}, {"nodeId": "140042286198096"}, {"nodeId": "140042286198208"}, {"nodeId": "140042286198320"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140042286198096": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}]}}, "140042286198208": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286198320": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042500250240": {"type": "Function", "content": {"typeVars": [".0.140042500250240"], "argTypes": [{"nodeId": ".0.140042500250240"}, {"nodeId": "140042286198432"}], "returnType": {"nodeId": ".0.140042500250240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.140042500250240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500250240", "variance": "INVARIANT"}}, "140042286198432": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042500250688": {"type": "Function", "content": {"typeVars": [".0.140042500250688"], "argTypes": [{"nodeId": ".0.140042500250688"}], "returnType": {"nodeId": ".0.140042500250688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500250688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500250688", "variance": "INVARIANT"}}, "140042500251136": {"type": "Function", "content": {"typeVars": [".0.140042500251136"], "argTypes": [{"nodeId": ".0.140042500251136"}], "returnType": {"nodeId": ".0.140042500251136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500251136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500251136", "variance": "INVARIANT"}}, "140042500251584": {"type": "Function", "content": {"typeVars": [".0.140042500251584"], "argTypes": [{"nodeId": ".0.140042500251584"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042500251584"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.140042500251584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500251584", "variance": "INVARIANT"}}, "140042500252032": {"type": "Function", "content": {"typeVars": [".0.140042500252032"], "argTypes": [{"nodeId": ".0.140042500252032"}], "returnType": {"nodeId": ".0.140042500252032"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500252032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500252032", "variance": "INVARIANT"}}, "140042500252480": {"type": "Function", "content": {"typeVars": [".0.140042500252480"], "argTypes": [{"nodeId": ".0.140042500252480"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500252480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.140042500252480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611008"}, "def": "140042500252480", "variance": "INVARIANT"}}, "140042307611360": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042248791072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286193504"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500254272"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500254720"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500255168"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500255616"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500256064"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500256512"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500256960"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500257408"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500257856"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500258304"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500258752"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500259200"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500341824"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500342272"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500342720"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500343168"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500343616"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500344064"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500344512"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500344960"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500345408"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500345856"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500346304"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500346752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500347200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500347648"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500348096"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500348544"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042307611360"}], "bases": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042307611360"}]}], "isAbstract": false}}, ".1.140042307611360": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307611360", "variance": "INVARIANT"}}, "140042248791072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "140042286198656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286198656": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286193504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500253376"}, {"nodeId": "140042500253824"}]}}, "140042500253376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042286198880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "140042286198880": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042500253824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042286198992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "140042286198992": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042500254272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": ".1.140042307611360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500254720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": ".1.140042307611360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500255168": {"type": "Function", "content": {"typeVars": [".0.140042500255168"], "argTypes": [{"nodeId": ".0.140042500255168"}], "returnType": {"nodeId": ".0.140042500255168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500255168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500255168", "variance": "INVARIANT"}}, "140042500255616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": ".1.140042307611360"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500256064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500256512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500256960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042512514240"}, {"nodeId": ".1.140042307611360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042500257408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": ".1.140042307611360"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042500257856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": ".1.140042307611360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500258304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": ".1.140042307611360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500258752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": ".1.140042307611360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042500259200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042500341824": {"type": "Function", "content": {"typeVars": [".0.140042500341824"], "argTypes": [{"nodeId": ".0.140042500341824"}], "returnType": {"nodeId": ".0.140042500341824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500341824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500341824", "variance": "INVARIANT"}}, "140042500342272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500342720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".1.140042307611360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500343168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307614176"}, {"nodeId": ".1.140042307611360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042500343616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500344064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500344512": {"type": "Function", "content": {"typeVars": [".0.140042500344512"], "argTypes": [{"nodeId": ".0.140042500344512"}], "returnType": {"nodeId": "140042286199552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500344512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500344512", "variance": "INVARIANT"}}, "140042286199552": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042286199328"}, {"nodeId": "N"}, {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307611360"}]}]}}, "140042286199328": {"type": "Tuple", "content": {"items": []}}, "140042500344960": {"type": "Function", "content": {"typeVars": [".0.140042500344960"], "argTypes": [{"nodeId": ".0.140042500344960"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": ".0.140042500344960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500344960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500344960", "variance": "INVARIANT"}}, "140042500345408": {"type": "Function", "content": {"typeVars": [".0.140042500345408"], "argTypes": [{"nodeId": ".0.140042500345408"}, {"nodeId": ".0.140042500345408"}], "returnType": {"nodeId": ".0.140042500345408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500345408": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500345408", "variance": "INVARIANT"}}, "140042500345856": {"type": "Function", "content": {"typeVars": [".0.140042500345856"], "argTypes": [{"nodeId": ".0.140042500345856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500345856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500345856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500345856", "variance": "INVARIANT"}}, "140042500346304": {"type": "Function", "content": {"typeVars": [".0.140042500346304"], "argTypes": [{"nodeId": ".0.140042500346304"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042500346304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042500346304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, "def": "140042500346304", "variance": "INVARIANT"}}, "140042500346752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500347200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500348096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}, {"nodeId": "140042307611360", "args": [{"nodeId": ".1.140042307611360"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042500348544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042298378368": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500495104"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042298378368"}], "bases": [{"nodeId": "140042307604320", "args": [{"nodeId": ".1.140042298378368"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042298378368"}]}], "isAbstract": false}}, ".1.140042298378368": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298378368", "variance": "COVARIANT"}}, "140042500495104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378368", "args": [{"nodeId": ".1.140042298378368"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042298378368"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042298378720": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500495552"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042298378720"}, {"nodeId": ".2.140042298378720"}], "bases": [{"nodeId": "140042307603968", "args": [{"nodeId": ".1.140042298378720"}, {"nodeId": ".2.140042298378720"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": "140042307225632"}]}], "isAbstract": false}}, ".1.140042298378720": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298378720", "variance": "COVARIANT"}}, ".2.140042298378720": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298378720", "variance": "COVARIANT"}}, "140042500495552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378720", "args": [{"nodeId": ".1.140042298378720"}, {"nodeId": ".2.140042298378720"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042286201568"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042286201568": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042298378720"}, {"nodeId": ".2.140042298378720"}]}}, "140042307225632": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042298378720"}, {"nodeId": ".2.140042298378720"}]}}, "140042298379072": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500496000"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042298379072"}], "bases": [{"nodeId": "140042307604672", "args": [{"nodeId": ".1.140042298379072"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042298379072"}]}], "isAbstract": false}}, ".1.140042298379072": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298379072", "variance": "COVARIANT"}}, "140042500496000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379072", "args": [{"nodeId": ".1.140042298379072"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042298379072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307611712": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500496448"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042307611712"}, {"nodeId": ".2.140042307611712"}], "bases": [{"nodeId": "140042307606784", "args": [{"nodeId": ".1.140042307611712"}, {"nodeId": ".2.140042307611712"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042307611712"}]}], "isAbstract": false}}, ".1.140042307611712": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307611712", "variance": "COVARIANT"}}, ".2.140042307611712": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307611712", "variance": "COVARIANT"}}, "140042500496448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307611712", "args": [{"nodeId": ".1.140042307611712"}, {"nodeId": ".2.140042307611712"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307611712"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307612064": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500496896"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042307612064"}, {"nodeId": ".2.140042307612064"}], "bases": [{"nodeId": "140042307607488", "args": [{"nodeId": ".1.140042307612064"}, {"nodeId": ".2.140042307612064"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": "140042307230448"}]}], "isAbstract": false}}, ".1.140042307612064": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307612064", "variance": "COVARIANT"}}, ".2.140042307612064": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307612064", "variance": "COVARIANT"}}, "140042500496896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612064", "args": [{"nodeId": ".1.140042307612064"}, {"nodeId": ".2.140042307612064"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042286201792"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042286201792": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307612064"}, {"nodeId": ".2.140042307612064"}]}}, "140042307230448": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307612064"}, {"nodeId": ".2.140042307612064"}]}}, "140042307612416": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500497344"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.140042307612416"}, {"nodeId": ".2.140042307612416"}], "bases": [{"nodeId": "140042307607136", "args": [{"nodeId": ".1.140042307612416"}, {"nodeId": ".2.140042307612416"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".2.140042307612416"}]}], "isAbstract": false}}, ".1.140042307612416": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307612416", "variance": "COVARIANT"}}, ".2.140042307612416": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307612416", "variance": "COVARIANT"}}, "140042500497344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612416", "args": [{"nodeId": ".1.140042307612416"}, {"nodeId": ".2.140042307612416"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".2.140042307612416"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307612768": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500497792"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500498240"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500498688"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500499136"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500499584"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500500032"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042500500480"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286200560"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286202128"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}], "bases": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042307612768"}]}], "isAbstract": false}}, ".1.140042307612768": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307612768", "variance": "INVARIANT"}}, ".2.140042307612768": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307612768", "variance": "INVARIANT"}}, "140042500497792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042286202016"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "140042286202016": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}}, "140042500498240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, {"nodeId": ".1.140042307612768"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "140042500498688": {"type": "Function", "content": {"typeVars": [".0.140042500498688"], "argTypes": [{"nodeId": ".0.140042500498688"}], "returnType": {"nodeId": ".0.140042500498688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042500498688": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, "def": "140042500498688", "variance": "INVARIANT"}}, "140042500499136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307612768"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042500499584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}], "returnType": {"nodeId": "140042307611712", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500500032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}], "returnType": {"nodeId": "140042307612064", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500500480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}], "returnType": {"nodeId": "140042307612416", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286200560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500500928"}, {"nodeId": "140042500501376"}]}}, "140042500500928": {"type": "Function", "content": {"typeVars": [".-1.140042500500928"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042500500928"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307612768", "args": [{"nodeId": ".-1.140042500500928"}, {"nodeId": "140042286202464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140042500500928": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042500500928", "variance": "INVARIANT"}}, "140042286202464": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042500501376": {"type": "Function", "content": {"typeVars": [".-1.140042500501376", ".-2.140042500501376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042500501376"}]}, {"nodeId": ".-2.140042500501376"}], "returnType": {"nodeId": "140042307612768", "args": [{"nodeId": ".-1.140042500501376"}, {"nodeId": ".-2.140042500501376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.140042500501376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042500501376", "variance": "INVARIANT"}}, ".-2.140042500501376": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042500501376", "variance": "INVARIANT"}}, "140042286202128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500501824"}, {"nodeId": "140042500502272"}]}}, "140042500501824": {"type": "Function", "content": {"typeVars": [".-1.140042500501824"], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": "140042286202688"}]}, {"nodeId": ".1.140042307612768"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042286563392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140042286202688": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042500501824"}, {"nodeId": "N"}]}}, ".-1.140042500501824": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042500501824", "variance": "INVARIANT"}}, "140042286563392": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042500501824"}, {"nodeId": "N"}]}}, "140042500502272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307612768", "args": [{"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}]}, {"nodeId": ".1.140042307612768"}, {"nodeId": ".2.140042307612768"}], "returnType": {"nodeId": ".2.140042307612768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140042307501600": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307226640"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286202240"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495427520"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495427968"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495428416"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}], "bases": [{"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}], "isAbstract": false}}, ".1.140042307501600": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307501600", "variance": "INVARIANT"}}, ".2.140042307501600": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307501600", "variance": "INVARIANT"}}, "140042307226640": {"type": "Union", "content": {"items": [{"nodeId": "140042307062240"}, {"nodeId": "N"}]}}, "140042307062240": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042286202240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042500502720"}, {"nodeId": "140042500503168"}, {"nodeId": "140042500503616"}, {"nodeId": "140042500504064"}, {"nodeId": "140042500504512"}, {"nodeId": "140042500504960"}, {"nodeId": "140042495426624"}, {"nodeId": "140042495427072"}]}}, "140042500502720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042500503168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": ".2.140042307501600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140042500503616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": "140042286563616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042286563616": {"type": "Union", "content": {"items": [{"nodeId": "140042285871872"}, {"nodeId": "N"}]}}, "140042285871872": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042500504064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": "140042286563728"}, {"nodeId": ".2.140042307501600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "140042286563728": {"type": "Union", "content": {"items": [{"nodeId": "140042285872096"}, {"nodeId": "N"}]}}, "140042285872096": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042500504512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": "140042286563840"}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042286563840": {"type": "Union", "content": {"items": [{"nodeId": "140042285871424"}, {"nodeId": "N"}]}}, "140042285871424": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042500504960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": "140042286563952"}, {"nodeId": "140042298390336", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": ".2.140042307501600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140042286563952": {"type": "Union", "content": {"items": [{"nodeId": "140042285872320"}, {"nodeId": "N"}]}}, "140042285872320": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042495426624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": "140042286564064"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042286564288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042286564064": {"type": "Union", "content": {"items": [{"nodeId": "140042285872544"}, {"nodeId": "N"}]}}, "140042285872544": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042286564288": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}}, "140042495427072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": "140042286564400"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042286564624"}]}, {"nodeId": ".2.140042307501600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140042286564400": {"type": "Union", "content": {"items": [{"nodeId": "140042285872768"}, {"nodeId": "N"}]}}, "140042285872768": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": [], "argNames": []}}, "140042286564624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".2.140042307501600"}]}}, "140042495427520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}, {"nodeId": ".1.140042307501600"}], "returnType": {"nodeId": ".2.140042307501600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042495427968": {"type": "Function", "content": {"typeVars": [".0.140042495427968"], "argTypes": [{"nodeId": ".0.140042495427968"}], "returnType": {"nodeId": ".0.140042495427968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042495427968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}, "def": "140042495427968", "variance": "INVARIANT"}}, "140042495428416": {"type": "Function", "content": {"typeVars": [".0.140042495428416"], "argTypes": [{"nodeId": ".0.140042495428416"}], "returnType": {"nodeId": ".0.140042495428416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042495428416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307501600", "args": [{"nodeId": ".1.140042307501600"}, {"nodeId": ".2.140042307501600"}]}, "def": "140042495428416", "variance": "INVARIANT"}}, "140042307613120": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495428864"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495429312"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244056096"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495430208"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495430656"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495431104"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495431552"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495432000"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495432448"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495432896"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495433344"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286202576"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286564848"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495435584"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042244058784"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286565072"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495436928"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495437376"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286565408"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}], "bases": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}], "isAbstract": false}}, ".1.140042307613120": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307613120", "variance": "INVARIANT"}}, ".2.140042307613120": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307613120", "variance": "INVARIANT"}}, "140042495428864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "140042495429312": {"type": "Function", "content": {"typeVars": [".0.140042495429312"], "argTypes": [{"nodeId": ".0.140042495429312"}, {"nodeId": "140042286564960"}], "returnType": {"nodeId": ".0.140042495429312"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.140042495429312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, "def": "140042495429312", "variance": "INVARIANT"}}, "140042286564960": {"type": "Union", "content": {"items": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": "N"}]}}, "140042244056096": {"type": "Function", "content": {"typeVars": [".0.140042244056096"], "argTypes": [{"nodeId": ".0.140042244056096"}], "returnType": {"nodeId": ".0.140042244056096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042244056096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, "def": "140042244056096", "variance": "INVARIANT"}}, "140042495430208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042495430656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042495431104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}], "returnType": {"nodeId": ".2.140042307613120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042495431552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307613120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042495432000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042495432448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042495432896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}], "returnType": {"nodeId": ".2.140042307613120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140042495433344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286202576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042495433792"}, {"nodeId": "140042495434240"}]}}, "140042495433792": {"type": "Function", "content": {"typeVars": [".-1.140042495433792"], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": "140042286565184"}]}, {"nodeId": ".1.140042307613120"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042286565296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "140042286565184": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042495433792"}, {"nodeId": "N"}]}}, ".-1.140042495433792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495433792", "variance": "INVARIANT"}}, "140042286565296": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042495433792"}, {"nodeId": "N"}]}}, "140042495434240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}], "returnType": {"nodeId": ".2.140042307613120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140042286564848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042495434688"}, {"nodeId": "140042495435136"}]}}, "140042495434688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}], "returnType": {"nodeId": ".2.140042307613120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "140042495435136": {"type": "Function", "content": {"typeVars": [".-1.140042495435136"], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": ".1.140042307613120"}, {"nodeId": "140042286565520"}], "returnType": {"nodeId": "140042286565632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "140042286565520": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307613120"}, {"nodeId": ".-1.140042495435136"}]}}, ".-1.140042495435136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495435136", "variance": "INVARIANT"}}, "140042286565632": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307613120"}, {"nodeId": ".-1.140042495435136"}]}}, "140042495435584": {"type": "Function", "content": {"typeVars": [".0.140042495435584"], "argTypes": [{"nodeId": ".0.140042495435584"}], "returnType": {"nodeId": ".0.140042495435584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042495435584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, "def": "140042495435584", "variance": "INVARIANT"}}, "140042244058784": {"type": "Function", "content": {"typeVars": [".0.140042244058784"], "argTypes": [{"nodeId": ".0.140042244058784"}], "returnType": {"nodeId": ".0.140042244058784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042244058784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, "def": "140042244058784", "variance": "INVARIANT"}}, "140042286565072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042495436032"}, {"nodeId": "140042495436480"}]}}, "140042495436032": {"type": "Function", "content": {"typeVars": [".-1.140042495436032"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042495436032"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307613120", "args": [{"nodeId": ".-1.140042495436032"}, {"nodeId": "140042286565968"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.140042495436032": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495436032", "variance": "INVARIANT"}}, "140042286565968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042495436480": {"type": "Function", "content": {"typeVars": [".-1.140042495436480", ".-2.140042495436480"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042495436480"}]}, {"nodeId": ".-2.140042495436480"}], "returnType": {"nodeId": "140042307613120", "args": [{"nodeId": ".-1.140042495436480"}, {"nodeId": ".-2.140042495436480"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.140042495436480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495436480", "variance": "INVARIANT"}}, ".-2.140042495436480": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495436480", "variance": "INVARIANT"}}, "140042495436928": {"type": "Function", "content": {"typeVars": [".-1.140042495436928", ".-2.140042495436928"], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042495436928"}, {"nodeId": ".-2.140042495436928"}]}], "returnType": {"nodeId": "140042307613120", "args": [{"nodeId": "140042286566080"}, {"nodeId": "140042286566192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042495436928": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495436928", "variance": "INVARIANT"}}, ".-2.140042495436928": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495436928", "variance": "INVARIANT"}}, "140042286566080": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".-1.140042495436928"}]}}, "140042286566192": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307613120"}, {"nodeId": ".-2.140042495436928"}]}}, "140042495437376": {"type": "Function", "content": {"typeVars": [".-1.140042495437376", ".-2.140042495437376"], "argTypes": [{"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042495437376"}, {"nodeId": ".-2.140042495437376"}]}], "returnType": {"nodeId": "140042307613120", "args": [{"nodeId": "140042286566304"}, {"nodeId": "140042286566416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042495437376": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495437376", "variance": "INVARIANT"}}, ".-2.140042495437376": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042495437376", "variance": "INVARIANT"}}, "140042286566304": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".-1.140042495437376"}]}}, "140042286566416": {"type": "Union", "content": {"items": [{"nodeId": ".2.140042307613120"}, {"nodeId": ".-2.140042495437376"}]}}, "140042286565408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042495437824"}, {"nodeId": "140042495438272"}]}}, "140042495437824": {"type": "Function", "content": {"typeVars": [".0.140042495437824"], "argTypes": [{"nodeId": ".0.140042495437824"}, {"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}], "returnType": {"nodeId": ".0.140042495437824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042495437824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, "def": "140042495437824", "variance": "INVARIANT"}}, "140042495438272": {"type": "Function", "content": {"typeVars": [".0.140042495438272"], "argTypes": [{"nodeId": ".0.140042495438272"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042286566752"}]}], "returnType": {"nodeId": ".0.140042495438272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042495438272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613120", "args": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}, "def": "140042495438272", "variance": "INVARIANT"}}, "140042286566752": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042307613120"}, {"nodeId": ".2.140042307613120"}]}}, "140042202211328": {"type": "Concrete", "content": {"module": "numpy._pytesttester", "simpleName": "PytestTester", "members": [{"kind": "Variable", "content": {"name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042403376352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "label", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra_argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doctests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "coverage", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "durations", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042403376800"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042403376352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202211328"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module_name"]}}, "140042403376800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202211328"}, {"nodeId": "140042202741024"}, {"nodeId": "140042512514240"}, {"nodeId": "140042202741136"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042202741360"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "label", "verbose", "extra_argv", "doctests", "coverage", "durations", "tests"]}}, "140042202741024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042202741136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}]}}, "140042202741360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}]}}, "140042185614688": {"type": "Concrete", "content": {"module": "numpy.core._internal", "simpleName": "_ctypes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248481680"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042152323872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042152244192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042152238592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_as_parameter_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042152240384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449726464"}, "name": "data_as"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449726912"}, "name": "shape_as"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449727360"}, "name": "strides_as"}}], "typeVars": [{"nodeId": ".1.140042185614688"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042185614688": {"type": "TypeVar", "content": {"varName": "_PT", "values": [], "upperBound": {"nodeId": "140042185554992"}, "def": "140042185614688", "variance": "INVARIANT"}}, "140042185554992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042248481680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449723776"}, {"nodeId": "140042449724224"}]}}, "140042449723776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185614688", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "array", "ptr"]}}, "140042185617504": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndarray", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147857344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147857120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147857792"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176843328"}, "items": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147858016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "real"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176844112"}, "items": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147858240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "imag"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210598400"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470770944"}, "name": "__class_getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176845008"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470772288"}, "name": "__array_ufunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470772736"}, "name": "__array_function__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470773184"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470773632"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470774080"}, "name": "__array_prepare__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176845568"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147858688"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176845344"}, "items": [{"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147858464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "shape"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176850608"}, "items": [{"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147859584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "strides"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470779008"}, "name": "byteswap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470779456"}, "name": "fill"}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147859808"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176850944"}, "items": [{"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "item"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176851280"}, "items": [{"kind": "Variable", "content": {"name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "itemset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176851728"}, "items": [{"kind": "Variable", "content": {"name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "align", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470783040"}, "name": "setflags"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470783488"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470783936"}, "name": "swapaxes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176852064"}, "items": [{"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "transpose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470965760"}, "name": "argpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470966208"}, "name": "diagonal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176852512"}, "items": [{"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "dot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470968000"}, "name": "nonzero"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470968448"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470968896"}, "name": "put"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176854192"}, "items": [{"kind": "Variable", "content": {"name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "searchsorted"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470970240"}, "name": "setfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470970688"}, "name": "sort"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176855760"}, "items": [{"kind": "Variable", "content": {"name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "trace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176789440"}, "items": [{"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "take"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470973376"}, "name": "repeat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470973824"}, "name": "flatten"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470974272"}, "name": "ravel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176939616"}, "items": [{"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "reshape"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176941968"}, "items": [{"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "astype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176942304"}, "items": [{"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "view"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176945216"}, "items": [{"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "getfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210651584"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210647552"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210647328"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210646432"}, "name": "__index__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042471112768"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042471052672"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042471113216"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042471113664"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176944544"}, "items": [{"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176946560"}, "items": [{"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__le__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176947232"}, "items": [{"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176949136"}, "items": [{"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176951040"}, "items": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__abs__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176952944"}, "items": [{"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__invert__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176855872"}, "items": [{"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pos__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177004480"}, "items": [{"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__neg__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177005264"}, "items": [{"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__matmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177006048"}, "items": [{"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmatmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177009856"}, "items": [{"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177013552"}, "items": [{"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177016240"}, "items": [{"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176953952"}, "items": [{"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177072032"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177075168"}, "items": [{"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177079872"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177084576"}, "items": [{"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rsub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177019264"}, "items": [{"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177061360"}, "items": [{"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177066400"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177085248"}, "items": [{"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rfloordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177140144"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177143840"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177147648"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177068528"}, "items": [{"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rtruediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177171904"}, "items": [{"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177175824"}, "items": [{"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rlshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177178064"}, "items": [{"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177180304"}, "items": [{"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rrshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177182544"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177150336"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177187056"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177189184"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177191312"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177193440"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177195568"}, "items": [{"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__iadd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177197696"}, "items": [{"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__isub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177183216"}, "items": [{"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__imul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177269536"}, "items": [{"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__itruediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177272224"}, "items": [{"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ifloordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177273904"}, "items": [{"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ipow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177276480"}, "items": [{"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__imod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177278608"}, "items": [{"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ilshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177280288"}, "items": [{"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__irshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177199936"}, "items": [{"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__iand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177316224"}, "items": [{"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ixor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177317904"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202679552"}, "name": "__dlpack__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042461832000"}, "name": "__dlpack_device__"}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143182944"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}], "bases": [{"nodeId": "140042185616096"}], "isAbstract": false}}, ".1.140042185617504": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042185617504", "variance": "INVARIANT"}}, ".2.140042185617504": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042185617504", "variance": "COVARIANT"}}, "140042181260416": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "dtype", "members": [{"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219486928"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248483472"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496042240"}, "name": "__class_getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248484032"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042185554320"}, "items": [{"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176669376"}, "items": [{"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496045824"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496046272"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496046720"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496047168"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496047616"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042496048064"}, "name": "__ne__"}}, {"kind": "Variable", "content": {"name": "alignment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147389600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147420352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147420576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "char", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147420800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "descr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147421024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fields", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147421248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147421472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hasobject", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147421696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isbuiltin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147421920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isnative", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147422144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isalignedstruct", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147422368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147422592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147422816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147423040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147423264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147423488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147423712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147423936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subdtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147424160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210702080"}, "name": "newbyteorder"}}, {"kind": "Variable", "content": {"name": "str", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147424384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147424608"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042181260416"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042181260416": {"type": "TypeVar", "content": {"varName": "_DTypeScalar_co", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042181260416", "variance": "COVARIANT"}}, "140042185617856": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "generic", "members": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042143183168"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177319584"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143183840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143181600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143181824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143182496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143172640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202677760"}, "name": "byteswap"}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143178464"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177321264"}, "items": [{"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "astype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177322272"}, "items": [{"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "view"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177325520"}, "items": [{"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "getfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462020992"}, "name": "item"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177326640"}, "items": [{"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "take"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210183872"}, "name": "repeat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210188352"}, "name": "flatten"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210187008"}, "name": "ravel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177326976"}, "items": [{"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "reshape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462025024"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462025472"}, "name": "transpose"}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143179808"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042185616096"}], "isAbstract": true}}, "140042143183168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042177319584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202680000"}, {"nodeId": "140042461833792"}]}}, "140042202680000": {"type": "Function", "content": {"typeVars": [".-1.140042202680000"], "argTypes": [{"nodeId": ".-1.140042202680000"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042202680000"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.140042202680000": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042202680000", "variance": "INVARIANT"}}, "140042461833792": {"type": "Function", "content": {"typeVars": [".-1.140042461833792"], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": ".-1.140042461833792"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042461833792"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042461833792": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042461833792", "variance": "INVARIANT"}}, "140042143183840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143181600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143181824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143182496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}], "returnType": {"nodeId": "140042177322944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177322944": {"type": "Tuple", "content": {"items": []}}, "140042143172640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}], "returnType": {"nodeId": "140042177323168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177323168": {"type": "Tuple", "content": {"items": []}}, "140042202677760": {"type": "Function", "content": {"typeVars": [".-1.140042202677760"], "argTypes": [{"nodeId": ".-1.140042202677760"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042202677760"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}}, ".-1.140042202677760": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042202677760", "variance": "INVARIANT"}}, "140042143178464": {"type": "Function", "content": {"typeVars": [".-1.140042143178464"], "argTypes": [{"nodeId": ".-1.140042143178464"}], "returnType": {"nodeId": "140042181260768", "args": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042143178464"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143178464": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042143178464", "variance": "INVARIANT"}}, "140042181260768": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "flatiter", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147617184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coords", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147617856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147618080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042491849280"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042491849728"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042491850176"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042491850624"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176669040"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042491851968"}, "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176671504"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}], "typeVars": [{"nodeId": ".1.140042181260768"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042181260768": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042181260768", "variance": "INVARIANT"}}, "140042147617184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}], "returnType": {"nodeId": ".1.140042181260768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147617856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}], "returnType": {"nodeId": "140042176673408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176673408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042147618080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042491849280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}], "returnType": {"nodeId": ".1.140042181260768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042491849728": {"type": "Function", "content": {"typeVars": [".-1.140042491849728"], "argTypes": [{"nodeId": ".-1.140042491849728"}], "returnType": {"nodeId": ".-1.140042491849728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042491849728": {"type": "TypeVar", "content": {"varName": "_FlatIterSelf", "values": [], "upperBound": {"nodeId": "140042181260768", "args": [{"nodeId": "A"}]}, "def": "140042491849728", "variance": "INVARIANT"}}, "140042491850176": {"type": "Function", "content": {"typeVars": [".-1.140042491850176"], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042491850176"}]}]}]}], "returnType": {"nodeId": ".-1.140042491850176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042491850176": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042491850176", "variance": "INVARIANT"}}, "140042491850624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042176669040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042491851072"}, {"nodeId": "140042491851520"}]}}, "140042491851072": {"type": "Function", "content": {"typeVars": [".-1.140042491851072"], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042491851072"}]}]}]}, {"nodeId": "140042176674416"}], "returnType": {"nodeId": ".-1.140042491851072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042491851072": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042491851072", "variance": "INVARIANT"}}, "140042176674416": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042176674304"}]}}, "140042185619968": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "integer", "members": [{"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143222240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143234336"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177429904"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462191552"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462192000"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462192448"}, "name": "is_integer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462192896"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462193344"}, "name": "__index__"}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185619968"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185619968"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462193792"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462194240"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202596064"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462195136"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462195584"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462196032"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462196480"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462196928"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462197376"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462197824"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462198272"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462198720"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462199168"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.140042185619968"}], "bases": [{"nodeId": "140042185618208", "args": [{"nodeId": ".1.140042185619968"}]}], "isAbstract": true}}, ".1.140042185619968": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185619968", "variance": "INVARIANT"}}, "140042189949760": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "NBitBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042403378144"}, "name": "__init_subclass__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042403378144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042143222240": {"type": "Function", "content": {"typeVars": [".-1.140042143222240"], "argTypes": [{"nodeId": ".-1.140042143222240"}], "returnType": {"nodeId": ".-1.140042143222240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143222240": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042143222240", "variance": "INVARIANT"}}, "140042143234336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177429904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462190656"}, {"nodeId": "140042462191104"}]}}, "140042462190656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}}, "140042462191104": {"type": "Function", "content": {"typeVars": [".-1.140042462191104"], "argTypes": [{"nodeId": ".-1.140042462191104"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042462191104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}}, ".-1.140042462191104": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462191104", "variance": "INVARIANT"}}, "140042307602208": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273114592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__index__"]}}, "140042273114592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307602208"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042462191552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177432928"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177432928": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177432480"}, {"nodeId": "140042177432816"}]}}, "140042177432480": {"type": "Tuple", "content": {"items": []}}, "140042177432816": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042462192000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042462192448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042462192896": {"type": "Function", "content": {"typeVars": [".-1.140042462192896"], "argTypes": [{"nodeId": ".-1.140042462192896"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042462192896": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462192896", "variance": "INVARIANT"}}, "140042462193344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042185608704": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_IntTrueDiv", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248578304"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185608704"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185608704": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185608704", "variance": "INVARIANT"}}, "140042248578304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441009280"}, {"nodeId": "140042441009728"}, {"nodeId": "140042441010176"}, {"nodeId": "140042441010624"}, {"nodeId": "140042441011072"}]}}, "140042441009280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185608704"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042185608704"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042180854176": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "floating", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462341696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462342144"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462342592"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462343040"}, "name": "is_integer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202117088"}, "name": "hex"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042143737312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462344384"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202114400"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202119552"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202117984"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202117760"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typestr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202117536"}, "name": "__getformat__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177432032"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612224", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612224", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612576", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612576", "args": [{"nodeId": ".1.140042180854176"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042180854176"}], "bases": [{"nodeId": "140042180853824", "args": [{"nodeId": ".1.140042180854176"}]}], "isAbstract": false}}, ".1.140042180854176": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042180854176", "variance": "INVARIANT"}}, "140042462341696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854176"}]}, {"nodeId": "140042177438640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177438640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185811424"}}}, "140042185811424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185810304"}, {"nodeId": "140042307601152"}, {"nodeId": "140042307602208"}]}}, "140042185810304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042189806432": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}]}}, "140042462342144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854176"}]}, {"nodeId": "140042177439424"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177439424": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177438976"}, {"nodeId": "140042177439312"}]}}, "140042177438976": {"type": "Tuple", "content": {"items": []}}, "140042177439312": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042462342592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854176"}]}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042462343040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854176"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202117088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177439536"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177439536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042189951520": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_64Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189951168"}], "isAbstract": false}}, "140042189951168": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_80Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189950816"}], "isAbstract": false}}, "140042189950816": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_96Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189950464"}], "isAbstract": false}}, "140042189950464": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_128Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189950112"}], "isAbstract": false}}, "140042189950112": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_256Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189949760"}], "isAbstract": false}}, "140042143737312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042177439648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177439648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042462344384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854176"}]}], "returnType": {"nodeId": "140042177439872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177439872": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042202114400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177439984"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177439984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042202119552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177440096"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177440096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042202117984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177440208"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177440208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042202117760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177440320"}], "returnType": {"nodeId": "140042177440544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177440320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042177440544": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}]}}, "140042202117536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177440656"}, {"nodeId": "140042177440992"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177440656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042177440992": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177432032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462511168"}, {"nodeId": "140042462511616"}]}}, "140042462511168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854176"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}}, "140042462511616": {"type": "Function", "content": {"typeVars": [".-1.140042462511616"], "argTypes": [{"nodeId": ".-1.140042462511616"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042462511616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}}, ".-1.140042462511616": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462511616", "variance": "INVARIANT"}}, "140042185611872": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248477984"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185611872"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185611872": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185611872", "variance": "INVARIANT"}}, "140042248477984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441108480"}, {"nodeId": "140042441108928"}, {"nodeId": "140042441109376"}, {"nodeId": "140042441109824"}, {"nodeId": "140042441110272"}]}}, "140042441108480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042185611872"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042185611872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441108928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042185611872"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248478656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248478656": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611872"}, {"nodeId": "140042248478544"}]}}, "140042248478544": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441109376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042185611872"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248478880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248478880": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611872"}, {"nodeId": "140042248478768"}]}}, "140042248478768": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441109824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042185611872"}]}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248479104"}, {"nodeId": "140042248479328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042180854528": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "complexfloating", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462512064"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462512512"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462512960"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143741568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143743360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462514304"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202116416"}, "name": "__getnewargs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042180854528"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}], "bases": [{"nodeId": "140042180853824", "args": [{"nodeId": ".1.140042180854528"}]}], "isAbstract": false}}, ".1.140042180854528": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042180854528", "variance": "INVARIANT"}}, ".2.140042180854528": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042180854528", "variance": "INVARIANT"}}, "140042462512064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}]}, {"nodeId": "140042177441216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177441216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185811648"}}}, "140042185811648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185811088"}, {"nodeId": "140042307601152"}, {"nodeId": "140042307601504"}, {"nodeId": "140042307602208"}, {"nodeId": "140042307289152"}]}}, "140042185811088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042462512512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}]}, {"nodeId": "140042177442000"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177442000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177441552"}, {"nodeId": "140042177441888"}]}}, "140042177441552": {"type": "Tuple", "content": {"items": []}}, "140042177441888": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042462512960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}]}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143741568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}]}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854528"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143743360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}]}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": ".2.140042180854528"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042462514304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042180854528"}, {"nodeId": ".2.140042180854528"}]}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042180854528"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042202116416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177442112"}], "returnType": {"nodeId": "140042177442336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177442112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042189951520"}, {"nodeId": "140042189951520"}]}}}, "140042177442336": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042185612928": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_ComplexOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248479664"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185612928"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185612928": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185612928", "variance": "INVARIANT"}}, "140042248479664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449454016"}, {"nodeId": "140042449454464"}, {"nodeId": "140042449454912"}, {"nodeId": "140042449455360"}]}}, "140042449454016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042185612928"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": ".1.140042185612928"}, {"nodeId": ".1.140042185612928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449454464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042185612928"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248481904"}, {"nodeId": "140042248482128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248481904": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612928"}, {"nodeId": "140042248481792"}]}}, "140042248481792": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042248482128": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612928"}, {"nodeId": "140042248482016"}]}}, "140042248482016": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042449454912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042185612928"}]}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248482352"}, {"nodeId": "140042248482576"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248482352": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612928"}, {"nodeId": "140042248482240"}]}}, "140042248482240": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042248482576": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612928"}, {"nodeId": "140042248482464"}]}}, "140042248482464": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042449455360": {"type": "Function", "content": {"typeVars": [".-1.140042449455360"], "argTypes": [{"nodeId": "140042185612928", "args": [{"nodeId": ".1.140042185612928"}]}, {"nodeId": "140042248482688"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248482800"}, {"nodeId": "140042248482912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248482688": {"type": "Union", "content": {"items": [{"nodeId": "140042185619968", "args": [{"nodeId": ".-1.140042449455360"}]}, {"nodeId": "140042180854176", "args": [{"nodeId": ".-1.140042449455360"}]}, {"nodeId": "140042180854528", "args": [{"nodeId": ".-1.140042449455360"}, {"nodeId": ".-1.140042449455360"}]}]}}, ".-1.140042449455360": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042449455360", "variance": "INVARIANT"}}, "140042248482800": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612928"}, {"nodeId": ".-1.140042449455360"}]}}, "140042248482912": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612928"}, {"nodeId": ".-1.140042449455360"}]}}, "140042180853824": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "inexact", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202086336"}, "name": "__getnewargs__"}}], "typeVars": [{"nodeId": ".1.140042180853824"}], "bases": [{"nodeId": "140042185618208", "args": [{"nodeId": ".1.140042180853824"}]}], "isAbstract": true}}, ".1.140042180853824": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042180853824", "variance": "INVARIANT"}}, "140042202086336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180853824", "args": [{"nodeId": "140042189951520"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514592"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042185618208": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "number", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143182720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143184064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462027264"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462027712"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462028160"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462028608"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462026816"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462029056"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462029504"}, "name": "__abs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185613280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042226922688"}, {"nodeId": "140042226923248"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042193429200"}, {"nodeId": "140042193425392"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042193431552"}, {"nodeId": "140042193430096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042193432000"}, {"nodeId": "140042193429760"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042185618208"}], "bases": [{"nodeId": "140042185617856"}], "isAbstract": true}}, ".1.140042185618208": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185618208", "variance": "INVARIANT"}}, "140042143182720": {"type": "Function", "content": {"typeVars": [".-1.140042143182720"], "argTypes": [{"nodeId": ".-1.140042143182720"}], "returnType": {"nodeId": ".-1.140042143182720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143182720": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143182720", "variance": "INVARIANT"}}, "140042185616096": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "_ArrayOrScalarCommon", "members": [{"kind": "Variable", "content": {"name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147618976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147620320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147620992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147621216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470360000"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470360448"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470360896"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470361344"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042491853312"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470361792"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470362688"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470363136"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470362240"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470364032"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470364480"}, "name": "dumps"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470364928"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470365376"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470365824"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "__array_interface__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147621440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147623008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_struct__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147623232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470367616"}, "name": "__setstate__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176673632"}, "items": [{"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "all"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176774432"}, "items": [{"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "any"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176778016"}, "items": [{"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmax"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176779136"}, "items": [{"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmin"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470373440"}, "name": "argsort"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176776896"}, "items": [{"kind": "Variable", "content": {"name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choose"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176779696"}, "items": [{"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "clip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176781600"}, "items": [{"kind": "Variable", "content": {"name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "compress"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470541568"}, "name": "conj"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470542016"}, "name": "conjugate"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176783280"}, "items": [{"kind": "Variable", "content": {"name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "cumprod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176783952"}, "items": [{"kind": "Variable", "content": {"name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "cumsum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176783616"}, "items": [{"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "max"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176785184"}, "items": [{"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mean"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176786416"}, "items": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "min"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042210601760"}, "name": "newbyteorder"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176787760"}, "items": [{"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "prod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176788656"}, "items": [{"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ptp"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176790224"}, "items": [{"kind": "Variable", "content": {"name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "round"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248484592"}, "items": [{"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "std"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176839968"}, "items": [{"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042176841536"}, "items": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "var"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042147618976": {"type": "Function", "content": {"typeVars": [".-1.140042147618976"], "argTypes": [{"nodeId": ".-1.140042147618976"}], "returnType": {"nodeId": ".-1.140042147618976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042147618976": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042147618976", "variance": "INVARIANT"}}, "140042147620320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147620768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042189962784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189962784": {"type": "Concrete", "content": {"module": "numpy.core.multiarray", "simpleName": "flagsobj", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writeable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writebackifcopy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "behaved", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156519744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156408192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "carray", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156407520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156407072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156536352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "farray", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156537248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fnc", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156536800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "forc", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156536576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fortran", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156535904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156535680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "owndata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042156535456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042416225664"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042416373824"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042156519744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156408192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156407520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156407072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156536352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156537248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156536800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156536576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156535904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156535680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042156535456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042416225664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}, {"nodeId": "140042231413136"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042231413136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185541104"}}}, "140042185541104": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042416373824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962784"}, {"nodeId": "140042231413360"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042231413360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185389808"}}}, "140042185389808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042147620992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147621216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042470360000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042470360448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042470360896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042470361344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042491853312": {"type": "Function", "content": {"typeVars": [".-1.140042491853312"], "argTypes": [{"nodeId": ".-1.140042491853312"}], "returnType": {"nodeId": ".-1.140042491853312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042491853312": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042491853312", "variance": "INVARIANT"}}, "140042470361792": {"type": "Function", "content": {"typeVars": [".-1.140042470361792"], "argTypes": [{"nodeId": ".-1.140042470361792"}, {"nodeId": "140042176774992"}], "returnType": {"nodeId": ".-1.140042470361792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042470361792": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470361792", "variance": "INVARIANT"}}, "140042176774992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "A"}]}]}}, "140042470362688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042470363136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042470362240": {"type": "Function", "content": {"typeVars": [".-1.140042470362240"], "argTypes": [{"nodeId": ".-1.140042470362240"}, {"nodeId": "140042176775552"}], "returnType": {"nodeId": ".-1.140042470362240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.140042470362240": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470362240", "variance": "INVARIANT"}}, "140042176775552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042185804368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042470364032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176775664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "file"]}}, "140042176775664": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042185615744", "args": [{"nodeId": "140042307290560"}]}]}}, "140042299115296": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273349568"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042299115296"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__fspath__"]}}, ".1.140042299115296": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042299115296", "variance": "COVARIANT"}}, "140042273349568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299115296", "args": [{"nodeId": ".1.140042299115296"}]}], "returnType": {"nodeId": ".1.140042299115296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042185615744": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504537920"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140042185615744"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["write"]}}, ".1.140042185615744": {"type": "TypeVar", "content": {"varName": "_AnyStr_contra", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042185615744", "variance": "CONTRAVARIANT"}}, "140042504537920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615744", "args": [{"nodeId": ".1.140042185615744"}]}, {"nodeId": ".1.140042185615744"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042470364480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042470364928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176775776"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042176775776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042470365376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176775888"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}}, "140042176775888": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042185615040"}]}}, "140042185615040": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_IOProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495440064"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495440512"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495440960"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495441408"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["fileno", "flush", "seek", "tell"]}}, "140042495440064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615040"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042495440512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615040"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042495440960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615040"}], "returnType": {"nodeId": "140042307602208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042495441408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615040"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042470365824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147621440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147623008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147623232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042470367616": {"type": "Function", "content": {"typeVars": [".-1.140042470367616"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176776784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176776784": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042176776336"}, {"nodeId": ".-1.140042470367616"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176776560"}]}}, "140042176776336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042214761840": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307602208"}]}]}}, ".-1.140042470367616": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042470367616", "variance": "COVARIANT"}}, "140042176776560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}]}}, "140042176673632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470368064"}, {"nodeId": "140042470368512"}, {"nodeId": "140042470368960"}]}}, "140042470368064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042176777120"}], "returnType": {"nodeId": "140042185618560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "140042176777120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042185618560": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "bool_", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462030400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462030848"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462031296"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143185184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143186080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462032640"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462033088"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462033536"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462032192"}, "name": "__abs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042226920896"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042226920784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042226920224"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606240", "args": [{"nodeId": "140042226920560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185607296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185607296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462034432"}, "name": "__invert__"}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042226919776"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042226920112"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042226919328"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042226919104"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185606592", "args": [{"nodeId": "140042185618560"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185607648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185607648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185608000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185608000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042193432224"}, {"nodeId": "140042193431776"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042193431664"}, {"nodeId": "140042193430208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042198385936"}, {"nodeId": "140042198396240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042198386608"}, {"nodeId": "140042198386272"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042185617856"}], "isAbstract": false}}, "140042462030400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042462030848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}, {"nodeId": "140042177429792"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177429792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177330896"}, {"nodeId": "140042177429680"}]}}, "140042177330896": {"type": "Tuple", "content": {"items": []}}, "140042177429680": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042462031296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143185184": {"type": "Function", "content": {"typeVars": [".-1.140042143185184"], "argTypes": [{"nodeId": ".-1.140042143185184"}], "returnType": {"nodeId": ".-1.140042143185184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143185184": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143185184", "variance": "INVARIANT"}}, "140042143186080": {"type": "Function", "content": {"typeVars": [".-1.140042143186080"], "argTypes": [{"nodeId": ".-1.140042143186080"}], "returnType": {"nodeId": ".-1.140042143186080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143186080": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143186080", "variance": "INVARIANT"}}, "140042462032640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462033088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462033536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462032192": {"type": "Function", "content": {"typeVars": [".-1.140042462032192"], "argTypes": [{"nodeId": ".-1.140042462032192"}], "returnType": {"nodeId": ".-1.140042462032192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462032192": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462032192", "variance": "INVARIANT"}}, "140042185606240": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248575392"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185606240"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185606240": {"type": "TypeVar", "content": {"varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042185606240", "variance": "COVARIANT"}}, "140042248575392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449728704"}, {"nodeId": "140042449729152"}, {"nodeId": "140042449729600"}, {"nodeId": "140042449730048"}, {"nodeId": "140042449730496"}]}}, "140042449728704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606240", "args": [{"nodeId": ".1.140042185606240"}]}, {"nodeId": "140042248575840"}], "returnType": {"nodeId": ".1.140042185606240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248575840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189630240"}}}, "140042189630240": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042185618560"}]}}, "140042449729152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606240", "args": [{"nodeId": ".1.140042185606240"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042248576512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248576512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042185620320": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "signedinteger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462330944"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611168", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611168", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611520", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185611520", "args": [{"nodeId": ".1.140042185620320"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042185620320"}], "bases": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185620320"}]}], "isAbstract": false}}, ".1.140042185620320": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185620320", "variance": "INVARIANT"}}, "140042462330944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620320", "args": [{"nodeId": ".1.140042185620320"}]}, {"nodeId": "140042177435840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177435840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185811200"}}}, "140042185811200": {"type": "Union", "content": {"items": [{"nodeId": "140042307600800"}, {"nodeId": "140042185810192"}, {"nodeId": "140042307602208"}]}}, "140042185810192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042185610464": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248473056"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185610464"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185610464": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185610464", "variance": "INVARIANT"}}, "140042248473056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441101312"}, {"nodeId": "140042441101760"}, {"nodeId": "140042441102208"}, {"nodeId": "140042441102656"}, {"nodeId": "140042441103104"}]}}, "140042441101312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185610464"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": ".1.140042185610464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441101760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185610464"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "140042248473728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248473728": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610464"}, {"nodeId": "140042248473616"}]}}, "140042248473616": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441102208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185610464"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248473952"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248473952": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610464"}, {"nodeId": "140042248473840"}]}}, "140042248473840": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441102656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185610464"}]}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248474176"}, {"nodeId": "140042248474400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248474176": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610464"}, {"nodeId": "140042248474064"}]}}, "140042248474064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042248474400": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610464"}, {"nodeId": "140042248474288"}]}}, "140042248474288": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441103104": {"type": "Function", "content": {"typeVars": [".-1.140042441103104"], "argTypes": [{"nodeId": "140042185610464", "args": [{"nodeId": ".1.140042185610464"}]}, {"nodeId": "140042185620320", "args": [{"nodeId": ".-1.140042441103104"}]}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "140042248474512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441103104": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441103104", "variance": "INVARIANT"}}, "140042248474512": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610464"}, {"nodeId": ".-1.140042441103104"}]}}, "140042185610816": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042214763744"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185610816"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185610816": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185610816", "variance": "INVARIANT"}}, "140042214763744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441103552"}, {"nodeId": "140042441104000"}, {"nodeId": "140042441104448"}]}}, "140042441103552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185610816"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": ".1.140042185610816"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441104000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185610816"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "140042248475296"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248475296": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610816"}, {"nodeId": "140042248475184"}]}}, "140042248475184": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441104448": {"type": "Function", "content": {"typeVars": [".-1.140042441104448"], "argTypes": [{"nodeId": "140042185610816", "args": [{"nodeId": ".1.140042185610816"}]}, {"nodeId": "140042185620320", "args": [{"nodeId": ".-1.140042441104448"}]}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "140042248475632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441104448": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441104448", "variance": "INVARIANT"}}, "140042248475632": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185610816"}, {"nodeId": ".-1.140042441104448"}]}}, "140042185611168": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248475408"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185611168"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185611168": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185611168", "variance": "INVARIANT"}}, "140042248475408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441104896"}, {"nodeId": "140042441105344"}, {"nodeId": "140042441105792"}, {"nodeId": "140042441106240"}]}}, "140042441104896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611168", "args": [{"nodeId": ".1.140042185611168"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": ".1.140042185611168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441105344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611168", "args": [{"nodeId": ".1.140042185611168"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "140042248475968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248475968": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611168"}, {"nodeId": "140042248475856"}]}}, "140042248475856": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441105792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611168", "args": [{"nodeId": ".1.140042185611168"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248476192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248476192": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611168"}, {"nodeId": "140042248476080"}]}}, "140042248476080": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441106240": {"type": "Function", "content": {"typeVars": [".-1.140042441106240"], "argTypes": [{"nodeId": "140042185611168", "args": [{"nodeId": ".1.140042185611168"}]}, {"nodeId": "140042185620320", "args": [{"nodeId": ".-1.140042441106240"}]}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "140042248476304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441106240": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441106240", "variance": "INVARIANT"}}, "140042248476304": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611168"}, {"nodeId": ".-1.140042441106240"}]}}, "140042185611520": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042185554096"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185611520"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185611520": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185611520", "variance": "INVARIANT"}}, "140042185554096": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441106688"}, {"nodeId": "140042441107136"}, {"nodeId": "140042441107584"}, {"nodeId": "140042441108032"}]}}, "140042441106688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611520", "args": [{"nodeId": ".1.140042185611520"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441107136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611520", "args": [{"nodeId": ".1.140042185611520"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441107584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185611520", "args": [{"nodeId": ".1.140042185611520"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441108032": {"type": "Function", "content": {"typeVars": [".-1.140042441108032"], "argTypes": [{"nodeId": "140042185611520", "args": [{"nodeId": ".1.140042185611520"}]}, {"nodeId": "140042185620320", "args": [{"nodeId": ".-1.140042441108032"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441108032": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441108032", "variance": "INVARIANT"}}, "140042185812544": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042449729600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606240", "args": [{"nodeId": ".1.140042185606240"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042248576736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248576736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042449730048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606240", "args": [{"nodeId": ".1.140042185606240"}]}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042248576848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248576848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042189951520"}, {"nodeId": "140042189951520"}]}}}, "140042449730496": {"type": "Function", "content": {"typeVars": [".-1.140042449730496"], "argTypes": [{"nodeId": "140042185606240", "args": [{"nodeId": ".1.140042185606240"}]}, {"nodeId": ".-1.140042449730496"}], "returnType": {"nodeId": ".-1.140042449730496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042449730496": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "140042185618208", "args": [{"nodeId": "A"}]}, "def": "140042449730496", "variance": "INVARIANT"}}, "140042185606944": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolSub", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248574944"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042248574944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042440999872"}, {"nodeId": "140042441000320"}, {"nodeId": "140042441000768"}, {"nodeId": "140042441001216"}, {"nodeId": "140042441001664"}]}}, "140042440999872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606944"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441000320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606944"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042248577408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248577408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042441000768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606944"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042248577520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248577520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042441001216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606944"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042248577632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248577632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042189951520"}, {"nodeId": "140042189951520"}]}}}, "140042441001664": {"type": "Function", "content": {"typeVars": [".-1.140042441001664"], "argTypes": [{"nodeId": "140042185606944"}, {"nodeId": ".-1.140042441001664"}], "returnType": {"nodeId": ".-1.140042441001664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441001664": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "140042185618208", "args": [{"nodeId": "A"}]}, "def": "140042441001664", "variance": "INVARIANT"}}, "140042226920896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042189952576": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_8Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189952224"}], "isAbstract": false}}, "140042189952224": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_16Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189951872"}], "isAbstract": false}}, "140042189951872": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_32Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042189951520"}], "isAbstract": false}}, "140042226920784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042226920224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042226920560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042185607296": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolTrueDiv", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248576288"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042248576288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441002112"}, {"nodeId": "140042441002560"}, {"nodeId": "140042441003008"}]}}, "140042441002112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185607296"}, {"nodeId": "140042248577968"}], "returnType": {"nodeId": "140042248578080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248577968": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042248577856"}]}}, "140042248577856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042189629792": {"type": "Union", "content": {"items": [{"nodeId": "140042189628112"}, {"nodeId": "140042512514240"}, {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}]}}, "140042189628112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189630240"}}}, "140042248578080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042441002560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185607296"}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042248578192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248578192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042189951520"}, {"nodeId": "140042189951520"}]}}}, "140042441003008": {"type": "Function", "content": {"typeVars": [".-1.140042441003008"], "argTypes": [{"nodeId": "140042185607296"}, {"nodeId": ".-1.140042441003008"}], "returnType": {"nodeId": ".-1.140042441003008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441003008": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "140042185618208", "args": [{"nodeId": "A"}]}, "def": "140042441003008", "variance": "INVARIANT"}}, "140042462034432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618560"}], "returnType": {"nodeId": "140042185618560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042185606592": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248575728"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185606592"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185606592": {"type": "TypeVar", "content": {"varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042185606592", "variance": "COVARIANT"}}, "140042248575728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449730944"}, {"nodeId": "140042440998976"}, {"nodeId": "140042440999424"}]}}, "140042449730944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606592", "args": [{"nodeId": ".1.140042185606592"}]}, {"nodeId": "140042248577072"}], "returnType": {"nodeId": ".1.140042185606592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248577072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189630240"}}}, "140042440998976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185606592", "args": [{"nodeId": ".1.140042185606592"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042248577184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248577184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042440999424": {"type": "Function", "content": {"typeVars": [".-1.140042440999424"], "argTypes": [{"nodeId": "140042185606592", "args": [{"nodeId": ".1.140042185606592"}]}, {"nodeId": ".-1.140042440999424"}], "returnType": {"nodeId": ".-1.140042440999424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042440999424": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "def": "140042440999424", "variance": "INVARIANT"}}, "140042226919776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042226920112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042226919328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042226919104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042185607648": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248576960"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042248576960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441003456"}, {"nodeId": "140042441003904"}, {"nodeId": "140042441004352"}, {"nodeId": "140042441004800"}, {"nodeId": "140042441005248"}]}}, "140042441003456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185607648"}, {"nodeId": "140042248578416"}], "returnType": {"nodeId": "140042248578528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248578416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189630240"}}}, "140042248578528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042441003904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185607648"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042248578640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248578640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042441004352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185607648"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042248578752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248578752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042441004800": {"type": "Function", "content": {"typeVars": [".-1.140042441004800"], "argTypes": [{"nodeId": "140042185607648"}, {"nodeId": ".-1.140042441004800"}], "returnType": {"nodeId": ".-1.140042441004800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441004800": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "def": "140042441004800", "variance": "INVARIANT"}}, "140042441005248": {"type": "Function", "content": {"typeVars": [".-1.140042441005248"], "argTypes": [{"nodeId": "140042185607648"}, {"nodeId": ".-1.140042441005248"}], "returnType": {"nodeId": ".-1.140042441005248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441005248": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "140042180854176", "args": [{"nodeId": "A"}]}, "def": "140042441005248", "variance": "INVARIANT"}}, "140042185608000": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248577296"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042248577296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441005696"}, {"nodeId": "140042441006144"}, {"nodeId": "140042441006592"}, {"nodeId": "140042441007040"}, {"nodeId": "140042441007488"}]}}, "140042441005696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608000"}, {"nodeId": "140042248578976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248578976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189630240"}}}, "140042441006144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608000"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441006592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608000"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441007040": {"type": "Function", "content": {"typeVars": [".-1.140042441007040"], "argTypes": [{"nodeId": "140042185608000"}, {"nodeId": ".-1.140042441007040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441007040": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "def": "140042441007040", "variance": "INVARIANT"}}, "140042441007488": {"type": "Function", "content": {"typeVars": [".-1.140042441007488"], "argTypes": [{"nodeId": "140042185608000"}, {"nodeId": ".-1.140042441007488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441007488": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "140042180854176", "args": [{"nodeId": "A"}]}, "def": "140042441007488", "variance": "INVARIANT"}}, "140042185614336": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_ComparisonOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248480448"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185614336"}, {"nodeId": ".2.140042185614336"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185614336": {"type": "TypeVar", "content": {"varName": "_T1_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042185614336", "variance": "CONTRAVARIANT"}}, ".2.140042185614336": {"type": "TypeVar", "content": {"varName": "_T2_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042185614336", "variance": "CONTRAVARIANT"}}, "140042248480448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449457152"}, {"nodeId": "140042449457600"}, {"nodeId": "140042449458048"}]}}, "140042449457152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614336", "args": [{"nodeId": ".1.140042185614336"}, {"nodeId": ".2.140042185614336"}]}, {"nodeId": ".1.140042185614336"}], "returnType": {"nodeId": "140042185618560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449457600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614336", "args": [{"nodeId": ".1.140042185614336"}, {"nodeId": ".2.140042185614336"}]}, {"nodeId": ".2.140042185614336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449458048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614336", "args": [{"nodeId": ".1.140042185614336"}, {"nodeId": ".2.140042185614336"}]}, {"nodeId": "140042248483808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248483808": {"type": "Union", "content": {"items": [{"nodeId": "140042185613632"}, {"nodeId": "140042185613984"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042248483696"}]}]}}, "140042185613632": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SupportsLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449456256"}, "name": "__lt__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__lt__"]}}, "140042449456256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185613632"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042185613984": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SupportsGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449456704"}, "name": "__gt__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__gt__"]}}, "140042449456704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185613984"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198140000": {"type": "Protocol", "content": {"module": "numpy._typing._nested_sequence", "simpleName": "_NestedSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370055328"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042198316784"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369893088"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369893536"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369893984"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369894432"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369894880"}, "name": "index"}}], "typeVars": [{"nodeId": ".1.140042198140000"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "__reversed__", "count", "index"]}}, ".1.140042198140000": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042198140000", "variance": "COVARIANT"}}, "140042370055328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042198316784": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042370055776"}, {"nodeId": "140042369892640"}]}}, "140042370055776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042198316672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198316672": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042198140000"}, {"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}]}}, "140042369892640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042369893088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042369893536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042198317120"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042198317120": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042198140000"}, {"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}]}}, "140042369893984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042198317232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042198317232": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042198140000"}, {"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}]}}, "140042369894432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042369894880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140000", "args": [{"nodeId": ".1.140042198140000"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248483696": {"type": "Union", "content": {"items": [{"nodeId": "140042185613632"}, {"nodeId": "140042185613984"}]}}, "140042193432224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042189624864": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042307289152"}, {"nodeId": "140042185618208", "args": [{"nodeId": "A"}]}, {"nodeId": "140042185618560"}]}}, "140042193431776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042193431664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042193430208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042198385936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042198396240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042198386608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042198386272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470368512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176777344"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176777456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "140042176777344": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176777232"}]}}, "140042176777232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176777456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470368960": {"type": "Function", "content": {"typeVars": [".-1.140042470368960"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176777792"}, {"nodeId": ".-1.140042470368960"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176777904"}], "returnType": {"nodeId": ".-1.140042470368960"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "140042176777792": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176777680"}]}}, "140042176777680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042470368960": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470368960", "variance": "INVARIANT"}}, "140042176777904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176774432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470369408"}, {"nodeId": "140042470369856"}, {"nodeId": "140042470370304"}]}}, "140042470369408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042176778240"}], "returnType": {"nodeId": "140042185618560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "140042176778240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470369856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176778464"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176778576"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "140042176778464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176778352"}]}}, "140042176778352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176778576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470370304": {"type": "Function", "content": {"typeVars": [".-1.140042470370304"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176778912"}, {"nodeId": ".-1.140042470370304"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176779024"}], "returnType": {"nodeId": ".-1.140042470370304"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "140042176778912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176778800"}]}}, "140042176778800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042470370304": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470370304", "variance": "INVARIANT"}}, "140042176779024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176778016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470370752"}, {"nodeId": "140042470371200"}, {"nodeId": "140042470371648"}]}}, "140042470370752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042176779360"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042176779360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042185812432": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042470371200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042307602208"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042470371648": {"type": "Function", "content": {"typeVars": [".-1.140042470371648"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176779584"}, {"nodeId": ".-1.140042470371648"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".-1.140042470371648"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042176779584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, ".-1.140042470371648": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470371648", "variance": "INVARIANT"}}, "140042176779136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470372096"}, {"nodeId": "140042470372544"}, {"nodeId": "140042470372992"}]}}, "140042470372096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042176779920"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042176779920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042470372544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042307602208"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042470372992": {"type": "Function", "content": {"typeVars": [".-1.140042470372992"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176780144"}, {"nodeId": ".-1.140042470372992"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".-1.140042470372992"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042176780144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, ".-1.140042470372992": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470372992", "variance": "INVARIANT"}}, "140042470373440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176780256"}, {"nodeId": "140042176780480"}, {"nodeId": "140042176780592"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}}, "140042176780256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176780480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176780368"}]}}, "140042176780368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185807056"}}}, "140042185807056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176780592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042176776896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470373888"}, {"nodeId": "140042470374336"}]}}, "140042470373888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176780928"}, {"nodeId": "N"}, {"nodeId": "140042176781040"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}}, "140042176780928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176781040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042185806272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042470374336": {"type": "Function", "content": {"typeVars": [".-1.140042470374336"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176781376"}, {"nodeId": ".-1.140042470374336"}, {"nodeId": "140042176780816"}], "returnType": {"nodeId": ".-1.140042470374336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}}, "140042176781376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.140042470374336": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470374336", "variance": "INVARIANT"}}, "140042176780816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042176779696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470374784"}, {"nodeId": "140042470539328"}, {"nodeId": "140042470539776"}, {"nodeId": "140042470540224"}]}}, "140042470374784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176781488"}, {"nodeId": "140042176781824"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "140042176781488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176781824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176781712"}]}}, "140042176781712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470539328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "N"}, {"nodeId": "140042176782272"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "140042176782272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470539776": {"type": "Function", "content": {"typeVars": [".-1.140042470539776"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176782608"}, {"nodeId": "140042176782720"}, {"nodeId": ".-1.140042470539776"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140042470539776"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "140042176782608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176782720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176782160"}]}}, "140042176782160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.140042470539776": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470539776", "variance": "INVARIANT"}}, "140042470540224": {"type": "Function", "content": {"typeVars": [".-1.140042470540224"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "N"}, {"nodeId": "140042176782496"}, {"nodeId": ".-1.140042470540224"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140042470540224"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "140042176782496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.140042470540224": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470540224", "variance": "INVARIANT"}}, "140042176781600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470540672"}, {"nodeId": "140042470541120"}]}}, "140042470540672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176783168"}, {"nodeId": "140042176783392"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}}, "140042176783168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176783392": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042470541120": {"type": "Function", "content": {"typeVars": [".-1.140042470541120"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176783728"}, {"nodeId": "140042176783056"}, {"nodeId": ".-1.140042470541120"}], "returnType": {"nodeId": ".-1.140042470541120"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}}, "140042176783728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176783056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, ".-1.140042470541120": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470541120", "variance": "INVARIANT"}}, "140042470541568": {"type": "Function", "content": {"typeVars": [".-1.140042470541568"], "argTypes": [{"nodeId": ".-1.140042470541568"}], "returnType": {"nodeId": ".-1.140042470541568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042470541568": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470541568", "variance": "INVARIANT"}}, "140042470542016": {"type": "Function", "content": {"typeVars": [".-1.140042470542016"], "argTypes": [{"nodeId": ".-1.140042470542016"}], "returnType": {"nodeId": ".-1.140042470542016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042470542016": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470542016", "variance": "INVARIANT"}}, "140042176783280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470542464"}, {"nodeId": "140042470542912"}]}}, "140042470542464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176783840"}, {"nodeId": "140042176784064"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042176783840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176784064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042189625648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042198150208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042189625760"}]}}, "140042198150208": {"type": "Protocol", "content": {"module": "numpy._typing._dtype_like", "simpleName": "_SupportsDType", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042227018304"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042198150208"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["dtype"]}}, ".1.140042198150208": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042198150208", "variance": "COVARIANT"}}, "140042227018304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198150208", "args": [{"nodeId": ".1.140042198150208"}]}], "returnType": {"nodeId": ".1.140042198150208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189625760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813712"}}}, "140042189813712": {"type": "Union", "content": {"items": [{"nodeId": "140042189812704"}, {"nodeId": "140042189813040"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, {"nodeId": "140042189813264"}, {"nodeId": "140042189813600"}]}}, "140042189812704": {"type": "Tuple", "content": {"items": [{"nodeId": "140042189811248"}, {"nodeId": "140042512514240"}]}}, "140042189811248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042189813040": {"type": "Tuple", "content": {"items": [{"nodeId": "140042189812816"}, {"nodeId": "140042189812928"}]}}, "140042189812816": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042189812928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042189813264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042189813600": {"type": "Tuple", "content": {"items": [{"nodeId": "140042189813376"}, {"nodeId": "140042189813488"}]}}, "140042189813376": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042189813488": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042470542912": {"type": "Function", "content": {"typeVars": [".-1.140042470542912"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176784624"}, {"nodeId": "140042176785632"}, {"nodeId": ".-1.140042470542912"}], "returnType": {"nodeId": ".-1.140042470542912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042176784624": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176785632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470542912": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470542912", "variance": "INVARIANT"}}, "140042176783952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470543360"}, {"nodeId": "140042470543808"}]}}, "140042470543360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176784736"}, {"nodeId": "140042176785072"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042176784736": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176785072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042470543808": {"type": "Function", "content": {"typeVars": [".-1.140042470543808"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176785408"}, {"nodeId": "140042176786304"}, {"nodeId": ".-1.140042470543808"}], "returnType": {"nodeId": ".-1.140042470543808"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042176785408": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176786304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470543808": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470543808", "variance": "INVARIANT"}}, "140042176783616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470544256"}, {"nodeId": "140042470544704"}]}}, "140042470544256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176784848"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176786080"}, {"nodeId": "140042176784960"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "140042176784848": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176784288"}]}}, "140042176784288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176786080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176784960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470544704": {"type": "Function", "content": {"typeVars": [".-1.140042470544704"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176785968"}, {"nodeId": ".-1.140042470544704"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176784400"}, {"nodeId": "140042176785856"}], "returnType": {"nodeId": ".-1.140042470544704"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "140042176785968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176786528"}]}}, "140042176786528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042470544704": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470544704", "variance": "INVARIANT"}}, "140042176784400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176785856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176785184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470545152"}, {"nodeId": "140042470545600"}]}}, "140042470545152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176786192"}, {"nodeId": "140042176786752"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176786640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}}, "140042176786192": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176784512"}]}}, "140042176784512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176786752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176786640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470545600": {"type": "Function", "content": {"typeVars": [".-1.140042470545600"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176787088"}, {"nodeId": "140042176787536"}, {"nodeId": ".-1.140042470545600"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176785520"}], "returnType": {"nodeId": ".-1.140042470545600"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}}, "140042176787088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176787312"}]}}, "140042176787312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176787536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470545600": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470545600", "variance": "INVARIANT"}}, "140042176785520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176786416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470546048"}, {"nodeId": "140042470546496"}]}}, "140042470546048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176788208"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176787872"}, {"nodeId": "140042176787200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "140042176788208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176788096"}]}}, "140042176788096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176787872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176787200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470546496": {"type": "Function", "content": {"typeVars": [".-1.140042470546496"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176787648"}, {"nodeId": ".-1.140042470546496"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176787424"}, {"nodeId": "140042176787984"}], "returnType": {"nodeId": ".-1.140042470546496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "140042176787648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176788320"}]}}, "140042176788320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042470546496": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470546496", "variance": "INVARIANT"}}, "140042176787424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176787984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210601760": {"type": "Function", "content": {"typeVars": [".-1.140042210601760"], "argTypes": [{"nodeId": ".-1.140042210601760"}, {"nodeId": "140042176786976"}], "returnType": {"nodeId": ".-1.140042210601760"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, ".-1.140042210601760": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042210601760", "variance": "INVARIANT"}}, "140042176786976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805152"}}}, "140042185805152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176787760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470547392"}, {"nodeId": "140042470547840"}]}}, "140042470547392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176788992"}, {"nodeId": "140042176788880"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176789104"}, {"nodeId": "140042176789216"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "140042176788992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176788544"}]}}, "140042176788544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176788880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176789104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176789216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470547840": {"type": "Function", "content": {"typeVars": [".-1.140042470547840"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176789552"}, {"nodeId": "140042176790112"}, {"nodeId": ".-1.140042470547840"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176788432"}, {"nodeId": "140042176790336"}], "returnType": {"nodeId": ".-1.140042470547840"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "140042176789552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176789776"}]}}, "140042176789776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176790112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470547840": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470547840", "variance": "INVARIANT"}}, "140042176788432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176790336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176788656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470548288"}, {"nodeId": "140042470548736"}]}}, "140042470548288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176789664"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042176789664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176790000"}]}}, "140042176790000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042470548736": {"type": "Function", "content": {"typeVars": [".-1.140042470548736"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176839856"}, {"nodeId": ".-1.140042470548736"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".-1.140042470548736"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042176839856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176839744"}]}}, "140042176839744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042470548736": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470548736", "variance": "INVARIANT"}}, "140042176790224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470549184"}, {"nodeId": "140042470549632"}]}}, "140042470549184": {"type": "Function", "content": {"typeVars": [".-1.140042470549184"], "argTypes": [{"nodeId": ".-1.140042470549184"}, {"nodeId": "140042307602208"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140042470549184"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, ".-1.140042470549184": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470549184", "variance": "INVARIANT"}}, "140042470549632": {"type": "Function", "content": {"typeVars": [".-1.140042470549632"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042307602208"}, {"nodeId": ".-1.140042470549632"}], "returnType": {"nodeId": ".-1.140042470549632"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, ".-1.140042470549632": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470549632", "variance": "INVARIANT"}}, "140042248484592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470550080"}, {"nodeId": "140042470550528"}]}}, "140042470550080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176840304"}, {"nodeId": "140042176840416"}, {"nodeId": "N"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176840528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "140042176840304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176840192"}]}}, "140042176840192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176840416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176840528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470550528": {"type": "Function", "content": {"typeVars": [".-1.140042470550528"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176840864"}, {"nodeId": "140042176841312"}, {"nodeId": ".-1.140042470550528"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176840080"}], "returnType": {"nodeId": ".-1.140042470550528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "140042176840864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176841088"}]}}, "140042176841088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176841312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470550528": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470550528", "variance": "INVARIANT"}}, "140042176840080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176839968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470550976"}, {"nodeId": "140042470551424"}]}}, "140042470550976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176841984"}, {"nodeId": "140042176841648"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176840976"}, {"nodeId": "140042176842544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "140042176841984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176841872"}]}}, "140042176841872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176841648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176840976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176842544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470551424": {"type": "Function", "content": {"typeVars": [".-1.140042470551424"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176841200"}, {"nodeId": "140042176842320"}, {"nodeId": ".-1.140042470551424"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176840752"}, {"nodeId": "140042176842880"}], "returnType": {"nodeId": ".-1.140042470551424"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "140042176841200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176842432"}]}}, "140042176842432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176842320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470551424": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470551424", "variance": "INVARIANT"}}, "140042176840752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042176842880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176841536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470551872"}, {"nodeId": "140042470552320"}]}}, "140042470551872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176843440"}, {"nodeId": "140042176843104"}, {"nodeId": "N"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176842656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "140042176843440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176841760"}]}}, "140042176841760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176843104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176842656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470552320": {"type": "Function", "content": {"typeVars": [".-1.140042470552320"], "argTypes": [{"nodeId": "140042185616096"}, {"nodeId": "140042176843216"}, {"nodeId": "140042176843552"}, {"nodeId": ".-1.140042470552320"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176841424"}], "returnType": {"nodeId": ".-1.140042470552320"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "140042176843216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176842768"}]}}, "140042176842768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176843552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470552320": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470552320", "variance": "INVARIANT"}}, "140042176841424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042143184064": {"type": "Function", "content": {"typeVars": [".-1.140042143184064"], "argTypes": [{"nodeId": ".-1.140042143184064"}], "returnType": {"nodeId": ".-1.140042143184064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143184064": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143184064", "variance": "INVARIANT"}}, "140042462027264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140042462027712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618208", "args": [{"nodeId": ".1.140042185618208"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462028160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618208", "args": [{"nodeId": ".1.140042185618208"}]}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462028608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618208", "args": [{"nodeId": ".1.140042185618208"}]}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462026816": {"type": "Function", "content": {"typeVars": [".-1.140042462026816"], "argTypes": [{"nodeId": ".-1.140042462026816"}], "returnType": {"nodeId": ".-1.140042462026816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462026816": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462026816", "variance": "INVARIANT"}}, "140042462029056": {"type": "Function", "content": {"typeVars": [".-1.140042462029056"], "argTypes": [{"nodeId": ".-1.140042462029056"}], "returnType": {"nodeId": ".-1.140042462029056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462029056": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462029056", "variance": "INVARIANT"}}, "140042462029504": {"type": "Function", "content": {"typeVars": [".-1.140042462029504"], "argTypes": [{"nodeId": ".-1.140042462029504"}], "returnType": {"nodeId": ".-1.140042462029504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462029504": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462029504", "variance": "INVARIANT"}}, "140042185613280": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_NumberOp", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449455808"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042449455808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185613280"}, {"nodeId": "140042248483024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248483024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042226922688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042226923248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042193429200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042193425392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042193431552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042193430096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042193432000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624864"}}}, "140042193429760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042248479104": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611872"}, {"nodeId": "140042248478992"}]}}, "140042248478992": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042248479328": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611872"}, {"nodeId": "140042248479216"}]}}, "140042248479216": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441110272": {"type": "Function", "content": {"typeVars": [".-1.140042441110272"], "argTypes": [{"nodeId": "140042185611872", "args": [{"nodeId": ".1.140042185611872"}]}, {"nodeId": "140042248479440"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248479552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248479440": {"type": "Union", "content": {"items": [{"nodeId": "140042185619968", "args": [{"nodeId": ".-1.140042441110272"}]}, {"nodeId": "140042180854176", "args": [{"nodeId": ".-1.140042441110272"}]}]}}, ".-1.140042441110272": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441110272", "variance": "INVARIANT"}}, "140042248479552": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185611872"}, {"nodeId": ".-1.140042441110272"}]}}, "140042185612224": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248478096"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185612224"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185612224": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185612224", "variance": "INVARIANT"}}, "140042248478096": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441110720"}, {"nodeId": "140042441111168"}, {"nodeId": "140042441111616"}, {"nodeId": "140042441112064"}]}}, "140042441110720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612224", "args": [{"nodeId": ".1.140042185612224"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": ".1.140042185612224"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441111168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612224", "args": [{"nodeId": ".1.140042185612224"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248479888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248479888": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612224"}, {"nodeId": "140042248479776"}]}}, "140042248479776": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441111616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612224", "args": [{"nodeId": ".1.140042185612224"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248480112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248480112": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612224"}, {"nodeId": "140042248480000"}]}}, "140042248480000": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441112064": {"type": "Function", "content": {"typeVars": [".-1.140042441112064"], "argTypes": [{"nodeId": "140042185612224", "args": [{"nodeId": ".1.140042185612224"}]}, {"nodeId": "140042248480224"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248480336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248480224": {"type": "Union", "content": {"items": [{"nodeId": "140042185619968", "args": [{"nodeId": ".-1.140042441112064"}]}, {"nodeId": "140042180854176", "args": [{"nodeId": ".-1.140042441112064"}]}]}}, ".-1.140042441112064": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441112064", "variance": "INVARIANT"}}, "140042248480336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185612224"}, {"nodeId": ".-1.140042441112064"}]}}, "140042185612576": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248478432"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185612576"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185612576": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185612576", "variance": "INVARIANT"}}, "140042248478432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441112512"}, {"nodeId": "140042441112960"}, {"nodeId": "140042449453120"}, {"nodeId": "140042449453568"}]}}, "140042441112512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612576", "args": [{"nodeId": ".1.140042185612576"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441112960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612576", "args": [{"nodeId": ".1.140042185612576"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449453120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185612576", "args": [{"nodeId": ".1.140042185612576"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449453568": {"type": "Function", "content": {"typeVars": [".-1.140042449453568"], "argTypes": [{"nodeId": "140042185612576", "args": [{"nodeId": ".1.140042185612576"}]}, {"nodeId": "140042248481344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248481344": {"type": "Union", "content": {"items": [{"nodeId": "140042185619968", "args": [{"nodeId": ".-1.140042449453568"}]}, {"nodeId": "140042180854176", "args": [{"nodeId": ".-1.140042449453568"}]}]}}, ".-1.140042449453568": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042449453568", "variance": "INVARIANT"}}, "140042441009728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185608704"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248580656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248580656": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185608704"}, {"nodeId": "140042248580544"}]}}, "140042248580544": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441010176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185608704"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248580880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248580880": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185608704"}, {"nodeId": "140042248580768"}]}}, "140042248580768": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441010624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185608704"}]}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248581104"}, {"nodeId": "140042248581328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248581104": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185608704"}, {"nodeId": "140042248580992"}]}}, "140042248580992": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042248581328": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185608704"}, {"nodeId": "140042248581216"}]}}, "140042248581216": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441011072": {"type": "Function", "content": {"typeVars": [".-1.140042441011072"], "argTypes": [{"nodeId": "140042185608704", "args": [{"nodeId": ".1.140042185608704"}]}, {"nodeId": "140042185619968", "args": [{"nodeId": ".-1.140042441011072"}]}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248581440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441011072": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441011072", "variance": "INVARIANT"}}, "140042248581440": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185608704"}, {"nodeId": ".-1.140042441011072"}]}}, "140042462193792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177433152"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177433152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462194240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177433376"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177433376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042202596064": {"type": "Function", "content": {"typeVars": [".-1.140042202596064"], "argTypes": [{"nodeId": ".-1.140042202596064"}], "returnType": {"nodeId": ".-1.140042202596064"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042202596064": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "def": "140042202596064", "variance": "INVARIANT"}}, "140042462195136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177433600"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177433600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462195584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177433824"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177433824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462196032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177434048"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177434048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462196480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177434272"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177434272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462196928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177434496"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177434496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462197376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177434720"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177434720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462197824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177434944"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177434944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462198272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177435168"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177435168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462198720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177435392"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177435392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462199168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185619968"}]}, {"nodeId": "140042177435616"}], "returnType": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177435616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042176674304": {"type": "Tuple", "content": {"items": [{"nodeId": "140042176674080"}]}}, "140042176674080": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}]}}, "140042491851520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}, {"nodeId": "140042176675088"}], "returnType": {"nodeId": ".1.140042181260768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176675088": {"type": "Union", "content": {"items": [{"nodeId": "140042176674528"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042176674976"}]}}, "140042176674528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042223044752"}}}, "140042223044752": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042219475952"}]}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}]}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "140042219475952": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}]}}, "140042307296544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042176674976": {"type": "Tuple", "content": {"items": [{"nodeId": "140042176674752"}]}}, "140042176674752": {"type": "Union", "content": {"items": [{"nodeId": "140042176674640"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}]}}, "140042176674640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042223044752"}}}, "140042491851968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}, {"nodeId": "140042176774208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042176774208": {"type": "Union", "content": {"items": [{"nodeId": "140042176675200"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042176675648"}]}}, "140042176675200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042223044752"}}}, "140042176675648": {"type": "Tuple", "content": {"items": [{"nodeId": "140042176675424"}]}}, "140042176675424": {"type": "Union", "content": {"items": [{"nodeId": "140042176675312"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}]}}, "140042176675312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042223044752"}}}, "140042176671504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210702976"}, {"nodeId": "140042491852864"}]}}, "140042210702976": {"type": "Function", "content": {"typeVars": [".-1.140042210702976"], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042210702976"}]}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042210702976"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.140042210702976": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042210702976", "variance": "INVARIANT"}}, "140042491852864": {"type": "Function", "content": {"typeVars": [".-1.140042491852864"], "argTypes": [{"nodeId": "140042181260768", "args": [{"nodeId": ".1.140042181260768"}]}, {"nodeId": ".-1.140042491852864"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042491852864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042491852864": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042491852864", "variance": "INVARIANT"}}, "140042177321264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042461837376"}, {"nodeId": "140042461837824"}]}}, "140042461837376": {"type": "Function", "content": {"typeVars": [".-1.140042461837376"], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "0"}, {"nodeId": "140042177323728"}, {"nodeId": "140042177323840"}, {"nodeId": "140042512503328"}, {"nodeId": "140042177323952"}], "returnType": {"nodeId": ".-1.140042461837376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "140042177323728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042177323840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042185809968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177323952": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042180856992"}]}}, "140042180856992": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "_CopyMode", "members": [{"kind": "Variable", "content": {"name": "ALWAYS", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IF_NEEDED", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "NEVER", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303205472"}], "isAbstract": false}}, "140042303205472": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252521024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252521696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303343184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252521920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252522144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378000224"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378000672"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378001120"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378001568"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042252521024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205472"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042252521696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303343184": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}}, "140042252521920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "140042252522144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "140042378000224": {"type": "Function", "content": {"typeVars": [".0.140042378000224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": ".0.140042378000224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140042378000224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303205472"}, "def": "140042378000224", "variance": "INVARIANT"}}, "140042378000672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205472"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378001120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205472"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140042378001568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205472"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, ".-1.140042461837376": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042461837376", "variance": "INVARIANT"}}, "140042461837824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "140042177324064"}, {"nodeId": "140042177324176"}, {"nodeId": "140042177324288"}, {"nodeId": "140042512503328"}, {"nodeId": "140042177324400"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "140042177324064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177324176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042177324288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042177324400": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042180856992"}]}}, "140042177322272": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042461838272"}, {"nodeId": "140042461838720"}, {"nodeId": "140042462019648"}]}}, "140042461838272": {"type": "Function", "content": {"typeVars": [".-1.140042461838272"], "argTypes": [{"nodeId": ".-1.140042461838272"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042461838272"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "type"]}}, ".-1.140042461838272": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042461838272", "variance": "INVARIANT"}}, "140042461838720": {"type": "Function", "content": {"typeVars": [".-1.140042461838720"], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042461838720"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, ".-1.140042461838720": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042461838720", "variance": "INVARIANT"}}, "140042462019648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "140042177325744"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, "140042177325744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177325520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462020096"}, {"nodeId": "140042462020544"}]}}, "140042462020096": {"type": "Function", "content": {"typeVars": [".-1.140042462020096"], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "0"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042462020096"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, ".-1.140042462020096": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462020096", "variance": "INVARIANT"}}, "140042462020544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "140042177326416"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "140042177326416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042462020992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "140042177327312"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177327312": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177326752"}, {"nodeId": "140042177326080"}]}}, "140042177326752": {"type": "Tuple", "content": {"items": []}}, "140042177326080": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042177326640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210181632"}, {"nodeId": "140042462021888"}, {"nodeId": "140042462022336"}]}}, "140042210181632": {"type": "Function", "content": {"typeVars": [".-1.140042210181632"], "argTypes": [{"nodeId": ".-1.140042210181632"}, {"nodeId": "140042177325184"}, {"nodeId": "140042177327200"}, {"nodeId": "N"}, {"nodeId": "140042177325632"}], "returnType": {"nodeId": ".-1.140042210181632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.140042210181632": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210181632", "variance": "INVARIANT"}}, "140042177325184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042177327200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042177325632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042462021888": {"type": "Function", "content": {"typeVars": [".-1.140042462021888"], "argTypes": [{"nodeId": ".-1.140042462021888"}, {"nodeId": "140042177327424"}, {"nodeId": "140042177327648"}, {"nodeId": "N"}, {"nodeId": "140042177327760"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042462021888"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.140042462021888": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462021888", "variance": "INVARIANT"}}, "140042177327424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177327648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042177327760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042462022336": {"type": "Function", "content": {"typeVars": [".-1.140042462022336"], "argTypes": [{"nodeId": "140042185617856"}, {"nodeId": "140042177326192"}, {"nodeId": "140042177327984"}, {"nodeId": ".-1.140042462022336"}, {"nodeId": "140042177328096"}], "returnType": {"nodeId": ".-1.140042462022336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "140042177326192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177327984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, ".-1.140042462022336": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042462022336", "variance": "INVARIANT"}}, "140042177328096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042210183872": {"type": "Function", "content": {"typeVars": [".-1.140042210183872"], "argTypes": [{"nodeId": ".-1.140042210183872"}, {"nodeId": "140042177328208"}, {"nodeId": "140042177328320"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210183872"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}}, ".-1.140042210183872": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210183872", "variance": "INVARIANT"}}, "140042177328208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177328320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042210188352": {"type": "Function", "content": {"typeVars": [".-1.140042210188352"], "argTypes": [{"nodeId": ".-1.140042210188352"}, {"nodeId": "140042177328544"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210188352"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.140042210188352": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210188352", "variance": "INVARIANT"}}, "140042177328544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042210187008": {"type": "Function", "content": {"typeVars": [".-1.140042210187008"], "argTypes": [{"nodeId": ".-1.140042210187008"}, {"nodeId": "140042177328768"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210187008"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.140042210187008": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210187008", "variance": "INVARIANT"}}, "140042177328768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042177326976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210187232"}, {"nodeId": "140042462024576"}]}}, "140042210187232": {"type": "Function", "content": {"typeVars": [".-1.140042210187232"], "argTypes": [{"nodeId": ".-1.140042210187232"}, {"nodeId": "140042177329216"}, {"nodeId": "140042177329328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210187232"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}}, ".-1.140042210187232": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210187232", "variance": "INVARIANT"}}, "140042177329216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042177329328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805488"}}}, "140042185805488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042462024576": {"type": "Function", "content": {"typeVars": [".-1.140042462024576"], "argTypes": [{"nodeId": ".-1.140042462024576"}, {"nodeId": "140042307602208"}, {"nodeId": "140042177329552"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042462024576"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}}, ".-1.140042462024576": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462024576", "variance": "INVARIANT"}}, "140042177329552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805488"}}}, "140042462025024": {"type": "Function", "content": {"typeVars": [".-1.140042462025024"], "argTypes": [{"nodeId": ".-1.140042462025024"}, {"nodeId": "140042177330112"}], "returnType": {"nodeId": ".-1.140042462025024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, ".-1.140042462025024": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462025024", "variance": "INVARIANT"}}, "140042177330112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042177330000"}]}}, "140042177330000": {"type": "Tuple", "content": {"items": []}}, "140042462025472": {"type": "Function", "content": {"typeVars": [".-1.140042462025472"], "argTypes": [{"nodeId": ".-1.140042462025472"}, {"nodeId": "140042177330448"}], "returnType": {"nodeId": ".-1.140042462025472"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.140042462025472": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042462025472", "variance": "INVARIANT"}}, "140042177330448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177330336"}]}}, "140042177330336": {"type": "Tuple", "content": {"items": []}}, "140042143179808": {"type": "Function", "content": {"typeVars": [".-1.140042143179808"], "argTypes": [{"nodeId": ".-1.140042143179808"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042143179808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143179808": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042143179808", "variance": "INVARIANT"}}, "140042219486928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}]}}, "140042248483472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504538816"}, {"nodeId": "140042504539264"}, {"nodeId": "140042504539712"}, {"nodeId": "140042504540160"}, {"nodeId": "140042504540608"}, {"nodeId": "140042504541056"}, {"nodeId": "140042504541504"}, {"nodeId": "140042504541952"}, {"nodeId": "140042504542400"}, {"nodeId": "140042504542848"}, {"nodeId": "140042504543296"}, {"nodeId": "140042504543744"}, {"nodeId": "140042504544192"}, {"nodeId": "140042504544640"}, {"nodeId": "140042504545088"}, {"nodeId": "140042504545536"}, {"nodeId": "140042504545984"}, {"nodeId": "140042504546432"}, {"nodeId": "140042504546880"}, {"nodeId": "140042504547328"}, {"nodeId": "140042504547776"}, {"nodeId": "140042504548224"}, {"nodeId": "140042504548672"}, {"nodeId": "140042504549120"}, {"nodeId": "140042504549568"}, {"nodeId": "140042504550016"}, {"nodeId": "140042504550464"}, {"nodeId": "140042504550912"}, {"nodeId": "140042504551360"}, {"nodeId": "140042504551808"}, {"nodeId": "140042496032832"}, {"nodeId": "140042496033280"}, {"nodeId": "140042496033728"}, {"nodeId": "140042496034176"}, {"nodeId": "140042496034624"}, {"nodeId": "140042496035072"}, {"nodeId": "140042496035520"}, {"nodeId": "140042496035968"}, {"nodeId": "140042496036416"}, {"nodeId": "140042496036864"}, {"nodeId": "140042496037312"}, {"nodeId": "140042496037760"}, {"nodeId": "140042496038208"}, {"nodeId": "140042496038656"}, {"nodeId": "140042496039104"}, {"nodeId": "140042496039552"}, {"nodeId": "140042496040000"}, {"nodeId": "140042496040448"}, {"nodeId": "140042496040896"}, {"nodeId": "140042496041344"}, {"nodeId": "140042496041792"}]}}, "140042504538816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042504539264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042504539712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248484704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248484704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042504540160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042248484816"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248484928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248484816": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042248484928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185814896"}]}}}, "140042185814896": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504540608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248485040"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248485040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042185815904"}, {"nodeId": "140042185816688"}]}}}, "140042185815904": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042185816688": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504541056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180856288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042180856288": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "str_", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177444016"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462522368"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462522816"}, "name": "tolist"}}], "typeVars": [], "bases": [{"nodeId": "140042180855584"}, {"nodeId": "140042307290208"}], "isAbstract": false}}, "140042177444016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462521472"}, {"nodeId": "140042462521920"}]}}, "140042462521472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856288"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042462521920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856288"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}}, "140042462522368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856288"}, {"nodeId": "140042177445472"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177445472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177445024"}, {"nodeId": "140042177445360"}]}}, "140042177445024": {"type": "Tuple", "content": {"items": []}}, "140042177445360": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042462522816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856288"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180855584": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "character", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462518784"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462519232"}, "name": "__float__"}}], "typeVars": [], "bases": [{"nodeId": "140042180854880"}], "isAbstract": true}}, "140042462518784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855584"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462519232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855584"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042180854880": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "flexible", "members": [], "typeVars": [], "bases": [{"nodeId": "140042185617856"}], "isAbstract": true}}, "140042504541504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042180855936": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "bytes_", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177443344"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462520576"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462521024"}, "name": "tolist"}}], "typeVars": [], "bases": [{"nodeId": "140042180855584"}, {"nodeId": "140042307290560"}], "isAbstract": false}}, "140042177443344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462519680"}, {"nodeId": "140042462520128"}]}}, "140042462519680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855936"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042462520128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855936"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}}, "140042462520576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855936"}, {"nodeId": "140042177444352"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177444352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042177443792"}, {"nodeId": "140042177444240"}]}}, "140042177443792": {"type": "Tuple", "content": {"items": []}}, "140042177444240": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042462521024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855936"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042504541952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042248485264"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248485376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248485264": {"type": "Union", "content": {"items": [{"nodeId": "140042248485152"}, {"nodeId": "0"}]}}, "140042248485152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214766656"}}}, "140042214766656": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042248485376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042185621024": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "unsignedinteger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462340800"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609760", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185609760", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610112", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185610112", "args": [{"nodeId": ".1.140042185621024"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042185621024"}], "bases": [{"nodeId": "140042185619968", "args": [{"nodeId": ".1.140042185621024"}]}], "isAbstract": false}}, ".1.140042185621024": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185621024", "variance": "INVARIANT"}}, "140042462340800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185621024", "args": [{"nodeId": ".1.140042185621024"}]}, {"nodeId": "140042177438528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042177438528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185811200"}}}, "140042185609056": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248578864"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185609056"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185609056": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185609056", "variance": "INVARIANT"}}, "140042248578864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441011520"}, {"nodeId": "140042441011968"}, {"nodeId": "140042441012416"}, {"nodeId": "140042441012864"}, {"nodeId": "140042441013312"}]}}, "140042441011520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185609056"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185621024", "args": [{"nodeId": ".1.140042185609056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441011968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185609056"}]}, {"nodeId": "140042248581776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248581776": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185620320", "args": [{"nodeId": "A"}]}]}}, "140042441012416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185609056"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248582112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248582112": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609056"}, {"nodeId": "140042248582000"}]}}, "140042248582000": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441012864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185609056"}]}, {"nodeId": "140042307289152"}], "returnType": {"nodeId": "140042180854528", "args": [{"nodeId": "140042248582336"}, {"nodeId": "140042248582560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248582336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609056"}, {"nodeId": "140042248582224"}]}}, "140042248582224": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042248582560": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609056"}, {"nodeId": "140042248582448"}]}}, "140042248582448": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441013312": {"type": "Function", "content": {"typeVars": [".-1.140042441013312"], "argTypes": [{"nodeId": "140042185609056", "args": [{"nodeId": ".1.140042185609056"}]}, {"nodeId": "140042185621024", "args": [{"nodeId": ".-1.140042441013312"}]}], "returnType": {"nodeId": "140042185621024", "args": [{"nodeId": "140042248582672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441013312": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441013312", "variance": "INVARIANT"}}, "140042248582672": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609056"}, {"nodeId": ".-1.140042441013312"}]}}, "140042185609408": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248580432"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185609408"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185609408": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185609408", "variance": "INVARIANT"}}, "140042248580432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441013760"}, {"nodeId": "140042441014208"}, {"nodeId": "140042441014656"}, {"nodeId": "140042441097280"}]}}, "140042441013760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185609408"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185621024", "args": [{"nodeId": ".1.140042185609408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441014208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185609408"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441014656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185609408"}]}, {"nodeId": "140042185620320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "140042185620320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441097280": {"type": "Function", "content": {"typeVars": [".-1.140042441097280"], "argTypes": [{"nodeId": "140042185609408", "args": [{"nodeId": ".1.140042185609408"}]}, {"nodeId": "140042185621024", "args": [{"nodeId": ".-1.140042441097280"}]}], "returnType": {"nodeId": "140042185621024", "args": [{"nodeId": "140042248584128"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441097280": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441097280", "variance": "INVARIANT"}}, "140042248584128": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609408"}, {"nodeId": ".-1.140042441097280"}]}}, "140042185609760": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248583904"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185609760"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185609760": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185609760", "variance": "INVARIANT"}}, "140042248583904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441097728"}, {"nodeId": "140042441098176"}, {"nodeId": "140042441098624"}, {"nodeId": "140042441099072"}]}}, "140042441097728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609760", "args": [{"nodeId": ".1.140042185609760"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185621024", "args": [{"nodeId": ".1.140042185609760"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441098176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609760", "args": [{"nodeId": ".1.140042185609760"}]}, {"nodeId": "140042248584912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248584912": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185620320", "args": [{"nodeId": "A"}]}]}}, "140042441098624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185609760", "args": [{"nodeId": ".1.140042185609760"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180854176", "args": [{"nodeId": "140042248470928"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248470928": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609760"}, {"nodeId": "140042248470816"}]}}, "140042248470816": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042441099072": {"type": "Function", "content": {"typeVars": [".-1.140042441099072"], "argTypes": [{"nodeId": "140042185609760", "args": [{"nodeId": ".1.140042185609760"}]}, {"nodeId": "140042185621024", "args": [{"nodeId": ".-1.140042441099072"}]}], "returnType": {"nodeId": "140042185621024", "args": [{"nodeId": "140042248471264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441099072": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441099072", "variance": "INVARIANT"}}, "140042248471264": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042185609760"}, {"nodeId": ".-1.140042441099072"}]}}, "140042185610112": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042214752656"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185610112"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185610112": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042185610112", "variance": "INVARIANT"}}, "140042214752656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441099520"}, {"nodeId": "140042441099968"}, {"nodeId": "140042441100416"}, {"nodeId": "140042441100864"}]}}, "140042441099520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610112", "args": [{"nodeId": ".1.140042185610112"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441099968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610112", "args": [{"nodeId": ".1.140042185610112"}]}, {"nodeId": "140042248472160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248472160": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042185620320", "args": [{"nodeId": "A"}]}]}}, "140042441100416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185610112", "args": [{"nodeId": ".1.140042185610112"}]}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441100864": {"type": "Function", "content": {"typeVars": [".-1.140042441100864"], "argTypes": [{"nodeId": "140042185610112", "args": [{"nodeId": ".1.140042185610112"}]}, {"nodeId": "140042185621024", "args": [{"nodeId": ".-1.140042441100864"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042441100864": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042441100864", "variance": "INVARIANT"}}, "140042504542400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042248485600"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248485712"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248485600": {"type": "Union", "content": {"items": [{"nodeId": "140042248485488"}, {"nodeId": "0"}]}}, "140042248485488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214767328"}}}, "140042214767328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042248485712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042504542848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042248485936"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248486048"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248485936": {"type": "Union", "content": {"items": [{"nodeId": "140042248485824"}, {"nodeId": "0"}]}}, "140042248485824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214768000"}}}, "140042214768000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042248486048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042504543296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042248486272"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248486384"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248486272": {"type": "Union", "content": {"items": [{"nodeId": "140042248486160"}, {"nodeId": "0"}]}}, "140042248486160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214899888"}}}, "140042214899888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042248486384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042504543744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042248486608"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042248486720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042248486608": {"type": "Union", "content": {"items": [{"nodeId": "140042248486496"}, {"nodeId": "0"}]}}, "140042248486496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214910976"}}}, "140042214910976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042248486720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185812768"}]}}}, "140042185812768": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504544192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176659632"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176659744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176659632": {"type": "Union", "content": {"items": [{"nodeId": "140042176659520"}, {"nodeId": "0"}]}}, "140042176659520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214911648"}}}, "140042214911648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176659744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813328"}]}}}, "140042185813328": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504544640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176659968"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176660080"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176659968": {"type": "Union", "content": {"items": [{"nodeId": "140042176659856"}, {"nodeId": "0"}]}}, "140042176659856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214912320"}}}, "140042214912320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176660080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813440"}]}}}, "140042185813440": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504545088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176660304"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176660416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176660304": {"type": "Union", "content": {"items": [{"nodeId": "140042176660192"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176660192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214913216"}}}, "140042214913216": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176660416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813552"}]}}}, "140042185813552": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504545536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176660640"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176660752"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176660640": {"type": "Union", "content": {"items": [{"nodeId": "140042176660528"}, {"nodeId": "0"}]}}, "140042176660528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214914000"}}}, "140042214914000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176660752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042185813664": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504545984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176660976"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176661088"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176660976": {"type": "Union", "content": {"items": [{"nodeId": "140042176660864"}, {"nodeId": "0"}]}}, "140042176660864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214914560"}}}, "140042214914560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176661088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813776"}]}}}, "140042185813776": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504546432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176661312"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176661424"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176661312": {"type": "Union", "content": {"items": [{"nodeId": "140042176661200"}, {"nodeId": "0"}]}}, "140042176661200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214900560"}}}, "140042214900560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176661424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042504546880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176661648"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176661760"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176661648": {"type": "Union", "content": {"items": [{"nodeId": "140042176661536"}, {"nodeId": "0"}]}}, "140042176661536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901232"}}}, "140042214901232": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176661760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042504547328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176661984"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176662096"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176661984": {"type": "Union", "content": {"items": [{"nodeId": "140042176661872"}, {"nodeId": "0"}]}}, "140042176661872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901904"}}}, "140042214901904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176662096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042504547776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176662320"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176662432"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176662320": {"type": "Union", "content": {"items": [{"nodeId": "140042176662208"}, {"nodeId": "0"}]}}, "140042176662208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214902576"}}}, "140042214902576": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176662432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042504548224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176662656"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176662768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176662656": {"type": "Union", "content": {"items": [{"nodeId": "140042176662544"}, {"nodeId": "0"}]}}, "140042176662544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214906608"}}}, "140042214906608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176662768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185811312"}]}}}, "140042185811312": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504548672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176662992"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176663104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176662992": {"type": "Union", "content": {"items": [{"nodeId": "140042176662880"}, {"nodeId": "0"}]}}, "140042176662880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214907280"}}}, "140042214907280": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176663104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812208"}]}}}, "140042185812208": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504549120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176663328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176663440"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176663328": {"type": "Union", "content": {"items": [{"nodeId": "140042176663216"}, {"nodeId": "0"}]}}, "140042176663216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214907952"}}}, "140042214907952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176663440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812320"}]}}}, "140042185812320": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504549568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176663664"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176663776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176663664": {"type": "Union", "content": {"items": [{"nodeId": "140042176663552"}, {"nodeId": "0"}]}}, "140042176663552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214908848"}}}, "140042214908848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176663776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042504550016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176664000"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176664112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176664000": {"type": "Union", "content": {"items": [{"nodeId": "140042176663888"}, {"nodeId": "0"}]}}, "140042176663888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214909856"}}}, "140042214909856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176664112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042504550464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176664336"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176664448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176664336": {"type": "Union", "content": {"items": [{"nodeId": "140042176664224"}, {"nodeId": "0"}]}}, "140042176664224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214910304"}}}, "140042214910304": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176664448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812656"}]}}}, "140042185812656": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042504550912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176664560"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176664672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176664560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214903248"}}}, "140042214903248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176664672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189952224"}]}}}, "140042504551360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176664784"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176664896"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176664784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214903920"}}}, "140042214903920": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176664896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042504551808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176665008"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176665120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176665008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214904592"}}}, "140042214904592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176665120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042496032832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176665232"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176665344"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176665232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214915232"}}}, "140042214915232": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176665344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185814336"}]}}}, "140042185814336": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496033280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176665568"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176665680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176665568": {"type": "Union", "content": {"items": [{"nodeId": "140042176665456"}, {"nodeId": "0"}]}}, "140042176665456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214915904"}}}, "140042214915904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176665680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185814672"}]}}}, "140042185814672": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496033728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176665904"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176666016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176665904": {"type": "Union", "content": {"items": [{"nodeId": "140042176665792"}, {"nodeId": "0"}]}}, "140042176665792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214966320"}}}, "140042214966320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176666016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185814784"}]}}}, "140042185814784": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496034176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176666240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176666352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176666240": {"type": "Union", "content": {"items": [{"nodeId": "140042176666128"}, {"nodeId": "0"}]}}, "140042176666128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214966992"}}}, "140042214966992": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176666352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185815008"}]}}}, "140042185815008": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496034624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176666464"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176666576"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176666464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214905264"}}}, "140042214905264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176666576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042189951872"}, {"nodeId": "140042189951872"}]}}}, "140042496035072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176666688"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176666800"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176666688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214905936"}}}, "140042214905936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176666800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042189951520"}, {"nodeId": "140042189951520"}]}}}, "140042496035520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176666912"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176667024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176666912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214967776"}}}, "140042214967776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176667024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042185815232"}, {"nodeId": "140042185816016"}]}}}, "140042185815232": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042185816016": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496035968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176667136"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176667248"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176667136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214969008"}}}, "140042214969008": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176667248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042185815792"}, {"nodeId": "140042185816464"}]}}}, "140042185815792": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042185816464": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496036416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176667360"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042176667472"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176667360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214969792"}}}, "140042214969792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176667472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042185816352"}, {"nodeId": "140042185817136"}]}}}, "140042185816352": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042185817136": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042496036864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176667696"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176667696": {"type": "Union", "content": {"items": [{"nodeId": "140042176667584"}, {"nodeId": "0"}]}}, "140042176667584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214766208"}}}, "140042214766208": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042496037312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176667808"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176667808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042215044848"}}}, "140042215044848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042185620672": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "timedelta64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462331392"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143554176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143554624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462332736"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462333184"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462333632"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462334080"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462334528"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462334976"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462335424"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462335872"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462336320"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462336768"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462337216"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462337664"}, "name": "__rmul__"}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185608352", "args": [{"nodeId": "140042226915968"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185608352", "args": [{"nodeId": "140042185812992"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462338112"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462338560"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462339008"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462339456"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462339904"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462340352"}, "name": "__rdivmod__"}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042226916528"}, {"nodeId": "140042226916080"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042198399712"}, {"nodeId": "140042198387840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042198400384"}, {"nodeId": "140042198399376"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042198400048"}, {"nodeId": "140042198399488"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042185617856"}], "isAbstract": false}}, "140042462331392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177436064"}, {"nodeId": "140042177436736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "140042177436064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042177435952"}, {"nodeId": "140042198142112"}, {"nodeId": "140042185620672"}]}}, "140042177435952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042198142112": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391326944"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193495520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193496640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193497536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391328736"}, "name": "total_seconds"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391329184"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391329632"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391330080"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391330528"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391330976"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391331424"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391331872"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391332320"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391332768"}, "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042198391984"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042198393664"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391335008"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391335456"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391335904"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391336352"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391336800"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391337248"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391337696"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042391326944": {"type": "Function", "content": {"typeVars": [".0.140042391326944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": ".0.140042391326944"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks"]}}, ".0.140042391326944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142112"}, "def": "140042391326944", "variance": "INVARIANT"}}, "140042193495520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193496640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193497536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042391328736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042391329184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391329632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391330080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391330528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391330976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042391331424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042391331872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042391332320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391332768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198391984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042391333216"}, {"nodeId": "140042391333664"}]}}, "140042391333216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391333664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198393664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042391334112"}, {"nodeId": "140042391334560"}]}}, "140042391334112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391334560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391335008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391335456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042198394896"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198394896": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042198142112"}]}}, "140042391335904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391336352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391336800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391337248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391337696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142112"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177436736": {"type": "Union", "content": {"items": [{"nodeId": "140042177436176"}, {"nodeId": "140042177436624"}]}}, "140042177436176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042177436624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042177436288"}, {"nodeId": "140042177436400"}]}}, "140042177436288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042177436400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042143554176": {"type": "Function", "content": {"typeVars": [".-1.140042143554176"], "argTypes": [{"nodeId": ".-1.140042143554176"}], "returnType": {"nodeId": ".-1.140042143554176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143554176": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042143554176", "variance": "INVARIANT"}}, "140042143554624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042462332736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462333184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462333632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462334080": {"type": "Function", "content": {"typeVars": [".-1.140042462334080"], "argTypes": [{"nodeId": ".-1.140042462334080"}], "returnType": {"nodeId": ".-1.140042462334080"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462334080": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462334080", "variance": "INVARIANT"}}, "140042462334528": {"type": "Function", "content": {"typeVars": [".-1.140042462334528"], "argTypes": [{"nodeId": ".-1.140042462334528"}], "returnType": {"nodeId": ".-1.140042462334528"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462334528": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462334528", "variance": "INVARIANT"}}, "140042462334976": {"type": "Function", "content": {"typeVars": [".-1.140042462334976"], "argTypes": [{"nodeId": ".-1.140042462334976"}], "returnType": {"nodeId": ".-1.140042462334976"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042462334976": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042462334976", "variance": "INVARIANT"}}, "140042462335424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177436960"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177436960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042189624752": {"type": "Union", "content": {"items": [{"nodeId": "140042189626544"}, {"nodeId": "140042185620672"}]}}, "140042189626544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462335872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177437184"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042462336320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177437296"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042462336768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177437408"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042462337216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177437520"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627104"}}}, "140042189627104": {"type": "Union", "content": {"items": [{"nodeId": "140042189630016"}, {"nodeId": "140042512514592"}, {"nodeId": "140042180854176", "args": [{"nodeId": "A"}]}]}}, "140042189630016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462337664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042177437072"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627104"}}}, "140042185608352": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_TD64Div", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042248577744"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042185608352"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042185608352": {"type": "TypeVar", "content": {"varName": "_NumberType_co", "values": [], "upperBound": {"nodeId": "140042185618208", "args": [{"nodeId": "A"}]}, "def": "140042185608352", "variance": "COVARIANT"}}, "140042248577744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441007936"}, {"nodeId": "140042441008384"}, {"nodeId": "140042441008832"}]}}, "140042441007936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608352", "args": [{"nodeId": ".1.140042185608352"}]}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": ".1.140042185608352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441008384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608352", "args": [{"nodeId": ".1.140042185608352"}]}, {"nodeId": "140042248580208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248580208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189630240"}}}, "140042441008832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185608352", "args": [{"nodeId": ".1.140042185608352"}]}, {"nodeId": "140042248580320"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042248580320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627104"}}}, "140042226915968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042185812992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042462338112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042177437632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042462338560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042177437744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177437744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042462339008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042462339456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042462339904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042177438080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177438080": {"type": "Tuple", "content": {"items": [{"nodeId": "140042177437856"}, {"nodeId": "140042185620672"}]}}, "140042177437856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042462340352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185620672"}, {"nodeId": "140042185620672"}], "returnType": {"nodeId": "140042177438416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042177438416": {"type": "Tuple", "content": {"items": [{"nodeId": "140042177438192"}, {"nodeId": "140042185620672"}]}}, "140042177438192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042226916528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042226916080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042198399712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042198387840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042198400384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042198399376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042198400048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042198399488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042496037760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176667920"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042185619616"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176667920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042215031744"}}}, "140042215031744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042185619616": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "datetime64", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177328880"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462187520"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462187968"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177281520"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462189312"}, "name": "__rsub__"}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042185619616"}, {"nodeId": "140042198386832"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042185619616"}, {"nodeId": "140042198394672"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042185619616"}, {"nodeId": "140042198399600"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185614336", "args": [{"nodeId": "140042185619616"}, {"nodeId": "140042198387056"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042185617856"}], "isAbstract": false}}, "140042177328880": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462186624"}, {"nodeId": "140042462187072"}]}}, "140042462186624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042177430128"}, {"nodeId": "140042177430800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "140042177430128": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185619616"}, {"nodeId": "140042177430016"}, {"nodeId": "140042185619264"}]}}, "140042177430016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042185619264": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_DatetimeScalar", "members": [{"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143220896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143221344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143221568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["day", "month", "year"]}}, "140042143220896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143221344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143221568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177430800": {"type": "Union", "content": {"items": [{"nodeId": "140042177430240"}, {"nodeId": "140042177430688"}]}}, "140042177430240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042177430688": {"type": "Tuple", "content": {"items": [{"nodeId": "140042177430352"}, {"nodeId": "140042177430464"}]}}, "140042177430352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042177430464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462187072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042512514240"}, {"nodeId": "140042177431472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042177431472": {"type": "Union", "content": {"items": [{"nodeId": "140042177430912"}, {"nodeId": "140042177431360"}]}}, "140042177430912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042177431360": {"type": "Tuple", "content": {"items": [{"nodeId": "140042177431024"}, {"nodeId": "140042177431136"}]}}, "140042177431024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189806432"}}}, "140042177431136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462187520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042177431584"}], "returnType": {"nodeId": "140042185619616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177431584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042462187968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042177431808"}], "returnType": {"nodeId": "140042185619616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177431808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042177281520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462188416"}, {"nodeId": "140042462188864"}]}}, "140042462188416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042185619616"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042462188864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042177431696"}], "returnType": {"nodeId": "140042185619616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177431696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189624752"}}}, "140042462189312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185619616"}, {"nodeId": "140042185619616"}], "returnType": {"nodeId": "140042185620672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198386832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042190084512": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185619616"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185619616"}]}]}]}]}}, "140042189948000": {"type": "Protocol", "content": {"module": "numpy._typing._array_like", "simpleName": "_SupportsArray", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366346720"}, "name": "__array__"}}], "typeVars": [{"nodeId": ".1.140042189948000"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__array__"]}}, ".1.140042189948000": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042189948000", "variance": "COVARIANT"}}, "140042366346720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189948000", "args": [{"nodeId": ".1.140042189948000"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".1.140042189948000"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198394672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042198399600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042198387056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042496038208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176668032"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180856288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176668032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214971136"}}}, "140042214971136": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042496038656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176668256"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176668256": {"type": "Union", "content": {"items": [{"nodeId": "140042176668144"}, {"nodeId": "0"}]}}, "140042176668144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214971808"}}}, "140042214971808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042496039104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176668368"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176668368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214972480"}}}, "140042214972480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042180855232": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "void", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177431920"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143946496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143946944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462516992"}, "name": "setfield"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177441104"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462518336"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042180854880"}], "isAbstract": false}}, "140042177431920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462515200"}, {"nodeId": "140042462515648"}]}}, "140042462515200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855232"}, {"nodeId": "140042177442672"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, "dtype"]}}, "140042177442672": {"type": "Union", "content": {"items": [{"nodeId": "140042177442560"}, {"nodeId": "140042307290560"}]}}, "140042177442560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042462515648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855232"}, {"nodeId": "A"}, {"nodeId": "140042177442896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, "dtype"]}}, "140042177442896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231255488"}}}, "140042231255488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042198150208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042231255600"}, {"nodeId": "140042231255824"}]}}, "140042231255600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214972480"}}}, "140042231255824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813712"}}}, "140042143946496": {"type": "Function", "content": {"typeVars": [".-1.140042143946496"], "argTypes": [{"nodeId": ".-1.140042143946496"}], "returnType": {"nodeId": ".-1.140042143946496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143946496": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143946496", "variance": "INVARIANT"}}, "140042143946944": {"type": "Function", "content": {"typeVars": [".-1.140042143946944"], "argTypes": [{"nodeId": ".-1.140042143946944"}], "returnType": {"nodeId": ".-1.140042143946944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143946944": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143946944", "variance": "INVARIANT"}}, "140042462516992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855232"}, {"nodeId": "140042177444464"}, {"nodeId": "140042177443120"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}}, "140042177444464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177443120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177441104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042462517440"}, {"nodeId": "140042462517888"}]}}, "140042462517440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855232"}, {"nodeId": "140042177443904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177443904": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307602208"}]}}, "140042462517888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855232"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042180855232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042462518336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180855232"}, {"nodeId": "140042177444576"}, {"nodeId": "140042177443008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042177444576": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307602208"}]}}, "140042177443008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042496039552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176668704"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176668704": {"type": "Union", "content": {"items": [{"nodeId": "140042176668480"}, {"nodeId": "0"}]}}, "140042176668480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214973264"}}}, "140042214973264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042185618912": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "object_", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462034880"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143219776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143220224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462183936"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462184384"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042462184832"}, "name": "__complex__"}}], "typeVars": [], "bases": [{"nodeId": "140042185617856"}], "isAbstract": false}}, "140042462034880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618912"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042143219776": {"type": "Function", "content": {"typeVars": [".-1.140042143219776"], "argTypes": [{"nodeId": ".-1.140042143219776"}], "returnType": {"nodeId": ".-1.140042143219776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143219776": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143219776", "variance": "INVARIANT"}}, "140042143220224": {"type": "Function", "content": {"typeVars": [".-1.140042143220224"], "argTypes": [{"nodeId": ".-1.140042143220224"}], "returnType": {"nodeId": ".-1.140042143220224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042143220224": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042143220224", "variance": "INVARIANT"}}, "140042462183936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618912"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462184384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618912"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042462184832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185618912"}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042496040000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042496040448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}]}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042496040896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042496041344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176668928"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042176668928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813712"}}}, "140042496041792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "140042496042240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140042248484032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042504538368"}, {"nodeId": "140042496042688"}]}}, "140042504538368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042496042688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, {"nodeId": "140042176669712"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176669712": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307602208"}]}}, "140042185554320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042496043136"}, {"nodeId": "140042496043584"}, {"nodeId": "140042496044480"}]}}, "140042496043136": {"type": "Function", "content": {"typeVars": [".-1.140042496043136"], "argTypes": [{"nodeId": ".-1.140042496043136"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042496043136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042496043136": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042496043136", "variance": "INVARIANT"}}, "140042496043584": {"type": "Function", "content": {"typeVars": [".-1.140042496043584"], "argTypes": [{"nodeId": ".-1.140042496043584"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042496043584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042496043584": {"type": "TypeVar", "content": {"varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180854880"}]}, "def": "140042496043584", "variance": "INVARIANT"}}, "140042496044480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176669376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042496044032"}, {"nodeId": "140042496045376"}]}}, "140042496044032": {"type": "Function", "content": {"typeVars": [".-1.140042496044032"], "argTypes": [{"nodeId": ".-1.140042496044032"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042496044032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042496044032": {"type": "TypeVar", "content": {"varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180854880"}]}, "def": "140042496044032", "variance": "INVARIANT"}}, "140042496045376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042496045824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042176669824"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176669824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042496046272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042176670384"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176670384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042496046720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042176670160"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176670160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042496047168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "140042176670720"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176670720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042496047616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042496048064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042147389600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147420352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147420576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147420800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147421024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042176670048"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176670048": {"type": "Union", "content": {"items": [{"nodeId": "140042176670832"}, {"nodeId": "140042176669600"}]}}, "140042176670832": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042176669600": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042176671392"}]}}, "140042176671392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042147421248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042176672288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176672288": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302637152", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042176672176"}]}]}}, "140042176672176": {"type": "Union", "content": {"items": [{"nodeId": "140042176671168"}, {"nodeId": "140042176672064"}]}}, "140042176671168": {"type": "Tuple", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}]}}, "140042176672064": {"type": "Tuple", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}, {"nodeId": "A"}]}}, "140042147421472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147421696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147421920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147422144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147422368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147422592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147422816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147423040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042176672512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176672512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302637152", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042147423264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147423488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147423712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042176672624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176672624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042147423936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147424160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042176673184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176673184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176673072"}]}}, "140042176673072": {"type": "Tuple", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, {"nodeId": "140042176672848"}]}}, "140042176672848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042210702080": {"type": "Function", "content": {"typeVars": [".-1.140042210702080"], "argTypes": [{"nodeId": ".-1.140042210702080"}, {"nodeId": "140042176673296"}], "returnType": {"nodeId": ".-1.140042210702080"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, ".-1.140042210702080": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042210702080", "variance": "INVARIANT"}}, "140042176673296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805152"}}}, "140042147424384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147424608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181260416"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147857344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042176844448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176844448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "140042147857120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042147857792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176843328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210596832"}]}}, "140042210596832": {"type": "Function", "content": {"typeVars": [".-1.140042210596832"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185616800", "args": [{"nodeId": ".-1.140042210596832"}]}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210596832"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042185616800": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147723328"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042185616800"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["real"]}}, ".1.140042185616800": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042185616800", "variance": "COVARIANT"}}, "140042147723328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616800", "args": [{"nodeId": ".1.140042185616800"}]}], "returnType": {"nodeId": ".1.140042185616800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042210596832": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210596832", "variance": "INVARIANT"}}, "140042147858016": {"type": "Function", "content": {"typeVars": [".-1.140042147858016"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185616800", "args": [{"nodeId": ".-1.140042147858016"}]}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042147858016"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042147858016": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042147858016", "variance": "INVARIANT"}}, "140042176844112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210598848"}]}}, "140042210598848": {"type": "Function", "content": {"typeVars": [".-1.140042210598848"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185617152", "args": [{"nodeId": ".-1.140042210598848"}]}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210598848"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042185617152": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147724672"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042185617152"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["imag"]}}, ".1.140042185617152": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042185617152", "variance": "COVARIANT"}}, "140042147724672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617152", "args": [{"nodeId": ".1.140042185617152"}]}], "returnType": {"nodeId": ".1.140042185617152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042210598848": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210598848", "variance": "INVARIANT"}}, "140042147858240": {"type": "Function", "content": {"typeVars": [".-1.140042147858240"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185617152", "args": [{"nodeId": ".-1.140042147858240"}]}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042147858240"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042147858240": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042147858240", "variance": "INVARIANT"}}, "140042210598400": {"type": "Function", "content": {"typeVars": [".-1.140042210598400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176843776"}, {"nodeId": "140042176844560"}, {"nodeId": "140042176844896"}, {"nodeId": "140042307602208"}, {"nodeId": "140042176844784"}, {"nodeId": "140042176845232"}], "returnType": {"nodeId": ".-1.140042210598400"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "shape", "dtype", "buffer", "offset", "strides", "order"]}}, "140042176843776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176844560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176844896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176844224"}]}}, "140042176844224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042227340720"}}}, "140042227340720": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}, {"nodeId": "140042307291264"}, {"nodeId": "140042215086336", "args": [{"nodeId": "A"}]}, {"nodeId": "140042202210976"}, {"nodeId": "0"}, {"nodeId": "140042185617856"}]}}, "140042215086336": {"type": "Concrete", "content": {"module": "array", "simpleName": "array", "members": [{"kind": "Variable", "content": {"name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042206522368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042206524384"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042206681728"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386429472"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386429920"}, "name": "buffer_info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386430368"}, "name": "byteswap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386430816"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386431264"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386431712"}, "name": "frombytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042231696736"}, "name": "fromfile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386432608"}, "name": "fromlist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386433056"}, "name": "fromunicode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386433504"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386434400"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386434848"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386435296"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386435744"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386436192"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386436640"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386437088"}, "name": "tounicode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386438432"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042206681840"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042206682064"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386621152"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386621600"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386622048"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386622496"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386622944"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386623392"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386623840"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386624288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386624736"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386625184"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386625632"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386626080"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386626528"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386626976"}, "name": "__release_buffer__"}}], "typeVars": [{"nodeId": ".1.140042215086336"}], "bases": [{"nodeId": "140042512511424", "args": [{"nodeId": ".1.140042215086336"}]}], "isAbstract": false}}, ".1.140042215086336": {"type": "TypeVar", "content": {"varName": "_T", "values": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042307290208"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042215086336", "variance": "INVARIANT"}}, "140042206522368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042206681952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042206681952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206681504"}}}, "140042206681504": {"type": "Union", "content": {"items": [{"nodeId": "140042206679264"}, {"nodeId": "140042206680272"}, {"nodeId": "140042206680048"}]}}, "140042206679264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206681392"}}}, "140042206681392": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042206680272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206679488"}}}, "140042206679488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042206680048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042206524384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042206681728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206565024"}, {"nodeId": "140042214473312"}, {"nodeId": "140042206563456"}, {"nodeId": "140042386428576"}, {"nodeId": "140042206564800"}]}}, "140042206565024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042206682176"}, {"nodeId": "140042206682288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042206682176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206681392"}}}, "140042206682288": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512514240"}]}]}}, "140042214473312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": "140042512514592"}]}, {"nodeId": "140042206679936"}, {"nodeId": "140042206682512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042206679936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206679488"}}}, "140042206682512": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512514592"}]}]}}, "140042206563456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042206682624"}, {"nodeId": "140042206682736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042206682624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042206682736": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}]}}, "140042386428576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042206564800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042206682848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042206682848": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042386429472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": ".1.140042215086336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386429920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042206683072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042206683072": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042386430368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042386430816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": ".1.140042215086336"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386431264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386431712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042231696736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042298391744", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042298391744": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474642496"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140042298391744"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["read"]}}, ".1.140042298391744": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298391744", "variance": "COVARIANT"}}, "140042474642496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298391744", "args": [{"nodeId": ".1.140042298391744"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042298391744"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042386432608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386433056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386433504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": ".1.140042215086336"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042386434400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042512514240"}, {"nodeId": ".1.140042215086336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042386434848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042215086336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042386435296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": ".1.140042215086336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386435744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042386436192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042298605984", "args": [{"nodeId": "140042307290560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042298605984": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474643840"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140042298605984"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["write"]}}, ".1.140042298605984": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298605984", "variance": "CONTRAVARIANT"}}, "140042474643840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298605984", "args": [{"nodeId": ".1.140042298605984"}]}, {"nodeId": ".1.140042298605984"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386436640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042386437088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042386438432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042206681840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042386438880"}, {"nodeId": "140042386439328"}]}}, "140042386438880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".1.140042215086336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386439328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042206682064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042386439776"}, {"nodeId": "140042386620704"}]}}, "140042386439776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307614176"}, {"nodeId": ".1.140042215086336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042386620704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307291616"}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042386621152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042206683408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042206683408": {"type": "Union", "content": {"items": [{"nodeId": "140042307614176"}, {"nodeId": "140042307291616"}]}}, "140042386621600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386622048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386622496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386622944": {"type": "Function", "content": {"typeVars": [".0.140042386622944"], "argTypes": [{"nodeId": ".0.140042386622944"}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": ".0.140042386622944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042386622944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "def": "140042386622944", "variance": "INVARIANT"}}, "140042386623392": {"type": "Function", "content": {"typeVars": [".0.140042386623392"], "argTypes": [{"nodeId": ".0.140042386623392"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042386623392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042386623392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "def": "140042386623392", "variance": "INVARIANT"}}, "140042386623840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386624288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386624736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386625184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042386625632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}], "returnType": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042386626080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386626528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042386626976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215086336", "args": [{"nodeId": ".1.140042215086336"}]}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042202210976": {"type": "Concrete", "content": {"module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382761696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382762144"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382762592"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382763488"}, "name": "move"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382763936"}, "name": "read_byte"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382764384"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382764832"}, "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382765280"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382765728"}, "name": "size"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382766176"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382766624"}, "name": "write_byte"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382767072"}, "name": "__len__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382767520"}, "name": "madvise"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382767968"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382768416"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382768864"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382769312"}, "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202732848"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383033056"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202732960"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383034400"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383034848"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383035296"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383035744"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383036192"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383036640"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307602560"}], "isAbstract": false}}, "140042382761696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fileno", "length", "flags", "prot", "access", "offset"]}}, "140042382762144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042382762592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}}, "140042382763488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}}, "140042382763936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042382764384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042382764832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}}, "140042382765280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}}, "140042382765728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042382766176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042382766624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}}, "140042382767072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042382767520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}}, "140042382767968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}}, "140042382768416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}}, "140042382768864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042202733184"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140042202733184": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042382769312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}}, "140042202732848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042382769760"}, {"nodeId": "140042383032608"}]}}, "140042382769760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042383032608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042383033056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042202733520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042202733520": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307291616"}]}}, "140042202732960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042383033504"}, {"nodeId": "140042383033952"}]}}, "140042383033504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042383033952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042383034400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042383034848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042383035296": {"type": "Function", "content": {"typeVars": [".0.140042383035296"], "argTypes": [{"nodeId": ".0.140042383035296"}], "returnType": {"nodeId": ".0.140042383035296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042383035296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042202210976"}, "def": "140042383035296", "variance": "INVARIANT"}}, "140042383035744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140042383036192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042383036640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210976"}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042176844784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176844672"}]}}, "140042176844672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176845232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, ".-1.140042210598400": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042210598400", "variance": "INVARIANT"}}, "140042470770944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "140042176845008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470771392"}, {"nodeId": "140042470771840"}]}}, "140042470771392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "140042470771840": {"type": "Function", "content": {"typeVars": [".-1.140042470771840"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": ".-1.140042470771840"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042470771840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042470771840": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042470771840", "variance": "INVARIANT"}}, "140042470772288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042180856640"}, {"nodeId": "140042176846464"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "140042180856640": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ufunc", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143952096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143952992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189190112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143953216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143953440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143953664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143953888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "types", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143954112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143954336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042143954560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042143952096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143952992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189190112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042143953216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143953440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143953664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143953888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143954112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143954336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042143954560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180856640"}], "returnType": {"nodeId": "140042177445696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177445696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042176846464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042470772736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042210600640"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}}, "140042210600640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042470773184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176847584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176847584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042470773632": {"type": "Function", "content": {"typeVars": [".-1.140042470773632", ".-2.140042470773632"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042185617504", "args": [{"nodeId": ".-1.140042470773632"}, {"nodeId": ".-2.140042470773632"}]}, {"nodeId": "140042176848032"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".-1.140042470773632"}, {"nodeId": ".-2.140042470773632"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, ".-1.140042470773632": {"type": "TypeVar", "content": {"varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042470773632", "variance": "INVARIANT"}}, ".-2.140042470773632": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042470773632", "variance": "INVARIANT"}}, "140042176848032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176847920"}]}}, "140042176847920": {"type": "Tuple", "content": {"items": [{"nodeId": "140042180856640"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}]}}, "140042470774080": {"type": "Function", "content": {"typeVars": [".-1.140042470774080", ".-2.140042470774080"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042185617504", "args": [{"nodeId": ".-1.140042470774080"}, {"nodeId": ".-2.140042470774080"}]}, {"nodeId": "140042176848480"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".-1.140042470774080"}, {"nodeId": ".-2.140042470774080"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, ".-1.140042470774080": {"type": "TypeVar", "content": {"varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042470774080", "variance": "INVARIANT"}}, ".-2.140042470774080": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042470774080", "variance": "INVARIANT"}}, "140042176848480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176848368"}]}}, "140042176848368": {"type": "Tuple", "content": {"items": [{"nodeId": "140042180856640"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}]}}, "140042176845568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470774528"}, {"nodeId": "140042470774976"}, {"nodeId": "140042470775424"}, {"nodeId": "140042470775872"}, {"nodeId": "140042470776320"}]}}, "140042470774528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176849488"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176849488": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042176849376"}]}]}}, "140042176849376": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042470774976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176849712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176849712": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307602208"}]}]}}, "140042470775424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176850272"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176850272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042307602208"}, {"nodeId": "140042176849936"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042176850160"}]}]}}, "140042176849936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176850160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042176850048"}, {"nodeId": "140042307602208"}]}}, "140042176850048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470775872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042470776320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042147858688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042185614688", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176845344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470777216"}]}}, "140042470777216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042176851056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176851056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042147858464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042176851056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176850608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470778112"}]}}, "140042470778112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042176851392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176851392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042147859584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042176851392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042470779008": {"type": "Function", "content": {"typeVars": [".-1.140042470779008"], "argTypes": [{"nodeId": ".-1.140042470779008"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".-1.140042470779008"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}}, ".-1.140042470779008": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470779008", "variance": "INVARIANT"}}, "140042470779456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "140042147859808": {"type": "Function", "content": {"typeVars": [".-1.140042147859808"], "argTypes": [{"nodeId": ".-1.140042147859808"}], "returnType": {"nodeId": "140042181260768", "args": [{"nodeId": ".-1.140042147859808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042147859808": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042147859808", "variance": "INVARIANT"}}, "140042176850944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210595264"}, {"nodeId": "140042470780800"}]}}, "140042210595264": {"type": "Function", "content": {"typeVars": [".-1.140042210595264"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185616448", "args": [{"nodeId": ".-1.140042210595264"}]}]}]}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042210595264"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140042185616448": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042470552768"}, "name": "item"}}], "typeVars": [{"nodeId": ".1.140042185616448"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["item"]}}, ".1.140042185616448": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042185616448", "variance": "COVARIANT"}}, "140042470552768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185616448", "args": [{"nodeId": ".1.140042185616448"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042185616448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042210595264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042210595264", "variance": "INVARIANT"}}, "140042470780800": {"type": "Function", "content": {"typeVars": [".-1.140042470780800"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185616448", "args": [{"nodeId": ".-1.140042470780800"}]}]}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307602208"}]}], "returnType": {"nodeId": ".-1.140042470780800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042470780800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042470780800", "variance": "INVARIANT"}}, "140042176851280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470781248"}, {"nodeId": "140042470781696"}]}}, "140042470781248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042470781696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176852288"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042176852288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176851728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470782144"}, {"nodeId": "140042470782592"}]}}, "140042470782144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176852624"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "refcheck"]}}, "140042176852624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042470782592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "new_shape", "refcheck"]}}, "140042470783040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "write", "align", "uic"]}}, "140042470783488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176852736"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, "140042176852736": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307602208"}]}]}}, "140042470783936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "axis1", "axis2"]}}, "140042176852064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210594592"}, {"nodeId": "140042470965312"}]}}, "140042210594592": {"type": "Function", "content": {"typeVars": [".-1.140042210594592"], "argTypes": [{"nodeId": ".-1.140042210594592"}, {"nodeId": "140042176853296"}], "returnType": {"nodeId": ".-1.140042210594592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042210594592": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042210594592", "variance": "INVARIANT"}}, "140042176853296": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176853184"}]}}, "140042176853184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042470965312": {"type": "Function", "content": {"typeVars": [".-1.140042470965312"], "argTypes": [{"nodeId": ".-1.140042470965312"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": ".-1.140042470965312"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "axes"]}}, ".-1.140042470965312": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470965312", "variance": "INVARIANT"}}, "140042470965760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176853408"}, {"nodeId": "140042176853520"}, {"nodeId": "140042176853632"}, {"nodeId": "140042176853744"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042176853968"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}}, "140042176853408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176853520": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176853632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176853744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042176853968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042470966208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2"]}}, "140042176852512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470966656"}, {"nodeId": "140042470967104"}, {"nodeId": "140042470967552"}]}}, "140042470966656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176854080"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}}, "140042176854080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042189627216": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042307289152"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042185617856"}]}}, "140042470967104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176854528"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}}, "140042176854528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042470967552": {"type": "Function", "content": {"typeVars": [".-1.140042470967552"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176854864"}, {"nodeId": ".-1.140042470967552"}], "returnType": {"nodeId": ".-1.140042470967552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "b", "out"]}}, "140042176854864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.140042470967552": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470967552", "variance": "INVARIANT"}}, "140042470968000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042176853072"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042176853072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042470968448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176855088"}, {"nodeId": "140042307602208"}, {"nodeId": "140042176855200"}, {"nodeId": "140042176855312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}}, "140042176855088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176855200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176855312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042470968896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176855648"}, {"nodeId": "140042176854976"}, {"nodeId": "140042176855424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ind", "v", "mode"]}}, "140042176855648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176854976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176855424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042176854192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470969344"}, {"nodeId": "140042470969792"}]}}, "140042470969344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176855536"}, {"nodeId": "140042176938048"}, {"nodeId": "140042176938272"}], "returnType": {"nodeId": "140042176938384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}}, "140042176855536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042176938048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185807168"}}}, "140042185807168": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176938272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176938160"}]}}, "140042176938160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176938384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042470969792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176938608"}, {"nodeId": "140042176938720"}, {"nodeId": "140042176938832"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042176939056"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}}, "140042176938608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176938720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185807168"}}}, "140042176938832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176938496"}]}}, "140042176938496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176939056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042470970240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176939168"}, {"nodeId": "140042176939280"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}}, "140042176939168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176939280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042470970688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042176939728"}, {"nodeId": "140042176940176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}}, "140042176939728": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042176940064"}]}}, "140042176940064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185807056"}}}, "140042176940176": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042176855760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470971136"}, {"nodeId": "140042470971584"}]}}, "140042470971136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}, {"nodeId": "140042176940288"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "140042176940288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042470971584": {"type": "Function", "content": {"typeVars": [".-1.140042470971584"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}, {"nodeId": "140042307602208"}, {"nodeId": "140042176939504"}, {"nodeId": ".-1.140042470971584"}], "returnType": {"nodeId": ".-1.140042470971584"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "140042176939504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470971584": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470971584", "variance": "INVARIANT"}}, "140042176789440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210593248"}, {"nodeId": "140042470972480"}, {"nodeId": "140042470972928"}]}}, "140042210593248": {"type": "Function", "content": {"typeVars": [".-1.140042210593248"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042210593248"}]}]}, {"nodeId": "140042176940624"}, {"nodeId": "140042176940512"}, {"nodeId": "N"}, {"nodeId": "140042176940848"}], "returnType": {"nodeId": ".-1.140042210593248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.140042210593248": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042210593248", "variance": "INVARIANT"}}, "140042176940624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042176940512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176940848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042470972480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176941408"}, {"nodeId": "140042176941520"}, {"nodeId": "N"}, {"nodeId": "140042176940736"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "140042176941408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176941520": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042176940736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042470972928": {"type": "Function", "content": {"typeVars": [".-1.140042470972928"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176941072"}, {"nodeId": "140042176940960"}, {"nodeId": ".-1.140042470972928"}, {"nodeId": "140042176941184"}], "returnType": {"nodeId": ".-1.140042470972928"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "140042176941072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176940960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, ".-1.140042470972928": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470972928", "variance": "INVARIANT"}}, "140042176941184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185806272"}}}, "140042470973376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176941296"}, {"nodeId": "140042176939952"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}}, "140042176941296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176939952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307602208"}]}}, "140042470973824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176942080"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042176942080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042470974272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176941856"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042176941856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042176939616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470974720"}, {"nodeId": "140042470975168"}]}}, "140042470974720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176942416"}, {"nodeId": "140042176942528"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}}, "140042176942416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042176942528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805488"}}}, "140042470975168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042307602208"}, {"nodeId": "140042176942752"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042185617504"}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}}, "140042176942752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805488"}}}, "140042176941968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470975616"}, {"nodeId": "140042470976064"}]}}, "140042470975616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "0"}, {"nodeId": "140042176943200"}, {"nodeId": "140042176943312"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176943424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "140042176943200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042176943312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042176943424": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042180856992"}]}}, "140042470976064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176943648"}, {"nodeId": "140042176943760"}, {"nodeId": "140042176943872"}, {"nodeId": "140042512503328"}, {"nodeId": "140042176943984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "140042176943648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042176943760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042176943872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042176943984": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042180856992"}]}}, "140042176942304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470976512"}, {"nodeId": "140042470976960"}, {"nodeId": "140042470977408"}, {"nodeId": "140042470977856"}, {"nodeId": "140042470978304"}]}}, "140042470976512": {"type": "Function", "content": {"typeVars": [".-1.140042470976512"], "argTypes": [{"nodeId": ".-1.140042470976512"}], "returnType": {"nodeId": ".-1.140042470976512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042470976512": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "140042185616096"}, "def": "140042470976512", "variance": "INVARIANT"}}, "140042470976960": {"type": "Function", "content": {"typeVars": [".-1.140042470976960"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042470976960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, ".-1.140042470976960": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470976960", "variance": "INVARIANT"}}, "140042470977408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "140042470977856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176945104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "140042176945104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042470978304": {"type": "Function", "content": {"typeVars": [".-1.140042470978304"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176944320"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042470978304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dtype", "type"]}}, "140042176944320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042470978304": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042470978304", "variance": "INVARIANT"}}, "140042176945216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042470978752"}, {"nodeId": "140042470979200"}]}}, "140042470978752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "0"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "140042470979200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "140042176945440"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "140042176945440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042210651584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042307600800"}]}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042210647552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042307601152"}]}]}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042210647328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042307601504"}]}]}], "returnType": {"nodeId": "140042307289152"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042210646432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042307602208"}]}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042471112768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471052672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042471113216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471113664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176944544": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210646656"}, {"nodeId": "140042471114560"}, {"nodeId": "140042471115008"}, {"nodeId": "140042471115456"}, {"nodeId": "140042471115904"}]}}, "140042210646656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176946896"}, {"nodeId": "140042176945328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176946896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176945328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471114560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176946000"}, {"nodeId": "140042176945888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176946000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176945888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471115008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176946784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176946784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042471115456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042471115904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176948016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176948016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042202734192": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185618912"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185618912"}]}]}]}]}}, "140042176946560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210648224"}, {"nodeId": "140042471116800"}, {"nodeId": "140042471117248"}, {"nodeId": "140042471117696"}, {"nodeId": "140042471118144"}]}}, "140042210648224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176948352"}, {"nodeId": "140042176948464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176948352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176948464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471116800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176948912"}, {"nodeId": "140042176948240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176948912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176948240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471117248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176948800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176948800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042471117696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042471118144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176949920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176949920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042176947232": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210645760"}, {"nodeId": "140042471119040"}, {"nodeId": "140042471119488"}, {"nodeId": "140042471119936"}, {"nodeId": "140042471120384"}]}}, "140042210645760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176950256"}, {"nodeId": "140042176950368"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176950256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176950368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471119040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176950816"}, {"nodeId": "140042176950144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176950816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176950144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471119488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176950704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176950704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042471119936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042471120384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176951824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176951824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042176949136": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210645312"}, {"nodeId": "140042471121280"}, {"nodeId": "140042471121728"}, {"nodeId": "140042471122176"}, {"nodeId": "140042471122624"}]}}, "140042210645312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176952160"}, {"nodeId": "140042176952272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176952160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176952272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471121280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042176952720"}, {"nodeId": "140042176952048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176952720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042176952048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042471121728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176952608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176952608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042471122176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042471122624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042176953728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042176953728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042176951040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210642624"}, {"nodeId": "140042471123520"}, {"nodeId": "140042471123968"}, {"nodeId": "140042471124416"}, {"nodeId": "140042471124864"}]}}, "140042210642624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471123520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471123968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471124416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471124864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042176952944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210643520"}, {"nodeId": "140042471125760"}, {"nodeId": "140042471126208"}]}}, "140042210643520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471125760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471126208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042176855872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210648000"}, {"nodeId": "140042471127104"}, {"nodeId": "140042471127552"}]}}, "140042210648000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471127104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471127552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042177004480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210643968"}, {"nodeId": "140042471128448"}, {"nodeId": "140042465984576"}]}}, "140042210643968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042471128448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042465984576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042177005264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210643744"}, {"nodeId": "140042465985472"}, {"nodeId": "140042465985920"}, {"nodeId": "140042465986368"}, {"nodeId": "140042465986816"}, {"nodeId": "140042465987264"}, {"nodeId": "140042465987712"}, {"nodeId": "140042465988160"}]}}, "140042210643744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177007056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177007056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465985472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177007280"}, {"nodeId": "140042177007392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177007280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177007392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465985920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177007840"}, {"nodeId": "140042177006832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177007840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177006832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465986368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177008400"}, {"nodeId": "140042177007728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177008400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177007728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465986816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177008848"}, {"nodeId": "140042177008288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177008848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177008288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465987264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177009184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177009184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465987712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042465988160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177010304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177010304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177006048": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210644416"}, {"nodeId": "140042465989056"}, {"nodeId": "140042465989504"}, {"nodeId": "140042465989952"}, {"nodeId": "140042465990400"}, {"nodeId": "140042465990848"}, {"nodeId": "140042465991296"}, {"nodeId": "140042465991744"}]}}, "140042210644416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177010752"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177010752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465989056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177010976"}, {"nodeId": "140042177011088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177010976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177011088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465989504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177011536"}, {"nodeId": "140042177010528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177011536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177010528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465989952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177012096"}, {"nodeId": "140042177011424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177012096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177011424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465990400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177012544"}, {"nodeId": "140042177011984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177012544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177011984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465990848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177012880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177012880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465991296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042465991744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177014000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177014000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177009856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210643072"}, {"nodeId": "140042465992640"}, {"nodeId": "140042465993088"}, {"nodeId": "140042465993536"}, {"nodeId": "140042465993984"}, {"nodeId": "140042465994432"}, {"nodeId": "140042465994880"}]}}, "140042210643072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177014448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177014448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465992640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177014784"}, {"nodeId": "140042177014896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177014784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177014896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465993088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177015344"}, {"nodeId": "140042177014224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177015344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177014224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465993536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177015904"}, {"nodeId": "140042177015232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177015904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177015232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465993984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177016352"}, {"nodeId": "140042177015792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177016352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177015792": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042465994432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042465994880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177017024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177017024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177013552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210641056"}, {"nodeId": "140042465995776"}, {"nodeId": "140042465996224"}, {"nodeId": "140042465996672"}, {"nodeId": "140042465997120"}, {"nodeId": "140042465997568"}, {"nodeId": "140042465998016"}]}}, "140042210641056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177017472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177017472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465995776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177017808"}, {"nodeId": "140042177017920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177017808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177017920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465996224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177018368"}, {"nodeId": "140042177017248"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177018368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177017248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465996672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177018928"}, {"nodeId": "140042177018256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177018928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177018256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465997120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177019376"}, {"nodeId": "140042177018816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177019376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177018816": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042465997568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042465998016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177069344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177069344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177016240": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210640608"}, {"nodeId": "140042465998912"}, {"nodeId": "140042465999360"}, {"nodeId": "140042465999808"}, {"nodeId": "140042466000256"}]}}, "140042210640608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177069792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177069792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465998912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177070240"}, {"nodeId": "140042177070352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177070240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177070352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465999360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177070912"}, {"nodeId": "140042177069568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177070912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177069568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042465999808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177071584"}, {"nodeId": "140042177070800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177071584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177070800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466000256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177072144"}, {"nodeId": "140042177071472"}], "returnType": {"nodeId": "140042177072592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177072144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177071472": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042177072592": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042176953952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210642400"}, {"nodeId": "140042466148864"}, {"nodeId": "140042466149312"}, {"nodeId": "140042466149760"}, {"nodeId": "140042466150208"}]}}, "140042210642400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177072928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042177072928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466148864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177073376"}, {"nodeId": "140042177073488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042177073376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177073488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466149312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177074048"}, {"nodeId": "140042177072704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042177074048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177072704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466149760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177074720"}, {"nodeId": "140042177073936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042177074720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177073936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466150208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177075280"}, {"nodeId": "140042177074608"}], "returnType": {"nodeId": "140042177075728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042177075280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177074608": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042177075728": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177072032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210654720"}, {"nodeId": "140042466151104"}, {"nodeId": "140042466151552"}, {"nodeId": "140042466152000"}, {"nodeId": "140042466152448"}, {"nodeId": "140042466152896"}, {"nodeId": "140042466153344"}, {"nodeId": "140042466153792"}, {"nodeId": "140042466154240"}, {"nodeId": "140042466154688"}, {"nodeId": "140042466155136"}]}}, "140042210654720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177076064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177076064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466151104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177076288"}, {"nodeId": "140042177076400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177076288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177076400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466151552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177076848"}, {"nodeId": "140042177075840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177076848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177075840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466152000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177077408"}, {"nodeId": "140042177076736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177077408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177076736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466152448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177077856"}, {"nodeId": "140042177077296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177077856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177077296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466152896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177078192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177078192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466153344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177078976"}, {"nodeId": "140042177078304"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177078976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177078304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466153792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177079312"}, {"nodeId": "140042177078864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177079312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177078864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042466154240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177079536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177079536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466154688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466155136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177080320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177080320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177075168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210652032"}, {"nodeId": "140042466156032"}, {"nodeId": "140042466156480"}, {"nodeId": "140042466156928"}, {"nodeId": "140042466157376"}, {"nodeId": "140042466157824"}, {"nodeId": "140042466158272"}, {"nodeId": "140042466158720"}, {"nodeId": "140042466159168"}, {"nodeId": "140042466159616"}, {"nodeId": "140042466160064"}]}}, "140042210652032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177080768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177080768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466156032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177080992"}, {"nodeId": "140042177081104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177080992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177081104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466156480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177081552"}, {"nodeId": "140042177080544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177081552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177080544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466156928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177082112"}, {"nodeId": "140042177081440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177082112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177081440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466157376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177082560"}, {"nodeId": "140042177082000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177082560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177082000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466157824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177082896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177082896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466158272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177083680"}, {"nodeId": "140042177083008"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177083680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177083008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466158720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177084016"}, {"nodeId": "140042177083568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177084016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177083568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042466159168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177084240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177084240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466159616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466160064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177085024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177085024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177079872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210648448"}, {"nodeId": "140042210643296"}, {"nodeId": "140042466160960"}, {"nodeId": "140042466161408"}, {"nodeId": "140042466161856"}, {"nodeId": "140042466162304"}, {"nodeId": "140042466162752"}, {"nodeId": "140042466163200"}, {"nodeId": "140042466163648"}, {"nodeId": "140042466164096"}, {"nodeId": "140042466345024"}, {"nodeId": "140042466345472"}]}}, "140042210648448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177052848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177052848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210643296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177053296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177053296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466160960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177053408"}, {"nodeId": "140042177053520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177053408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177053520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466161408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177053856"}, {"nodeId": "140042177053968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177053856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177053968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466161856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177054416"}, {"nodeId": "140042177054528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177054416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177054528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466162304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177054864"}, {"nodeId": "140042177054976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177054864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177054976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466162752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177055312"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177055312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466163200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177055984"}, {"nodeId": "140042177056096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177055984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177056096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466163648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177056432"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177056432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466164096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177056768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177056768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042466345024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466345472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177057440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177057440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177084576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042466345920"}, {"nodeId": "140042210644192"}, {"nodeId": "140042466346816"}, {"nodeId": "140042466347264"}, {"nodeId": "140042466347712"}, {"nodeId": "140042466348160"}, {"nodeId": "140042466348608"}, {"nodeId": "140042466349056"}, {"nodeId": "140042466349504"}, {"nodeId": "140042466349952"}, {"nodeId": "140042466350400"}, {"nodeId": "140042466350848"}]}}, "140042466345920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177057888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177057888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210644192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177058336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177058336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466346816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177058448"}, {"nodeId": "140042177058560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177058448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177058560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466347264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177059008"}, {"nodeId": "140042177057664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177059008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177057664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466347712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177059568"}, {"nodeId": "140042177058896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177059568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177058896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466348160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177060016"}, {"nodeId": "140042177059456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177060016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177059456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466348608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177060352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177060352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466349056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177061136"}, {"nodeId": "140042177060464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177061136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177060464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466349504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177061472"}, {"nodeId": "140042177061024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177061472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177061024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042466349952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177061696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177061696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190084512"}}}, "140042466350400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466350848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177062480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177062480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177019264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042466351296"}, {"nodeId": "140042466352192"}, {"nodeId": "140042466352640"}, {"nodeId": "140042466353088"}, {"nodeId": "140042466353536"}, {"nodeId": "140042466353984"}, {"nodeId": "140042466354432"}, {"nodeId": "140042466354880"}, {"nodeId": "140042466355328"}, {"nodeId": "140042466355776"}]}}, "140042466351296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177062928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177062928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466352192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177063152"}, {"nodeId": "140042177063264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177063152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177063264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466352640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177063712"}, {"nodeId": "140042177062704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177063712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177062704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466353088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177064272"}, {"nodeId": "140042177063600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177064272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177063600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466353536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177064720"}, {"nodeId": "140042177064160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177064720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177064160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466353984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177065056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177065056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466354432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177065840"}, {"nodeId": "140042177065168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177065840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177065168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466354880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177066176"}, {"nodeId": "140042177065728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177066176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177065728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466355328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466355776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177066848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177066848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177061360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210246240"}, {"nodeId": "140042466356672"}, {"nodeId": "140042466357120"}, {"nodeId": "140042466357568"}, {"nodeId": "140042466358016"}, {"nodeId": "140042466358464"}, {"nodeId": "140042466358912"}, {"nodeId": "140042466359360"}, {"nodeId": "140042466359808"}, {"nodeId": "140042466360256"}]}}, "140042210246240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177067296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177067296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466356672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177067520"}, {"nodeId": "140042177067632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177067520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177067632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466357120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177068080"}, {"nodeId": "140042177067072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177068080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177067072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466357568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177068640"}, {"nodeId": "140042177067968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177068640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177067968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466358016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177068864"}, {"nodeId": "140042177134656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177068864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177134656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466358464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177135104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177135104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466358912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177135776"}, {"nodeId": "140042177135888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177135776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177135888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466359360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177136112"}, {"nodeId": "140042177136224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177136112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177136224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466359808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466360256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177136896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177136896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177066400": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210243328"}, {"nodeId": "140042466443328"}, {"nodeId": "140042466443776"}, {"nodeId": "140042466444224"}, {"nodeId": "140042466444672"}, {"nodeId": "140042466445120"}, {"nodeId": "140042466445568"}, {"nodeId": "140042466446016"}, {"nodeId": "140042466446464"}]}}, "140042210243328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177137344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177137344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466443328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177137680"}, {"nodeId": "140042177137792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177137680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177137792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466443776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177138240"}, {"nodeId": "140042177137120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177138240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177137120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466444224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177138800"}, {"nodeId": "140042177138128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177138800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177138128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466444672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177138688"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177138688": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042466445120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177139584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177139584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466445568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177139808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177139808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466446016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466446464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177140592"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177140592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177085248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210244448"}, {"nodeId": "140042466447360"}, {"nodeId": "140042466447808"}, {"nodeId": "140042466448256"}, {"nodeId": "140042466448704"}, {"nodeId": "140042466449152"}, {"nodeId": "140042466449600"}, {"nodeId": "140042466450048"}, {"nodeId": "140042466450496"}]}}, "140042210244448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177141040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177141040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466447360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177141376"}, {"nodeId": "140042177141488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177141376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177141488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466447808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177141936"}, {"nodeId": "140042177140816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177141936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177140816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466448256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177142496"}, {"nodeId": "140042177141824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177142496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177141824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466448704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177142384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177142384": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042466449152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177143280"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177143280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466449600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177143616"}, {"nodeId": "140042177142832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177143616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177142832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466450048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466450496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177144288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177144288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177140144": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210245344"}, {"nodeId": "140042466451392"}, {"nodeId": "140042466451840"}, {"nodeId": "140042466452288"}, {"nodeId": "140042466452736"}, {"nodeId": "140042466453184"}, {"nodeId": "140042466453632"}, {"nodeId": "140042466454080"}]}}, "140042210245344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177144736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177144736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466451392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177145072"}, {"nodeId": "140042177145184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177145072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177145184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466451840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177145632"}, {"nodeId": "140042177144512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177145632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177144512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466452288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177146192"}, {"nodeId": "140042177145520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177146192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177145520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466452736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177146640"}, {"nodeId": "140042177146080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177146640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177146080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466453184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177146976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177146976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466453632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466454080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177148096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177148096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177143840": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210242880"}, {"nodeId": "140042466454976"}, {"nodeId": "140042466455424"}, {"nodeId": "140042466455872"}, {"nodeId": "140042466456320"}, {"nodeId": "140042466456768"}, {"nodeId": "140042466457216"}, {"nodeId": "140042466457664"}]}}, "140042210242880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177148544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177148544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466454976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177148880"}, {"nodeId": "140042177148992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177148880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177148992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466455424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177149440"}, {"nodeId": "140042177148320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177149440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177148320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466455872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177150000"}, {"nodeId": "140042177149328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177150000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177149328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466456320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177150448"}, {"nodeId": "140042177149888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177150448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177149888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466456768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177167536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177167536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466457216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466457664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177168432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177168432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177147648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210245568"}, {"nodeId": "140042466458560"}, {"nodeId": "140042466459008"}, {"nodeId": "140042466623552"}, {"nodeId": "140042466624000"}, {"nodeId": "140042466624448"}, {"nodeId": "140042466624896"}, {"nodeId": "140042466625344"}, {"nodeId": "140042466625792"}]}}, "140042210245568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177168768"}, {"nodeId": "140042177168880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177168768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177168880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466458560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177169216"}, {"nodeId": "140042177169328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177169216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177169328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466459008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177169888"}, {"nodeId": "140042177168656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177169888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177168656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466623552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177170224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177170224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466624000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177170336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177170336": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042466624448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177171344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177171344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466624896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177171568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177171568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466625344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466625792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177172352"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177172352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177068528": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210244672"}, {"nodeId": "140042466626688"}, {"nodeId": "140042466627136"}, {"nodeId": "140042466627584"}, {"nodeId": "140042466628032"}, {"nodeId": "140042466628480"}, {"nodeId": "140042466628928"}, {"nodeId": "140042466629376"}, {"nodeId": "140042466629824"}]}}, "140042210244672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177172688"}, {"nodeId": "140042177172800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177172688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177172800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466626688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177173136"}, {"nodeId": "140042177173248"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177173136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177173248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466627136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177173808"}, {"nodeId": "140042177172576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177173808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177172576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466627584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177174144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177174144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466628032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177174256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177174256": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042466628480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177175264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177175264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466628928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177175600"}, {"nodeId": "140042177174816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177175600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177174816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466629376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466629824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177176272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177176272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177171904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210244896"}, {"nodeId": "140042466630720"}, {"nodeId": "140042466631168"}, {"nodeId": "140042466631616"}, {"nodeId": "140042466632064"}]}}, "140042210244896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177176720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177176720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466630720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177177056"}, {"nodeId": "140042177177168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177177056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177177168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466631168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177177616"}, {"nodeId": "140042177176496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177177616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177176496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466631616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466632064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177178512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177178512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177175824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210245120"}, {"nodeId": "140042466632960"}, {"nodeId": "140042466633408"}, {"nodeId": "140042466633856"}, {"nodeId": "140042466634304"}]}}, "140042210245120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177178960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177178960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466632960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177179296"}, {"nodeId": "140042177179408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177179296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177179408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466633408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177179856"}, {"nodeId": "140042177178736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177179856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177178736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466633856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466634304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177180752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177180752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177178064": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210244224"}, {"nodeId": "140042466635200"}, {"nodeId": "140042466635648"}, {"nodeId": "140042466636096"}, {"nodeId": "140042466636544"}]}}, "140042210244224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177181200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177181200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466635200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177181536"}, {"nodeId": "140042177181648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177181536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177181648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466635648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177182096"}, {"nodeId": "140042177180976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177182096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177180976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466636096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466636544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177182992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177182992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177180304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210243776"}, {"nodeId": "140042466637440"}, {"nodeId": "140042466637888"}, {"nodeId": "140042466638336"}, {"nodeId": "140042466638784"}]}}, "140042210243776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177183440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177183440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466637440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177183920"}, {"nodeId": "140042177184032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177183920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177184032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466637888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177184368"}, {"nodeId": "140042177184480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177184368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177184480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466638336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466638784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177185376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177185376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177182544": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210243552"}, {"nodeId": "140042466771008"}, {"nodeId": "140042466771456"}, {"nodeId": "140042466771904"}, {"nodeId": "140042466772352"}]}}, "140042210243552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177185824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177185824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466771008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177186048"}, {"nodeId": "140042177186160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177186048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177186160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466771456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177186608"}, {"nodeId": "140042177185600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177186608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177185600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466771904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466772352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177187504"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177187504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177150336": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210243104"}, {"nodeId": "140042210244000"}, {"nodeId": "140042466773248"}, {"nodeId": "140042466773696"}, {"nodeId": "140042466774144"}]}}, "140042210243104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177187952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177187952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210244000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177188176"}, {"nodeId": "140042177188288"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177188176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177188288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466773248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177188736"}, {"nodeId": "140042177187728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177188736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177187728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466773696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466774144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177189632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177189632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177187056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042466774592"}, {"nodeId": "140042210241984"}, {"nodeId": "140042466775488"}, {"nodeId": "140042466775936"}, {"nodeId": "140042466776384"}]}}, "140042466774592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177190080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177190080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210241984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177190304"}, {"nodeId": "140042177190416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177190304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177190416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466775488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177190864"}, {"nodeId": "140042177189856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177190864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177189856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466775936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466776384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177191760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177191760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177189184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042466776832"}, {"nodeId": "140042466777728"}, {"nodeId": "140042466778176"}, {"nodeId": "140042466778624"}, {"nodeId": "140042466779072"}]}}, "140042466776832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177192208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177192208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466777728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177192432"}, {"nodeId": "140042177192544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177192432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177192544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466778176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177192992"}, {"nodeId": "140042177191984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177192992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177191984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466778624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466779072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177193888"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177193888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177191312": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042210687936"}, {"nodeId": "140042210687712"}, {"nodeId": "140042466779968"}, {"nodeId": "140042466780416"}, {"nodeId": "140042466780864"}]}}, "140042210687936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177194336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177194336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210687712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177194560"}, {"nodeId": "140042177194672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177194560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177194672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466779968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177195120"}, {"nodeId": "140042177194112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177195120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177194112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466780416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466780864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177196016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177196016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177193440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042466781312"}, {"nodeId": "140042210688608"}, {"nodeId": "140042466782208"}, {"nodeId": "140042466782656"}, {"nodeId": "140042466783104"}]}}, "140042466781312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177196464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177196464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042210688608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177196688"}, {"nodeId": "140042177196800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177196688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177196800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466782208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042177197248"}, {"nodeId": "140042177196240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177197248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177196240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466782656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042466783104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177198144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177198144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042177195568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042466783552"}, {"nodeId": "140042466784448"}, {"nodeId": "140042466784896"}, {"nodeId": "140042466785344"}, {"nodeId": "140042466785792"}, {"nodeId": "140042466786240"}, {"nodeId": "140042466786688"}, {"nodeId": "140042466902080"}]}}, "140042466783552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177198592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177198592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466784448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177199152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177199152": {"type": "Union", "content": {"items": [{"nodeId": "140042177198928"}, {"nodeId": "140042177199040"}]}}, "140042177198928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177199040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042466784896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177199376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177199376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466785344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177199712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177199712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466785792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177265728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177265728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466786240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177266064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177266064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466786688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177266624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177266624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466902080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177197696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202683360"}, {"nodeId": "140042466902976"}, {"nodeId": "140042466903424"}, {"nodeId": "140042466903872"}, {"nodeId": "140042466904320"}, {"nodeId": "140042466904768"}, {"nodeId": "140042466905216"}]}}, "140042202683360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177267520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177267520": {"type": "Union", "content": {"items": [{"nodeId": "140042177267296"}, {"nodeId": "140042177267408"}]}}, "140042177267296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177267408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042466902976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177267744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177267744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466903424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177268080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177268080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466903872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177268416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177268416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466904320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177268752"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177268752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466904768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177268976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177268976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466905216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177183216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202686720"}, {"nodeId": "140042466906112"}, {"nodeId": "140042466906560"}, {"nodeId": "140042466907008"}, {"nodeId": "140042466907456"}, {"nodeId": "140042466907904"}, {"nodeId": "140042466908352"}]}}, "140042202686720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177269984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177269984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466906112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177270544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177270544": {"type": "Union", "content": {"items": [{"nodeId": "140042177270320"}, {"nodeId": "140042177270432"}]}}, "140042177270320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177270432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042466906560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177270768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177270768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466907008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177271104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177271104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466907456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177271440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177271440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466907904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177271776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177271776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466908352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177269536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202684928"}, {"nodeId": "140042466909248"}, {"nodeId": "140042466909696"}, {"nodeId": "140042466910144"}, {"nodeId": "140042466910592"}]}}, "140042202684928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177272672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177272672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466909248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177272896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177272896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466909696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177273232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177273232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466910144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177273568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177273568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466910592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177272224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202686272"}, {"nodeId": "140042466911488"}, {"nodeId": "140042466911936"}, {"nodeId": "140042466912384"}, {"nodeId": "140042466912832"}, {"nodeId": "140042466913280"}, {"nodeId": "140042466913728"}]}}, "140042202686272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177274576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177274576": {"type": "Union", "content": {"items": [{"nodeId": "140042177274352"}, {"nodeId": "140042177274464"}]}}, "140042177274352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177274464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042466911488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177274800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177274800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466911936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177275136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177275136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466912384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177275472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177275472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466912832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177275808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177275808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466913280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177276144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177276144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466913728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177273904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202680224"}, {"nodeId": "140042466914624"}, {"nodeId": "140042466915072"}, {"nodeId": "140042466915520"}, {"nodeId": "140042466915968"}]}}, "140042202680224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177277152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177277152": {"type": "Union", "content": {"items": [{"nodeId": "140042177276928"}, {"nodeId": "140042177277040"}]}}, "140042177276928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177277040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042466914624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177277376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177277376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466915072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177277712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177277712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466915520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177278048"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177278048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466915968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177276480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202685824"}, {"nodeId": "140042466916864"}, {"nodeId": "140042466917312"}, {"nodeId": "140042466917760"}, {"nodeId": "140042461823040"}]}}, "140042202685824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177279168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177279168": {"type": "Union", "content": {"items": [{"nodeId": "140042177278944"}, {"nodeId": "140042177279056"}]}}, "140042177278944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177279056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042466916864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177279392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177279392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466917312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177279728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177279728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042466917760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177280064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177280064": {"type": "Union", "content": {"items": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042189948000", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042185620672"}]}]}]}]}}, "140042461823040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177278608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202682240"}, {"nodeId": "140042461823936"}, {"nodeId": "140042461824384"}]}}, "140042202682240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177281184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177281184": {"type": "Union", "content": {"items": [{"nodeId": "140042177280960"}, {"nodeId": "140042177281072"}]}}, "140042177280960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177281072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042461823936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177281408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177281408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461824384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177280288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202678656"}, {"nodeId": "140042461825280"}, {"nodeId": "140042461825728"}]}}, "140042202678656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177315440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177315440": {"type": "Union", "content": {"items": [{"nodeId": "140042177315216"}, {"nodeId": "140042177315328"}]}}, "140042177315216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177315328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042461825280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177315664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177315664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461825728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177199936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202678432"}, {"nodeId": "140042461826624"}, {"nodeId": "140042461827072"}, {"nodeId": "140042461827520"}]}}, "140042202678432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177316560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177316560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461826624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177317120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177317120": {"type": "Union", "content": {"items": [{"nodeId": "140042177316896"}, {"nodeId": "140042177317008"}]}}, "140042177316896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177317008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042461827072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177317344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177317344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461827520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177316224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202681120"}, {"nodeId": "140042461828416"}, {"nodeId": "140042461828864"}, {"nodeId": "140042461829312"}]}}, "140042202681120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177318240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177318240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461828416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177318800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177318800": {"type": "Union", "content": {"items": [{"nodeId": "140042177318576"}, {"nodeId": "140042177318688"}]}}, "140042177318576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177318688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042461828864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177319024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177319024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461829312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177317904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042202677984"}, {"nodeId": "140042461830208"}, {"nodeId": "140042461830656"}, {"nodeId": "140042461831104"}]}}, "140042202677984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177319920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177319920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461830208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177320480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177320480": {"type": "Union", "content": {"items": [{"nodeId": "140042177320256"}, {"nodeId": "140042177320368"}]}}, "140042177320256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177320368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189629792"}}}, "140042461830656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177320704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177320704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042461831104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042202679552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042177321600"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}}, "140042177321600": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042461832000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": "140042177321936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177321936": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "0"}]}}, "140042143182944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042185617504"}, {"nodeId": ".2.140042185617504"}]}], "returnType": {"nodeId": ".2.140042185617504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449724224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": ".1.140042185614688"}], "returnType": {"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "array", "ptr"]}}, "140042152323872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}], "returnType": {"nodeId": ".1.140042185614688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042152244192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}], "returnType": {"nodeId": "140042202210272", "args": [{"nodeId": "140042202202176"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202210272": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202282720"}, "items": [{"kind": "Variable", "content": {"name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042202118208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "_length_"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202400912"}, "items": [{"kind": "Variable", "content": {"name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042202118656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "_type_"}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345326048"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202401472"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202401584"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345328288"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345328736"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345329184"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042202210272"}], "bases": [{"nodeId": "140042215087040"}], "isAbstract": true}}, ".1.140042202210272": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202210272", "variance": "INVARIANT"}}, "140042215087040": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "content": {"name": "_b_base_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202279920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202111040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202112160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202113280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202113728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202113952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323425568"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323426016"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042202279920": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "140042512514240"}]}, {"nodeId": "N"}]}}, "140042202111040": {"type": "Function", "content": {"typeVars": [".0.140042202111040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042202111040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}}, ".0.140042202111040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202111040", "variance": "INVARIANT"}}, "140042202112160": {"type": "Function", "content": {"typeVars": [".0.140042202112160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042202112160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}}, ".0.140042202112160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202112160", "variance": "INVARIANT"}}, "140042202113280": {"type": "Function", "content": {"typeVars": [".0.140042202113280"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042202113280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}}, ".0.140042202113280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202113280", "variance": "INVARIANT"}}, "140042202113728": {"type": "Function", "content": {"typeVars": [".0.140042202113728"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042202280256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, "140042202280256": {"type": "Union", "content": {"items": [{"nodeId": ".0.140042202113728"}, {"nodeId": "140042215088448"}]}}, ".0.140042202113728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202113728", "variance": "INVARIANT"}}, "140042215088448": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042202113952": {"type": "Function", "content": {"typeVars": [".0.140042202113952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042215091264"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042202113952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}}, "140042215091264": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "content": {"name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042215087040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383037984"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383038880"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383039328"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042383037984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215091264"}, {"nodeId": "140042202402928"}, {"nodeId": "140042512514240"}, {"nodeId": "140042202403040"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042202403152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "mode", "handle", "use_errno", "use_last_error", "winmode"]}}, "140042202402928": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042202403040": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042202403152": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042383038880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215091264"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042215092320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042215092320": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042215091968"}], "isAbstract": false}}, "140042215091968": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "_FuncPointer", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215088800"}], "isAbstract": false}}, "140042215088800": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "CFuncPtr", "members": [{"kind": "Variable", "content": {"name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202281600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512511072", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202269504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202279248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345322016"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042215088096"}, {"nodeId": "140042215087040"}], "isAbstract": false}}, "140042202281600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042202085440"}, {"nodeId": "N"}]}}, "140042202085440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512514240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042202269504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214539328"}}}, "140042214539328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202281152"}, {"nodeId": "140042215088800"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042215087040"}]}], "returnType": {"nodeId": "140042215087040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042202281152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042202279248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345319776"}, {"nodeId": "140042345320224"}, {"nodeId": "140042345320672"}, {"nodeId": "140042345321120"}]}}, "140042345319776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215088800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042345320224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215088800"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042345320672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215088800"}, {"nodeId": "140042202085664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042202085664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042345321120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215088800"}, {"nodeId": "140042202400352"}, {"nodeId": "140042202400576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042202400352": {"type": "Tuple", "content": {"items": [{"nodeId": "140042202399344"}, {"nodeId": "140042215091264"}]}}, "140042202399344": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042202400576": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042202400464"}]}, {"nodeId": "N"}]}}, "140042202400464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202270736"}}}, "140042202270736": {"type": "Union", "content": {"items": [{"nodeId": "140042201874016"}, {"nodeId": "140042202269280"}, {"nodeId": "140042202270624"}]}}, "140042201874016": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}]}}, "140042202269280": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042202269056"}]}}, "140042202269056": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042202270624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042202269168"}, {"nodeId": "A"}]}}, "140042202269168": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042345322016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215088800"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042215088096": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087744"}], "isAbstract": false}}, "140042215087744": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087040"}], "isAbstract": false}}, "140042383039328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215091264"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042215092320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042202113952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202113952", "variance": "INVARIANT"}}, "140042323425568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215087040"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042323426016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215087040"}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042202282720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345324256"}]}}, "140042345324256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202118208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202400912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345325152"}]}}, "140042345325152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202118656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042345326048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140042202401472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345326496"}, {"nodeId": "140042345326944"}]}}, "140042345326496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042345326944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042202401584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345327392"}, {"nodeId": "140042345327840"}]}}, "140042345327392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}, {"nodeId": "140042512514240"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042345327840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}, {"nodeId": "140042307291616"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042345328288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042345328736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210272", "args": [{"nodeId": ".1.140042202210272"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042345329184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042202202176": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042215087392": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042215087392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323426464"}, "name": "__init__"}}], "typeVars": [{"nodeId": ".1.140042215087392"}], "bases": [{"nodeId": "140042215087040"}], "isAbstract": false}}, ".1.140042215087392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042215087392", "variance": "INVARIANT"}}, "140042323426464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215087392", "args": [{"nodeId": ".1.140042215087392"}]}, {"nodeId": ".1.140042215087392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "140042152238592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}], "returnType": {"nodeId": "140042202210272", "args": [{"nodeId": "140042202202176"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042152240384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}], "returnType": {"nodeId": "140042202207456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202207456": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215088096"}, {"nodeId": "140042215087392", "args": [{"nodeId": "140042202283392"}]}], "isAbstract": false}}, "140042202283392": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042449726464": {"type": "Function", "content": {"typeVars": [".-1.140042449726464"], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.140042449726464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.140042449726464": {"type": "TypeVar", "content": {"varName": "_CastT", "values": [], "upperBound": {"nodeId": "140042215087744"}, "def": "140042449726464", "variance": "INVARIANT"}}, "140042449726912": {"type": "Function", "content": {"typeVars": [".-1.140042449726912"], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "140042202210272", "args": [{"nodeId": ".-1.140042449726912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.140042449726912": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042449726912", "variance": "INVARIANT"}}, "140042449727360": {"type": "Function", "content": {"typeVars": [".-1.140042449727360"], "argTypes": [{"nodeId": "140042185614688", "args": [{"nodeId": ".1.140042185614688"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "140042202210272", "args": [{"nodeId": ".-1.140042449727360"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.140042449727360": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042449727360", "variance": "INVARIANT"}}, "140042189948704": {"type": "Concrete", "content": {"module": "numpy._typing._array_like", "simpleName": "_UnknownType", "members": [], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042181255488": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131189632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131187168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131188960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131186720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131187616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131187392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131138688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131139360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131139136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131139584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131140032"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168752768"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361522208"}, "name": "at"}}], "typeVars": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}], "bases": [{"nodeId": "140042180856640"}], "isAbstract": false}}, ".1.140042181255488": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042181255488", "variance": "INVARIANT"}}, ".2.140042181255488": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042181255488", "variance": "INVARIANT"}}, ".3.140042181255488": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181255488", "variance": "INVARIANT"}}, "140042131189632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": ".1.140042181255488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131187168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": ".2.140042181255488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131188960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": ".3.140042181255488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131186720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131187616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131187392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131138688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131139360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131139136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131139584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131140032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168752768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042361520864"}, {"nodeId": "140042361521312"}, {"nodeId": "140042361521760"}]}}, "140042361520864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}, {"nodeId": "140042168754784"}, {"nodeId": "N"}, {"nodeId": "140042168755008"}, {"nodeId": "140042168755120"}, {"nodeId": "140042168755232"}, {"nodeId": "140042168755344"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168755680"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168754784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168755008": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168754896"}]}}, "140042168754896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168755120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168755232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168755344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168755680": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361521312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}, {"nodeId": "140042168756912"}, {"nodeId": "140042168756240"}, {"nodeId": "140042168754672"}, {"nodeId": "140042168757024"}, {"nodeId": "140042168756576"}, {"nodeId": "140042168757248"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168757696"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168756912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168756240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042168757136"}]}}, "140042168757136": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042168754672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168756464"}]}}, "140042168756464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168757024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168756576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168757248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168757696": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361521760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}, {"nodeId": "140042181255136"}, {"nodeId": "140042168759264"}, {"nodeId": "140042168758592"}, {"nodeId": "140042168758256"}, {"nodeId": "140042168759152"}, {"nodeId": "140042168758704"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168759712"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042181255136": {"type": "Protocol", "content": {"module": "numpy._typing._ufunc", "simpleName": "_SupportsArrayUFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366348512"}, "name": "__array_ufunc__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__array_ufunc__"]}}, "140042366348512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255136"}, {"nodeId": "140042180856640"}, {"nodeId": "140042168753888"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "140042168753888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168759264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042168758144"}]}}, "140042168758144": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042168758592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168758368"}]}}, "140042168758368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168758256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168759152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168758704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168759712": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361522208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255488", "args": [{"nodeId": ".1.140042181255488"}, {"nodeId": ".2.140042181255488"}, {"nodeId": ".3.140042181255488"}]}, {"nodeId": "140042181255136"}, {"nodeId": "140042168760944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042168760944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042181255840": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131140704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131138912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131141376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131135104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131134880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131134208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131134432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168753104"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361526688"}, "name": "at"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "where", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361527136"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361527584"}, "name": "accumulate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361528032"}, "name": "reduceat"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168760720"}, "items": [{"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "outer"}}], "typeVars": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}], "bases": [{"nodeId": "140042180856640"}], "isAbstract": false}}, ".1.140042181255840": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042181255840", "variance": "INVARIANT"}}, ".2.140042181255840": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042181255840", "variance": "INVARIANT"}}, ".3.140042181255840": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181255840", "variance": "INVARIANT"}}, "140042131140704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": ".1.140042181255840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131138912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": ".2.140042181255840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131141376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": ".3.140042181255840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131135104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131134880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131134208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131134432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168753104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042361525792"}, {"nodeId": "140042361526240"}]}}, "140042361525792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168760048"}, {"nodeId": "140042168761168"}, {"nodeId": "N"}, {"nodeId": "140042168760496"}, {"nodeId": "140042168756352"}, {"nodeId": "140042168761056"}, {"nodeId": "140042168760608"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168761616"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168760048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168761168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168760496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168760272"}]}}, "140042168760272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168756352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168761056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168760608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168761616": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361526240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168762176"}, {"nodeId": "140042168760160"}, {"nodeId": "140042168828080"}, {"nodeId": "140042168828640"}, {"nodeId": "140042168828192"}, {"nodeId": "140042168828864"}, {"nodeId": "140042168829088"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168829424"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168762176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168760160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168828080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042168828304"}]}}, "140042168828304": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042168828640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168828528"}]}}, "140042168828528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168828192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168828864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168829088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168829424": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361526688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "0"}, {"nodeId": "140042168830656"}, {"nodeId": "140042168831216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042168830656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168831216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042361527136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168830768"}, {"nodeId": "140042168830992"}, {"nodeId": "140042168830096"}, {"nodeId": "140042168830880"}, {"nodeId": "140042512503328"}, {"nodeId": "A"}, {"nodeId": "140042168831104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "140042168830768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168830992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168829872"}]}}, "140042168829872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168830096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168830880": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168831104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042361527584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168831552"}, {"nodeId": "140042307602208"}, {"nodeId": "140042168831776"}, {"nodeId": "140042168832336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out"]}}, "140042168831552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168831776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168832336": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042361528032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168832896"}, {"nodeId": "140042168832448"}, {"nodeId": "140042307602208"}, {"nodeId": "140042168833008"}, {"nodeId": "140042168832224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "indices", "axis", "dtype", "out"]}}, "140042168832896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168832448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168833008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168832224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168760720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042361528480"}, {"nodeId": "140042361528928"}]}}, "140042361528480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168832784"}, {"nodeId": "140042168833904"}, {"nodeId": "N"}, {"nodeId": "140042168832672"}, {"nodeId": "140042168834016"}, {"nodeId": "140042168834240"}, {"nodeId": "140042168832112"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168834128"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": [null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168832784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168833904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168832672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168834464"}]}}, "140042168834464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168834016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168834240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168832112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168834128": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361528928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181255840", "args": [{"nodeId": ".1.140042181255840"}, {"nodeId": ".2.140042181255840"}, {"nodeId": ".3.140042181255840"}]}, {"nodeId": "140042168835472"}, {"nodeId": "140042168835920"}, {"nodeId": "140042168835024"}, {"nodeId": "140042168835584"}, {"nodeId": "140042168835136"}, {"nodeId": "140042168835808"}, {"nodeId": "140042168836032"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168836368"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": [null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168835472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168835920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168835024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042168834800"}]}}, "140042168834800": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042168835584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168833792"}]}}, "140042168833792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168835136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168835808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168836032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168836368": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042181256192": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout2", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131133760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131133312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131133088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131132864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131132640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131132416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131132192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131131968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131131744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131131296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131130848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131129728"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042231266464"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}], "bases": [{"nodeId": "140042180856640"}], "isAbstract": false}}, ".1.140042181256192": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042181256192", "variance": "INVARIANT"}}, ".2.140042181256192": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042181256192", "variance": "INVARIANT"}}, ".3.140042181256192": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181256192", "variance": "INVARIANT"}}, "140042131133760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": ".1.140042181256192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131133312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": ".2.140042181256192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131133088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": ".3.140042181256192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131132864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131132640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131132416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131132192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131131968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131131744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131131296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131130848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131129728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231266464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042361534752"}, {"nodeId": "140042361535200"}, {"nodeId": "140042361535648"}]}}, "140042361534752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}, {"nodeId": "140042168837712"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140042168837936"}, {"nodeId": "140042168837040"}, {"nodeId": "140042168837264"}, {"nodeId": "140042168836928"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168838048"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168837712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168837936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168836816"}]}}, "140042168836816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168837040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168837264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168836928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168838048": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361535200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}, {"nodeId": "140042168839504"}, {"nodeId": "140042168839392"}, {"nodeId": "140042168839728"}, {"nodeId": "0"}, {"nodeId": "140042168839168"}, {"nodeId": "140042168839840"}, {"nodeId": "140042168840064"}, {"nodeId": "140042168840176"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168840512"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168839504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168839392": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168839728": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168839168": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168839616"}]}}, "140042168839616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168839840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168840064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168840176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168840512": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361535648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256192", "args": [{"nodeId": ".1.140042181256192"}, {"nodeId": ".2.140042181256192"}, {"nodeId": ".3.140042181256192"}]}, {"nodeId": "140042181255136"}, {"nodeId": "140042168841856"}, {"nodeId": "140042168841072"}, {"nodeId": "0"}, {"nodeId": "140042168842080"}, {"nodeId": "140042168841632"}, {"nodeId": "140042168842304"}, {"nodeId": "140042168842528"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168842864"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168841856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168841072": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168842080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168841184"}]}}, "140042168841184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168841632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168842304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168842528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168842864": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042181256544": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout2", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131130624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131130176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131129280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131129952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131129056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131129504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131128832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131128608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131128384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131142496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131142720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131142944"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168834912"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}], "bases": [{"nodeId": "140042180856640"}], "isAbstract": false}}, ".1.140042181256544": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042181256544", "variance": "INVARIANT"}}, ".2.140042181256544": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042181256544", "variance": "INVARIANT"}}, ".3.140042181256544": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181256544", "variance": "INVARIANT"}}, "140042131130624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": ".1.140042181256544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131130176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": ".2.140042181256544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131129280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": ".3.140042181256544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131129952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131129056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131129504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131128832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131128608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131128384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131142496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131142720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131142944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168834912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042361705568"}, {"nodeId": "140042361706016"}]}}, "140042361705568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}, {"nodeId": "140042168843312"}, {"nodeId": "140042168838944"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140042168843760"}, {"nodeId": "140042168909888"}, {"nodeId": "140042168910000"}, {"nodeId": "140042168910112"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168910448"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, null, "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168843312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168838944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042168843760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168843872"}]}}, "140042168843872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168909888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168910000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168910112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168910448": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361706016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256544", "args": [{"nodeId": ".1.140042181256544"}, {"nodeId": ".2.140042181256544"}, {"nodeId": ".3.140042181256544"}]}, {"nodeId": "140042168843648"}, {"nodeId": "140042168912240"}, {"nodeId": "140042168911008"}, {"nodeId": "140042168911120"}, {"nodeId": "0"}, {"nodeId": "140042168912128"}, {"nodeId": "140042168912352"}, {"nodeId": "140042168912464"}, {"nodeId": "140042168912576"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168912912"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "140042168843648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168912240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168911008": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168911120": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042168912128": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168911456"}]}}, "140042168911456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168912352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168912464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168912576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168912912": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042181256896": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_GUFunc_Nin2_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131143616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131144064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131144288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130866240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130866464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130866688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130866912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130867136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130867360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130867584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130867808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042130868032"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042189801392"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}], "bases": [{"nodeId": "140042180856640"}], "isAbstract": false}}, ".1.140042181256896": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "140042307290208"}, "def": "140042181256896", "variance": "INVARIANT"}}, ".2.140042181256896": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "140042512514240"}, "def": "140042181256896", "variance": "INVARIANT"}}, ".3.140042181256896": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181256896", "variance": "INVARIANT"}}, "140042131143616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": ".1.140042181256896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131144064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": ".2.140042181256896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042131144288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": ".3.140042181256896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130866240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130866464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130866688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130866912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130867136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130867360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130867584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130867808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042130868032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189801392": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042361711840"}, {"nodeId": "140042361712288"}]}}, "140042361711840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}, {"nodeId": "140042168914704"}, {"nodeId": "140042168913920"}, {"nodeId": "N"}, {"nodeId": "140042168914480"}, {"nodeId": "140042168914368"}, {"nodeId": "140042168914256"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168914816"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "casting", "order", "dtype", "subok", "signature", "extobj", "axes"]}}, "140042168914704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168913920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168914480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168914368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168914256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168914816": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042361712288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181256896", "args": [{"nodeId": ".1.140042181256896"}, {"nodeId": ".2.140042181256896"}, {"nodeId": ".3.140042181256896"}]}, {"nodeId": "140042168916384"}, {"nodeId": "140042168916944"}, {"nodeId": "140042168916608"}, {"nodeId": "140042168916160"}, {"nodeId": "140042168916832"}, {"nodeId": "140042168917056"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168917392"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "casting", "order", "dtype", "subok", "signature", "extobj", "axes"]}}, "140042168916384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168916944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168916608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042168915040"}]}}, "140042168915040": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042168916160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042168916832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042168917056": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042168917392": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042181259008": {"type": "Concrete", "content": {"module": "numpy.lib.arrayterator", "simpleName": "Arrayterator", "members": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042206678704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042160730432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042160682176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411541216"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042239885008"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411542560"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411543008"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}], "bases": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}], "isAbstract": false}}, ".1.140042181259008": {"type": "TypeVar", "content": {"varName": "_Shape", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181259008", "variance": "INVARIANT"}}, ".2.140042181259008": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042181259008", "variance": "INVARIANT"}}, "140042206678704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042160730432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259008", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042160682176": {"type": "Function", "content": {"typeVars": [".-1.140042160682176"], "argTypes": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042160682176"}]}]}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".-1.140042160682176"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042160682176": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042160682176", "variance": "INVARIANT"}}, "140042512508256": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475010112"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273167328"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294247824"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475274304"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475274752"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273167552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273168000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273168672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273168896"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042512508256"}]}], "isAbstract": true}}, ".1.140042512508256": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508256", "variance": "COVARIANT"}}, ".2.140042512508256": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508256", "variance": "CONTRAVARIANT"}}, ".3.140042512508256": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508256", "variance": "COVARIANT"}}, "140042475010112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": ".1.140042512508256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273167328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}, {"nodeId": ".2.140042512508256"}], "returnType": {"nodeId": ".1.140042512508256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294247824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042475011008"}, {"nodeId": "140042475011456"}]}}, "140042475011008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}, {"nodeId": "0"}, {"nodeId": "140042294260592"}, {"nodeId": "140042294260704"}], "returnType": {"nodeId": ".1.140042512508256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294260592": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}]}}, "140042294260704": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042475011456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}, {"nodeId": "140042307296896"}, {"nodeId": "N"}, {"nodeId": "140042294260816"}], "returnType": {"nodeId": ".1.140042512508256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294260816": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042475274304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042475274752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042273167552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": "140042302636800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273168000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": "140042302642432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273168672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273168896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042512508256"}, {"nodeId": ".2.140042512508256"}, {"nodeId": ".3.140042512508256"}]}], "returnType": {"nodeId": "140042294261264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294261264": {"type": "Union", "content": {"items": [{"nodeId": "140042512508256", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042411541216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259008", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}, {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}, {"nodeId": "140042236265408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "var", "buf_size"]}}, "140042236265408": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042239885008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042411541664"}, {"nodeId": "140042411542112"}]}}, "140042411541664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259008", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042181259008"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype"]}}, "140042411542112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259008", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}, {"nodeId": "140042236265632"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "140042236265632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042411542560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259008", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}, {"nodeId": "140042236266304"}], "returnType": {"nodeId": "140042181259008", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042181259008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042236266304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185027568"}}}, "140042185027568": {"type": "Union", "content": {"items": [{"nodeId": "140042307296544"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042185027232"}]}]}}, "140042185027232": {"type": "Union", "content": {"items": [{"nodeId": "140042307296544"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307291616"}]}}, "140042411543008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259008", "args": [{"nodeId": ".1.140042181259008"}, {"nodeId": ".2.140042181259008"}]}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042181259008"}]}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042185615392": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_MemMapIOProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495441856"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042495442304"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504536128"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504536576"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042504537024"}, "name": "write"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042147387136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["fileno", "flush", "read", "seek", "tell", "write"]}}, "140042495441856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615392"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042495442304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615392"}], "returnType": {"nodeId": "140042307602208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042504536128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615392"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042504536576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615392"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042504537024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615392"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042147387136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042185615392"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180857344": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ModuleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307496672"}], "isAbstract": false}}, "140042307496672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307495968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307298304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307296896"}], "isAbstract": false}}, "140042180857696": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "VisibleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307496320"}], "isAbstract": false}}, "140042307496320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042180858048": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ComplexWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307497376"}], "isAbstract": false}}, "140042307497376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042180858400": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307496320"}], "isAbstract": false}}, "140042180858752": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "TooHardError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307302880"}], "isAbstract": false}}, "140042307302880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042180859104": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "AxisError", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042226923360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231666544"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177443680"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307304640"}, {"nodeId": "140042307486816"}], "isAbstract": false}}, "140042226923360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042231666544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042177443680": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457628736"}, {"nodeId": "140042457629184"}]}}, "140042457628736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859104"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}}, "140042457629184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859104"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042177560752"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}}, "140042177560752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042307304640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307486816": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307301472"}], "isAbstract": false}}, "140042307301472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042180859456": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "errstate", "members": [{"kind": "Variable", "content": {"name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042180859456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042180924288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "divide", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "over", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "under", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "invalid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457629632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457630080"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457630528"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140042180859456"}], "bases": [{"nodeId": "140042298258208"}], "isAbstract": false}}, ".1.140042180859456": {"type": "TypeVar", "content": {"varName": "_CallType", "values": [], "upperBound": {"nodeId": "140042226912048"}, "def": "140042180859456", "variance": "INVARIANT"}}, "140042226912048": {"type": "Union", "content": {"items": [{"nodeId": "140042226923920"}, {"nodeId": "140042185615744", "args": [{"nodeId": "140042307290208"}]}]}}, "140042226923920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042243801376"}}}, "140042243801376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042180924288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042457629632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859456", "args": [{"nodeId": ".1.140042180859456"}]}, {"nodeId": ".1.140042180859456"}, {"nodeId": "140042177560976"}, {"nodeId": "140042177561200"}, {"nodeId": "140042177561424"}, {"nodeId": "140042177561648"}, {"nodeId": "140042177561872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "call", "all", "divide", "over", "under", "invalid"]}}, "140042177560976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177560864"}]}}, "140042177560864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185544912"}}}, "140042185544912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177561200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177561088"}]}}, "140042177561088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185544912"}}}, "140042177561424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177561312"}]}}, "140042177561312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185544912"}}}, "140042177561648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177561536"}]}}, "140042177561536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185544912"}}}, "140042177561872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177561760"}]}}, "140042177561760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185544912"}}}, "140042457630080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859456", "args": [{"nodeId": ".1.140042180859456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042457630528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859456", "args": [{"nodeId": ".1.140042180859456"}]}, {"nodeId": "140042177561984"}, {"nodeId": "140042177562096"}, {"nodeId": "140042177562208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042177561984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042177562096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307296896"}]}}, "140042177562208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302642080"}]}}, "140042298258208": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391100704"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042391100704": {"type": "Function", "content": {"typeVars": [".-1.140042391100704"], "argTypes": [{"nodeId": "140042298258208"}, {"nodeId": ".-1.140042391100704"}], "returnType": {"nodeId": ".-1.140042391100704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140042391100704": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "140042307075008"}, "def": "140042391100704", "variance": "INVARIANT"}}, "140042307075008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042181261120": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndenumerate", "members": [{"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042181260768", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177329104"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042202111712"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457635904"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140042181261120"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042181261120": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042181261120", "variance": "INVARIANT"}}, "140042177329104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457632320"}, {"nodeId": "140042457632768"}, {"nodeId": "140042457633216"}, {"nodeId": "140042457633664"}, {"nodeId": "140042457634112"}, {"nodeId": "140042457634560"}, {"nodeId": "140042457635008"}]}}, "140042457632320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": ".1.140042181261120"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042457632768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177562544"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": "140042180856288"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042177562544": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042307290208"}]}]}}, "140042457633216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177562656"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": "140042180855936"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042177562656": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042307290560"}]}]}}, "140042457633664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177562768"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": "140042185618560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042177562768": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042512503328"}]}]}}, "140042457634112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177562880"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": "140042177562992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042177562880": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042512514240"}]}]}}, "140042177562992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042457634560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177563104"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": "140042177563216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042177563104": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042512514592"}]}]}}, "140042177563216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185814896"}]}}}, "140042457635008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177563328"}], "returnType": {"nodeId": "140042181261120", "args": [{"nodeId": "140042177563440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042177563328": {"type": "Union", "content": {"items": [{"nodeId": "140042307289152"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042307289152"}]}]}}, "140042177563440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854528", "args": [{"nodeId": "140042185815904"}, {"nodeId": "140042185816688"}]}}}, "140042202111712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261120", "args": [{"nodeId": ".1.140042181261120"}]}], "returnType": {"nodeId": "140042177563776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177563776": {"type": "Tuple", "content": {"items": [{"nodeId": "140042177563552"}, {"nodeId": ".1.140042181261120"}]}}, "140042177563552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042457635904": {"type": "Function", "content": {"typeVars": [".-1.140042457635904"], "argTypes": [{"nodeId": ".-1.140042457635904"}], "returnType": {"nodeId": ".-1.140042457635904"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042457635904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042457635904", "variance": "INVARIANT"}}, "140042180859808": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndindex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177560640"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457637248"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457637696"}, "name": "__next__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042177560640": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457636352"}, {"nodeId": "140042457636800"}]}}, "140042457636352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859808"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307602208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457636800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859808"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "shape"]}}, "140042457637248": {"type": "Function", "content": {"typeVars": [".-1.140042457637248"], "argTypes": [{"nodeId": ".-1.140042457637248"}], "returnType": {"nodeId": ".-1.140042457637248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042457637248": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042457637248", "variance": "INVARIANT"}}, "140042457637696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180859808"}], "returnType": {"nodeId": "140042177564000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177564000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042180860160": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "DataSource", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "destpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457638144"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457638592"}, "name": "__del__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457639040"}, "name": "abspath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457639488"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457639936"}, "name": "open"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042457638144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860160"}, {"nodeId": "140042177564112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "destpath"]}}, "140042177564112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}]}}, "140042457638592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042457639040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860160"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042457639488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860160"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042457639936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860160"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042177564224"}, {"nodeId": "140042177564336"}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "mode", "encoding", "newline"]}}, "140042177564224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042177564336": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042307605024": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273515648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273516768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273517664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273518336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273519008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273519680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273520352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273521024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273653024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273653920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273654592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273655488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273656384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273657056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273657728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273658400"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294482576"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294482912"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273661760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273662432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273663328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273664448"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042307605024"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307605024"}]}], "isAbstract": true}}, ".1.140042307605024": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307605024", "variance": "INVARIANT"}}, "140042273515648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273516768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273517664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273518336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273519008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273519680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273520352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273521024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042307605024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042273653024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273653920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042307605024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042273654592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042307605024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042273655488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042273656384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273657056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273657728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042294483248"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042294483248": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042273658400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294482576": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483052416"}, {"nodeId": "140042307067392"}, {"nodeId": "140042483053312"}]}}, "140042483052416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307067392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042483053312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": ".1.140042307605024"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294482912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483053760"}, {"nodeId": "140042307065824"}, {"nodeId": "140042483054656"}]}}, "140042483053760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307065824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307616288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042483054656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042273661760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": ".1.140042307605024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273662432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307605024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042273663328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042273664448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042307605024"}]}, {"nodeId": "140042294483584"}, {"nodeId": "140042294483696"}, {"nodeId": "140042294483808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042294483584": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042294483696": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042294483808": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042180860512": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "broadcast", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457640384"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144028864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iters", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144029536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144029760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144029984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144030208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144030432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144030656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457643968"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457644416"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457776192"}, "name": "reset"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042457640384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177564560"}], "returnType": {"nodeId": "140042180860512"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140042177564560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042144028864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144029536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042181260768", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144029760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144029984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144030208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144030432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042177563888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177563888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}}}, "140042144030656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457643968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457644416": {"type": "Function", "content": {"typeVars": [".-1.140042457644416"], "argTypes": [{"nodeId": ".-1.140042457644416"}], "returnType": {"nodeId": ".-1.140042457644416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042457644416": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042457644416", "variance": "INVARIANT"}}, "140042457776192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180860864": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "busdaycalendar", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weekmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "holidays", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457776640"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "weekmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144031328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "holidays", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144028192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042457776640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177565008"}, {"nodeId": "140042177565232"}], "returnType": {"nodeId": "140042180860864"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "weekmask", "holidays"]}}, "140042177565008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177565232": {"type": "Union", "content": {"items": [{"nodeId": "140042177565120"}, {"nodeId": "140042198141408"}, {"nodeId": "140042198140000", "args": [{"nodeId": "140042198141408"}]}]}}, "140042177565120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042198141408": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198141408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198141408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386632352"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198509696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198511040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198511264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198511488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198512160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042198511712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042198512384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042198512608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386636384"}, "name": "ctime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390930144"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390930592"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390931040"}, "name": "isoformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390931488"}, "name": "timetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390931936"}, "name": "toordinal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390932384"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390932832"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390933280"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390933728"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390934176"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390934624"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390935072"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042198391872"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390939104"}, "name": "weekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390939552"}, "name": "isoweekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390940000"}, "name": "isocalendar"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042386632352": {"type": "Function", "content": {"typeVars": [".0.140042386632352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".0.140042386632352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}}, ".0.140042386632352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042386632352", "variance": "INVARIANT"}}, "140042198509696": {"type": "Function", "content": {"typeVars": [".0.140042198509696"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": ".0.140042198509696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042198509696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042198509696", "variance": "INVARIANT"}}, "140042198511040": {"type": "Function", "content": {"typeVars": [".0.140042198511040"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042198511040"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042198511040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042198511040", "variance": "INVARIANT"}}, "140042198511264": {"type": "Function", "content": {"typeVars": [".0.140042198511264"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042198511264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042198511264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042198511264", "variance": "INVARIANT"}}, "140042198511488": {"type": "Function", "content": {"typeVars": [".0.140042198511488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042198511488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042198511488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042198511488", "variance": "INVARIANT"}}, "140042198512160": {"type": "Function", "content": {"typeVars": [".0.140042198512160"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042198512160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}}, ".0.140042198512160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042198512160", "variance": "INVARIANT"}}, "140042198511712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198512384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198512608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042386636384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390930144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042390930592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042390931040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390931488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042198393552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198393552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042218569792"}}}, "140042218569792": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042390931936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390932384": {"type": "Function", "content": {"typeVars": [".0.140042390932384"], "argTypes": [{"nodeId": ".0.140042390932384"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": ".0.140042390932384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}}, ".0.140042390932384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042390932384", "variance": "INVARIANT"}}, "140042390932832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390933280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390933728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390934176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390934624": {"type": "Function", "content": {"typeVars": [".0.140042390934624"], "argTypes": [{"nodeId": ".0.140042390934624"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": ".0.140042390934624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042390934624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042390934624", "variance": "INVARIANT"}}, "140042390935072": {"type": "Function", "content": {"typeVars": [".0.140042390935072"], "argTypes": [{"nodeId": ".0.140042390935072"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": ".0.140042390935072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042390935072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042390935072", "variance": "INVARIANT"}}, "140042198391872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042390935520"}, {"nodeId": "140042390935968"}, {"nodeId": "140042390936416"}]}}, "140042390935520": {"type": "Function", "content": {"typeVars": [".0.140042390935520"], "argTypes": [{"nodeId": ".0.140042390935520"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": ".0.140042390935520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042390935520": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042390935520", "variance": "INVARIANT"}}, "140042390935968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}, {"nodeId": "140042198142464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198142464": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391338144"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193498432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193601472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193601696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193601920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193602144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193602368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193603040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193603488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193605056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193604608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193605280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377893856"}, "name": "timestamp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377894304"}, "name": "utctimetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377894752"}, "name": "date"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377895200"}, "name": "time"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377895648"}, "name": "timetz"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377896096"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377896544"}, "name": "astimezone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377897440"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193607072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377898336"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377898784"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377899232"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377899680"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377900128"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377900576"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377901024"}, "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042198394560"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}], "typeVars": [], "bases": [{"nodeId": "140042198141408"}], "isAbstract": false}}, "140042391338144": {"type": "Function", "content": {"typeVars": [".0.140042391338144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042198395008"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042391338144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140042198395008": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, "140042198140352": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "content": {"name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198505216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198505664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198505888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386630112"}, "name": "fromutc"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042198505216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140352"}, {"nodeId": "140042198392096"}], "returnType": {"nodeId": "140042198392208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042198392096": {"type": "Union", "content": {"items": [{"nodeId": "140042198142464"}, {"nodeId": "N"}]}}, "140042198392208": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042198505664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140352"}, {"nodeId": "140042198392320"}], "returnType": {"nodeId": "140042198392432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042198392320": {"type": "Union", "content": {"items": [{"nodeId": "140042198142464"}, {"nodeId": "N"}]}}, "140042198392432": {"type": "Union", "content": {"items": [{"nodeId": "140042198142112"}, {"nodeId": "N"}]}}, "140042198505888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140352"}, {"nodeId": "140042198392544"}], "returnType": {"nodeId": "140042198392656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042198392544": {"type": "Union", "content": {"items": [{"nodeId": "140042198142464"}, {"nodeId": "N"}]}}, "140042198392656": {"type": "Union", "content": {"items": [{"nodeId": "140042198142112"}, {"nodeId": "N"}]}}, "140042386630112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140352"}, {"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198142464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.140042391338144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042391338144", "variance": "INVARIANT"}}, "140042193498432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193601472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193601696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193601920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193602144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198395120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198395120": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, "140042193602368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193603040": {"type": "Function", "content": {"typeVars": [".0.140042193603040"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514592"}, {"nodeId": "140042198395232"}], "returnType": {"nodeId": ".0.140042193603040"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}}, "140042198395232": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, ".0.140042193603040": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042193603040", "variance": "INVARIANT"}}, "140042193603488": {"type": "Function", "content": {"typeVars": [".0.140042193603488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": ".0.140042193603488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042193603488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042193603488", "variance": "INVARIANT"}}, "140042193605056": {"type": "Function", "content": {"typeVars": [".0.140042193605056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042198395344"}], "returnType": {"nodeId": ".0.140042193605056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}}, "140042198395344": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, ".0.140042193605056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042193605056", "variance": "INVARIANT"}}, "140042193604608": {"type": "Function", "content": {"typeVars": [".0.140042193604608"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042193604608"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042193604608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042193604608", "variance": "INVARIANT"}}, "140042193605280": {"type": "Function", "content": {"typeVars": [".0.140042193605280"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042198141408"}, {"nodeId": "140042198141760"}, {"nodeId": "140042198395456"}], "returnType": {"nodeId": ".0.140042193605280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}}, "140042198141760": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198141760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198141760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390940896"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193485888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193491488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193491936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193492160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193492384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042193492608"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390944032"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390944480"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390944928"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390945376"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391322912"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193492832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391324256"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391324704"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391325152"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391325600"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391326048"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391326496"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042390940896": {"type": "Function", "content": {"typeVars": [".0.140042390940896"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042198393888"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042390940896"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "140042198393888": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, ".0.140042390940896": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141760"}, "def": "140042390940896", "variance": "INVARIANT"}}, "140042193485888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193491488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193491936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193492160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193492384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042198394000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198394000": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, "140042193492608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390944032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390944480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390944928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390945376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042391322912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}}, "140042193492832": {"type": "Function", "content": {"typeVars": [".0.140042193492832"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042193492832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042193492832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141760"}, "def": "140042193492832", "variance": "INVARIANT"}}, "140042391324256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042391324704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042391325152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042198394112"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198394112": {"type": "Union", "content": {"items": [{"nodeId": "140042198142112"}, {"nodeId": "N"}]}}, "140042391325600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042198394224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198394224": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042391326048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141760"}], "returnType": {"nodeId": "140042198394336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198394336": {"type": "Union", "content": {"items": [{"nodeId": "140042198142112"}, {"nodeId": "N"}]}}, "140042391326496": {"type": "Function", "content": {"typeVars": [".0.140042391326496"], "argTypes": [{"nodeId": ".0.140042391326496"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042198394448"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042391326496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140042391326496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198141760"}, "def": "140042391326496", "variance": "INVARIANT"}}, "140042198394448": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, "140042198395456": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, ".0.140042193605280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042193605280", "variance": "INVARIANT"}}, "140042377893856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042377894304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198395568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198395568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042218569792"}}}, "140042377894752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198141408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042377895200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198141760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042377895648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198141760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042377896096": {"type": "Function", "content": {"typeVars": [".0.140042377896096"], "argTypes": [{"nodeId": ".0.140042377896096"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042198395680"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042377896096"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.140042377896096": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042377896096", "variance": "INVARIANT"}}, "140042198395680": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, "140042377896544": {"type": "Function", "content": {"typeVars": [".0.140042377896544"], "argTypes": [{"nodeId": ".0.140042377896544"}, {"nodeId": "140042198395792"}], "returnType": {"nodeId": ".0.140042377896544"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}}, ".0.140042377896544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042377896544", "variance": "INVARIANT"}}, "140042198395792": {"type": "Union", "content": {"items": [{"nodeId": "140042198140352"}, {"nodeId": "N"}]}}, "140042377897440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}}, "140042193607072": {"type": "Function", "content": {"typeVars": [".0.140042193607072"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042193607072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".0.140042193607072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042193607072", "variance": "INVARIANT"}}, "140042377898336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198395904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198395904": {"type": "Union", "content": {"items": [{"nodeId": "140042198142112"}, {"nodeId": "N"}]}}, "140042377898784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198396016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198396016": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042377899232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042198396128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198396128": {"type": "Union", "content": {"items": [{"nodeId": "140042198142112"}, {"nodeId": "N"}]}}, "140042377899680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}, {"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042377900128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}, {"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042377900576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}, {"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042377901024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142464"}, {"nodeId": "140042198142464"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042198394560": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042377901472"}, {"nodeId": "140042377901920"}]}}, "140042377901472": {"type": "Function", "content": {"typeVars": [".0.140042377901472"], "argTypes": [{"nodeId": ".0.140042377901472"}, {"nodeId": "140042198142112"}], "returnType": {"nodeId": ".0.140042377901472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042377901472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198142464"}, "def": "140042377901472", "variance": "INVARIANT"}}, "140042377901920": {"type": "Function", "content": {"typeVars": [".-1.140042377901920"], "argTypes": [{"nodeId": ".-1.140042377901920"}, {"nodeId": ".-1.140042377901920"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042377901920": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042377901920", "variance": "INVARIANT"}}, "140042390936416": {"type": "Function", "content": {"typeVars": [".-1.140042390936416"], "argTypes": [{"nodeId": ".-1.140042390936416"}, {"nodeId": ".-1.140042390936416"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042390936416": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "140042198141408"}, "def": "140042390936416", "variance": "INVARIANT"}}, "140042390939104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390939552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390940000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198141408"}], "returnType": {"nodeId": "140042198393776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198393776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042198390304"}}}, "140042198390304": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042144031328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144028192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180860864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181261472": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "finfo", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042181261472"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "eps", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042181261472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsneg", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042181261472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042181261472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042181261472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "negep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nmant", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "precision", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042181261472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "smallest_subnormal", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042181261472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "smallest_normal", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144033120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tiny", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144034240"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177562320"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140042181261472"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042181261472": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "140042180854176", "args": [{"nodeId": "A"}]}, "def": "140042181261472", "variance": "INVARIANT"}}, "140042144033120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261472", "args": [{"nodeId": ".1.140042181261472"}]}], "returnType": {"nodeId": ".1.140042181261472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144034240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261472", "args": [{"nodeId": ".1.140042181261472"}]}], "returnType": {"nodeId": ".1.140042181261472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177562320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457778880"}, {"nodeId": "140042457779328"}, {"nodeId": "140042457779776"}]}}, "140042457778880": {"type": "Function", "content": {"typeVars": [".-1.140042457778880"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177565792"}], "returnType": {"nodeId": "140042181261472", "args": [{"nodeId": "140042180854176", "args": [{"nodeId": ".-1.140042457778880"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "140042177565792": {"type": "Union", "content": {"items": [{"nodeId": "140042180853824", "args": [{"nodeId": ".-1.140042457778880"}]}, {"nodeId": "0"}]}}, ".-1.140042457778880": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "140042189949760"}, "def": "140042457778880", "variance": "INVARIANT"}}, "140042457779328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177565904"}], "returnType": {"nodeId": "140042181261472", "args": [{"nodeId": "140042177566016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "140042177565904": {"type": "Union", "content": {"items": [{"nodeId": "140042307289152"}, {"nodeId": "140042512514592"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177566016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042185814896"}]}}}, "140042457779776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042181261472", "args": [{"nodeId": "140042180854176", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "140042180861216": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "iinfo", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042181260416", "args": [{"nodeId": ".1.140042180861216"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144034912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042144035360"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177565344"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140042180861216"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042180861216": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "140042185619968", "args": [{"nodeId": "A"}]}, "def": "140042180861216", "variance": "INVARIANT"}}, "140042144034912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861216", "args": [{"nodeId": ".1.140042180861216"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042144035360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861216", "args": [{"nodeId": ".1.140042180861216"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177565344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457781120"}, {"nodeId": "140042457781568"}, {"nodeId": "140042457782016"}]}}, "140042457781120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177566464"}], "returnType": {"nodeId": "140042180861216", "args": [{"nodeId": ".1.140042180861216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "140042177566464": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042180861216"}, {"nodeId": "0"}]}}, "140042457781568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177566576"}], "returnType": {"nodeId": "140042180861216", "args": [{"nodeId": "140042177566688"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "140042177566576": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "0"}]}}, "140042177566688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042457782016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042180861216", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "140042180861568": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "format_parser", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457782464"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042457782464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861568"}, {"nodeId": "140042177566912"}, {"nodeId": "140042177567024"}, {"nodeId": "140042177567136"}, {"nodeId": "140042512503328"}, {"nodeId": "140042177567360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "formats", "names", "titles", "aligned", "byteorder"]}}, "140042177566912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177567024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042177567136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042177567360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177567248"}]}}, "140042177567248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805152"}}}, "140042180861920": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "recarray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177565568"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457783808"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457784256"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457784704"}, "name": "__setattr__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177568368"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177570608"}, "items": [{"kind": "Variable", "content": {"name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "field"}}], "typeVars": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}], "bases": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}], "isAbstract": false}}, ".1.140042180861920": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042180861920", "variance": "INVARIANT"}}, ".2.140042180861920": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042180861920", "variance": "COVARIANT"}}, "140042177565568": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457782912"}, {"nodeId": "140042457783360"}]}}, "140042457782912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177568816"}, {"nodeId": "N"}, {"nodeId": "140042177568256"}, {"nodeId": "140042307602208"}, {"nodeId": "140042177566240"}, {"nodeId": "140042177568592"}, {"nodeId": "140042177567696"}, {"nodeId": "140042177567920"}, {"nodeId": "140042177568480"}, {"nodeId": "140042512503328"}, {"nodeId": "140042177568032"}], "returnType": {"nodeId": "140042180861920", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180862272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["subtype", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "order"]}}, "140042177568816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042177568256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177568144"}]}}, "140042177568144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042227340720"}}}, "140042177566240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177567584"}]}}, "140042177567584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042177568592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177567696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042177567920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042177568480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177567472"}]}}, "140042177567472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185805152"}}}, "140042177568032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042180862272": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "record", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457788288"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457788736"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457789184"}, "name": "pprint"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177572288"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042180855232"}], "isAbstract": false}}, "140042457788288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862272"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457788736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862272"}, {"nodeId": "140042307290208"}, {"nodeId": "140042177572176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "140042177572176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042457789184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862272"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177572288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457789632"}, {"nodeId": "140042457790080"}]}}, "140042457789632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862272"}, {"nodeId": "140042177572960"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177572960": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307602208"}]}}, "140042457790080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862272"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042180862272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457783360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177569264"}, {"nodeId": "140042177569936"}, {"nodeId": "140042177568928"}, {"nodeId": "140042307602208"}, {"nodeId": "140042177569152"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042177569040"}], "returnType": {"nodeId": "140042180861920", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "order"]}}, "140042177569264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042177569936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177568928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177569600"}]}}, "140042177569600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042227340720"}}}, "140042177569152": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177567808"}]}}, "140042177567808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042177569040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042457783808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042457784256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457784704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042177570048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "140042177570048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177568368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457785152"}, {"nodeId": "140042202106112"}, {"nodeId": "140042457786048"}, {"nodeId": "140042457786496"}, {"nodeId": "140042457786944"}]}}, "140042457785152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042177569488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177569488": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042177569712"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042177571168"}]}]}}, "140042177569712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177571168": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042177569376"}]}}, "140042177569376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042202106112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}]}, {"nodeId": "140042177571280"}], "returnType": {"nodeId": "140042180861920", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180861920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177571280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042307602208"}, {"nodeId": "140042177570944"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042177570720"}]}]}}, "140042177570944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177570720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042177571392"}, {"nodeId": "140042307602208"}]}}, "140042177571392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042457786048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042177571952"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180861920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177571952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042307602208"}, {"nodeId": "140042177571840"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042177571616"}]}]}}, "140042177571840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177571616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042177570496"}, {"nodeId": "140042307602208"}]}}, "140042177570496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042457786496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457786944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180862272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042177570608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457787392"}, {"nodeId": "140042457787840"}]}}, "140042457787392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042177572512"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "attr", "val"]}}, "140042177572512": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042457787840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180861920", "args": [{"nodeId": ".1.140042180861920"}, {"nodeId": ".2.140042180861920"}]}, {"nodeId": "140042177572736"}, {"nodeId": "140042177572848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "140042177572736": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042177572848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042180862624": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "nditer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_dtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "casting", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "itershape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffersize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457790528"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457790976"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457791424"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457791872"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457989184"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457989632"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457990080"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177573184"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457991424"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457991872"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457992320"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457992768"}, "name": "debug_print"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457993216"}, "name": "enable_external_loop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457993664"}, "name": "iternext"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457994112"}, "name": "remove_axis"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457994560"}, "name": "remove_multi_index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042457995008"}, "name": "reset"}}, {"kind": "Variable", "content": {"name": "dtypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138994720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finished", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138995168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_delayed_bufalloc", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138995392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138995616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138995840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138996064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterationneedsapi", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138996288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138996512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterrange", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138996736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itersize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138996960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itviews", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138997184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138997408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138997632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138997856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operands", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138998080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138998304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042138998528"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042457790528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042177573744"}, {"nodeId": "140042177573968"}, {"nodeId": "140042177574192"}, {"nodeId": "140042177574528"}, {"nodeId": "140042177574640"}, {"nodeId": "140042177574752"}, {"nodeId": "140042177574864"}, {"nodeId": "140042177575088"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "140042180862624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "op", "flags", "op_flags", "op_dtypes", "order", "casting", "op_axes", "itershape", "buffersize"]}}, "140042177573744": {"type": "Union", "content": {"items": [{"nodeId": "140042177573520"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042177573632"}]}]}}, "140042177573520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177573632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042177573968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042177573856"}]}]}}, "140042177573856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180928432"}}}, "140042180928432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177574192": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042177574080"}]}]}]}}, "140042177574080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180930336"}}}, "140042180930336": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042177574528": {"type": "Union", "content": {"items": [{"nodeId": "140042177574304"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042177574416"}]}]}}, "140042177574304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177574416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042177574640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042177574752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185809968"}}}, "140042177574864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307602208"}]}]}]}}, "140042177575088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042177574976"}]}}, "140042177574976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042457790976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042180862624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042457791424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}, {"nodeId": "140042177575872"}, {"nodeId": "140042177575536"}, {"nodeId": "140042177575984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042177575872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042177575536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307296896"}]}}, "140042177575984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302642080"}]}}, "140042457791872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042180862624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042457989184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457989632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042457990080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042180862624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177573184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042457990528"}, {"nodeId": "140042457990976"}]}}, "140042457990528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457990976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457991424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}, {"nodeId": "140042177576208"}, {"nodeId": "140042177575760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042177576208": {"type": "Union", "content": {"items": [{"nodeId": "140042307291616"}, {"nodeId": "140042307602208"}]}}, "140042177575760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042457991872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457992320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042180862624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457992768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457993216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457993664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457994112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}, {"nodeId": "140042307602208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042457994560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042457995008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138994720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138995168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138995392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138995616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138995840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138996064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138996288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138996512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138996736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138996960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138997184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138997408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138997632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138997856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138998080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138998304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042138998528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862624"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180862976": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "memmap", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231663856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177575200"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458004416"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458004864"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458120256"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140042180862976"}, {"nodeId": ".2.140042180862976"}], "bases": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180862976"}, {"nodeId": ".2.140042180862976"}]}], "isAbstract": false}}, ".1.140042180862976": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042180862976", "variance": "INVARIANT"}}, ".2.140042180862976": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042180862976", "variance": "COVARIANT"}}, "140042231663856": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042177575200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458003072"}, {"nodeId": "140042458003520"}, {"nodeId": "140042458003968"}]}}, "140042458003072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172465776"}, {"nodeId": "0"}, {"nodeId": "140042172465888"}, {"nodeId": "140042512514240"}, {"nodeId": "140042172466000"}, {"nodeId": "140042172466112"}], "returnType": {"nodeId": "140042180862976", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172466336"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "140042172465776": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042185615392"}]}}, "140042172465888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180930672"}}}, "140042180930672": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042172466000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}]}}, "140042172466112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042172466336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042458003520": {"type": "Function", "content": {"typeVars": [".-1.140042458003520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172466448"}, {"nodeId": "0"}, {"nodeId": "140042172466672"}, {"nodeId": "140042512514240"}, {"nodeId": "140042172466784"}, {"nodeId": "140042172466896"}], "returnType": {"nodeId": "140042180862976", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": ".-1.140042458003520"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "140042172466448": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042185615392"}]}}, "140042172466672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180930672"}}}, "140042172466784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}]}}, "140042172466896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, ".-1.140042458003520": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042458003520", "variance": "INVARIANT"}}, "140042458003968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172467120"}, {"nodeId": "140042172467232"}, {"nodeId": "140042172467344"}, {"nodeId": "140042512514240"}, {"nodeId": "140042172467456"}, {"nodeId": "140042172467568"}], "returnType": {"nodeId": "140042180862976", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "140042172467120": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042185615392"}]}}, "140042172467232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042172467344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180930672"}}}, "140042172467456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}]}}, "140042172467568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042458004416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862976", "args": [{"nodeId": ".1.140042180862976"}, {"nodeId": ".2.140042180862976"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042458004864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862976", "args": [{"nodeId": ".1.140042180862976"}, {"nodeId": ".2.140042180862976"}]}, {"nodeId": "140042180862976", "args": [{"nodeId": ".1.140042180862976"}, {"nodeId": ".2.140042180862976"}]}, {"nodeId": "140042172468688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "array", "context"]}}, "140042172468688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172468576"}]}}, "140042172468576": {"type": "Tuple", "content": {"items": [{"nodeId": "140042180856640"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}]}}, "140042458120256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180862976", "args": [{"nodeId": ".1.140042180862976"}, {"nodeId": ".2.140042180862976"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180863328": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "vectorize", "members": [{"kind": "Variable", "content": {"name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189378656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231665200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231664416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307607840", "args": [{"nodeId": "140042180930896"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042180925968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458120704"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458121152"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042189378656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042231665200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042231664416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042180930896": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042180925968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042458120704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863328"}, {"nodeId": "140042202026432"}, {"nodeId": "140042172468352"}, {"nodeId": "140042172467904"}, {"nodeId": "140042172468464"}, {"nodeId": "140042512503328"}, {"nodeId": "140042172469136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pyfunc", "otypes", "doc", "excluded", "cache", "signature"]}}, "140042202026432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042172468352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042172469024"}]}]}}, "140042172469024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042172467904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042172468464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042172468912"}]}]}}, "140042172468912": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042172469136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042458121152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863328"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042180863680": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "poly1d", "members": [{"kind": "Variable", "content": {"name": "variable", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139003008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "order", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139003456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "o", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139003680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "roots", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139003904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "r", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139004128"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177444688"}, "items": [{"kind": "Variable", "content": {"name": "coeffs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139004352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coeffs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coeffs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172470256"}, "items": [{"kind": "Variable", "content": {"name": "c", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139004576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "c"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172469584"}, "items": [{"kind": "Variable", "content": {"name": "coef", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139004800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coef"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172470592"}, "items": [{"kind": "Variable", "content": {"name": "coefficients", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042139005024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coefficients", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coefficients"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172471264"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172471824"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "c_or_r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "variable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458129664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458130112"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458130560"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458131008"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458131456"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458131904"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458132352"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458132800"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458133248"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458133696"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458134144"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458134592"}, "name": "__div__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458135040"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458135488"}, "name": "__rdiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458135936"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458267712"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458268160"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458268608"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458269056"}, "name": "deriv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458269504"}, "name": "integ"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042139003008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139003456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139003680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139003904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139004128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042177444688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458123840"}]}}, "140042458123840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139004352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172470256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458124736"}]}}, "140042458124736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139004576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172469584": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458125632"}]}}, "140042458125632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139004800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172470592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458126528"}]}}, "140042458126528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042139005024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172471264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458127424"}, {"nodeId": "140042458127872"}]}}, "140042458127424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "t"]}}, "140042458127872": {"type": "Function", "content": {"typeVars": [".-1.140042458127872"], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": ".-1.140042458127872"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042458127872"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "t"]}}, ".-1.140042458127872": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042458127872", "variance": "INVARIANT"}}, "140042172471824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458128320"}, {"nodeId": "140042458128768"}, {"nodeId": "140042458129216"}]}}, "140042458128320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172472944"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "140042172472944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627216"}}}, "140042458128768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "140042458129216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172473168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "140042172473168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458129664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172473616"}, {"nodeId": "140042512503328"}, {"nodeId": "140042172472832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "c_or_r", "r", "variable"]}}, "140042172473616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172472832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042458130112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042458130560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042458131008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042458131456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172473840"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172473840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458131904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172473952"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172473952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458132352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474064"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458132800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474176"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458133248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474288"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189627104"}}}, "140042458133696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172473504"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172473504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458134144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474512"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458134592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474624"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042172474624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458135040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474736"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458135488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474848"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458135936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172474960"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172474960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458267712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042458268160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042512514240"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042458268608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042458269056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172475296"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, "140042172475296": {"type": "Union", "content": {"items": [{"nodeId": "140042307600800"}, {"nodeId": "140042307602208"}]}}, "140042458269504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180863680"}, {"nodeId": "140042172475408"}, {"nodeId": "140042172475744"}], "returnType": {"nodeId": "140042180863680"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k"]}}, "140042172475408": {"type": "Union", "content": {"items": [{"nodeId": "140042307600800"}, {"nodeId": "140042307602208"}]}}, "140042172475744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172475520"}, {"nodeId": "140042172475632"}]}}, "140042172475520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172475632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042202734192"}}}, "140042180864032": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "matrix", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "subtype", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458269952"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458270400"}, "name": "__array_finalize__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172472384"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458272640"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458273088"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458273536"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458273984"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458274432"}, "name": "__ipow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172476976"}, "items": [{"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172478320"}, "items": [{"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mean"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172479664"}, "items": [{"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "std"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042177576432"}, "items": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "var"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172580464"}, "items": [{"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "prod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172581360"}, "items": [{"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "any"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172582480"}, "items": [{"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "all"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172583712"}, "items": [{"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "max"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172584608"}, "items": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "min"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172584496"}, "items": [{"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmax"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172585056"}, "items": [{"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmin"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172585728"}, "items": [{"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ptp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458422336"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458422784"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458423232"}, "name": "ravel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458423680"}, "name": "flatten"}}, {"kind": "Variable", "content": {"name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126650368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126650592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "A", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126651712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "A1", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126651264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "H", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126652160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458426368"}, "name": "getT"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458426816"}, "name": "getI"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458427264"}, "name": "getA"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458427712"}, "name": "getA1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458428160"}, "name": "getH"}}], "typeVars": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}], "bases": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "isAbstract": false}}, ".1.140042180864032": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042180864032", "variance": "INVARIANT"}}, ".2.140042180864032": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042180864032", "variance": "COVARIANT"}}, "140042458269952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172476080"}, {"nodeId": "140042172473728"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "data", "dtype", "copy"]}}, "140042172476080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172473728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458270400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042172472384": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458270848"}, {"nodeId": "140042458271296"}, {"nodeId": "140042458271744"}, {"nodeId": "140042458272192"}]}}, "140042458270848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172477200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172477200": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042172476416"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042172477648"}]}]}}, "140042172476416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172477648": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042172477088"}]}}, "140042172477088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458271296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172475968"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172475968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042307602208"}, {"nodeId": "140042172476752"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042172477424"}]}]}}, "140042172476752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172477424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307291616"}, {"nodeId": "140042307296544"}, {"nodeId": "140042172476304"}, {"nodeId": "140042307602208"}]}}, "140042172476304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458271744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042458272192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855232"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042458272640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172477984"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172477984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458273088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172478432"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172478432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458273536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172478768"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172478768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458273984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172478880"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172478880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458274432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172479216"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172479216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172476976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458274880"}, {"nodeId": "140042458275328"}, {"nodeId": "140042458275776"}]}}, "140042458274880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "140042172479104"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172479104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458275328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172479888"}, {"nodeId": "140042172480896"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172479888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172480896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458275776": {"type": "Function", "content": {"typeVars": [".-1.140042458275776"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172479328"}, {"nodeId": "140042172479552"}, {"nodeId": ".-1.140042458275776"}], "returnType": {"nodeId": ".-1.140042458275776"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172479328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172479776"}]}}, "140042172479776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172479552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042458275776": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458275776", "variance": "INVARIANT"}}, "140042172478320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458276224"}, {"nodeId": "140042458276672"}, {"nodeId": "140042458277120"}]}}, "140042458276224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "140042172480448"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172480448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458276672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172481008"}, {"nodeId": "140042172480000"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172481008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172480000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458277120": {"type": "Function", "content": {"typeVars": [".-1.140042458277120"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172480672"}, {"nodeId": "140042172481120"}, {"nodeId": ".-1.140042458277120"}], "returnType": {"nodeId": ".-1.140042458277120"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172480672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172481344"}]}}, "140042172481344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172481120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042458277120": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458277120", "variance": "INVARIANT"}}, "140042172479664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458277568"}, {"nodeId": "140042458278016"}, {"nodeId": "140042458278464"}]}}, "140042458277568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "140042172580016"}, {"nodeId": "N"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "140042172580016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458278016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172580128"}, {"nodeId": "140042172581584"}, {"nodeId": "N"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "140042172580128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172581584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458278464": {"type": "Function", "content": {"typeVars": [".-1.140042458278464"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172580240"}, {"nodeId": "140042172580688"}, {"nodeId": ".-1.140042458278464"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": ".-1.140042458278464"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "140042172580240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172581248"}]}}, "140042172581248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172580688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042458278464": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458278464", "variance": "INVARIANT"}}, "140042177576432": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458278912"}, {"nodeId": "140042458279360"}, {"nodeId": "140042458279808"}]}}, "140042458278912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "140042172580800"}, {"nodeId": "N"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "140042172580800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458279360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172580912"}, {"nodeId": "140042172582704"}, {"nodeId": "N"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "140042172580912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172582704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458279808": {"type": "Function", "content": {"typeVars": [".-1.140042458279808"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172581472"}, {"nodeId": "140042172581808"}, {"nodeId": ".-1.140042458279808"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": ".-1.140042458279808"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "140042172581472": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172582368"}]}}, "140042172582368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172581808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042458279808": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458279808", "variance": "INVARIANT"}}, "140042172580464": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458280256"}, {"nodeId": "140042458280704"}, {"nodeId": "140042458281152"}]}}, "140042458280256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "140042172581920"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172581920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458280704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172582032"}, {"nodeId": "140042172583824"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172582032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172583824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042458281152": {"type": "Function", "content": {"typeVars": [".-1.140042458281152"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172582592"}, {"nodeId": "140042172582928"}, {"nodeId": ".-1.140042458281152"}], "returnType": {"nodeId": ".-1.140042458281152"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042172582592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172583488"}]}}, "140042172583488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172582928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, ".-1.140042458281152": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458281152", "variance": "INVARIANT"}}, "140042172581360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458281600"}, {"nodeId": "140042458282048"}, {"nodeId": "140042458282496"}]}}, "140042458281600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185618560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042458282048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172583040"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172583040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042458282496": {"type": "Function", "content": {"typeVars": [".-1.140042458282496"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172583600"}, {"nodeId": ".-1.140042458282496"}], "returnType": {"nodeId": ".-1.140042458282496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172583600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172584048"}]}}, "140042172584048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458282496": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458282496", "variance": "INVARIANT"}}, "140042172582480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458282944"}, {"nodeId": "140042458283392"}, {"nodeId": "140042458415168"}]}}, "140042458282944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185618560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042458283392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172583152"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172583152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042458415168": {"type": "Function", "content": {"typeVars": [".-1.140042458415168"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172582816"}, {"nodeId": ".-1.140042458415168"}], "returnType": {"nodeId": ".-1.140042458415168"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172582816": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172584272"}]}}, "140042172584272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458415168": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458415168", "variance": "INVARIANT"}}, "140042172583712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201816128"}, {"nodeId": "140042458416064"}, {"nodeId": "140042458416512"}]}}, "140042201816128": {"type": "Function", "content": {"typeVars": [".-1.140042201816128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140042201816128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.140042201816128": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042201816128", "variance": "INVARIANT"}}, "140042458416064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172584384"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172584384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042458416512": {"type": "Function", "content": {"typeVars": [".-1.140042458416512"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172584944"}, {"nodeId": ".-1.140042458416512"}], "returnType": {"nodeId": ".-1.140042458416512"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172584944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172584720"}]}}, "140042172584720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458416512": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458416512", "variance": "INVARIANT"}}, "140042172584608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201815232"}, {"nodeId": "140042458417408"}, {"nodeId": "140042458417856"}]}}, "140042201815232": {"type": "Function", "content": {"typeVars": [".-1.140042201815232"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140042201815232"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.140042201815232": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042201815232", "variance": "INVARIANT"}}, "140042458417408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172585280"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172585280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042458417856": {"type": "Function", "content": {"typeVars": [".-1.140042458417856"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172585616"}, {"nodeId": ".-1.140042458417856"}], "returnType": {"nodeId": ".-1.140042458417856"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172585616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172585504"}]}}, "140042172585504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458417856": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458417856", "variance": "INVARIANT"}}, "140042172584496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201812544"}, {"nodeId": "140042458418752"}, {"nodeId": "140042458419200"}]}}, "140042201812544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042172585952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172585952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042458418752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172586064"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172586288"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172586064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172586288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042458419200": {"type": "Function", "content": {"typeVars": [".-1.140042458419200"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172586512"}, {"nodeId": ".-1.140042458419200"}], "returnType": {"nodeId": ".-1.140042458419200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172586512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172586400"}]}}, "140042172586400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458419200": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458419200", "variance": "INVARIANT"}}, "140042172585056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201812320"}, {"nodeId": "140042458420096"}, {"nodeId": "140042458420544"}]}}, "140042201812320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042172586848"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172586848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042458420096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172586960"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172587184"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172586960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172587184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812432"}]}}}, "140042458420544": {"type": "Function", "content": {"typeVars": [".-1.140042458420544"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172587408"}, {"nodeId": ".-1.140042458420544"}], "returnType": {"nodeId": ".-1.140042458420544"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172587408": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172587296"}]}}, "140042172587296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458420544": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458420544", "variance": "INVARIANT"}}, "140042172585728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201810752"}, {"nodeId": "140042458421440"}, {"nodeId": "140042458421888"}]}}, "140042201810752": {"type": "Function", "content": {"typeVars": [".-1.140042201810752"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140042201810752"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.140042201810752": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "140042185617856"}, "def": "140042201810752", "variance": "INVARIANT"}}, "140042458421440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172587744"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172587744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042458421888": {"type": "Function", "content": {"typeVars": [".-1.140042458421888"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172588080"}, {"nodeId": ".-1.140042458421888"}], "returnType": {"nodeId": ".-1.140042458421888"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "140042172588080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172587968"}]}}, "140042172587968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, ".-1.140042458421888": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042458421888", "variance": "INVARIANT"}}, "140042458422336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172588304"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, "140042172588304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172588192"}]}}, "140042172588192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042458422784": {"type": "Function", "content": {"typeVars": [".-1.140042458422784"], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185616448", "args": [{"nodeId": ".-1.140042458422784"}]}]}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307292320", "args": [{"nodeId": ".-1.140042458422784"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042458422784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042458422784", "variance": "INVARIANT"}}, "140042458423232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172588640"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042172588640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042458423680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, {"nodeId": "140042172588864"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042172588864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042126650368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042126650592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042126651712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042126651264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042126652160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042458426368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042458426816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042458427264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042458427712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042458428160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864032", "args": [{"nodeId": ".1.140042180864032"}, {"nodeId": ".2.140042180864032"}]}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180864384": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "chararray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172586624"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458429504"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458429952"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458430400"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042458430848"}, "name": "__mod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172587520"}, "items": [{"kind": "Variable", "content": {"name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__eq__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172592448"}, "items": [{"kind": "Variable", "content": {"name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ne__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172592112"}, "items": [{"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172593344"}, "items": [{"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__le__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172594128"}, "items": [{"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172594912"}, "items": [{"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172480112"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172678544"}, "items": [{"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172679328"}, "items": [{"kind": "Variable", "content": {"name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "center"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172680112"}, "items": [{"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453393792"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042206589024"}, "name": "encode"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172680896"}, "items": [{"kind": "Variable", "content": {"name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453396032"}, "name": "expandtabs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172683696"}, "items": [{"kind": "Variable", "content": {"name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "find"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172686272"}, "items": [{"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172687952"}, "items": [{"kind": "Variable", "content": {"name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "join"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172689632"}, "items": [{"kind": "Variable", "content": {"name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ljust"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172689520"}, "items": [{"kind": "Variable", "content": {"name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lstrip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172690304"}, "items": [{"kind": "Variable", "content": {"name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "partition"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172691424"}, "items": [{"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "replace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172692320"}, "items": [{"kind": "Variable", "content": {"name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rfind"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172595696"}, "items": [{"kind": "Variable", "content": {"name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rindex"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172729264"}, "items": [{"kind": "Variable", "content": {"name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rjust"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172730944"}, "items": [{"kind": "Variable", "content": {"name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rpartition"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172730832"}, "items": [{"kind": "Variable", "content": {"name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rsplit"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172731952"}, "items": [{"kind": "Variable", "content": {"name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rstrip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172734192"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453556736"}, "name": "splitlines"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172734080"}, "items": [{"kind": "Variable", "content": {"name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "startswith"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172736656"}, "items": [{"kind": "Variable", "content": {"name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "strip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172738448"}, "items": [{"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453559872"}, "name": "zfill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453560320"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453560768"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453561216"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453561664"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453562112"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453562560"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453563008"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453563456"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453563904"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453564352"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453564800"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453680192"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453680640"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453681088"}, "name": "isdecimal"}}], "typeVars": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}], "bases": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "isAbstract": false}}, ".1.140042180864384": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042180864384", "variance": "INVARIANT"}}, ".2.140042180864384": {"type": "TypeVar", "content": {"varName": "_CharDType", "values": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042180856288"}]}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855936"}]}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042180864384", "variance": "INVARIANT"}}, "140042172586624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042458428608"}, {"nodeId": "140042458429056"}]}}, "140042458428608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172590320"}, {"nodeId": "140042172590432"}, {"nodeId": "0"}, {"nodeId": "140042172590656"}, {"nodeId": "140042307602208"}, {"nodeId": "140042172590768"}, {"nodeId": "140042172590880"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180855936"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "itemsize", "unicode", "buffer", "offset", "strides", "order"]}}, "140042172590320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172590432": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042307600800"}]}}, "140042172590656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042227340720"}}}, "140042172590768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172590880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042458429056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172591104"}, {"nodeId": "140042172591216"}, {"nodeId": "0"}, {"nodeId": "140042172591440"}, {"nodeId": "140042307602208"}, {"nodeId": "140042172591552"}, {"nodeId": "140042172591664"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042180856288"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "itemsize", "unicode", "buffer", "offset", "strides", "order"]}}, "140042172591104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172591216": {"type": "Union", "content": {"items": [{"nodeId": "140042307602208"}, {"nodeId": "140042307600800"}]}}, "140042172591440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042227340720"}}}, "140042172591552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172591664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185804368"}}}, "140042458429504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042458429952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "140042172591888"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172591888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458430400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "140042172592336"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172592336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042458430848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172587520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201809408"}, {"nodeId": "140042453385728"}]}}, "140042201809408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172592784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172592784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453385728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172593120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172593120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172592448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201809184"}, {"nodeId": "140042453386624"}]}}, "140042201809184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172593568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172593568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453386624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172593904"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172593904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172592112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042201809632"}, {"nodeId": "140042201810304"}]}}, "140042201809632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172594352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172594352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042201810304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172594688"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172594688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172593344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453387520"}, {"nodeId": "140042201809856"}]}}, "140042453387520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172595136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172595136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042201809856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172595472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172595472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172594128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453388416"}, {"nodeId": "140042453389312"}]}}, "140042453388416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172595920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172595920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453389312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172678320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172678320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172594912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206094816"}, {"nodeId": "140042453390208"}]}}, "140042206094816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172678768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172678768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453390208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172679104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172679104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172480112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206096832"}, {"nodeId": "140042206095936"}]}}, "140042206096832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172679552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172679552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042206095936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172679888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172679888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172678544": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453391104"}, {"nodeId": "140042386428128"}]}}, "140042453391104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172680336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172680336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042386428128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172680672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042172680672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172679328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206097728"}, {"nodeId": "140042386427680"}]}}, "140042206097728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172681120"}, {"nodeId": "140042172681232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "140042172681120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172681232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042386427680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172681680"}, {"nodeId": "140042172681456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "140042172681680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172681456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172680112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453392896"}, {"nodeId": "140042453392000"}]}}, "140042453392896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172681904"}, {"nodeId": "140042172682240"}, {"nodeId": "140042172682464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172681904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172682240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172682464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172682352"}]}}, "140042172682352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453392000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172683024"}, {"nodeId": "140042172682016"}, {"nodeId": "140042172683248"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172683024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172682016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172683248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172683136"}]}}, "140042172683136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453393792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172683808"}, {"nodeId": "140042172682912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042172683808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042172682912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042206589024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172684144"}, {"nodeId": "140042172684256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042172684144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042172684256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042172680896": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206592608"}, {"nodeId": "140042453395584"}]}}, "140042206592608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172684704"}, {"nodeId": "140042172684816"}, {"nodeId": "140042172685040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140042172684704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172684816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172685040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172684928"}]}}, "140042172684928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453395584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172685488"}, {"nodeId": "140042172684480"}, {"nodeId": "140042172685712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "140042172685488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172684480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172685712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172685600"}]}}, "140042172685600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453396032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "140042172685936"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "140042172685936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172683696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206591040"}, {"nodeId": "140042453396928"}]}}, "140042206591040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172685376"}, {"nodeId": "140042172686496"}, {"nodeId": "140042172686720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172685376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172686496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172686720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172686608"}]}}, "140042172686608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453396928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172687280"}, {"nodeId": "140042172686384"}, {"nodeId": "140042172687504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172687280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172686384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172687504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172687392"}]}}, "140042172687392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172686272": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206588352"}, {"nodeId": "140042453397824"}]}}, "140042206588352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172687168"}, {"nodeId": "140042172688176"}, {"nodeId": "140042172688400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172687168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172688176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172688400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172688288"}]}}, "140042172688288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453397824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172688960"}, {"nodeId": "140042172687840"}, {"nodeId": "140042172689184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172688960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172687840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172689184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172689072"}]}}, "140042172689072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172687952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206590816"}, {"nodeId": "140042453398720"}]}}, "140042206590816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172688848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140042172688848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453398720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172690080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "140042172690080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172689632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206591712"}, {"nodeId": "140042453399616"}]}}, "140042206591712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172690528"}, {"nodeId": "140042172690640"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "140042172690528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172690640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453399616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172691088"}, {"nodeId": "140042172690864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "140042172691088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172690864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172689520": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206588800"}, {"nodeId": "140042453400512"}]}}, "140042206588800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172691648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "140042172691648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172691312"}]}}, "140042172691312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453400512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172692096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "140042172692096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172691984"}]}}, "140042172691984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172690304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206588576"}, {"nodeId": "140042453549120"}]}}, "140042206588576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172692544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140042172692544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453549120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172692880"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140042172692880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172691424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206587680"}, {"nodeId": "140042453550016"}]}}, "140042206587680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172693328"}, {"nodeId": "140042172693440"}, {"nodeId": "140042172693664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}}, "140042172693328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172693440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172693664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172693552"}]}}, "140042172693552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453550016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172694112"}, {"nodeId": "140042172693104"}, {"nodeId": "140042172694336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}}, "140042172694112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172693104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172694336": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172694224"}]}}, "140042172694224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172692320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206587456"}, {"nodeId": "140042206591936"}]}}, "140042206587456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172727472"}, {"nodeId": "140042172727808"}, {"nodeId": "140042172728032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172727472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172727808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172728032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172727920"}]}}, "140042172727920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042206591936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172728592"}, {"nodeId": "140042172727584"}, {"nodeId": "140042172728816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172728592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172727584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172728816": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172728704"}]}}, "140042172728704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172595696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453550912"}, {"nodeId": "140042206591264"}]}}, "140042453550912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172728480"}, {"nodeId": "140042172729488"}, {"nodeId": "140042172729712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172728480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172729488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172729712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172729600"}]}}, "140042172729600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042206591264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172730272"}, {"nodeId": "140042172729152"}, {"nodeId": "140042172730496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "140042172730272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172729152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172730496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172730384"}]}}, "140042172730384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172729264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453551808"}, {"nodeId": "140042453552704"}]}}, "140042453551808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172730160"}, {"nodeId": "140042172731168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "140042172730160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172731168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453552704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172731616"}, {"nodeId": "140042172731392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "140042172731616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172731392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172730944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206511616"}, {"nodeId": "140042453553600"}]}}, "140042206511616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172731840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140042172731840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453553600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172732400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "140042172732400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172730832": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206514752"}, {"nodeId": "140042453554496"}]}}, "140042206514752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172732960"}, {"nodeId": "140042172733184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042172732960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172732848"}]}}, "140042172732848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172733184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172733072"}]}}, "140042172733072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453554496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172732624"}, {"nodeId": "140042172733856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042172732624": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172733632"}]}}, "140042172733632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172733856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172733744"}]}}, "140042172733744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172731952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206522816"}, {"nodeId": "140042453555392"}]}}, "140042206522816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172734416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "140042172734416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172733520"}]}}, "140042172733520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453555392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172734864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "140042172734864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172734752"}]}}, "140042172734752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172734192": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206523040"}, {"nodeId": "140042453556288"}]}}, "140042206523040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172735424"}, {"nodeId": "140042172735648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042172735424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172735312"}]}}, "140042172735312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172735648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172735536"}]}}, "140042172735536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453556288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172735088"}, {"nodeId": "140042172736320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "140042172735088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172736096"}]}}, "140042172736096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172736320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172736208"}]}}, "140042172736208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453556736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "140042172736768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "140042172736768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172736544"}]}}, "140042172736544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172734080": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206512512"}, {"nodeId": "140042206521696"}]}}, "140042206512512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172737104"}, {"nodeId": "140042172737216"}, {"nodeId": "140042172737440"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140042172737104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172737216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172737440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172737328"}]}}, "140042172737328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042206521696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172737888"}, {"nodeId": "140042172736880"}, {"nodeId": "140042172738112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "140042172737888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172736880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172738112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172738000"}]}}, "140042172738000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172736656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042453557632"}, {"nodeId": "140042453558528"}]}}, "140042453557632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172738672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "140042172738672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172737776"}]}}, "140042172737776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453558528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172739120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "140042172739120": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172739008"}]}}, "140042172739008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172738448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042206562560"}, {"nodeId": "140042453559424"}]}}, "140042206562560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172739568"}, {"nodeId": "140042172739792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}}, "140042172739568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172739792": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172739680"}]}}, "140042172739680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453559424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042172740128"}, {"nodeId": "140042172740352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}}, "140042172740128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042172740352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172740240"}]}}, "140042172740240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453559872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, {"nodeId": "140042172740576"}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": "A"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, "140042172740576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042453560320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453560768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453561216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453561664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453562112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453562560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453563008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453563456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453563904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453564352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453564800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453680192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453680640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453681088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864384", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": ".2.140042180864384"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042180864384"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042180864736": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsDLPack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453681536"}, "name": "__dlpack__"}}], "typeVars": [{"nodeId": ".1.140042180864736"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__dlpack__"]}}, ".1.140042180864736": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042180864736", "variance": "CONTRAVARIANT"}}, "140042453681536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180864736", "args": [{"nodeId": ".1.140042180864736"}]}, {"nodeId": "140042172741024"}], "returnType": {"nodeId": "140042172739344"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}}, "140042172741024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": ".1.140042180864736"}]}}, "140042172739344": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042307615232": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277871776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277872224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277872448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277872672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277872896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277873120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440744000"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277873344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277873568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042277871776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277872224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042294254544"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294254544": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042277872448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277872672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277872896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277873120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042294254768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294254768": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042440744000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}, {"nodeId": "140042307290208"}, {"nodeId": "140042294254992"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042294255216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "140042294254992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "140042307290208"}]}}, "140042294255216": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042277873344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042512504736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512504736": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278243680"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453693184"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042278243680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504736"}], "returnType": {"nodeId": "140042512505440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512505440": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278246592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278247712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278247936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278248160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474996672"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278248832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278248384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474998912"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474999360"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042278246592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042278247712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}], "returnType": {"nodeId": "140042294258800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294258800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042278247936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042278248160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042474996672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}, {"nodeId": "140042307290208"}, {"nodeId": "140042294259024"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "140042294259024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042278248832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}], "returnType": {"nodeId": "140042512504736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042278248384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}], "returnType": {"nodeId": "140042512505088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512505088": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278244800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453694080"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042278244800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505088"}], "returnType": {"nodeId": "140042512505440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453694080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505088"}, {"nodeId": "140042512505440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140042474998912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512504384": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453688256"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453688704"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453689152"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042453688256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504384"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042453688704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504384"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042453689152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504384"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474999360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505440"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042453693184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504736"}, {"nodeId": "140042512505440"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "140042277873568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615232"}], "returnType": {"nodeId": "140042512505088"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512504032": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278122464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278122912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278123136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278123360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042278123584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453686464"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453686912"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042453687360"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042278122464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042278122912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}], "returnType": {"nodeId": "140042294257568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294257568": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042278123136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042278123360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042278123584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042453686464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}, {"nodeId": "140042294258016"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "140042294258016": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042453686912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042453687360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512504032"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512505792": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474999808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475000256"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475000704"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475001152"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512513536"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042474999808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505792"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "140042475000256": {"type": "Function", "content": {"typeVars": [".-1.140042475000256"], "argTypes": [{"nodeId": "140042512505792"}, {"nodeId": ".-1.140042475000256"}], "returnType": {"nodeId": ".-1.140042475000256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140042475000256": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042475000256", "variance": "INVARIANT"}}, "140042475000704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505792"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042475001152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512505792"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512504384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512506144": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475002944"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042475002944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512506144"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307600448": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307500192"}], "isAbstract": false}}, "140042307500192": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391093536"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391093984"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391094432"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391094880"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391095328"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "140042512513536"}], "isAbstract": false}}, "140042307608192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282202304"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432866656"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432867104"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432867552"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432868000"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432868448"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432868896"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432869344"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432869792"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432870240"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432870688"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432871136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432871584"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432872032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432971040"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432971488"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432971936"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432972384"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432972832"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432973280"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432973728"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042307608192"}], "bases": [{"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042307608192"}]}], "isAbstract": false}}, ".1.140042307608192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307608192", "variance": "COVARIANT"}}, "140042282202304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432865760"}, {"nodeId": "140042432866208"}]}}, "140042432865760": {"type": "Function", "content": {"typeVars": [".0.140042432865760"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042432865760"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042432865760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "def": "140042432865760", "variance": "INVARIANT"}}, "140042432866208": {"type": "Function", "content": {"typeVars": [".0.140042432866208"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": ".0.140042432866208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.140042432866208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "def": "140042432866208", "variance": "INVARIANT"}}, "140042432866656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432867104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432867552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "140042432868000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432868448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432868896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432869344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432869792": {"type": "Function", "content": {"typeVars": [".-1.140042432869792"], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042432869792"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": "140042282204432"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.140042432869792": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432869792", "variance": "INVARIANT"}}, "140042282204432": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307608192"}, {"nodeId": ".-1.140042432869792"}]}}, "140042432870240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432870688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432871136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432871584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432872032": {"type": "Function", "content": {"typeVars": [".-1.140042432872032"], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".-1.140042432872032"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": "140042282204544"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432872032": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432872032", "variance": "INVARIANT"}}, "140042282204544": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307608192"}, {"nodeId": ".-1.140042432872032"}]}}, "140042432971040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".1.140042307608192"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432971488": {"type": "Function", "content": {"typeVars": [".-1.140042432971488"], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": ".-1.140042432971488"}]}], "returnType": {"nodeId": "140042307608192", "args": [{"nodeId": "140042282204656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042432971488": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042432971488", "variance": "INVARIANT"}}, "140042282204656": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307608192"}, {"nodeId": ".-1.140042432971488"}]}}, "140042432971936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432972384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432972832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432973280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608192", "args": [{"nodeId": ".1.140042307608192"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432973728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042391093536": {"type": "Function", "content": {"typeVars": [".-1.140042391093536"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140042391093536"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.140042391093536": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042391093536", "variance": "INVARIANT"}}, "140042391093984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307500192"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "140042391094432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307500192"}, {"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140042391094880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307500192"}, {"nodeId": "140042286576608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "140042286576608": {"type": "Union", "content": {"items": [{"nodeId": "140042298605984", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042391095328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307500192"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "140042512506848": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294069952"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140042512506848"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__round__"]}}, ".1.140042512506848": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512506848", "variance": "COVARIANT"}}, "140042294069952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042475006528"}, {"nodeId": "140042475006976"}]}}, "140042475006528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512506848", "args": [{"nodeId": ".1.140042512506848"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042475006976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512506848", "args": [{"nodeId": ".1.140042512506848"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042512506848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307602912": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273123104"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__hash__"]}}, "140042273123104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307602912"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512508608": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273169568"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512508608"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__await__"]}}, ".1.140042512508608": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508608", "variance": "COVARIANT"}}, "140042273169568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042512508608"}]}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.140042512508608"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512508960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273172480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273172704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273172928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273173152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273173376"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294260368"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273173600"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}], "bases": [{"nodeId": "140042512508608", "args": [{"nodeId": ".3.140042512508960"}]}], "isAbstract": true}}, ".1.140042512508960": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508960", "variance": "COVARIANT"}}, ".2.140042512508960": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508960", "variance": "CONTRAVARIANT"}}, ".3.140042512508960": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512508960", "variance": "COVARIANT"}}, "140042273172480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}], "returnType": {"nodeId": "140042294261600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294261600": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042273172704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}], "returnType": {"nodeId": "140042302636800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273172928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}], "returnType": {"nodeId": "140042302642432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273173152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273173376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}, {"nodeId": ".2.140042512508960"}], "returnType": {"nodeId": ".1.140042512508960"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294260368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042475279680"}, {"nodeId": "140042475280128"}]}}, "140042475279680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}, {"nodeId": "0"}, {"nodeId": "140042294261824"}, {"nodeId": "140042294261936"}], "returnType": {"nodeId": ".1.140042512508960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294261824": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}]}}, "140042294261936": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042475280128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}, {"nodeId": "140042307296896"}, {"nodeId": "N"}, {"nodeId": "140042294262048"}], "returnType": {"nodeId": ".1.140042512508960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294262048": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042273173600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042512508960"}, {"nodeId": ".2.140042512508960"}, {"nodeId": ".3.140042512508960"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307603264": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.140042307603264"}, {"nodeId": ".2.140042307603264"}, {"nodeId": ".3.140042307603264"}, {"nodeId": ".4.140042307603264"}], "bases": [{"nodeId": "140042512508608", "args": [{"nodeId": ".3.140042307603264"}]}, {"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042307603264"}, {"nodeId": ".2.140042307603264"}, {"nodeId": ".3.140042307603264"}]}], "isAbstract": true}}, ".1.140042307603264": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307603264", "variance": "COVARIANT"}}, ".2.140042307603264": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307603264", "variance": "CONTRAVARIANT"}}, ".3.140042307603264": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307603264", "variance": "COVARIANT"}}, ".4.140042307603264": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307603264", "variance": "INVARIANT"}}, "140042512509312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273174944"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512509312"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__aiter__"]}}, ".1.140042512509312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512509312", "variance": "COVARIANT"}}, "140042273174944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512509312", "args": [{"nodeId": ".1.140042512509312"}]}], "returnType": {"nodeId": "140042512509664", "args": [{"nodeId": ".1.140042512509312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512509664": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273230176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475281920"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140042512509664"}], "bases": [{"nodeId": "140042512509312", "args": [{"nodeId": ".1.140042512509664"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.140042512509664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512509664", "variance": "COVARIANT"}}, "140042273230176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512509664", "args": [{"nodeId": ".1.140042512509664"}]}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042512509664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042475281920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512509664", "args": [{"nodeId": ".1.140042512509664"}]}], "returnType": {"nodeId": "140042512509664", "args": [{"nodeId": ".1.140042512509664"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042512510016": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475282368"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273232864"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294260480"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042475284160"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273231968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273233760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273233984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273234208"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}], "bases": [{"nodeId": "140042512509664", "args": [{"nodeId": ".1.140042512510016"}]}], "isAbstract": true}}, ".1.140042512510016": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512510016", "variance": "COVARIANT"}}, ".2.140042512510016": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042512510016", "variance": "CONTRAVARIANT"}}, "140042475282368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042512510016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273232864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}, {"nodeId": ".2.140042512510016"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042512510016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294260480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042475283264"}, {"nodeId": "140042475283712"}]}}, "140042475283264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}, {"nodeId": "0"}, {"nodeId": "140042294262272"}, {"nodeId": "140042294262384"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042512510016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294262272": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}]}}, "140042294262384": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042475283712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}, {"nodeId": "140042307296896"}, {"nodeId": "N"}, {"nodeId": "140042294262496"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042512510016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294262496": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042475284160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273231968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273233760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}], "returnType": {"nodeId": "140042302636800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273233984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}], "returnType": {"nodeId": "140042302642432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273234208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042512510016"}, {"nodeId": ".2.140042512510016"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307605376": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273665344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}], "isAbstract": true}}, "140042273665344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605376"}], "returnType": {"nodeId": "140042307605376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307605728": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273666912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273667360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273667584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273667808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273668032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273668256"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": true}}, "140042273666912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}], "returnType": {"nodeId": "140042307605376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273667360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273667584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}], "returnType": {"nodeId": "140042294483920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294483920": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042273667808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273668032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273668256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}], "returnType": {"nodeId": "140042307605728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307606080": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294485040"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273851424"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483249472"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483250368"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140042294485040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042483248128"}, {"nodeId": "140042483248576"}]}}, "140042483248128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606080"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042294486608"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042294486608": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042483248576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606080"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "140042273851424": {"type": "Function", "content": {"typeVars": [".0.140042273851424"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140042273851424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140042273851424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307606080"}, "def": "140042273851424", "variance": "INVARIANT"}}, "140042483249472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606080"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042483250368": {"type": "Function", "content": {"typeVars": [".0.140042483250368"], "argTypes": [{"nodeId": ".0.140042483250368"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042483250368"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140042483250368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307606080"}, "def": "140042483250368", "variance": "INVARIANT"}}, "140042307606432": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483250816"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483251264"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483251712"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483252160"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483252608"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483433536"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483433984"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483434432"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483434880"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483435328"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}], "isAbstract": true}}, "140042483250816": {"type": "Function", "content": {"typeVars": [".0.140042483250816"], "argTypes": [{"nodeId": ".0.140042483250816"}], "returnType": {"nodeId": ".0.140042483250816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042483250816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307606432"}, "def": "140042483250816", "variance": "INVARIANT"}}, "140042483251264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606432"}, {"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140042483251712": {"type": "Function", "content": {"typeVars": [".-1.140042483251712"], "argTypes": [{"nodeId": "140042307606432"}, {"nodeId": "0"}, {"nodeId": ".-1.140042483251712"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140042483251712": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042483251712", "variance": "INVARIANT"}}, "140042483252160": {"type": "Function", "content": {"typeVars": [".-1.140042483252160"], "argTypes": [{"nodeId": ".-1.140042483252160"}, {"nodeId": ".-1.140042483252160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140042483252160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042483252160", "variance": "INVARIANT"}}, "140042483252608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606432"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042483433536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606432"}], "returnType": {"nodeId": "140042307607488", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042483433984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606432"}], "returnType": {"nodeId": "140042307606784", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042483434432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307606432"}], "returnType": {"nodeId": "140042307607136", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042483434880": {"type": "Function", "content": {"typeVars": [".0.140042483434880"], "argTypes": [{"nodeId": ".0.140042483434880"}, {"nodeId": ".0.140042483434880"}], "returnType": {"nodeId": ".0.140042483434880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042483434880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307606432"}, "def": "140042483434880", "variance": "INVARIANT"}}, "140042483435328": {"type": "Function", "content": {"typeVars": [".0.140042483435328"], "argTypes": [{"nodeId": ".0.140042483435328"}, {"nodeId": ".0.140042483435328"}], "returnType": {"nodeId": ".0.140042483435328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042483435328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307606432"}, "def": "140042483435328", "variance": "INVARIANT"}}, "140042512513184": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302636800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302492672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307233248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483435776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483436672"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042483437568"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042302492672": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042307233248": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042483435776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513184"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042294487504"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "140042294487504": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042483436672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513184"}, {"nodeId": "140042294487728"}, {"nodeId": "140042294487952"}, {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042294488176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "140042294487728": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042294487952": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042294488176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042483437568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513184"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042512503680": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231894016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302636800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299010832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231894688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231895360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432428768"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042231894016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503680"}], "returnType": {"nodeId": "140042282197936"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282197936": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042302636096"}]}, {"nodeId": "N"}]}}, "140042302636096": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440853312"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042440853312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636096"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042299010832": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042231894688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503680"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231895360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503680"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042432428768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512503680"}, {"nodeId": "140042512502976"}, {"nodeId": "140042282198272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042282198272": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042512513888": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042281663536"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042281663536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441494752"}, {"nodeId": "140042441495200"}, {"nodeId": "140042441495648"}]}}, "140042441494752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513888"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042441495200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513888"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042441495648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512513888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307608544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432974176"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432974624"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432975072"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432975520"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042307608544"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": "140042302491664"}]}], "isAbstract": false}}, ".1.140042307608544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307608544", "variance": "INVARIANT"}}, "140042432974176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608544", "args": [{"nodeId": ".1.140042307608544"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307608544"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "140042432974624": {"type": "Function", "content": {"typeVars": [".0.140042432974624"], "argTypes": [{"nodeId": ".0.140042432974624"}], "returnType": {"nodeId": ".0.140042432974624"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042432974624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307608544", "args": [{"nodeId": ".1.140042307608544"}]}, "def": "140042432974624", "variance": "INVARIANT"}}, "140042432975072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608544", "args": [{"nodeId": ".1.140042307608544"}]}], "returnType": {"nodeId": "140042277322816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277322816": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": ".1.140042307608544"}]}}, "140042432975520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042302491664": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": ".1.140042307608544"}]}}, "140042307293024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042227091264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042227091712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042227091936"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282203648"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432978208"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432978656"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432979104"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432979552"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432980000"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042282204880"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432981344"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042227091264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042227091712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042227091936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042282203648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432977312"}, {"nodeId": "140042432977760"}]}}, "140042432977312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432977760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042432978208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432978656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042432979104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432979552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432980000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042282204880": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042432980448"}, {"nodeId": "140042432980896"}]}}, "140042432980448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042307614176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432980896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307293024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432981344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293024"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307293376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299006912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299007136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299009264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432981792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432982240"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432982688"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432983136"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432983584"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432984032"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042432984480"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042299006912": {"type": "Union", "content": {"items": [{"nodeId": "140042307070304"}, {"nodeId": "N"}]}}, "140042307070304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042299007136": {"type": "Union", "content": {"items": [{"nodeId": "140042307071424"}, {"nodeId": "N"}]}}, "140042307071424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042299009264": {"type": "Union", "content": {"items": [{"nodeId": "140042307060448"}, {"nodeId": "N"}]}}, "140042307060448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432981792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "140042277323264"}, {"nodeId": "140042277323600"}, {"nodeId": "140042277323936"}, {"nodeId": "140042277324160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "140042277323264": {"type": "Union", "content": {"items": [{"nodeId": "140042282243392"}, {"nodeId": "N"}]}}, "140042282243392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042277323600": {"type": "Union", "content": {"items": [{"nodeId": "140042282243616"}, {"nodeId": "N"}]}}, "140042282243616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042277323936": {"type": "Union", "content": {"items": [{"nodeId": "140042282243840"}, {"nodeId": "N"}]}}, "140042282243840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042277324160": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042432982240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "140042282242720"}], "returnType": {"nodeId": "140042307293376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282242720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432982688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "140042282243168"}], "returnType": {"nodeId": "140042307293376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282243168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042432983136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "140042282244064"}], "returnType": {"nodeId": "140042307293376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042282244064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042432983584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "A"}, {"nodeId": "140042277324944"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042277324944": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042432984032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042432984480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307293376"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042307293728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042298913568": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433087072"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.140042298913568"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__fspath__"]}}, ".1.140042298913568": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298913568", "variance": "COVARIANT"}}, "140042433087072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298913568", "args": [{"nodeId": ".1.140042298913568"}]}], "returnType": {"nodeId": ".1.140042298913568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307294080": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433087968"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140042307294080"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__anext__"]}}, ".1.140042307294080": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "140042512508608", "args": [{"nodeId": "A"}]}, "def": "140042307294080", "variance": "COVARIANT"}}, "140042433087968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307294080", "args": [{"nodeId": ".1.140042307294080"}]}], "returnType": {"nodeId": ".1.140042307294080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307608896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042277326288"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433098720"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433099168"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140042307608896"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307608896"}]}], "isAbstract": false}}, ".1.140042307608896": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307608896", "variance": "INVARIANT"}}, "140042277326288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042433097376"}, {"nodeId": "140042433097824"}, {"nodeId": "140042433098272"}]}}, "140042433097376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608896", "args": [{"nodeId": ".1.140042307608896"}]}, {"nodeId": "N"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042277329424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042277329424": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042307608896"}, {"nodeId": "N"}]}}, "140042433097824": {"type": "Function", "content": {"typeVars": [".-1.140042433097824"], "argTypes": [{"nodeId": "140042307608896", "args": [{"nodeId": ".1.140042307608896"}]}, {"nodeId": "140042282244960"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042433097824"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042282244960": {"type": "Function", "content": {"typeVars": [".-1.140042282244960"], "argTypes": [{"nodeId": ".-1.140042282244960"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042282244960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282244960", "variance": "INVARIANT"}}, ".-1.140042433097824": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433097824", "variance": "INVARIANT"}}, "140042433098272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608896", "args": [{"nodeId": ".1.140042307608896"}]}, {"nodeId": "140042282244736"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307608896"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042282244736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.140042307608896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042433098720": {"type": "Function", "content": {"typeVars": [".0.140042433098720"], "argTypes": [{"nodeId": ".0.140042433098720"}], "returnType": {"nodeId": ".0.140042433098720"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042433098720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307608896", "args": [{"nodeId": ".1.140042307608896"}]}, "def": "140042433098720", "variance": "INVARIANT"}}, "140042433099168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307608896", "args": [{"nodeId": ".1.140042307608896"}]}], "returnType": {"nodeId": ".1.140042307608896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307294432": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433286368"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042307294432"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__"]}}, ".1.140042307294432": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307294432", "variance": "COVARIANT"}}, "140042433286368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307294432", "args": [{"nodeId": ".1.140042307294432"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042307294432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307609248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042277329760"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433293536"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433293984"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140042307609248"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307609248"}]}], "isAbstract": false}}, ".1.140042307609248": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307609248", "variance": "INVARIANT"}}, "140042277329760": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042433290848"}, {"nodeId": "140042433291296"}, {"nodeId": "140042433291744"}, {"nodeId": "140042433292192"}, {"nodeId": "140042433292640"}, {"nodeId": "140042433293088"}]}}, "140042433290848": {"type": "Function", "content": {"typeVars": [".-1.140042433290848"], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, {"nodeId": "140042282247200"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042433290848"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042282247200": {"type": "Function", "content": {"typeVars": [".-1.140042282247200"], "argTypes": [{"nodeId": ".-1.140042282247200"}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042282247200": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247200", "variance": "INVARIANT"}}, ".-1.140042433290848": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433290848", "variance": "INVARIANT"}}, "140042433291296": {"type": "Function", "content": {"typeVars": [".-1.140042433291296", ".-2.140042433291296"], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, {"nodeId": "140042282246528"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042433291296"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042433291296"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140042282246528": {"type": "Function", "content": {"typeVars": [".-1.140042282246528", ".-2.140042282246528"], "argTypes": [{"nodeId": ".-1.140042282246528"}, {"nodeId": ".-2.140042282246528"}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042282246528": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282246528", "variance": "INVARIANT"}}, ".-2.140042282246528": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282246528", "variance": "INVARIANT"}}, ".-1.140042433291296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433291296", "variance": "INVARIANT"}}, ".-2.140042433291296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433291296", "variance": "INVARIANT"}}, "140042433291744": {"type": "Function", "content": {"typeVars": [".-1.140042433291744", ".-2.140042433291744", ".-3.140042433291744"], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, {"nodeId": "140042282246752"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042433291744"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042433291744"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-3.140042433291744"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140042282246752": {"type": "Function", "content": {"typeVars": [".-1.140042282246752", ".-2.140042282246752", ".-3.140042282246752"], "argTypes": [{"nodeId": ".-1.140042282246752"}, {"nodeId": ".-2.140042282246752"}, {"nodeId": ".-3.140042282246752"}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.140042282246752": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282246752", "variance": "INVARIANT"}}, ".-2.140042282246752": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282246752", "variance": "INVARIANT"}}, ".-3.140042282246752": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282246752", "variance": "INVARIANT"}}, ".-1.140042433291744": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433291744", "variance": "INVARIANT"}}, ".-2.140042433291744": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433291744", "variance": "INVARIANT"}}, ".-3.140042433291744": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433291744", "variance": "INVARIANT"}}, "140042433292192": {"type": "Function", "content": {"typeVars": [".-1.140042433292192", ".-2.140042433292192", ".-3.140042433292192", ".-4.140042433292192"], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, {"nodeId": "140042282247424"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042433292192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042433292192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-3.140042433292192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-4.140042433292192"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140042282247424": {"type": "Function", "content": {"typeVars": [".-1.140042282247424", ".-2.140042282247424", ".-3.140042282247424", ".-4.140042282247424"], "argTypes": [{"nodeId": ".-1.140042282247424"}, {"nodeId": ".-2.140042282247424"}, {"nodeId": ".-3.140042282247424"}, {"nodeId": ".-4.140042282247424"}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.140042282247424": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247424", "variance": "INVARIANT"}}, ".-2.140042282247424": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247424", "variance": "INVARIANT"}}, ".-3.140042282247424": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247424", "variance": "INVARIANT"}}, ".-4.140042282247424": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247424", "variance": "INVARIANT"}}, ".-1.140042433292192": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292192", "variance": "INVARIANT"}}, ".-2.140042433292192": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292192", "variance": "INVARIANT"}}, ".-3.140042433292192": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292192", "variance": "INVARIANT"}}, ".-4.140042433292192": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292192", "variance": "INVARIANT"}}, "140042433292640": {"type": "Function", "content": {"typeVars": [".-1.140042433292640", ".-2.140042433292640", ".-3.140042433292640", ".-4.140042433292640", ".-5.140042433292640"], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, {"nodeId": "140042282247648"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042433292640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042433292640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-3.140042433292640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-4.140042433292640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-5.140042433292640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "140042282247648": {"type": "Function", "content": {"typeVars": [".-1.140042282247648", ".-2.140042282247648", ".-3.140042282247648", ".-4.140042282247648", ".-5.140042282247648"], "argTypes": [{"nodeId": ".-1.140042282247648"}, {"nodeId": ".-2.140042282247648"}, {"nodeId": ".-3.140042282247648"}, {"nodeId": ".-4.140042282247648"}, {"nodeId": ".-5.140042282247648"}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.140042282247648": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247648", "variance": "INVARIANT"}}, ".-2.140042282247648": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247648", "variance": "INVARIANT"}}, ".-3.140042282247648": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247648", "variance": "INVARIANT"}}, ".-4.140042282247648": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247648", "variance": "INVARIANT"}}, ".-5.140042282247648": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042282247648", "variance": "INVARIANT"}}, ".-1.140042433292640": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292640", "variance": "INVARIANT"}}, ".-2.140042433292640": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292640", "variance": "INVARIANT"}}, ".-3.140042433292640": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292640", "variance": "INVARIANT"}}, ".-4.140042433292640": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292640", "variance": "INVARIANT"}}, ".-5.140042433292640": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042433292640", "variance": "INVARIANT"}}, "140042433293088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, {"nodeId": "140042282247872"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "140042282247872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042433293536": {"type": "Function", "content": {"typeVars": [".0.140042433293536"], "argTypes": [{"nodeId": ".0.140042433293536"}], "returnType": {"nodeId": ".0.140042433293536"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042433293536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}, "def": "140042433293536", "variance": "INVARIANT"}}, "140042433293984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609248", "args": [{"nodeId": ".1.140042307609248"}]}], "returnType": {"nodeId": ".1.140042307609248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298913920": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433436064"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.140042298913920"}], "bases": [{"nodeId": "140042298605984", "args": [{"nodeId": ".1.140042298913920"}]}], "protocolMembers": ["flush", "write"]}}, ".1.140042298913920": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298913920", "variance": "CONTRAVARIANT"}}, "140042433436064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298913920", "args": [{"nodeId": ".1.140042298913920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307294784": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433437408"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140042307294784"}, {"nodeId": ".2.140042307294784"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__pow__"]}}, ".1.140042307294784": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307294784", "variance": "CONTRAVARIANT"}}, ".2.140042307294784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307294784", "variance": "COVARIANT"}}, "140042433437408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307294784", "args": [{"nodeId": ".1.140042307294784"}, {"nodeId": ".2.140042307294784"}]}, {"nodeId": ".1.140042307294784"}], "returnType": {"nodeId": ".2.140042307294784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307295136": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433437856"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140042307295136"}, {"nodeId": ".2.140042307295136"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__pow__"]}}, ".1.140042307295136": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307295136", "variance": "CONTRAVARIANT"}}, ".2.140042307295136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307295136", "variance": "COVARIANT"}}, "140042433437856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307295136", "args": [{"nodeId": ".1.140042307295136"}, {"nodeId": ".2.140042307295136"}]}, {"nodeId": ".1.140042307295136"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.140042307295136"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042307295488": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042433438304"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.140042307295488"}, {"nodeId": ".2.140042307295488"}, {"nodeId": ".3.140042307295488"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__pow__"]}}, ".1.140042307295488": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307295488", "variance": "CONTRAVARIANT"}}, ".2.140042307295488": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307295488", "variance": "CONTRAVARIANT"}}, ".3.140042307295488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307295488", "variance": "COVARIANT"}}, "140042433438304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307295488", "args": [{"nodeId": ".1.140042307295488"}, {"nodeId": ".2.140042307295488"}, {"nodeId": ".3.140042307295488"}]}, {"nodeId": ".1.140042307295488"}, {"nodeId": ".2.140042307295488"}], "returnType": {"nodeId": ".3.140042307295488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042307609600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042277537936"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428423904"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428424352"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428424800"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.140042307609600"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307609600"}]}], "isAbstract": false}}, ".1.140042307609600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307609600", "variance": "INVARIANT"}}, "140042277537936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042428423008"}, {"nodeId": "140042428423456"}]}}, "140042428423008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609600", "args": [{"nodeId": ".1.140042307609600"}]}, {"nodeId": "140042512507904", "args": [{"nodeId": ".1.140042307609600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042428423456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609600", "args": [{"nodeId": ".1.140042307609600"}]}, {"nodeId": "140042298389280", "args": [{"nodeId": ".1.140042307609600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042298389280": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474637568"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474638016"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042298389280"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140042298389280": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298389280", "variance": "COVARIANT"}}, "140042474637568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298389280", "args": [{"nodeId": ".1.140042298389280"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042474638016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298389280", "args": [{"nodeId": ".1.140042298389280"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042298389280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042428423904": {"type": "Function", "content": {"typeVars": [".0.140042428423904"], "argTypes": [{"nodeId": ".0.140042428423904"}], "returnType": {"nodeId": ".0.140042428423904"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042428423904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307609600", "args": [{"nodeId": ".1.140042307609600"}]}, "def": "140042428423904", "variance": "INVARIANT"}}, "140042428424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609600", "args": [{"nodeId": ".1.140042307609600"}]}], "returnType": {"nodeId": ".1.140042307609600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042428424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609600", "args": [{"nodeId": ".1.140042307609600"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307295840": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428425696"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140042307295840"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__round__"]}}, ".1.140042307295840": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307295840", "variance": "COVARIANT"}}, "140042428425696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307295840", "args": [{"nodeId": ".1.140042307295840"}]}], "returnType": {"nodeId": ".1.140042307295840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307296192": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428426144"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.140042307296192"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__round__"]}}, ".1.140042307296192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307296192", "variance": "COVARIANT"}}, "140042428426144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307296192", "args": [{"nodeId": ".1.140042307296192"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042307296192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042298914272": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298386464", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140042298386816", "args": [{"nodeId": "140042512514240"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "140042298386464": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429266432"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.140042298386464"}, {"nodeId": ".2.140042298386464"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__add__"]}}, ".1.140042298386464": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298386464", "variance": "CONTRAVARIANT"}}, ".2.140042298386464": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298386464", "variance": "COVARIANT"}}, "140042429266432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298386464", "args": [{"nodeId": ".1.140042298386464"}, {"nodeId": ".2.140042298386464"}]}, {"nodeId": ".1.140042298386464"}], "returnType": {"nodeId": ".2.140042298386464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298386816": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429266880"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.140042298386816"}, {"nodeId": ".2.140042298386816"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__radd__"]}}, ".1.140042298386816": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298386816", "variance": "CONTRAVARIANT"}}, ".2.140042298386816": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298386816", "variance": "COVARIANT"}}, "140042429266880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298386816", "args": [{"nodeId": ".1.140042298386816"}, {"nodeId": ".2.140042298386816"}]}, {"nodeId": ".1.140042298386816"}], "returnType": {"nodeId": ".2.140042298386816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307609952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042277541408"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428568672"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428569120"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140042307609952"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042307609952"}]}], "isAbstract": false}}, ".1.140042307609952": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042307609952", "variance": "COVARIANT"}}, "140042277541408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042428431968"}, {"nodeId": "140042428563744"}, {"nodeId": "140042428564192"}, {"nodeId": "140042428564640"}, {"nodeId": "140042428565088"}, {"nodeId": "140042428565536"}]}}, "140042428431968": {"type": "Function", "content": {"typeVars": [".-1.140042428431968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042428431968"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307609952", "args": [{"nodeId": "140042277542640"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.140042428431968": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428431968", "variance": "INVARIANT"}}, "140042277542640": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042428431968"}]}}, "140042428563744": {"type": "Function", "content": {"typeVars": [".-1.140042428563744", ".-2.140042428563744"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042428563744"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042428563744"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307609952", "args": [{"nodeId": "140042277542864"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.140042428563744": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428563744", "variance": "INVARIANT"}}, ".-2.140042428563744": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428563744", "variance": "INVARIANT"}}, "140042277542864": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042428563744"}, {"nodeId": ".-2.140042428563744"}]}}, "140042428564192": {"type": "Function", "content": {"typeVars": [".-1.140042428564192", ".-2.140042428564192", ".-3.140042428564192"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042428564192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042428564192"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-3.140042428564192"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307609952", "args": [{"nodeId": "140042277543088"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.140042428564192": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564192", "variance": "INVARIANT"}}, ".-2.140042428564192": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564192", "variance": "INVARIANT"}}, ".-3.140042428564192": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564192", "variance": "INVARIANT"}}, "140042277543088": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042428564192"}, {"nodeId": ".-2.140042428564192"}, {"nodeId": ".-3.140042428564192"}]}}, "140042428564640": {"type": "Function", "content": {"typeVars": [".-1.140042428564640", ".-2.140042428564640", ".-3.140042428564640", ".-4.140042428564640"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042428564640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042428564640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-3.140042428564640"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-4.140042428564640"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307609952", "args": [{"nodeId": "140042277543312"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.140042428564640": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564640", "variance": "INVARIANT"}}, ".-2.140042428564640": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564640", "variance": "INVARIANT"}}, ".-3.140042428564640": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564640", "variance": "INVARIANT"}}, ".-4.140042428564640": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428564640", "variance": "INVARIANT"}}, "140042277543312": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042428564640"}, {"nodeId": ".-2.140042428564640"}, {"nodeId": ".-3.140042428564640"}, {"nodeId": ".-4.140042428564640"}]}}, "140042428565088": {"type": "Function", "content": {"typeVars": [".-1.140042428565088", ".-2.140042428565088", ".-3.140042428565088", ".-4.140042428565088", ".-5.140042428565088"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-1.140042428565088"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-2.140042428565088"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-3.140042428565088"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-4.140042428565088"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": ".-5.140042428565088"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307609952", "args": [{"nodeId": "140042277543536"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.140042428565088": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428565088", "variance": "INVARIANT"}}, ".-2.140042428565088": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428565088", "variance": "INVARIANT"}}, ".-3.140042428565088": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428565088", "variance": "INVARIANT"}}, ".-4.140042428565088": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428565088", "variance": "INVARIANT"}}, ".-5.140042428565088": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042428565088", "variance": "INVARIANT"}}, "140042277543536": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042428565088"}, {"nodeId": ".-2.140042428565088"}, {"nodeId": ".-3.140042428565088"}, {"nodeId": ".-4.140042428565088"}, {"nodeId": ".-5.140042428565088"}]}}, "140042428565536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307609952", "args": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "140042428568672": {"type": "Function", "content": {"typeVars": [".0.140042428568672"], "argTypes": [{"nodeId": ".0.140042428568672"}], "returnType": {"nodeId": ".0.140042428568672"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042428568672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307609952", "args": [{"nodeId": ".1.140042307609952"}]}, "def": "140042428568672", "variance": "INVARIANT"}}, "140042428569120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307609952", "args": [{"nodeId": ".1.140042307609952"}]}], "returnType": {"nodeId": ".1.140042307609952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307297248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307296896"}], "isAbstract": false}}, "140042307297600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307296896"}], "isAbstract": false}}, "140042307297952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307227200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307296896"}], "isAbstract": false}}, "140042307227200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302497376"}}}, "140042302497376": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042307298656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307299008": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307299360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307299712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307300064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428572256"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512502976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042428572256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307300064"}, {"nodeId": "140042512502976"}, {"nodeId": "140042277546000"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "140042277546000": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042307300416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307300768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307301120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428572704"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307225968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307236832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042428572704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307301120"}, {"nodeId": "140042512502976"}, {"nodeId": "140042277546112"}, {"nodeId": "140042277546224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "140042277546112": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042277546224": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042307225968": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042307236832": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042307301824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307302176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307302528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307303232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307303584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307235712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307227088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307229216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307227536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307239520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307229776"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307235712": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042307227088": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042307229216": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042307227536": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042307239520": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042307229776": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042307303936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307304288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042307304992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299360"}], "isAbstract": false}}, "140042307485760": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299360"}], "isAbstract": false}}, "140042307486112": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299360"}], "isAbstract": false}}, "140042307486464": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307301120"}], "isAbstract": false}}, "140042307487168": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307301472"}], "isAbstract": false}}, "140042307487520": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307302176"}], "isAbstract": false}}, "140042307487872": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307488224": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307488576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307488928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307488576"}], "isAbstract": false}}, "140042307489280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307488576"}], "isAbstract": false}}, "140042307489632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307488576"}], "isAbstract": false}}, "140042307489984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307488576"}], "isAbstract": false}}, "140042307490336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307490688": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307491040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307491392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307491744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307492096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307492448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307492800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}], "isAbstract": false}}, "140042307493152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307302880"}], "isAbstract": false}}, "140042307493504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307302880"}], "isAbstract": false}}, "140042307493856": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307303584"}], "isAbstract": false}}, "140042307494208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307493856"}], "isAbstract": false}}, "140042307494560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307304640"}], "isAbstract": false}}, "140042307494912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428573152"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307494560"}], "isAbstract": false}}, "140042428573152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307494912"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140042307495264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428573600"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307494560"}], "isAbstract": false}}, "140042428573600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307495264"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "140042307495616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428574048"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307494560"}], "isAbstract": false}}, "140042428574048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307495616"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "140042307497024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307497728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307498080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307498432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307498784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307499136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307499488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042307499840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307495968"}], "isAbstract": false}}, "140042302644544": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042428880192"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["find_spec"]}}, "140042428880192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302644544"}, {"nodeId": "140042307290208"}, {"nodeId": "140042294766032"}, {"nodeId": "140042294766144"}], "returnType": {"nodeId": "140042294766256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140042294766032": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042294766144": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042302638208": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042306973680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269007136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302495360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302495584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512511424", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302495696"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441336960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441337408"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042306973680": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042269007136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302495360": {"type": "Union", "content": {"items": [{"nodeId": "140042302637856"}, {"nodeId": "N"}]}}, "140042302637856": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441336064"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["load_module"]}}, "140042441336064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637856"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042302638208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042302495584": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042302495696": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042303199840": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374675168"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299155824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299156048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302848496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302848608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042257201664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374676064"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042374675168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199840"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290815024"}, {"nodeId": "140042290815136"}, {"nodeId": "140042290815360"}, {"nodeId": "140042290815472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "140042290815024": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042303200896": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374552416"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374552864"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374553312"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374553760"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042374552416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303200896"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042302638208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042374552864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303200896"}, {"nodeId": "140042302638208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140042374553312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303200896"}, {"nodeId": "140042303199840"}], "returnType": {"nodeId": "140042290818944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140042290818944": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042374553760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303200896"}, {"nodeId": "140042302638208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140042290815136": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290815360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042290815472": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042299155824": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042299156048": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042302848496": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042302848608": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042257201664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199840"}], "returnType": {"nodeId": "140042290815584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290815584": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042374676064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199840"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441336960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042294491088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "140042294491088": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042441337408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042294766256": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042298915680": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269506272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269590016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269590240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269590464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269590688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269590912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269591136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269591360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269591584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269591808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269592032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269592256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269592480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269592704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269592928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269593600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042269506272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294766480"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294766480": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269590016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294766592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294766592": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269590240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294766704"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294766704": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269590464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294766816"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294766816": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269590688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294766928"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294766928": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269590912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767040"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767040": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269591136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767152"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767152": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269591360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767264": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269591584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767376"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767376": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269591808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767488"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767488": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269592032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767600"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767600": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269592256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767712"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767712": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269592480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767824"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767824": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269592704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294767936"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294767936": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269592928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768048"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768048": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269593600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768160"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768160": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042298607744": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391097568"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.140042298607744"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042298607744": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298607744", "variance": "COVARIANT"}}, "140042391097568": {"type": "Function", "content": {"typeVars": [".-1.140042391097568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042298607744"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140042391097568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.140042391097568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042391097568", "variance": "INVARIANT"}}, "140042298916032": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269593152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269595840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269596064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269596288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269596512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269596736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269596960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269597184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269597408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269597632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269597856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514592"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}], "isAbstract": false}}, "140042269593152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768272"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768272": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269595840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768384"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768384": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269596064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768496"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768496": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269596288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768608"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768608": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269596512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768720"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768720": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269596736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768832"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768832": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269596960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294768944"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294768944": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269597184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769056"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769056": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269597408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769168"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769168": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269597632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769280"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769280": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269597856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769392"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769392": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042298916384": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269599872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269600096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269600320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269600544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269600768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269600992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269601216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269601440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269601664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042299008816"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}], "isAbstract": false}}, "140042269599872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769504"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769504": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269600096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769616"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769616": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269600320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769728"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769728": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269600544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769840"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769840": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269600768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294769952"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294769952": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269600992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770064"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770064": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269601216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770176": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269601440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770288": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269601664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770400"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770400": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042299008816": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140042512514240"}]}}, "140042302644896": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299008704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429028544"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042299008704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294082832"}}}, "140042294082832": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042429028544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302644896"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042299113536": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269604128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269604352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269604576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269604800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042269604128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269604352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770736"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770736": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269604576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770848"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770848": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042269604800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294770960"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294770960": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042299113888": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269655776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269656000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269656224"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": false}}, "140042269655776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294771184"}], "returnType": {"nodeId": "140042294771296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294771184": {"type": "Tuple", "content": {"items": [{"nodeId": "140042299004448"}, {"nodeId": "140042299004336"}, {"nodeId": "140042294771072"}]}}, "140042299004448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302500848"}}}, "140042302500848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042299004336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302500400"}}}, "140042302500400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140042294771072": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042294771296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302500848"}}}, "140042269656000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294771520"}], "returnType": {"nodeId": "140042294919232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294771520": {"type": "Tuple", "content": {"items": [{"nodeId": "140042299004448"}, {"nodeId": "140042299004336"}, {"nodeId": "140042294771408"}]}}, "140042294771408": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042294919232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302500400"}}}, "140042269656224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294919456"}], "returnType": {"nodeId": "140042294919568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294919456": {"type": "Tuple", "content": {"items": [{"nodeId": "140042299004448"}, {"nodeId": "140042299004336"}, {"nodeId": "140042294919344"}]}}, "140042294919344": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042294919568": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042299114240": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269656672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269658016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269658240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269658464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269658688"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}], "isAbstract": false}}, "140042269656672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294919680"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294919680": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042269658016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294919792"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294919792": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042269658240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294919904"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294919904": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042269658464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294920016"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294920016": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042269658688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294920128"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294920128": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042302645248": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294122240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299012960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299013184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512502976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "140042294122240": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042299012960": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042299013184": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042299114592": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269662496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269662944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042294120336"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042299152912"}]}], "isAbstract": false}}, "140042269662496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294922592"}], "returnType": {"nodeId": "140042294922704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294922592": {"type": "Tuple", "content": {"items": [{"nodeId": "140042299013296"}, {"nodeId": "140042299004224"}]}}, "140042299013296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302502640"}}}, "140042302502640": {"type": "Union", "content": {"items": [{"nodeId": "140042307100608"}, {"nodeId": "N"}]}}, "140042307100608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042299004224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302502640"}}}, "140042294922704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302502640"}}}, "140042269662944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042294922816"}], "returnType": {"nodeId": "140042294922928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294922816": {"type": "Tuple", "content": {"items": [{"nodeId": "140042299013296"}, {"nodeId": "140042299004224"}]}}, "140042294922928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302502640"}}}, "140042294120336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302502640"}}}, "140042299152912": {"type": "Union", "content": {"items": [{"nodeId": "140042277651616"}, {"nodeId": "N"}]}}, "140042277651616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512510016", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042298383648": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429263296"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042429263296": {"type": "Function", "content": {"typeVars": [".-1.140042429263296"], "argTypes": [{"nodeId": "140042298383648"}, {"nodeId": ".-1.140042429263296"}], "returnType": {"nodeId": ".-1.140042429263296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140042429263296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042429263296", "variance": "INVARIANT"}}, "140042298384000": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429263744"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.140042298384000"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__next__"]}}, ".1.140042298384000": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298384000", "variance": "COVARIANT"}}, "140042429263744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298384000", "args": [{"nodeId": ".1.140042298384000"}]}], "returnType": {"nodeId": ".1.140042298384000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298384352": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429264192"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.140042298384352"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__anext__"]}}, ".1.140042298384352": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298384352", "variance": "COVARIANT"}}, "140042429264192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298384352", "args": [{"nodeId": ".1.140042298384352"}]}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".1.140042298384352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298385408": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429265536"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.140042298385408"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__le__"]}}, ".1.140042298385408": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298385408", "variance": "CONTRAVARIANT"}}, "140042429265536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298385408", "args": [{"nodeId": ".1.140042298385408"}]}, {"nodeId": ".1.140042298385408"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298385760": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429265984"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.140042298385760"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__ge__"]}}, ".1.140042298385760": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298385760", "variance": "CONTRAVARIANT"}}, "140042429265984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298385760", "args": [{"nodeId": ".1.140042298385760"}]}, {"nodeId": ".1.140042298385760"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298386112": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298384704", "args": [{"nodeId": "A"}]}, {"nodeId": "140042298385056", "args": [{"nodeId": "A"}]}, {"nodeId": "140042298385408", "args": [{"nodeId": "A"}]}, {"nodeId": "140042298385760", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "140042298387168": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042429267328"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.140042298387168"}, {"nodeId": ".2.140042298387168"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__sub__"]}}, ".1.140042298387168": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298387168", "variance": "CONTRAVARIANT"}}, ".2.140042298387168": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298387168", "variance": "COVARIANT"}}, "140042429267328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298387168", "args": [{"nodeId": ".1.140042298387168"}, {"nodeId": ".2.140042298387168"}]}, {"nodeId": ".1.140042298387168"}], "returnType": {"nodeId": ".2.140042298387168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298387520": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474635328"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.140042298387520"}, {"nodeId": ".2.140042298387520"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__rsub__"]}}, ".1.140042298387520": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298387520", "variance": "CONTRAVARIANT"}}, ".2.140042298387520": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298387520", "variance": "COVARIANT"}}, "140042474635328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298387520", "args": [{"nodeId": ".1.140042298387520"}, {"nodeId": ".2.140042298387520"}]}, {"nodeId": ".1.140042298387520"}], "returnType": {"nodeId": ".2.140042298387520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298387872": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474635776"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.140042298387872"}, {"nodeId": ".2.140042298387872"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__divmod__"]}}, ".1.140042298387872": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298387872", "variance": "CONTRAVARIANT"}}, ".2.140042298387872": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298387872", "variance": "COVARIANT"}}, "140042474635776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298387872", "args": [{"nodeId": ".1.140042298387872"}, {"nodeId": ".2.140042298387872"}]}, {"nodeId": ".1.140042298387872"}], "returnType": {"nodeId": ".2.140042298387872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298388224": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474636224"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.140042298388224"}, {"nodeId": ".2.140042298388224"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__rdivmod__"]}}, ".1.140042298388224": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298388224", "variance": "CONTRAVARIANT"}}, ".2.140042298388224": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298388224", "variance": "COVARIANT"}}, "140042474636224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298388224", "args": [{"nodeId": ".1.140042298388224"}, {"nodeId": ".2.140042298388224"}]}, {"nodeId": ".1.140042298388224"}], "returnType": {"nodeId": ".2.140042298388224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042298388576": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474636672"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140042298388576"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__iter__"]}}, ".1.140042298388576": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298388576", "variance": "COVARIANT"}}, "140042474636672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298388576", "args": [{"nodeId": ".1.140042298388576"}]}], "returnType": {"nodeId": ".1.140042298388576"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042298388928": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474637120"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.140042298388928"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__aiter__"]}}, ".1.140042298388928": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298388928", "variance": "COVARIANT"}}, "140042474637120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298388928", "args": [{"nodeId": ".1.140042298388928"}]}], "returnType": {"nodeId": ".1.140042298388928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298390688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474640256"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474640704"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042298390688"}, {"nodeId": ".2.140042298390688"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.140042298390688": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298390688", "variance": "CONTRAVARIANT"}}, ".2.140042298390688": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298390688", "variance": "COVARIANT"}}, "140042474640256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298390688", "args": [{"nodeId": ".1.140042298390688"}, {"nodeId": ".2.140042298390688"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474640704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298390688", "args": [{"nodeId": ".1.140042298390688"}, {"nodeId": ".2.140042298390688"}]}, {"nodeId": ".1.140042298390688"}], "returnType": {"nodeId": ".2.140042298390688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298391040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474641152"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474641600"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.140042298391040"}, {"nodeId": ".2.140042298391040"}], "bases": [{"nodeId": "140042298390688", "args": [{"nodeId": ".1.140042298391040"}, {"nodeId": ".2.140042298391040"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.140042298391040": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298391040", "variance": "CONTRAVARIANT"}}, ".2.140042298391040": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298391040", "variance": "INVARIANT"}}, "140042474641152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298391040", "args": [{"nodeId": ".1.140042298391040"}, {"nodeId": ".2.140042298391040"}]}, {"nodeId": ".1.140042298391040"}, {"nodeId": ".2.140042298391040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042474641600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298391040", "args": [{"nodeId": ".1.140042298391040"}, {"nodeId": ".2.140042298391040"}]}, {"nodeId": ".1.140042298391040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298391392": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474642048"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["fileno"]}}, "140042474642048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298391392"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298392096": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474642944"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140042298392096"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["readline"]}}, ".1.140042298392096": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298392096", "variance": "COVARIANT"}}, "140042474642944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298392096", "args": [{"nodeId": ".1.140042298392096"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042298392096"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042298605632": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474643392"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.140042298605632"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["readline"]}}, ".1.140042298605632": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298605632", "variance": "COVARIANT"}}, "140042474643392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298605632", "args": [{"nodeId": ".1.140042298605632"}]}], "returnType": {"nodeId": ".1.140042298605632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298606336": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474644288"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042307616288"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140042474644288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298606336"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298606688": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474644736"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042307616288"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "140042474644736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298606688"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298607040": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474645184"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286566864"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042298606336"}, {"nodeId": "140042298606688"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "140042474645184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298607040"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042286566864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042474645632"}, {"nodeId": "140042474646080"}]}}, "140042474645632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298607040"}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474646080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298607040"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298607392": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307602560"}, {"nodeId": "140042307616288"}], "protocolMembers": ["__buffer__", "__len__"]}}, "140042298608096": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042298256448", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__dataclass_fields__"]}}, "140042298256448": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303348336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303348784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303349008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302637152", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303349120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369720480"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369721376"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369721824"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042298256448"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042298256448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298256448", "variance": "INVARIANT"}}, "140042303348336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042298256448"}, {"nodeId": "0"}]}}, "140042303348784": {"type": "Union", "content": {"items": [{"nodeId": "140042298256096", "args": [{"nodeId": ".1.140042298256448"}]}, {"nodeId": "0"}]}}, "140042298256096": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369720032"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042298256096"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, ".1.140042298256096": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298256096", "variance": "COVARIANT"}}, "140042369720032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298256096", "args": [{"nodeId": ".1.140042298256096"}]}], "returnType": {"nodeId": ".1.140042298256096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303349008": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042303349120": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "0"}]}}, "140042369720480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298256448", "args": [{"nodeId": ".1.140042298256448"}]}, {"nodeId": ".1.140042298256448"}, {"nodeId": "140042285866720"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042286045936"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "140042285866720": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.140042298256448"}, "argKinds": [], "argNames": []}}, "140042286045936": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042369721376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298256448", "args": [{"nodeId": ".1.140042298256448"}]}, {"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140042369721824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042307613472": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474648320"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474648768"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474649216"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042474648320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474648768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307613472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042474649216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613472"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307613472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307613824": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042474651008"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440572992"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440573440"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440573888"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440574336"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440574784"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440575232"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440575680"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440576128"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440576576"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}], "isAbstract": true}}, "140042474651008": {"type": "Function", "content": {"typeVars": [".0.140042474651008"], "argTypes": [{"nodeId": ".0.140042474651008"}], "returnType": {"nodeId": ".0.140042474651008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042474651008": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613824"}, "def": "140042474651008", "variance": "INVARIANT"}}, "140042440572992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613824"}, {"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "140042440573440": {"type": "Function", "content": {"typeVars": [".-1.140042440573440"], "argTypes": [{"nodeId": "140042307613824"}, {"nodeId": "0"}, {"nodeId": ".-1.140042440573440"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.140042440573440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042440573440", "variance": "INVARIANT"}}, "140042440573888": {"type": "Function", "content": {"typeVars": [".-1.140042440573888"], "argTypes": [{"nodeId": ".-1.140042440573888"}, {"nodeId": ".-1.140042440573888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.140042440573888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042440573888", "variance": "INVARIANT"}}, "140042440574336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613824"}], "returnType": {"nodeId": "140042307607488", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042440574784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613824"}], "returnType": {"nodeId": "140042307606784", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042440575232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613824"}], "returnType": {"nodeId": "140042307607136", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042440575680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307613824"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042440576128": {"type": "Function", "content": {"typeVars": [".0.140042440576128"], "argTypes": [{"nodeId": ".0.140042440576128"}, {"nodeId": ".0.140042440576128"}], "returnType": {"nodeId": ".0.140042440576128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042440576128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613824"}, "def": "140042440576128", "variance": "INVARIANT"}}, "140042440576576": {"type": "Function", "content": {"typeVars": [".0.140042440576576"], "argTypes": [{"nodeId": ".0.140042440576576"}, {"nodeId": ".0.140042440576576"}], "returnType": {"nodeId": ".0.140042440576576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042440576576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307613824"}, "def": "140042440576576", "variance": "INVARIANT"}}, "140042307614528": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294075776"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042277867072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440587328"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440588224"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140042294075776": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042440585984"}, {"nodeId": "140042440586432"}]}}, "140042440585984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614528"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042294252080"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "140042294252080": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042440586432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614528"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "140042277867072": {"type": "Function", "content": {"typeVars": [".0.140042277867072"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.140042277867072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.140042277867072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307614528"}, "def": "140042277867072", "variance": "INVARIANT"}}, "140042440587328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614528"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042440588224": {"type": "Function", "content": {"typeVars": [".0.140042440588224"], "argTypes": [{"nodeId": ".0.140042440588224"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042440588224"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.140042440588224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042307614528"}, "def": "140042440588224", "variance": "INVARIANT"}}, "140042307614880": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277867968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277868416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277868640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277868864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277869088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277869312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277869536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440739520"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440739968"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440740416"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042277867968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277868416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042294252976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294252976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042277868640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277868864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277869088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277869312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277869536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}], "returnType": {"nodeId": "140042294253312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294253312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042440739520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}, {"nodeId": "140042294253648"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042294253872"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "140042294253648": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042294253872": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042440739968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307613472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042440740416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307614880"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307613472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042307615584": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277875136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277875360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440746240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440746688"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042277875136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615584"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277875360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615584"}], "returnType": {"nodeId": "140042294255440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294255440": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042440746240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615584"}, {"nodeId": "140042307290208"}, {"nodeId": "140042294255664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "140042294255664": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042440746688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615584"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042307615936": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440748480"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277877152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277877600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277877824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277878048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042277878272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440751168"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440751616"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440752064"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042440748480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042294256448"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "140042294256448": {"type": "Union", "content": {"items": [{"nodeId": "140042307614880"}, {"nodeId": "140042307615232"}, {"nodeId": "140042307615584"}]}}, "140042277877152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277877600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042294256672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294256672": {"type": "Union", "content": {"items": [{"nodeId": "140042307614880"}, {"nodeId": "140042307615232"}, {"nodeId": "140042307615584"}]}}, "140042277877824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277878048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042277878272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}], "returnType": {"nodeId": "140042294256896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294256896": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042440751168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042440751616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307613472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042440752064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307615936"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307613472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042302636448": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268871136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302636800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042306973904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268871584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042268872256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440855104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042440855552"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294485600"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042268871136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}], "returnType": {"nodeId": "140042294488288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294488288": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042302636096"}]}, {"nodeId": "N"}]}}, "140042306973904": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042268871584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042268872256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042440855104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}, {"nodeId": "140042302636800"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "140042294488736"}, {"nodeId": "140042294488848"}, {"nodeId": "140042294488960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "140042294488736": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042294488848": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042294488960": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042302636096"}]}, {"nodeId": "N"}]}}, "140042440855552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042294485600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042440856000"}, {"nodeId": "140042440856448"}]}}, "140042440856000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}, {"nodeId": "N"}, {"nodeId": "140042512513536"}], "returnType": {"nodeId": "140042302636448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042440856448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302636448"}, {"nodeId": "140042512502976"}, {"nodeId": "140042294489520"}], "returnType": {"nodeId": "140042302639968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294489520": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042302639968": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269125856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269126304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269126528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269126752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269126976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269127200"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449969536"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449969984"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269125856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}], "returnType": {"nodeId": "140042294757184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294757184": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042302636096"}]}, {"nodeId": "N"}]}}, "140042269126304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}], "returnType": {"nodeId": "140042294757408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294757408": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042269126528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}], "returnType": {"nodeId": "140042302639616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302639616": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449966400"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042449966400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639616"}, {"nodeId": "140042512502976"}, {"nodeId": "140042294757072"}], "returnType": {"nodeId": "140042302636448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "140042294757072": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042269126752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269126976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269127200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449969536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}, {"nodeId": "140042307065152"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042307065152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042449969984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639968"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042302637504": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441334272"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441334720"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441335168"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441335616"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042441334272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637504"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "140042441334720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637504"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042441335168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637504"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042441335616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302637504"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042302638560": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269008256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441338752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441339200"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441339648"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294487280"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}], "bases": [{"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}], "isAbstract": false}}, ".1.140042302638560": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302638560", "variance": "COVARIANT"}}, ".2.140042302638560": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302638560", "variance": "CONTRAVARIANT"}}, ".3.140042302638560": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302638560", "variance": "COVARIANT"}}, "140042269008256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}], "returnType": {"nodeId": "140042294491424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294491424": {"type": "Union", "content": {"items": [{"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042441338752": {"type": "Function", "content": {"typeVars": [".0.140042441338752"], "argTypes": [{"nodeId": ".0.140042441338752"}], "returnType": {"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042441338752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}, "def": "140042441338752", "variance": "INVARIANT"}}, "140042441339200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}], "returnType": {"nodeId": ".1.140042302638560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042441339648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}, {"nodeId": ".2.140042302638560"}], "returnType": {"nodeId": ".1.140042302638560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294487280": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042441340096"}, {"nodeId": "140042441340544"}]}}, "140042441340096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}, {"nodeId": "0"}, {"nodeId": "140042294491760"}, {"nodeId": "140042294491872"}], "returnType": {"nodeId": ".1.140042302638560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294491760": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}]}}, "140042294491872": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042441340544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638560", "args": [{"nodeId": ".1.140042302638560"}, {"nodeId": ".2.140042302638560"}, {"nodeId": ".3.140042302638560"}]}, {"nodeId": "140042307296896"}, {"nodeId": "N"}, {"nodeId": "140042294491984"}], "returnType": {"nodeId": ".1.140042302638560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294491984": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042302638912": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273118176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441341888"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042441342336"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449961024"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294491536"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449962368"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449962816"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}], "bases": [{"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}], "isAbstract": false}}, ".1.140042302638912": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302638912", "variance": "COVARIANT"}}, ".2.140042302638912": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302638912", "variance": "CONTRAVARIANT"}}, "140042273118176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}], "returnType": {"nodeId": "140042294492208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294492208": {"type": "Union", "content": {"items": [{"nodeId": "140042512508608", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042441341888": {"type": "Function", "content": {"typeVars": [".0.140042441341888"], "argTypes": [{"nodeId": ".0.140042441341888"}], "returnType": {"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042441341888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}, "def": "140042441341888", "variance": "INVARIANT"}}, "140042441342336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140042302638912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449961024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}, {"nodeId": ".2.140042302638912"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140042302638912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294491536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042307065600"}, {"nodeId": "140042449961472"}]}}, "140042307065600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}, {"nodeId": "0"}, {"nodeId": "140042294492992"}, {"nodeId": "140042294755392"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140042302638912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294492992": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}]}}, "140042294755392": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042449961472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}, {"nodeId": "140042307296896"}, {"nodeId": "N"}, {"nodeId": "140042294755616"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140042302638912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294755616": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042449962368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638912", "args": [{"nodeId": ".1.140042302638912"}, {"nodeId": ".2.140042302638912"}]}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449962816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "140042302639264": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269120256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449964160"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449964608"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449965056"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294755504"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}], "bases": [{"nodeId": "140042512508960", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}], "isAbstract": false}}, ".1.140042302639264": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302639264", "variance": "COVARIANT"}}, ".2.140042302639264": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302639264", "variance": "CONTRAVARIANT"}}, ".3.140042302639264": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302639264", "variance": "COVARIANT"}}, "140042269120256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639264", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}], "returnType": {"nodeId": "140042294756400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294756400": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042294756288"}]}, {"nodeId": "N"}]}}, "140042294756288": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042449964160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639264", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449964608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639264", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.140042302639264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449965056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639264", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}, {"nodeId": ".2.140042302639264"}], "returnType": {"nodeId": ".1.140042302639264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042294755504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042449965504"}, {"nodeId": "140042449965952"}]}}, "140042449965504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639264", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}, {"nodeId": "0"}, {"nodeId": "140042294756736"}, {"nodeId": "140042294756848"}], "returnType": {"nodeId": ".1.140042302639264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294756736": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "140042512502976"}]}}, "140042294756848": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042449965952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302639264", "args": [{"nodeId": ".1.140042302639264"}, {"nodeId": ".2.140042302639264"}, {"nodeId": ".3.140042302639264"}]}, {"nodeId": "140042307296896"}, {"nodeId": "N"}, {"nodeId": "140042294756960"}], "returnType": {"nodeId": ".1.140042302639264"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "140042294756960": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042302640320": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269128768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269128992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269129216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449971776"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269128768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640320"}], "returnType": {"nodeId": "140042294758080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042294758080": {"type": "Union", "content": {"items": [{"nodeId": "140042512502976"}, {"nodeId": "140042302638208"}]}}, "140042269128992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640320"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269129216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640320"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449971776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640320"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042302640672": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269229568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269230016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269230240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449973568"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449974016"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269229568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640672"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269230016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640672"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269230240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640672"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449973568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640672"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042449974016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302640672"}, {"nodeId": "A"}, {"nodeId": "140042294758976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294758976": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042302641024": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269232032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269232256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269232480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269232704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449976256"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449976704"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449797184"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269232032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269232256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269232480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269232704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449976256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042449976704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042449797184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641024"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042302641376": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269235392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269235616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269235840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449798976"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449799424"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269235392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641376"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269235616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641376"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269235840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641376"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449798976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641376"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042449799424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641376"}, {"nodeId": "A"}, {"nodeId": "140042294759984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294759984": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042302641728": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269237632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269237856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269238080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449801216"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449801664"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269237632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641728"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269237856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641728"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269238080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641728"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449801216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042449801664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302641728"}, {"nodeId": "A"}, {"nodeId": "140042294760656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294760656": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042302642784": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269244352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269311040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269311264"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449808832"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449809280"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449809728"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269244352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642784"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269311040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642784"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269311264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642784"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449808832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642784"}, {"nodeId": "A"}, {"nodeId": "140042294761776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294761776": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042449809280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642784"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042449809728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302642784"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042302643136": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269313056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269313280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042269313504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449811520"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449811968"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449812416"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042269313056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643136"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269313280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643136"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042269313504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643136"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042449811520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643136"}, {"nodeId": "A"}, {"nodeId": "140042294762448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042294762448": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042449811968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643136"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042449812416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643136"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042302643840": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042449721088"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042449721088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302643840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181249504": {"type": "Protocol", "content": {"module": "numpy.core.records", "simpleName": "_SupportsReadInto", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042424420160"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042424420608"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042424421056"}, "name": "readinto"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["readinto", "seek", "tell"]}}, "140042424420160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249504"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042424420608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249504"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042424421056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249504"}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189962432": {"type": "Protocol", "content": {"module": "numpy.core.multiarray", "simpleName": "_SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042424838272"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042424838720"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042189962432"}, {"nodeId": ".2.140042189962432"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.140042189962432": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189962432", "variance": "CONTRAVARIANT"}}, ".2.140042189962432": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189962432", "variance": "COVARIANT"}}, "140042424838272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962432", "args": [{"nodeId": ".1.140042189962432"}, {"nodeId": ".2.140042189962432"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042424838720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189962432", "args": [{"nodeId": ".1.140042189962432"}, {"nodeId": ".2.140042189962432"}]}, {"nodeId": ".1.140042189962432"}], "returnType": {"nodeId": ".2.140042189962432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189961728": {"type": "Protocol", "content": {"module": "numpy.core.numerictypes", "simpleName": "_CastFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042416547744"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042416547744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189961728"}, {"nodeId": "140042227298288"}, {"nodeId": "140042227298960"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "k"]}}, "140042227298288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042227298960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042181259360": {"type": "Concrete", "content": {"module": "numpy.core.numerictypes", "simpleName": "_typedict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042416548192"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042181259360"}], "bases": [{"nodeId": "140042307292672", "args": [{"nodeId": "0"}, {"nodeId": ".1.140042181259360"}]}], "isAbstract": false}}, ".1.140042181259360": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042181259360", "variance": "INVARIANT"}}, "140042416548192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181259360", "args": [{"nodeId": ".1.140042181259360"}]}, {"nodeId": "140042227299632"}], "returnType": {"nodeId": ".1.140042181259360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042227299632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042189961376": {"type": "Protocol", "content": {"module": "numpy.lib.arraypad", "simpleName": "_ModeFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vector", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iaxis_pad_width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iaxis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042420761344"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042420761344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189961376"}, {"nodeId": "0"}, {"nodeId": "140042227286752"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, "140042227286752": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042189960672": {"type": "Protocol", "content": {"module": "numpy.lib.function_base", "simpleName": "_TrimZerosSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411544352"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411544800"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411545248"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.140042189960672"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__", "__iter__", "__len__"]}}, ".1.140042189960672": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189960672", "variance": "COVARIANT"}}, "140042411544352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189960672", "args": [{"nodeId": ".1.140042189960672"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042411544800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189960672", "args": [{"nodeId": ".1.140042189960672"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": ".1.140042189960672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042411545248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189960672", "args": [{"nodeId": ".1.140042189960672"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042189961024": {"type": "Protocol", "content": {"module": "numpy.lib.function_base", "simpleName": "_SupportsWriteFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411545696"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411546144"}, "name": "flush"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["flush", "write"]}}, "140042411545696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189961024"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042411546144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189961024"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189958208": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "nd_grid", "members": [{"kind": "Variable", "content": {"name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042189958208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411888416"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042328572976"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042189958208"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042189958208": {"type": "TypeVar", "content": {"varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189958208", "variance": "INVARIANT"}}, "140042411888416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189958208", "args": [{"nodeId": ".1.140042189958208"}]}, {"nodeId": ".1.140042189958208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sparse"]}}, "140042328572976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042193607968"}, {"nodeId": "140042411889312"}]}}, "140042193607968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189958208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042328575328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042328575328": {"type": "Union", "content": {"items": [{"nodeId": "140042307291616"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307291616"}]}]}}, "140042411889312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189958208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042328575776"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042328575776": {"type": "Union", "content": {"items": [{"nodeId": "140042307291616"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307291616"}]}]}}, "140042189958560": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "MGridClass", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411889760"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042189958208", "args": [{"nodeId": "0"}]}], "isAbstract": false}}, "140042411889760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189958560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189958912": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "OGridClass", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411890208"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042189958208", "args": [{"nodeId": "0"}]}], "isAbstract": false}}, "140042411890208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189958912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189959264": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "AxisConcatenator", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411890656"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042328572864"}, "items": [{"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "concatenate"}}, {"kind": "Variable", "content": {"name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042160559424"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411892448"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042411890656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189959264"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "matrix", "ndmin", "trans1d"]}}, "140042328572864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042193499104"}, {"nodeId": "140042411891552"}]}}, "140042193499104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042328576448"}, {"nodeId": "140042307602208"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}}, "140042328576448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042411891552": {"type": "Function", "content": {"typeVars": [".-1.140042411891552"], "argTypes": [{"nodeId": "140042328577008"}, {"nodeId": "140042307602208"}, {"nodeId": ".-1.140042411891552"}], "returnType": {"nodeId": ".-1.140042411891552"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}}, "140042328577008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.140042411891552": {"type": "TypeVar", "content": {"varName": "_ArrayType", "values": [], "upperBound": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042411891552", "variance": "INVARIANT"}}, "140042160559424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042328576336"}, {"nodeId": "140042328577120"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042180864032", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["data", "dtype", "copy"]}}, "140042328576336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042328577120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189625648"}}}, "140042411892448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189959264"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189959616": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "RClass", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411892896"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042189959264"}], "isAbstract": false}}, "140042411892896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189959616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189959968": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "CClass", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411893344"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042189959264"}], "isAbstract": false}}, "140042411893344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189959968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189960320": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "IndexExpression", "members": [{"kind": "Variable", "content": {"name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042189960320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411893792"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042185021968"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042189960320"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042189960320": {"type": "TypeVar", "content": {"varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189960320", "variance": "INVARIANT"}}, "140042411893792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189960320", "args": [{"nodeId": ".1.140042189960320"}]}, {"nodeId": ".1.140042189960320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "maketuple"]}}, "140042185021968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042411894240"}, {"nodeId": "140042411894688"}, {"nodeId": "140042411895136"}]}}, "140042411894240": {"type": "Function", "content": {"typeVars": [".-1.140042411894240"], "argTypes": [{"nodeId": "140042189960320", "args": [{"nodeId": ".1.140042189960320"}]}, {"nodeId": ".-1.140042411894240"}], "returnType": {"nodeId": ".-1.140042411894240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042411894240": {"type": "TypeVar", "content": {"varName": "_TupType", "values": [], "upperBound": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "def": "140042411894240", "variance": "INVARIANT"}}, "140042411894688": {"type": "Function", "content": {"typeVars": [".-1.140042411894688"], "argTypes": [{"nodeId": "140042189960320", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.140042411894688"}], "returnType": {"nodeId": "140042328577232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042411894688": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042411894688", "variance": "INVARIANT"}}, "140042328577232": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042411894688"}]}}, "140042411895136": {"type": "Function", "content": {"typeVars": [".-1.140042411895136"], "argTypes": [{"nodeId": "140042189960320", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.140042411895136"}], "returnType": {"nodeId": ".-1.140042411895136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042411895136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042411895136", "variance": "INVARIANT"}}, "140042189956096": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411898720"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.140042189956096"}, {"nodeId": ".2.140042189956096"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__getitem__"]}}, ".1.140042189956096": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189956096", "variance": "CONTRAVARIANT"}}, ".2.140042189956096": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189956096", "variance": "COVARIANT"}}, "140042411898720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189956096", "args": [{"nodeId": ".1.140042189956096"}, {"nodeId": ".2.140042189956096"}]}, {"nodeId": ".1.140042189956096"}], "returnType": {"nodeId": ".2.140042189956096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189956448": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411899168"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.140042189956448"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["read"]}}, ".1.140042189956448": {"type": "TypeVar", "content": {"varName": "_CharType_co", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189956448", "variance": "COVARIANT"}}, "140042411899168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189956448", "args": [{"nodeId": ".1.140042189956448"}]}], "returnType": {"nodeId": ".1.140042189956448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189956800": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsReadSeek", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411899616"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411900064"}, "name": "seek"}}], "typeVars": [{"nodeId": ".1.140042189956800"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["read", "seek"]}}, ".1.140042189956800": {"type": "TypeVar", "content": {"varName": "_CharType_co", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189956800", "variance": "COVARIANT"}}, "140042411899616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189956800", "args": [{"nodeId": ".1.140042189956800"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042189956800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042411900064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189956800", "args": [{"nodeId": ".1.140042189956800"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042189957152": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042411900512"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140042189957152"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["write"]}}, ".1.140042189957152": {"type": "TypeVar", "content": {"varName": "_CharType_contra", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189957152", "variance": "CONTRAVARIANT"}}, "140042411900512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957152", "args": [{"nodeId": ".1.140042189957152"}]}, {"nodeId": ".1.140042189957152"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189957504": {"type": "Concrete", "content": {"module": "numpy.lib.npyio", "simpleName": "BagObj", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407559456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407559904"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407560352"}, "name": "__dir__"}}], "typeVars": [{"nodeId": ".1.140042189957504"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042189957504": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189957504", "variance": "COVARIANT"}}, "140042407559456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957504", "args": [{"nodeId": ".1.140042189957504"}]}, {"nodeId": "140042189956096", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".1.140042189957504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042407559904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957504", "args": [{"nodeId": ".1.140042189957504"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".1.140042189957504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042407560352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957504", "args": [{"nodeId": ".1.140042189957504"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189957856": {"type": "Concrete", "content": {"module": "numpy.lib.npyio", "simpleName": "NpzFile", "members": [{"kind": "Variable", "content": {"name": "zip", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042215084576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185018272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185018048"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042223592032"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042160177216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "own_fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407561696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407562144"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407562592"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407563040"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407563488"}, "name": "__del__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407563936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407564384"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407564832"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}], "isAbstract": false}}, "140042215084576": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipFile", "members": [{"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205928064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042215085280"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205928512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "NameToInfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042215085280"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205928624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205928848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205928736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict_timestamps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369907648"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365452352"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365452800"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365453248"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365453696"}, "name": "getinfo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365454144"}, "name": "infolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365454592"}, "name": "namelist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "force_zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365455040"}, "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365455488"}, "name": "extract"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "members", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365455936"}, "name": "extractall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365456384"}, "name": "printdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365456832"}, "name": "setpassword"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365457280"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365457728"}, "name": "testzip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365458176"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zinfo_or_arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365458624"}, "name": "writestr"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042205928064": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042215085280": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipInfo", "members": [{"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205929296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_system", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extract_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reserved", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flag_bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "volume", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "internal_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "external_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "CRC", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compress_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "file_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orig_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365460416"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "from_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042206017376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365461760"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365462208"}, "name": "FileHeader"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042205929296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042215194432"}}}, "140042215194432": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042365460416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085280"}, {"nodeId": "140042307290208"}, {"nodeId": "140042205936576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "date_time"]}}, "140042205936576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042215194432"}}}, "140042206017376": {"type": "Function", "content": {"typeVars": [".0.140042206017376"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042205936688"}, {"nodeId": "140042205936912"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".0.140042206017376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "filename", "arcname", "strict_timestamps"]}}, "140042205936688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042307239632": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}]}}, "140042205936912": {"type": "Union", "content": {"items": [{"nodeId": "140042205936800"}, {"nodeId": "N"}]}}, "140042205936800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, ".0.140042206017376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215085280"}, "def": "140042206017376", "variance": "INVARIANT"}}, "140042365461760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085280"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365462208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085280"}, {"nodeId": "140042205937024"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "zip64"]}}, "140042205937024": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042205928512": {"type": "Union", "content": {"items": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "N"}]}}, "140042205928624": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042205928848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205927616"}}}, "140042205927616": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042205928736": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042369907648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205932768"}, {"nodeId": "140042205932880"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042205932992"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "compresslevel", "strict_timestamps"]}}, "140042205932768": {"type": "Union", "content": {"items": [{"nodeId": "140042205932656"}, {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}]}}, "140042205932656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042205932880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205927616"}}}, "140042205932992": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042365452352": {"type": "Function", "content": {"typeVars": [".0.140042365452352"], "argTypes": [{"nodeId": ".0.140042365452352"}], "returnType": {"nodeId": ".0.140042365452352"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042365452352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042215084576"}, "def": "140042365452352", "variance": "INVARIANT"}}, "140042365452800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205933104"}, {"nodeId": "140042205933216"}, {"nodeId": "140042205933328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042205933104": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042205933216": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042205933328": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042365453248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365453696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042215085280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140042365454144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042215085280"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365454592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365455040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205933440"}, {"nodeId": "140042205933552"}, {"nodeId": "140042205933664"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "mode", "pwd", "force_zip64"]}}, "140042205933440": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042215085280"}]}}, "140042205933552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205926272"}}}, "140042205926272": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042205933664": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042365455488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205933776"}, {"nodeId": "140042205934000"}, {"nodeId": "140042205934112"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "member", "path", "pwd"]}}, "140042205933776": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042215085280"}]}}, "140042205934000": {"type": "Union", "content": {"items": [{"nodeId": "140042205933888"}, {"nodeId": "N"}]}}, "140042205933888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042205934112": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042365455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205934336"}, {"nodeId": "140042205934560"}, {"nodeId": "140042205934672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "members", "pwd"]}}, "140042205934336": {"type": "Union", "content": {"items": [{"nodeId": "140042205934224"}, {"nodeId": "N"}]}}, "140042205934224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042205934560": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042205934448"}]}, {"nodeId": "N"}]}}, "140042205934448": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042215085280"}]}}, "140042205934672": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042365456384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205934784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "file"]}}, "140042205934784": {"type": "Union", "content": {"items": [{"nodeId": "140042215084224"}, {"nodeId": "N"}]}}, "140042215084224": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_Writer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369906304"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["write"]}}, "140042369906304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084224"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042365456832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pwd"]}}, "140042365457280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205934896"}, {"nodeId": "140042205935008"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "pwd"]}}, "140042205934896": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042215085280"}]}}, "140042205935008": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042365457728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}], "returnType": {"nodeId": "140042205935120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042205935120": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042365458176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205935232"}, {"nodeId": "140042205935456"}, {"nodeId": "140042205935568"}, {"nodeId": "140042205935680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "arcname", "compress_type", "compresslevel"]}}, "140042205935232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042205935456": {"type": "Union", "content": {"items": [{"nodeId": "140042205935344"}, {"nodeId": "N"}]}}, "140042205935344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042205935568": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042205935680": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042365458624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084576"}, {"nodeId": "140042205935792"}, {"nodeId": "140042205935904"}, {"nodeId": "140042205936016"}, {"nodeId": "140042205936128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "zinfo_or_arcname", "data", "compress_type", "compresslevel"]}}, "140042205935792": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042215085280"}]}}, "140042205935904": {"type": "Union", "content": {"items": [{"nodeId": "140042298607392"}, {"nodeId": "140042307290208"}]}}, "140042205936016": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042205936128": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042185018272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290208"}]}]}}, "140042185018048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042223592032": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042407560800"}]}}, "140042407560800": {"type": "Function", "content": {"typeVars": [".-1.140042407560800"], "argTypes": [{"nodeId": ".-1.140042407560800"}], "returnType": {"nodeId": "140042189957504", "args": [{"nodeId": ".-1.140042407560800"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042407560800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042407560800", "variance": "INVARIANT"}}, "140042160177216": {"type": "Function", "content": {"typeVars": [".-1.140042160177216"], "argTypes": [{"nodeId": ".-1.140042160177216"}], "returnType": {"nodeId": "140042189957504", "args": [{"nodeId": ".-1.140042160177216"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042160177216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042160177216", "variance": "INVARIANT"}}, "140042407561696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}, {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042223595280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "own_fid", "allow_pickle", "pickle_kwargs"]}}, "140042223595280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042407562144": {"type": "Function", "content": {"typeVars": [".-1.140042407562144"], "argTypes": [{"nodeId": ".-1.140042407562144"}], "returnType": {"nodeId": ".-1.140042407562144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042407562144": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042407562144", "variance": "INVARIANT"}}, "140042407562592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}, {"nodeId": "140042223595392"}, {"nodeId": "140042223595504"}, {"nodeId": "140042223595616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042223595392": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042223595504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307296896"}]}}, "140042223595616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302642080"}]}}, "140042407563040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042407563488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042407563936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042407564384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042407564832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189957856"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189954688": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_ArrayWrap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407938528"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042407938528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189954688"}, {"nodeId": "0"}, {"nodeId": "140042327904592"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042327904592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042327904704"}]}}, "140042327904704": {"type": "Tuple", "content": {"items": [{"nodeId": "140042180856640"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}]}}, "140042189955040": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_ArrayPrepare", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042407938976"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042407938976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189955040"}, {"nodeId": "0"}, {"nodeId": "140042327905936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042327905936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042327907952"}]}}, "140042327907952": {"type": "Tuple", "content": {"items": [{"nodeId": "140042180856640"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512514240"}]}}, "140042189955392": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayWrap", "members": [{"kind": "Variable", "content": {"name": "__array_wrap__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042159905184"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__array_wrap__"]}}, "140042159905184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189955392"}], "returnType": {"nodeId": "140042189954688"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189955744": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayPrepare", "members": [{"kind": "Variable", "content": {"name": "__array_prepare__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042159906080"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__array_prepare__"]}}, "140042159906080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189955744"}], "returnType": {"nodeId": "140042189955040"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189954336": {"type": "Concrete", "content": {"module": "numpy.lib.stride_tricks", "simpleName": "DummyArray", "members": [{"kind": "Variable", "content": {"name": "__array_interface__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042201870320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "interface", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042408055008"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042201870320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042408055008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189954336"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "140042327900560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "interface", "base"]}}, "140042327900560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042189953632": {"type": "Protocol", "content": {"module": "numpy.lib.type_check", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273236896"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042189953632"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["real"]}}, ".1.140042189953632": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189953632", "variance": "COVARIANT"}}, "140042273236896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189953632", "args": [{"nodeId": ".1.140042189953632"}]}], "returnType": {"nodeId": ".1.140042189953632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189953984": {"type": "Protocol", "content": {"module": "numpy.lib.type_check", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042282252128"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042189953984"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["imag"]}}, ".1.140042189953984": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189953984", "variance": "COVARIANT"}}, "140042282252128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189953984", "args": [{"nodeId": ".1.140042189953984"}]}], "returnType": {"nodeId": ".1.140042189953984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189952928": {"type": "Protocol", "content": {"module": "numpy.lib.utils", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042403369184"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.140042189952928"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["write"]}}, ".1.140042189952928": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189952928", "variance": "CONTRAVARIANT"}}, "140042403369184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189952928", "args": [{"nodeId": ".1.140042189952928"}]}, {"nodeId": ".1.140042189952928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042189953280": {"type": "Concrete", "content": {"module": "numpy.lib.utils", "simpleName": "_Deprecate", "members": [{"kind": "Variable", "content": {"name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042190090336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042190091008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042190091120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042403369632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042403370080"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042190090336": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042190091008": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042190091120": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042403369632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189953280"}, {"nodeId": "140042248521536"}, {"nodeId": "140042248519968"}, {"nodeId": "140042248271936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "old_name", "new_name", "message"]}}, "140042248521536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042248519968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042248271936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}]}}, "140042403370080": {"type": "Function", "content": {"typeVars": [".-1.140042403370080"], "argTypes": [{"nodeId": "140042189953280"}, {"nodeId": ".-1.140042403370080"}], "returnType": {"nodeId": ".-1.140042403370080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140042403370080": {"type": "TypeVar", "content": {"varName": "_FuncType", "values": [], "upperBound": {"nodeId": "140042189635872"}, "def": "140042403370080", "variance": "INVARIANT"}}, "140042189635872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042189948352": {"type": "Protocol", "content": {"module": "numpy._typing._array_like", "simpleName": "_SupportsArrayFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366347168"}, "name": "__array_function__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__array_function__"]}}, "140042366347168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189948352"}, {"nodeId": "140042193842720"}, {"nodeId": "140042512510720", "args": [{"nodeId": "0"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}}, "140042193842720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042198149152": {"type": "Concrete", "content": {"module": "numpy._typing._generic_alias", "simpleName": "_GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__slots__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042169081344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042226970944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042226968704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042226972960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__unpacked__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042226972512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__typing_unpacked_tuple_args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042226971840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370048608"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042226971616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042189189888"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370049952"}, "name": "__mro_entries__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370050400"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370050848"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370051296"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370051744"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370052192"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370049504"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370053088"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370052640"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "_ATTR_EXCEPTIONS", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307608192", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370053984"}, "name": "__getattribute__"}}, {"kind": "Variable", "content": {"name": "_origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512513536"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042169083248"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512504032"}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042169081344": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042226970944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042512513536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042226968704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042226972960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512504032"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042226972512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042226971840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042244009408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042244009408": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042370048608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}, {"nodeId": "140042512513536"}, {"nodeId": "140042244009184"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "origin", "args", "starred"]}}, "140042244009184": {"type": "Union", "content": {"items": [{"nodeId": "140042512502976"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}]}}, "140042226971616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189189888": {"type": "Function", "content": {"typeVars": [".-1.140042189189888"], "argTypes": [{"nodeId": ".-1.140042189189888"}], "returnType": {"nodeId": "140042244001344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042189189888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042198149152"}, "def": "140042189189888", "variance": "INVARIANT"}}, "140042244001344": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042244003584"}]}}, "140042244003584": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "140042512503328"}]}}, "140042370049952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512502976"}]}], "returnType": {"nodeId": "140042244001456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bases"]}}, "140042244001456": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "140042370050400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370050848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370051296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042370051744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}, {"nodeId": "140042512513536"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}}, "140042370052192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042370049504": {"type": "Function", "content": {"typeVars": [".-1.140042370049504"], "argTypes": [{"nodeId": ".-1.140042370049504"}, {"nodeId": "140042243999104"}], "returnType": {"nodeId": ".-1.140042370049504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042370049504": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042198149152"}, "def": "140042370049504", "variance": "INVARIANT"}}, "140042243999104": {"type": "Union", "content": {"items": [{"nodeId": "140042512502976"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}]}}, "140042370053088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042370052640": {"type": "Function", "content": {"typeVars": [".-1.140042370052640"], "argTypes": [{"nodeId": ".-1.140042370052640"}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".-1.140042370052640"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042370052640": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042198149152"}, "def": "140042370052640", "variance": "INVARIANT"}}, "140042370053984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198149152"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042169083248": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}]}}, "140042189949056": {"type": "Concrete", "content": {"module": "numpy.ctypeslib", "simpleName": "_ndptr", "members": [{"kind": "Variable", "content": {"name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042189949056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ndim_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042231252016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202407184"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042243758720"}, "items": [{"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "from_param"}}], "typeVars": [{"nodeId": ".1.140042189949056"}], "bases": [{"nodeId": "140042202207456"}], "isAbstract": false}}, ".1.140042189949056": {"type": "TypeVar", "content": {"varName": "_DTypeOptional", "values": [], "upperBound": {"nodeId": "140042244002800"}, "def": "140042189949056", "variance": "INVARIANT"}}, "140042244002800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}]}}, "140042231252016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042202407184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042190086864"}]}]}}, "140042190086864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042190089664"}}}, "140042190089664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042243758720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042403379488"}, {"nodeId": "140042403379936"}]}}, "140042403379488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140042185614688", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, "140042403379936": {"type": "Function", "content": {"typeVars": [".-1.140042403379936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".-1.140042403379936"}]}], "returnType": {"nodeId": "140042185614688", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, ".-1.140042403379936": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042403379936", "variance": "INVARIANT"}}, "140042189949408": {"type": "Concrete", "content": {"module": "numpy.ctypeslib", "simpleName": "_concrete_ndptr", "members": [{"kind": "Variable", "content": {"name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042189949408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042239680224"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042189949408"}], "bases": [{"nodeId": "140042189949056", "args": [{"nodeId": ".1.140042189949408"}]}], "isAbstract": false}}, ".1.140042189949408": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042189949408", "variance": "INVARIANT"}}, "140042239680224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189949408", "args": [{"nodeId": ".1.140042189949408"}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": ".1.140042189949408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223071680": {"type": "Concrete", "content": {"module": "numpy.lib._version", "simpleName": "NumpyVersion", "members": [{"kind": "Variable", "content": {"name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "major", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bugfix", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pre_release", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_devversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362145472"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362145920"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362146368"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362146816"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362147264"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362147712"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362148160"}, "name": "__ge__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042362145472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "vstring"]}}, "140042362145920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042214754560"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042214754560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042223071680"}]}}, "140042362146368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042214754672"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042214754672": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042223071680"}]}}, "140042362146816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042214754784"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042214754784": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042223071680"}]}}, "140042362147264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042214754896"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042214754896": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042223071680"}]}}, "140042362147712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042214755008"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042214755008": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042223071680"}]}}, "140042362148160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071680"}, {"nodeId": "140042214755232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042214755232": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042223071680"}]}}, "140042181249152": {"type": "Concrete", "content": {"module": "numpy.linalg", "simpleName": "LinAlgError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042198150912": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MAError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042198151264": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042198150912"}], "isAbstract": false}}, "140042181257248": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedArray", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357731616"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357731888"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357732160"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357732432"}, "name": "view"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357732704"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357732976"}, "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042244009968"}, "items": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231799744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "dtype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042243768128"}, "items": [{"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231800640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "shape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357734336"}, "name": "__setmask__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042243765776"}, "items": [{"kind": "Variable", "content": {"name": "mask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231800864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mask"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042243760736"}, "items": [{"kind": "Variable", "content": {"name": "recordmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231800192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "recordmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "recordmask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352984400"}, "name": "harden_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352984672"}, "name": "soften_mask"}}, {"kind": "Variable", "content": {"name": "hardmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231801088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352985216"}, "name": "unshare_mask"}}, {"kind": "Variable", "content": {"name": "sharedmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231796832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352985760"}, "name": "shrink_mask"}}, {"kind": "Variable", "content": {"name": "baseclass", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042370045472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042243765552"}, "items": [{"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042370053536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "flat"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042243765440"}, "items": [{"kind": "Variable", "content": {"name": "fill_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231792576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fill_value"}}, {"kind": "Variable", "content": {"name": "get_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "set_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352987392"}, "name": "filled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352987664"}, "name": "compressed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "condition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352987936"}, "name": "compress"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352988208"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352988480"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352988752"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352989024"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352989296"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352989568"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352989840"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352990112"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352990384"}, "name": "__div__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352990656"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352990928"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352991200"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352991472"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352991744"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352992016"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352992288"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352992560"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352992832"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352993104"}, "name": "__idiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352993376"}, "name": "__ifloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352993648"}, "name": "__itruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352993920"}, "name": "__ipow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352994192"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352994464"}, "name": "__int__"}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042231801312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042353769408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352995280"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352995552"}, "name": "ravel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352995824"}, "name": "reshape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352996096"}, "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352996368"}, "name": "put"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352996640"}, "name": "ids"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352996912"}, "name": "iscontiguous"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352997184"}, "name": "all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352997456"}, "name": "any"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352997728"}, "name": "nonzero"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352998000"}, "name": "trace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352998272"}, "name": "dot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352998544"}, "name": "sum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352998816"}, "name": "cumsum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352999088"}, "name": "prod"}}, {"kind": "Variable", "content": {"name": "product", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352999360"}, "name": "cumprod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352999632"}, "name": "mean"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042352999904"}, "name": "anom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353000176"}, "name": "var"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353098816"}, "name": "std"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decimals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353099088"}, "name": "round"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353099360"}, "name": "argsort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353099632"}, "name": "argmin"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353099904"}, "name": "argmax"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353100176"}, "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353100448"}, "name": "min"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353100720"}, "name": "max"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353100992"}, "name": "ptp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353101264"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353101536"}, "name": "argpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353101808"}, "name": "take"}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "diagonal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flatten", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repeat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "squeeze", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "swapaxes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353102080"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353102352"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353102624"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353102896"}, "name": "toflex"}}, {"kind": "Variable", "content": {"name": "torecords", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353103168"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353103440"}, "name": "__deepcopy__"}}], "typeVars": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}], "bases": [{"nodeId": "140042185617504", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "isAbstract": false}}, ".1.140042181257248": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181257248", "variance": "INVARIANT"}}, ".2.140042181257248": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042181257248", "variance": "COVARIANT"}}, "140042357731616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "data", "mask", "dtype", "copy", "subok", "ndmin", "fill_value", "keep_mask", "hard_mask", "shrink", "order"]}}, "140042357731888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042357732160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "140042357732432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type", "fill_value"]}}, "140042357732704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042357732976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042244009968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042193894336"}]}}, "140042193894336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231799744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042243768128": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042193894560"}]}}, "140042193894560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231800640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042357734336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mask", "copy"]}}, "140042243765776": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353766048"}]}}, "140042353766048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231800864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042243760736": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353768960"}]}}, "140042353768960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231800192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352984400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352984672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231801088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352985216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231796832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352985760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370045472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042243765552": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042193845408"}]}}, "140042193845408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370053536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042243765440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042193845184"}]}}, "140042193845184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042231792576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352987392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "140042352987664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352987936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "condition", "axis", "out"]}}, "140042352988208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352988480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352988752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352989024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352989296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352989568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352989840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352990112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352990384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042352990656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352990928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352991200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352991472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352991744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352992016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352992288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352992560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352992832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352993104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352993376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352993648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352993920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042352994192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042352994464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042231801312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353769408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257248"}, {"nodeId": ".2.140042181257248"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352995280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "keepdims"]}}, "140042352995552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "140042352995824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "s", "kwargs"]}}, "140042352996096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "newshape", "refcheck", "order"]}}, "140042352996368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "indices", "values", "mode"]}}, "140042352996640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352996912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352997184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042352997456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "140042352997728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042352998000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "140042352998272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "b", "out", "strict"]}}, "140042352998544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "140042352998816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042352999088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "140042352999360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "140042352999632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "140042352999904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype"]}}, "140042353000176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims"]}}, "140042353098816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims"]}}, "140042353099088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, "140042353099360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order", "endwith", "fill_value"]}}, "140042353099632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "fill_value", "out", "keepdims"]}}, "140042353099904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "fill_value", "out", "keepdims"]}}, "140042353100176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order", "endwith", "fill_value"]}}, "140042353100448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "140042353100720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "140042353100992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "140042353101264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042353101536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042353101808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "140042353102080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "140042353102352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fill_value", "order"]}}, "140042353102624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}}, "140042353102896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353103168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353103440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "memo"]}}, "140042181257600": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "mvoid", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hardmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353103712"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353103984"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353104256"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353104528"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353104800"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353105072"}, "name": "filled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353105344"}, "name": "tolist"}}], "typeVars": [{"nodeId": ".1.140042181257600"}, {"nodeId": ".2.140042181257600"}], "bases": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181257600"}, {"nodeId": ".2.140042181257600"}]}], "isAbstract": false}}, ".1.140042181257600": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181257600", "variance": "INVARIANT"}}, ".2.140042181257600": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042181257600", "variance": "COVARIANT"}}, "140042353103712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "mask", "dtype", "fill_value", "hardmask", "copy", "subok"]}}, "140042353103984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042353104256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042353104528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042353104800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042353105072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "140042353105344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181248448": {"type": "Concrete", "content": {"module": "numpy.polynomial.chebyshev", "simpleName": "Chebyshev", "members": [{"kind": "Variable", "content": {"name": "interpolate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042122349696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042223066752"}], "isAbstract": false}}, "140042122349696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "func", "deg", "domain", "args"]}}, "140042223066752": {"type": "Concrete", "content": {"module": "numpy.polynomial._polybase", "simpleName": "ABCPolyBase", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxpower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "symbol", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219347904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219347232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219347456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042223529856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336250288"}, "name": "has_samecoef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336250560"}, "name": "has_samedomain"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336250832"}, "name": "has_samewindow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336251104"}, "name": "has_sametype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "symbol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336452192"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt_str", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336251648"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336251920"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336252192"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336252464"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336252736"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336253008"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336253280"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336253552"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336253824"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336254096"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336254368"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336254640"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336254912"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336255184"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336255456"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336255728"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335993920"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335994192"}, "name": "__rdiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335994464"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335994736"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335995008"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335995280"}, "name": "__rdivmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335995552"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335995824"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335996096"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335996368"}, "name": "degree"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "deg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335996640"}, "name": "cutdeg"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335996912"}, "name": "trim"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335997184"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335997456"}, "name": "convert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335997728"}, "name": "mapparms"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lbnd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335998000"}, "name": "integ"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335998272"}, "name": "deriv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335998544"}, "name": "roots"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335998816"}, "name": "linspace"}}, {"kind": "Variable", "content": {"name": "fit", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273342848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromroots", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223704928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219352832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219350368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219350144"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307500896"}], "isAbstract": true}}, "140042219347904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042219347232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042219347456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223529856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042336250288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042336250560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042336250832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042336251104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042336452192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "coef", "domain", "window", "symbol"]}}, "140042336251648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt_str"]}}, "140042336251920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}}, "140042336252192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042336252464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042336252736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042336253008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042336253280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336253552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336253824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336254096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336254368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336254640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336254912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336255184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336255456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042336255728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335993920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335994192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335994464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335994736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335995008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335995280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042335995552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335995824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335996096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335996368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335996640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "deg"]}}, "140042335996912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tol"]}}, "140042335997184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "size"]}}, "140042335997456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "domain", "kind", "window"]}}, "140042335997728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335998000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k", "lbnd"]}}, "140042335998272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, "140042335998544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335998816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223066752"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "n", "domain"]}}, "140042273342848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "x", "y", "deg", "domain", "rcond", "full", "w", "window"]}}, "140042223704928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "roots", "domain", "window"]}}, "140042219352832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "domain", "window"]}}, "140042219350368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "deg", "domain", "window"]}}, "140042219350144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "series", "domain", "window"]}}, "140042307500896": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042181248096": {"type": "Concrete", "content": {"module": "numpy.polynomial.hermite", "simpleName": "Hermite", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042223066752"}], "isAbstract": false}}, "140042181247744": {"type": "Concrete", "content": {"module": "numpy.polynomial.hermite_e", "simpleName": "HermiteE", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042223066752"}], "isAbstract": false}}, "140042181247392": {"type": "Concrete", "content": {"module": "numpy.polynomial.laguerre", "simpleName": "Laguerre", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042223066752"}], "isAbstract": false}}, "140042181247040": {"type": "Concrete", "content": {"module": "numpy.polynomial.legendre", "simpleName": "Legendre", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042223066752"}], "isAbstract": false}}, "140042180869664": {"type": "Concrete", "content": {"module": "numpy.polynomial.polynomial", "simpleName": "Polynomial", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042223066752"}], "isAbstract": false}}, "140042181254784": {"type": "Concrete", "content": {"module": "numpy.random._generator", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357803040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357803488"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357803936"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357804384"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357804832"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357805280"}, "name": "__reduce__"}}, {"kind": "Variable", "content": {"name": "bit_generator", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131469280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357806176"}, "name": "bytes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168456624"}, "items": [{"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168456400"}, "items": [{"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "permutation"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168461888"}, "items": [{"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168467264"}, "items": [{"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042231369616"}, "items": [{"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "beta"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168553920"}, "items": [{"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168554480"}, "items": [{"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "integers"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168555152"}, "items": [{"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choice"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168467040"}, "items": [{"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "uniform"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168604976"}, "items": [{"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168565008"}, "items": [{"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168610016"}, "items": [{"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168611472"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168612144"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168612928"}, "items": [{"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042231369952"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042231370848"}, "items": [{"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_t"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168665024"}, "items": [{"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vonmises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168665920"}, "items": [{"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pareto"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168666704"}, "items": [{"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "weibull"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168667376"}, "items": [{"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "power"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168614720"}, "items": [{"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_cauchy"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168668944"}, "items": [{"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "laplace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168669056"}, "items": [{"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gumbel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168670400"}, "items": [{"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logistic"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168671184"}, "items": [{"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lognormal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168671968"}, "items": [{"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rayleigh"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168672752"}, "items": [{"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "wald"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168673424"}, "items": [{"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "triangular"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168674208"}, "items": [{"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042231371296"}, "items": [{"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "negative_binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168676112"}, "items": [{"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "poisson"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168677120"}, "items": [{"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "zipf"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168677792"}, "items": [{"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "geometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042231370960"}, "items": [{"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "hypergeometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168679360"}, "items": [{"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logseries"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349332960"}, "name": "multivariate_normal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349333408"}, "name": "multinomial"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "colors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "nsample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349333856"}, "name": "multivariate_hypergeometric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349334304"}, "name": "dirichlet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349334752"}, "name": "permuted"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349335200"}, "name": "shuffle"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042357803040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042180869312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bit_generator"]}}, "140042180869312": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "BitGenerator", "members": [{"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223062880"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348699808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348700256"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348700704"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348701152"}, "name": "__reduce__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042181162288"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042122308384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042181162176"}, "items": [{"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cnt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348703840"}, "name": "_benchmark"}}, {"kind": "Variable", "content": {"name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042122309728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cffi", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042122309280"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307500896"}], "isAbstract": true}}, "140042223062880": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Lock", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335992992"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335993440"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323542304"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323542752"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323543200"}, "name": "locked"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042335992992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062880"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042335993440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062880"}, {"nodeId": "140042223050128"}, {"nodeId": "140042223050240"}, {"nodeId": "140042223050352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042223050128": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042223050240": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223050352": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042323542304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062880"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "140042323542752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323543200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062880"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042348699808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}, {"nodeId": "140042172928560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042172928560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172927104"}, {"nodeId": "140042180868960"}]}}, "140042172927104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042180868960": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "SeedSequence", "members": [{"kind": "Variable", "content": {"name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042181159600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pool", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042181160944"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348697568"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348698016"}, "name": "__repr__"}}, {"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042122306144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348698912"}, "name": "generate_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348699360"}, "name": "spawn"}}], "typeVars": [], "bases": [{"nodeId": "140042180868256"}], "isAbstract": false}}, "140042181159600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}]}}, "140042181160944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042348697568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180868960"}, {"nodeId": "140042172927440"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "entropy", "spawn_key", "pool_size", "n_children_spawned"]}}, "140042172927440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042172926768"}]}}, "140042172926768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042348698016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180868960"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042122306144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180868960"}], "returnType": {"nodeId": "140042172927216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172927216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042348698912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180868960"}, {"nodeId": "140042512514240"}, {"nodeId": "140042172927664"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172928112"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "140042172927664": {"type": "Union", "content": {"items": [{"nodeId": "140042172927552"}, {"nodeId": "140042172927328"}]}}, "140042172927552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180931568"}}}, "140042180931568": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042181151536"}]}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042180933920"}]}]}, {"nodeId": "0"}, {"nodeId": "140042180932016"}]}}, "140042181151536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042180933920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042180932016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214768000"}}}, "140042172927328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231520432"}}}, "140042231520432": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042180934032"}]}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042181151984"}]}]}, {"nodeId": "0"}, {"nodeId": "140042181151872"}]}}, "140042180934032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042181151984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042181151872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214899888"}}}, "140042172928112": {"type": "Union", "content": {"items": [{"nodeId": "140042172927888"}, {"nodeId": "140042172928000"}]}}, "140042172927888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042172928000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042348699360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180868960"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042180868960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, "140042180868256": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "ISpawnableSeedSequence", "members": [{"kind": "Variable", "content": {"name": "spawn", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042122302784"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042180867904"}], "isAbstract": true}}, "140042122302784": {"type": "Function", "content": {"typeVars": [".-1.140042122302784"], "argTypes": [{"nodeId": ".-1.140042122302784"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".-1.140042122302784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, ".-1.140042122302784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042122302784", "variance": "INVARIANT"}}, "140042180867904": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "ISeedSequence", "members": [{"kind": "Variable", "content": {"name": "generate_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042122302112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307500896"}], "isAbstract": true}}, "140042122302112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180867904"}, {"nodeId": "140042512514240"}, {"nodeId": "140042172925760"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172926208"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "140042172925760": {"type": "Union", "content": {"items": [{"nodeId": "140042172925536"}, {"nodeId": "140042172925648"}]}}, "140042172925536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180931568"}}}, "140042172925648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231520432"}}}, "140042172926208": {"type": "Union", "content": {"items": [{"nodeId": "140042172925984"}, {"nodeId": "140042172926096"}]}}, "140042172925984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042172926096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042348700256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042348700704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140042348701152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}], "returnType": {"nodeId": "140042172929344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172929344": {"type": "Tuple", "content": {"items": [{"nodeId": "140042214816704"}, {"nodeId": "140042172928784"}, {"nodeId": "140042172929120"}]}}, "140042214816704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042180869312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042172928784": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042172929120": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042181162288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348701600"}]}}, "140042348701600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}], "returnType": {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042122308384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}], "returnType": {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181162176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348702496"}, {"nodeId": "140042348702944"}, {"nodeId": "140042348703392"}]}}, "140042348702496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "140042348702944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}, {"nodeId": "140042172930464"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172930800"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "140042172930464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042172930800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042348703392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}, {"nodeId": "140042172931248"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "140042172931248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042172931136"}]}}, "140042172931136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042348703840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cnt", "method"]}}, "140042122309728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}], "returnType": {"nodeId": "140042172931472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172931472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181156016"}}}, "140042181156016": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}}, "140042122309280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180869312"}], "returnType": {"nodeId": "140042172931584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042172931584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181156016"}}}, "140042357803488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042357803936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042357804384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042357804832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140042357805280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}], "returnType": {"nodeId": "140042168457520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168457520": {"type": "Tuple", "content": {"items": [{"nodeId": "140042219526560"}, {"nodeId": "140042168457184"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042219526560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042181254784"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042168457184": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042131469280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}], "returnType": {"nodeId": "140042180869312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042357806176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}}, "140042168456624": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357806624"}, {"nodeId": "140042357807072"}, {"nodeId": "140042357807520"}, {"nodeId": "140042357807968"}, {"nodeId": "140042357808416"}]}}, "140042357806624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "N"}, {"nodeId": "140042168458192"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "140042168458192": {"type": "Union", "content": {"items": [{"nodeId": "140042168457968"}, {"nodeId": "140042168458080"}]}}, "140042168457968": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042181305600": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042181311760"}]}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042181304368"}]}]}, {"nodeId": "0"}, {"nodeId": "140042181305712"}, {"nodeId": "140042181303360"}]}}, "140042181311760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042181304368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042181305712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214903920"}}}, "140042181303360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214915904"}}}, "140042168458080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042231370288": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042181312096"}]}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042231370512"}]}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042231370736"}, {"nodeId": "140042231370400"}]}}, "140042181312096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042231370512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042231370736": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214904592"}}}, "140042231370400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214966320"}}}, "140042357807072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168458752"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168458528"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168458752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168458528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357807520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168459200"}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168459424"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "140042168459200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168459424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357807968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168459760"}, {"nodeId": "140042168459872"}, {"nodeId": "140042168460208"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168460432"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "140042168459760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168459872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168460208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168460096"}]}]}]}}, "140042168460096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042168460432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042357808416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168460544"}, {"nodeId": "140042168460656"}, {"nodeId": "140042168461216"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168461440"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "140042168460544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168460656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042168461216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168461104"}]}]}]}}, "140042168461104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168461440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168456400": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357808864"}, {"nodeId": "140042357809312"}]}}, "140042357808864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168461552"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "140042168461552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042357809312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168461664"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "140042168461664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168461888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357809760"}, {"nodeId": "140042357810208"}, {"nodeId": "140042357810656"}, {"nodeId": "140042357811104"}, {"nodeId": "140042357811552"}, {"nodeId": "140042357812000"}]}}, "140042357809760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "N"}, {"nodeId": "140042168462784"}, {"nodeId": "140042168463120"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "140042168462784": {"type": "Union", "content": {"items": [{"nodeId": "140042168462560"}, {"nodeId": "140042168462672"}]}}, "140042168462560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168462672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042168463120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042357810208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168463680"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168463456"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168463680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168463456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357810656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168464128"}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168464352"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "140042168464128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168464352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357811104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168464688"}, {"nodeId": "140042168465024"}, {"nodeId": "140042168465360"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168465584"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "method", "out"]}}, "140042168464688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168465024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168465360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168465248"}]}]}]}}, "140042168465248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168465584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357811552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168465920"}, {"nodeId": "140042168466032"}, {"nodeId": "140042168466368"}, {"nodeId": "140042168466704"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168466928"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "140042168465920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168466032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168466368": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168466704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168466592"}]}]}]}}, "140042168466592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042168466928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042357812000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168467152"}, {"nodeId": "140042168549440"}, {"nodeId": "140042168549776"}, {"nodeId": "140042168550112"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168550336"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "140042168467152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168549440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042168549776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168550112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168550000"}]}]}]}}, "140042168550000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168550336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168467264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357812448"}, {"nodeId": "140042357812896"}, {"nodeId": "140042357813344"}, {"nodeId": "140042357813792"}, {"nodeId": "140042357814240"}]}}, "140042357812448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "N"}, {"nodeId": "140042168550672"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "140042168550672": {"type": "Union", "content": {"items": [{"nodeId": "140042168550560"}, {"nodeId": "140042168550448"}]}}, "140042168550560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168550448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042357812896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168551232"}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168551008"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "140042168551232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168551008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357813344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168551120"}, {"nodeId": "140042168551680"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168551904"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "out"]}}, "140042168551120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168551680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168550784"}]}]}]}}, "140042168550784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168551904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042357813792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168552016"}, {"nodeId": "140042168552128"}, {"nodeId": "140042168552464"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168552688"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "140042168552016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168552128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168552464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168552352"}]}]}]}}, "140042168552352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042168552688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042357814240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168553024"}, {"nodeId": "140042168553136"}, {"nodeId": "140042168553248"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168553472"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "140042168553024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168553136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042168553248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168552912"}]}]}]}}, "140042168552912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168553472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042231369616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357814688"}, {"nodeId": "140042357815136"}]}}, "140042357814688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "140042357815136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168553808"}, {"nodeId": "140042168553584"}, {"nodeId": "140042168554032"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168554256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "140042168553808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168553584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168554032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168553696"}]}}, "140042168553696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168554256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168553920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357815584"}, {"nodeId": "140042357816032"}]}}, "140042357815584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042357816032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168551568"}, {"nodeId": "140042168554704"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168554928"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042168551568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168554704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168554368"}]}}, "140042168554368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168554928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168554480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042357816480"}, {"nodeId": "140042357816928"}, {"nodeId": "140042348904736"}, {"nodeId": "140042348905184"}, {"nodeId": "140042348905632"}, {"nodeId": "140042348906080"}, {"nodeId": "140042348906528"}, {"nodeId": "140042348906976"}, {"nodeId": "140042348907424"}, {"nodeId": "140042348907872"}, {"nodeId": "140042348908320"}, {"nodeId": "140042348908768"}, {"nodeId": "140042348909216"}, {"nodeId": "140042348909664"}, {"nodeId": "140042348910112"}]}}, "140042357816480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168554592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}}, "140042168554592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042357816928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168555040"}, {"nodeId": "N"}, {"nodeId": "140042168555376"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168555040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042168555376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813824"}}}, "140042189813824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042198150208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042189811808"}]}}, "140042189811808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214766208"}}}, "140042348904736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168555712"}, {"nodeId": "N"}, {"nodeId": "140042168555824"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168555712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042168555824": {"type": "Union", "content": {"items": [{"nodeId": "140042168555488"}, {"nodeId": "140042168555600"}]}}, "140042168555488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231258176"}}}, "140042231258176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042198150208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042194357040"}, {"nodeId": "140042194363200"}, {"nodeId": "140042194359168"}, {"nodeId": "140042194357600"}, {"nodeId": "140042189363504"}, {"nodeId": "140042189369328"}, {"nodeId": "140042189368768"}, {"nodeId": "140042231258624"}, {"nodeId": "140042231258288"}, {"nodeId": "140042231258512"}]}}, "140042194357040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214900560"}}}, "140042194363200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901232"}}}, "140042194359168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901904"}}}, "140042194357600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214902576"}}}, "140042189363504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214906608"}}}, "140042189369328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214907280"}}}, "140042189368768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214907952"}}}, "140042231258624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214908848"}}}, "140042231258288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214909856"}}}, "140042231258512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214910304"}}}, "140042168555600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231258736"}}}, "140042231258736": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042198150208", "args": [{"nodeId": "0"}]}, {"nodeId": "140042189622064"}, {"nodeId": "140042231260640"}, {"nodeId": "140042231261984"}, {"nodeId": "140042231261200"}, {"nodeId": "140042231260976"}, {"nodeId": "140042231261648"}, {"nodeId": "140042231261424"}, {"nodeId": "140042231259184"}, {"nodeId": "140042231258848"}, {"nodeId": "140042231259072"}]}}, "140042189622064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214766656"}}}, "140042231260640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214767328"}}}, "140042231261984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214768000"}}}, "140042231261200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214899888"}}}, "140042231260976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214910976"}}}, "140042231261648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214911648"}}}, "140042231261424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214912320"}}}, "140042231259184": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214913216"}}}, "140042231258848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214914000"}}}, "140042231259072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214914560"}}}, "140042348905184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168556944"}, {"nodeId": "140042168556160"}, {"nodeId": "140042168556384"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168558176"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042168556944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168556160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168558064"}]}}, "140042168558064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168556384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168556496"}]}}, "140042168556496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168558176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042348905632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168557504"}, {"nodeId": "140042168556272"}, {"nodeId": "140042168558400"}, {"nodeId": "140042168557728"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168557504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168556272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168558288"}]}}, "140042168558288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168558400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168557840"}]}}, "140042168557840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168557728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813824"}}}, "140042348906080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168557056"}, {"nodeId": "140042168555264"}, {"nodeId": "140042168557952"}, {"nodeId": "140042168557616"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168558624"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168557056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168555264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168557280"}]}}, "140042168557280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168557952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168556832"}]}}, "140042168556832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168557616": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168557392"}]}, {"nodeId": "0"}, {"nodeId": "140042168556048"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168555936"}]}]}]}}, "140042168557392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042168556048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214900560"}}}, "140042168555936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042168558624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042348906528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168558960"}, {"nodeId": "140042168558736"}, {"nodeId": "140042168559184"}, {"nodeId": "140042168559632"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168559856"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168558960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168558736": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168557168"}]}}, "140042168557168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168559184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168559072"}]}}, "140042168559072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168559632": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168559296"}]}, {"nodeId": "0"}, {"nodeId": "140042168559408"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168559520"}]}]}]}}, "140042168559296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042168559408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901232"}}}, "140042168559520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042168559856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042348906976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168560192"}, {"nodeId": "140042168559968"}, {"nodeId": "140042168560416"}, {"nodeId": "140042168560864"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168561088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168560192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168559968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168558848"}]}}, "140042168558848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168560416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168560304"}]}}, "140042168560304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168560864": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168560528"}]}, {"nodeId": "0"}, {"nodeId": "140042168560640"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168560752"}]}]}]}}, "140042168560528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042168560640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901904"}}}, "140042168560752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042168561088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042348907424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168561424"}, {"nodeId": "140042168561200"}, {"nodeId": "140042168561648"}, {"nodeId": "140042168562096"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168562320"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168561424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168561200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168560080"}]}}, "140042168560080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168561648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168561536"}]}}, "140042168561536": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168562096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168561760"}]}, {"nodeId": "0"}, {"nodeId": "140042168561872"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168561984"}]}]}]}}, "140042168561760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168561872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214902576"}}}, "140042168561984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168562320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042348907872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168562656"}, {"nodeId": "140042168562432"}, {"nodeId": "140042168562880"}, {"nodeId": "140042168563328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168563552"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168562656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168562432": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168561312"}]}}, "140042168561312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168562880": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168562768"}]}}, "140042168562768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168563328": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168562992"}]}, {"nodeId": "0"}, {"nodeId": "140042168563104"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168563216"}]}]}]}}, "140042168562992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042168563104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214766656"}}}, "140042168563216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042168563552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042348908320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168563888"}, {"nodeId": "140042168563664"}, {"nodeId": "140042168564112"}, {"nodeId": "140042168564560"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168564784"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168563888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168563664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168562544"}]}}, "140042168562544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168564112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168564000"}]}}, "140042168564000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168564560": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168564224"}]}, {"nodeId": "0"}, {"nodeId": "140042168564336"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168564448"}]}]}]}}, "140042168564224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042168564336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214767328"}}}, "140042168564448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042168564784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042348908768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168565120"}, {"nodeId": "140042168564896"}, {"nodeId": "140042168565344"}, {"nodeId": "140042168598704"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168598928"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168565120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168564896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168563776"}]}}, "140042168563776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168565344": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168565232"}]}}, "140042168565232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168598704": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168565456"}]}, {"nodeId": "0"}, {"nodeId": "140042168565568"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168598592"}]}]}]}}, "140042168565456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042168565568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214768000"}}}, "140042168598592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042168598928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042348909216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168599152"}, {"nodeId": "140042168599040"}, {"nodeId": "140042168599488"}, {"nodeId": "140042168599936"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168600160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168599152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168599040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168599264"}]}}, "140042168599264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168599488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168599376"}]}}, "140042168599376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168599936": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168599600"}]}, {"nodeId": "0"}, {"nodeId": "140042168599712"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168599824"}]}]}]}}, "140042168599600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042168599712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214899888"}}}, "140042168599824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042168600160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042348909664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168600384"}, {"nodeId": "140042168600272"}, {"nodeId": "140042168600720"}, {"nodeId": "140042168601280"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168601504"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168600384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168600272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168600496"}]}}, "140042168600496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168600720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168600608"}]}}, "140042168600608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168601280": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168600832"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042168600944"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168601168"}]}]}]}}, "140042168600832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168600944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214909856"}}}, "140042168601168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168601504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042348910112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168601728"}, {"nodeId": "140042168601616"}, {"nodeId": "140042168602064"}, {"nodeId": "140042168602624"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168602848"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "140042168601728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168601616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168601840"}]}}, "140042168601840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168602064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168601952"}]}}, "140042168601952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168602624": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168602176"}]}, {"nodeId": "0"}, {"nodeId": "140042168602288"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168602512"}]}]}]}}, "140042168602176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042168602288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214914000"}}}, "140042168602512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042168602848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042168555152": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348910560"}, {"nodeId": "140042348911008"}, {"nodeId": "140042348911456"}, {"nodeId": "140042348911904"}]}}, "140042348910560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168602960"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "140042168602960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168603184"}]}}, "140042168603184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042348911008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168603520"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168603296"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168603744"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "140042168603520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168603296": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168603072"}]}}, "140042168603072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168603744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042348911456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168604080"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168603856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "140042168604080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168603856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168603408"}]}}, "140042168603408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042348911904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168603968"}, {"nodeId": "140042168604528"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168604640"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "140042168603968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168604528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168604640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168604416"}]}}, "140042168604416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168467040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348912352"}, {"nodeId": "140042348912800"}]}}, "140042348912352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042348912800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168605200"}, {"nodeId": "140042168605088"}, {"nodeId": "140042168605424"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168605648"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042168605200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168605088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168605424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168605312"}]}}, "140042168605312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168605648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168604976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348913248"}, {"nodeId": "140042348913696"}]}}, "140042348913248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042348913696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168604304"}, {"nodeId": "140042168605760"}, {"nodeId": "140042168606208"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168606432"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168604304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168605760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168606208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168606096"}]}}, "140042168606096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168606432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168565008": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348914144"}, {"nodeId": "140042348914592"}, {"nodeId": "140042348915040"}, {"nodeId": "140042348915488"}, {"nodeId": "140042348915936"}]}}, "140042348914144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}, {"nodeId": "140042168607104"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "140042168607104": {"type": "Union", "content": {"items": [{"nodeId": "140042168606880"}, {"nodeId": "140042168606992"}]}}, "140042168606880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168606992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042348914592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168607664"}, {"nodeId": "140042168607440"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168606544"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "140042168607664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168607440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168607328"}]}}, "140042168607328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168606544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042348915040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168608000"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168608448"}]}]}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168608672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "out"]}}, "140042168608000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168608448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168608672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042348915488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168608784"}, {"nodeId": "140042168609232"}, {"nodeId": "140042168609344"}, {"nodeId": "140042168609680"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168609904"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "140042168608784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168609232": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168609120"}]}}, "140042168609120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168609344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042181305600"}}}, "140042168609680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168609568"}]}]}]}}, "140042168609568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042168609904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951872"}]}}}, "140042348915936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168607552"}, {"nodeId": "140042168610464"}, {"nodeId": "140042168610576"}, {"nodeId": "140042168610912"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168611136"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "140042168607552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168610464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168610240"}]}}, "140042168610240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168610576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231370288"}}}, "140042168610912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168610800"}]}]}]}}, "140042168610800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168611136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168610016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348916384"}, {"nodeId": "140042348916832"}]}}, "140042348916384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "140042348916832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168611584"}, {"nodeId": "140042168610128"}, {"nodeId": "140042168611696"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168611920"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "140042168611584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168610128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168611696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168611360"}]}}, "140042168611360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168611920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168611472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348917280"}, {"nodeId": "140042348917728"}]}}, "140042348917280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "140042348917728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168611248"}, {"nodeId": "140042168612032"}, {"nodeId": "140042168612480"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168612704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "140042168611248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168612032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168612480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168612368"}]}}, "140042168612368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168612704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168612144": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348918176"}, {"nodeId": "140042348918624"}]}}, "140042348918176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "140042348918624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168612256"}, {"nodeId": "140042168612816"}, {"nodeId": "140042168613152"}, {"nodeId": "140042168613376"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168613600"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "140042168612256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168612816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168613152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168613376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168613264"}]}}, "140042168613264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168613600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168612928": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348919072"}, {"nodeId": "140042348919520"}]}}, "140042348919072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042348919520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168613040"}, {"nodeId": "140042168614048"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168614272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042168613040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168614048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168613712"}]}}, "140042168613712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168614272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042231369952": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348919968"}, {"nodeId": "140042348920416"}]}}, "140042348919968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "140042348920416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168664240"}, {"nodeId": "140042168664352"}, {"nodeId": "140042168664576"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168664800"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "140042168664240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168664352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168664576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168664464"}]}}, "140042168664464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168664800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042231370848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349150496"}, {"nodeId": "140042349150944"}, {"nodeId": "140042349151392"}]}}, "140042349150496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042349150944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168664128"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168665248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042168664128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168665248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042349151392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168665584"}, {"nodeId": "140042168665136"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168665696"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042168665584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168665136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168665696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168665024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349151840"}, {"nodeId": "140042349152288"}]}}, "140042349151840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "140042349152288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168665472"}, {"nodeId": "140042168665808"}, {"nodeId": "140042168666256"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168666480"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "140042168665472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168665808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168666256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168666144"}]}}, "140042168666144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168666480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168665920": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349152736"}, {"nodeId": "140042349153184"}]}}, "140042349152736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042349153184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168666032"}, {"nodeId": "140042168666928"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168667152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168666032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168666928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168666592"}]}}, "140042168666592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168667152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168666704": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349153632"}, {"nodeId": "140042349154080"}]}}, "140042349153632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042349154080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168666816"}, {"nodeId": "140042168667600"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168667824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168666816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168667600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168667264"}]}}, "140042168667264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168667824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168667376": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349154528"}, {"nodeId": "140042349154976"}]}}, "140042349154528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042349154976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168667488"}, {"nodeId": "140042168668272"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168668496"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168667488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168668272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168667936"}]}}, "140042168667936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168668496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168614720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349155424"}, {"nodeId": "140042349155872"}]}}, "140042349155424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042349155872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168669168"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168669392"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168669168": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168669392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168668944": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349156320"}, {"nodeId": "140042349156768"}]}}, "140042349156320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042349156768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168669616"}, {"nodeId": "140042168669728"}, {"nodeId": "140042168669952"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168670176"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168669616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168669728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168669952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168669840"}]}}, "140042168669840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168670176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168669056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349157216"}, {"nodeId": "140042349157664"}]}}, "140042349157216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042349157664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168669504"}, {"nodeId": "140042168670288"}, {"nodeId": "140042168670736"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168670960"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168669504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168670288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168670736": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168670624"}]}}, "140042168670624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168670960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168670400": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349158112"}, {"nodeId": "140042349158560"}]}}, "140042349158112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042349158560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168670512"}, {"nodeId": "140042168671072"}, {"nodeId": "140042168671520"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168671744"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168670512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168671072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168671520": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168671408"}]}}, "140042168671408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168671744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168671184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349159008"}, {"nodeId": "140042349159456"}]}}, "140042349159008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "140042349159456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168671296"}, {"nodeId": "140042168671856"}, {"nodeId": "140042168672304"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168672528"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "140042168671296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168671856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168672304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168672192"}]}}, "140042168672192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168672528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168671968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349159904"}, {"nodeId": "140042349160352"}]}}, "140042349159904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042349160352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168672080"}, {"nodeId": "140042168672976"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168673200"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042168672080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168672976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168672640"}]}}, "140042168672640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168673200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168672752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349160800"}, {"nodeId": "140042349161248"}]}}, "140042349160800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "140042349161248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168672864"}, {"nodeId": "140042168673312"}, {"nodeId": "140042168673760"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168673984"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "140042168672864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168673312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168673760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168673648"}]}}, "140042168673648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168673984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168673424": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349161696"}, {"nodeId": "140042349162144"}]}}, "140042349161696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "140042349162144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168673536"}, {"nodeId": "140042168674096"}, {"nodeId": "140042168674432"}, {"nodeId": "140042168674656"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168674880"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "140042168673536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168674096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168674432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168674656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168674544"}]}}, "140042168674544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168674880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168674208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349162592"}, {"nodeId": "140042349163040"}]}}, "140042349162592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042349163040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168674320"}, {"nodeId": "140042168674992"}, {"nodeId": "140042168675440"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168675664"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042168674320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168674992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168675440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168675328"}]}}, "140042168675328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168675664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042231371296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349163488"}, {"nodeId": "140042349163936"}]}}, "140042349163488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042349163936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168676336"}, {"nodeId": "140042168676448"}, {"nodeId": "140042168676672"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168676896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042168676336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168676448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168676672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168676560"}]}}, "140042168676560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168676896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168676112": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349164384"}, {"nodeId": "140042349164832"}]}}, "140042349164384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "140042349164832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168676224"}, {"nodeId": "140042168677344"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168677568"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "140042168676224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168677344": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168677008"}]}}, "140042168677008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168677568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168677120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349165280"}, {"nodeId": "140042349165728"}]}}, "140042349165280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042349165728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168677232"}, {"nodeId": "140042168678016"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168678240"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168677232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168678016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168677680"}]}}, "140042168677680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168678240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168677792": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349166176"}, {"nodeId": "140042349330720"}]}}, "140042349166176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042349330720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168677904"}, {"nodeId": "140042168678688"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168678912"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042168677904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168678688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168678352"}]}}, "140042168678352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168678912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042231370960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349331168"}, {"nodeId": "140042349331616"}]}}, "140042349331168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "140042349331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168679584"}, {"nodeId": "140042168679696"}, {"nodeId": "140042168679808"}, {"nodeId": "140042168680032"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168680256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "140042168679584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168679696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168679808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168680032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168679920"}]}}, "140042168679920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168680256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168679360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349332064"}, {"nodeId": "140042349332512"}]}}, "140042349332064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042349332512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168746272"}, {"nodeId": "140042168746384"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168746608"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042168746272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168746384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168746048"}]}}, "140042168746048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168746608": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042349332960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168746944"}, {"nodeId": "140042168746160"}, {"nodeId": "140042168747056"}, {"nodeId": "140042168747504"}, {"nodeId": "140042512514592"}, {"nodeId": "140042168747952"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168748176"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol", "method"]}}, "140042168746944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168746160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168747056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168746720"}]}}, "140042168746720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168747504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168747952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168748176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042349333408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168748512"}, {"nodeId": "140042168746832"}, {"nodeId": "140042168748624"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168748848"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}}, "140042168748512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168746832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168748624": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168748288"}]}}, "140042168748288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168748848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042349333856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168748960"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168749184"}, {"nodeId": "140042168749520"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168749744"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "colors", "nsample", "size", "method"]}}, "140042168748960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168749184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168749072"}]}}, "140042168749072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168749520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168749744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042349334304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168750080"}, {"nodeId": "140042168749856"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168750304"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}}, "140042168750080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168749856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168748400"}]}}, "140042168748400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168750304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042349334752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168750640"}, {"nodeId": "140042168749968"}, {"nodeId": "140042168750864"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "x", "axis", "out"]}}, "140042168750640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168749968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042168750864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "140042349335200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254784"}, {"nodeId": "140042168751312"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "140042168751312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042181254432": {"type": "Concrete", "content": {"module": "numpy.random._mt19937", "simpleName": "MT19937", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349336992"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349337440"}, "name": "_legacy_seeding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349337888"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168454720"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126290144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}], "typeVars": [], "bases": [{"nodeId": "140042180869312"}], "isAbstract": false}}, "140042349336992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254432"}, {"nodeId": "140042168455056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042168455056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168454944"}, {"nodeId": "140042180868960"}]}}, "140042168454944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042349337440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254432"}, {"nodeId": "140042168455392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seed"]}}, "140042168455392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042349337888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254432"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181254432"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "140042168454720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349338336"}]}}, "140042349338336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254432"}], "returnType": {"nodeId": "140042168455280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168455280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042126290144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181254432"}], "returnType": {"nodeId": "140042168455280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181253024": {"type": "Concrete", "content": {"module": "numpy.random._pcg64", "simpleName": "PCG64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349340128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349340576"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168453600"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131405088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349341920"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "140042180869312"}], "isAbstract": false}}, "140042349340128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253024"}, {"nodeId": "140042168453712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042168453712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168454048"}, {"nodeId": "140042180868960"}]}}, "140042168454048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042349340576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253024"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181253024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "140042168453600": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349341024"}]}}, "140042349341024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253024"}], "returnType": {"nodeId": "140042168453824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168453824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042131405088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253024"}], "returnType": {"nodeId": "140042168453824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042349341920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253024"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181253024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "140042181253376": {"type": "Concrete", "content": {"module": "numpy.random._pcg64", "simpleName": "PCG64DXSM", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349342368"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349342816"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168454160"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131404192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349344160"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "140042180869312"}], "isAbstract": false}}, "140042349342368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253376"}, {"nodeId": "140042168454496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042168454496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168454384"}, {"nodeId": "140042180868960"}]}}, "140042168454384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042349342816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253376"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181253376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "140042168454160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349343264"}]}}, "140042349343264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253376"}], "returnType": {"nodeId": "140042168454272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168454272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042131404192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253376"}], "returnType": {"nodeId": "140042168454272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042349344160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181253376"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181253376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "140042181251968": {"type": "Concrete", "content": {"module": "numpy.random._philox", "simpleName": "Philox", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "counter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042349345504"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168452592"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042126284992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348691744"}, "name": "jumped"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348692192"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "140042180869312"}], "isAbstract": false}}, "140042349345504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181251968"}, {"nodeId": "140042168452928"}, {"nodeId": "140042168453152"}, {"nodeId": "140042168453376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seed", "counter", "key"]}}, "140042168452928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168452816"}, {"nodeId": "140042180868960"}]}}, "140042168452816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168453152": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168453040"}]}}, "140042168453040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168453376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168453264"}]}}, "140042168453264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168452592": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042349345952"}]}}, "140042349345952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181251968"}], "returnType": {"nodeId": "140042168452704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168452704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042126284992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181251968"}], "returnType": {"nodeId": "140042168452704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042348691744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181251968"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181251968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "140042348692192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181251968"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042181251968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "140042181250912": {"type": "Concrete", "content": {"module": "numpy.random._sfc64", "simpleName": "SFC64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348693536"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168401056"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042131424416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}], "typeVars": [], "bases": [{"nodeId": "140042180869312"}], "isAbstract": false}}, "140042348693536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181250912"}, {"nodeId": "140042168451696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042168451696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168452368"}, {"nodeId": "140042180868960"}]}}, "140042168452368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168401056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042348693984"}]}}, "140042348693984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181250912"}], "returnType": {"nodeId": "140042168452256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168452256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042131424416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181250912"}], "returnType": {"nodeId": "140042168452256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181249856": {"type": "Concrete", "content": {"module": "numpy.random.mtrand", "simpleName": "RandomState", "members": [{"kind": "Variable", "content": {"name": "_bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042180869312"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348706080"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348706528"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348706976"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348707424"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353639712"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353640160"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353640608"}, "name": "seed"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168187616"}, "items": [{"kind": "Variable", "content": {"name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353641952"}, "name": "set_state"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168188176"}, "items": [{"kind": "Variable", "content": {"name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_sample"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168238480"}, "items": [{"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168240160"}, "items": [{"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "beta"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168240608"}, "items": [{"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168187504"}, "items": [{"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168242848"}, "items": [{"kind": "Variable", "content": {"name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "tomaxint"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168242960"}, "items": [{"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "randint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353654496"}, "name": "bytes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168243408"}, "items": [{"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choice"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042181304480"}, "items": [{"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "uniform"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168310176"}, "items": [{"kind": "Variable", "content": {"name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168311072"}, "items": [{"kind": "Variable", "content": {"name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "randn"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168311184"}, "items": [{"kind": "Variable", "content": {"name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_integers"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168311296"}, "items": [{"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168312752"}, "items": [{"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168312864"}, "items": [{"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168313984"}, "items": [{"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168314656"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168315440"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168316224"}, "items": [{"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168253824"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168318016"}, "items": [{"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_t"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168319024"}, "items": [{"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vonmises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168319472"}, "items": [{"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pareto"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042181304816"}, "items": [{"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "weibull"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168387056"}, "items": [{"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "power"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168387728"}, "items": [{"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_cauchy"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168388400"}, "items": [{"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "laplace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168388512"}, "items": [{"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gumbel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168389632"}, "items": [{"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logistic"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168390416"}, "items": [{"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lognormal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168391200"}, "items": [{"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rayleigh"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168391984"}, "items": [{"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "wald"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168392656"}, "items": [{"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "triangular"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168393440"}, "items": [{"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168319808"}, "items": [{"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "negative_binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168395344"}, "items": [{"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "poisson"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168396352"}, "items": [{"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "zipf"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168397024"}, "items": [{"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "geometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168397696"}, "items": [{"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "hypergeometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168398368"}, "items": [{"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logseries"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042344920928"}, "name": "multivariate_normal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042344921376"}, "name": "multinomial"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042344921824"}, "name": "dirichlet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042344922272"}, "name": "shuffle"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042168399264"}, "items": [{"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "permutation"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042348706080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168187952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042168187952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168187840"}, {"nodeId": "140042180869312"}]}}, "140042168187840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042348706528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042348706976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042348707424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353639712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140042353640160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}], "returnType": {"nodeId": "140042168188736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042168188736": {"type": "Tuple", "content": {"items": [{"nodeId": "140042219024704"}, {"nodeId": "140042168188400"}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042219024704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042181249856"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042168188400": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042353640608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168238256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "140042168238256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168238144"}]}}, "140042168238144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168187616": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353641056"}, {"nodeId": "140042353641504"}]}}, "140042353641056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}}, "140042353641504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042168239376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}}, "140042168239376": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "140042168239264"}]}}, "140042168239264": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168239040"}]}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}]}}, "140042168239040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042353641952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168240048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140042168240048": {"type": "Union", "content": {"items": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "140042168239936"}]}}, "140042168239936": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168239712"}]}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}]}}, "140042168239712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042168188176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353642400"}, {"nodeId": "140042353642848"}]}}, "140042353642400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042353642848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168240272"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168240496"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168240272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168240496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168238480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353643296"}, {"nodeId": "140042353643744"}]}}, "140042353643296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042353643744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168240720"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168240944"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168240720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168240944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168240160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353644192"}, {"nodeId": "140042353644640"}]}}, "140042353644192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "140042353644640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168241168"}, {"nodeId": "140042168241280"}, {"nodeId": "140042168241504"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168241728"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "140042168241168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168241280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168241504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168241392"}]}}, "140042168241392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168241728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168240608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353645088"}, {"nodeId": "140042353645536"}]}}, "140042353645088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042353645536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168241056"}, {"nodeId": "140042168242176"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168242400"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042168241056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168242176": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168241840"}]}}, "140042168241840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168242400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168187504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353645984"}, {"nodeId": "140042353646432"}]}}, "140042353645984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042353646432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168243072"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168243296"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168243072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168243296": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168242848": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353646880"}, {"nodeId": "140042353647328"}]}}, "140042353646880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042353647328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168243520"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168243744"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168243520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168243744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168242960": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353647776"}, {"nodeId": "140042353648224"}, {"nodeId": "140042353648672"}, {"nodeId": "140042353649120"}, {"nodeId": "140042353649568"}, {"nodeId": "140042353650016"}, {"nodeId": "140042353650464"}, {"nodeId": "140042353650912"}, {"nodeId": "140042353651360"}, {"nodeId": "140042353651808"}, {"nodeId": "140042353652256"}, {"nodeId": "140042353652704"}, {"nodeId": "140042353653152"}, {"nodeId": "140042353653600"}, {"nodeId": "140042353654048"}]}}, "140042353647776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168243968"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}}, "140042168243968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042353648224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168244080"}, {"nodeId": "N"}, {"nodeId": "140042168244192"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168244080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042168244192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813824"}}}, "140042353648672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168244528"}, {"nodeId": "N"}, {"nodeId": "140042168244640"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168244528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042168244640": {"type": "Union", "content": {"items": [{"nodeId": "140042168244304"}, {"nodeId": "140042168244416"}]}}, "140042168244304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231258176"}}}, "140042168244416": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231258736"}}}, "140042353649120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168245760"}, {"nodeId": "140042168244976"}, {"nodeId": "140042168245200"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168246992"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042168245760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168244976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168246880"}]}}, "140042168246880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168245200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168245312"}]}}, "140042168245312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168246992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042353649568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168246320"}, {"nodeId": "140042168245088"}, {"nodeId": "140042168247216"}, {"nodeId": "140042168246544"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042185618560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168246320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168245088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168247104"}]}}, "140042168247104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168247216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168246656"}]}}, "140042168246656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168246544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042189813824"}}}, "140042353650016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168245872"}, {"nodeId": "140042168243856"}, {"nodeId": "140042168246768"}, {"nodeId": "140042168246432"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168247440"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168245872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168243856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168246096"}]}}, "140042168246096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168246768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168245648"}]}}, "140042168245648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168246432": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168246208"}]}, {"nodeId": "0"}, {"nodeId": "140042168244864"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168244752"}]}]}]}}, "140042168246208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042168244864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214900560"}}}, "140042168244752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042168247440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952576"}]}}}, "140042353650464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168247776"}, {"nodeId": "140042168247552"}, {"nodeId": "140042168248000"}, {"nodeId": "140042168248448"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168248672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168247776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168247552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168245984"}]}}, "140042168245984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168248000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168247888"}]}}, "140042168247888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168248448": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168248112"}]}, {"nodeId": "0"}, {"nodeId": "140042168248224"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168248336"}]}]}]}}, "140042168248112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042168248224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901232"}}}, "140042168248336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042168248672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189952224"}]}}}, "140042353650912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168249008"}, {"nodeId": "140042168248784"}, {"nodeId": "140042168249232"}, {"nodeId": "140042168249680"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168249904"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168249008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168248784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168247664"}]}}, "140042168247664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168249232": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168249120"}]}}, "140042168249120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168249680": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168249344"}]}, {"nodeId": "0"}, {"nodeId": "140042168249456"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168249568"}]}]}]}}, "140042168249344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042168249456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214901904"}}}, "140042168249568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042168249904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951872"}]}}}, "140042353651360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168250240"}, {"nodeId": "140042168250016"}, {"nodeId": "140042168250464"}, {"nodeId": "140042168250912"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168251136"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168250240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168250016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168248896"}]}}, "140042168248896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168250464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168250352"}]}}, "140042168250352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168250912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168250576"}]}, {"nodeId": "0"}, {"nodeId": "140042168250688"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168250800"}]}]}]}}, "140042168250576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168250688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214902576"}}}, "140042168250800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042168251136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042189951520"}]}}}, "140042353651808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168251472"}, {"nodeId": "140042168251248"}, {"nodeId": "140042168251696"}, {"nodeId": "140042168252144"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168252368"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168251472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168251248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168250128"}]}}, "140042168250128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168251696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168251584"}]}}, "140042168251584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168252144": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168251808"}]}, {"nodeId": "0"}, {"nodeId": "140042168251920"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168252032"}]}]}]}}, "140042168251808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042168251920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214766656"}}}, "140042168252032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042168252368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952576"}]}}}, "140042353652256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168252704"}, {"nodeId": "140042168252480"}, {"nodeId": "140042168252928"}, {"nodeId": "140042168253376"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168253600"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168252704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168252480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168251360"}]}}, "140042168251360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168252928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168252816"}]}}, "140042168252816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168253376": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168253040"}]}, {"nodeId": "0"}, {"nodeId": "140042168253152"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168253264"}]}]}]}}, "140042168253040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042168253152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214767328"}}}, "140042168253264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042168253600": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189952224"}]}}}, "140042353652704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168253936"}, {"nodeId": "140042168253712"}, {"nodeId": "140042168254160"}, {"nodeId": "140042168303904"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168304128"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168253936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168253712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168252592"}]}}, "140042168252592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168254160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168254048"}]}}, "140042168254048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168303904": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168254272"}]}, {"nodeId": "0"}, {"nodeId": "140042168303680"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168303792"}]}]}]}}, "140042168254272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042168303680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214768000"}}}, "140042168303792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042168304128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042353653152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168304352"}, {"nodeId": "140042168304240"}, {"nodeId": "140042168304688"}, {"nodeId": "140042168305136"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168305360"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168304352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168304240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168304464"}]}}, "140042168304464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168304688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168304576"}]}}, "140042168304576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168305136": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168304800"}]}, {"nodeId": "0"}, {"nodeId": "140042168304912"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168305024"}]}]}]}}, "140042168304800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042168304912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214899888"}}}, "140042168305024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042168305360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042353653600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168305584"}, {"nodeId": "140042168305472"}, {"nodeId": "140042168305920"}, {"nodeId": "140042168306480"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168306704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168305584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168305472": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168305696"}]}}, "140042168305696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168305920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168305808"}]}}, "140042168305808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168306480": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168306032"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042168306144"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168306368"}]}]}]}}, "140042168306032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168306144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214909856"}}}, "140042168306368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168306704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042353654048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168306928"}, {"nodeId": "140042168306816"}, {"nodeId": "140042168307264"}, {"nodeId": "140042168307824"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168308048"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "140042168306928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168306816": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168307040"}]}}, "140042168307040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168307264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168307152"}]}}, "140042168307152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168307824": {"type": "Union", "content": {"items": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168307376"}]}, {"nodeId": "0"}, {"nodeId": "140042168307488"}, {"nodeId": "140042198150208", "args": [{"nodeId": "140042181260416", "args": [{"nodeId": "140042168307712"}]}]}]}}, "140042168307376": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042168307488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214914000"}}}, "140042168307712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042168308048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042185813664"}]}}}, "140042353654496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}}, "140042168243408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042353654944"}, {"nodeId": "140042353655392"}, {"nodeId": "140042344710432"}, {"nodeId": "140042344710880"}]}}, "140042353654944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168308160"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "140042168308160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168308384"}]}}, "140042168308384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042353655392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168308720"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168308496"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168308944"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "140042168308720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168308496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168308272"}]}}, "140042168308272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168308944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042344710432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168309280"}, {"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168309056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "140042168309280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168309056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168308608"}]}}, "140042168308608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042344710880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168309168"}, {"nodeId": "140042168309728"}, {"nodeId": "140042512503328"}, {"nodeId": "140042168309840"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "140042168309168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168309728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168309840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168309616"}]}}, "140042168309616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042181304480": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344711328"}, {"nodeId": "140042344711776"}]}}, "140042344711328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042344711776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168310400"}, {"nodeId": "140042168310288"}, {"nodeId": "140042168310624"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168310848"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042168310400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168310288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168310624": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168310512"}]}}, "140042168310512": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168310848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168310176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344712224"}, {"nodeId": "140042344712672"}]}}, "140042344712224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042344712672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168310960"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140042168310960": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168311072": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344713120"}, {"nodeId": "140042344713568"}]}}, "140042344713120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042344713568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168311520"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "140042168311520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168311184": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344714016"}, {"nodeId": "140042344714464"}]}}, "140042344714016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042168311744"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042168311744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}]}}, "140042344714464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168311856"}, {"nodeId": "140042168312080"}, {"nodeId": "140042168312304"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168312528"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "140042168311856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168312080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168311968"}]}}, "140042168311968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168312304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168312192"}]}}, "140042168312192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168312528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168311296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344714912"}, {"nodeId": "140042344715360"}]}}, "140042344714912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042344715360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168311632"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168312976"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168311632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168312976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168312752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344715808"}, {"nodeId": "140042344716256"}]}}, "140042344715808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042344716256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168313200"}, {"nodeId": "140042168313312"}, {"nodeId": "140042168313536"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168313760"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168313200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168313312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168313536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168313424"}]}}, "140042168313424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168313760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168312864": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344716704"}, {"nodeId": "140042344717152"}]}}, "140042344716704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "140042344717152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168313088"}, {"nodeId": "140042168314208"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168314432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "140042168313088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168314208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168313872"}]}}, "140042168313872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168314432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168313984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344717600"}, {"nodeId": "140042344718048"}]}}, "140042344717600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "140042344718048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168314096"}, {"nodeId": "140042168314544"}, {"nodeId": "140042168314992"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168315216"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "140042168314096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168314544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168314992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168314880"}]}}, "140042168314880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168315216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168314656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344718496"}, {"nodeId": "140042344718944"}]}}, "140042344718496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "140042344718944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168314768"}, {"nodeId": "140042168315328"}, {"nodeId": "140042168315776"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168316000"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "140042168314768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168315328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168315776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168315664"}]}}, "140042168315664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168316000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168315440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344719392"}, {"nodeId": "140042344719840"}]}}, "140042344719392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "140042344719840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168315552"}, {"nodeId": "140042168316112"}, {"nodeId": "140042168316448"}, {"nodeId": "140042168316672"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168316896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "140042168315552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168316112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168316448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168316672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168316560"}]}}, "140042168316560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168316896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168316224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344720288"}, {"nodeId": "140042344720736"}]}}, "140042344720288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042344720736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168316336"}, {"nodeId": "140042168317344"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168317568"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042168316336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168317344": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168317008"}]}}, "140042168317008": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168317568": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168253824": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344721184"}, {"nodeId": "140042344721632"}]}}, "140042344721184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "140042344721632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168318240"}, {"nodeId": "140042168318352"}, {"nodeId": "140042168318576"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168318800"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "140042168318240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168318352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168318576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168318464"}]}}, "140042168318464": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168318800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168318016": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344722080"}, {"nodeId": "140042344722528"}, {"nodeId": "140042344722976"}]}}, "140042344722080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042344722528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168318128"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168319248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042168318128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168319248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042344722976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168319584"}, {"nodeId": "140042168319136"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168319696"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "140042168319584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168319136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168319696": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168319024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344723424"}, {"nodeId": "140042344723872"}]}}, "140042344723424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "140042344723872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168385600"}, {"nodeId": "140042168385712"}, {"nodeId": "140042168385936"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168386160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "140042168385600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168385712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168385936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168385824"}]}}, "140042168385824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168386160": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168319472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344724320"}, {"nodeId": "140042344724768"}]}}, "140042344724320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042344724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168386496"}, {"nodeId": "140042168386608"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168386832"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168386496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168386608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168386272"}]}}, "140042168386272": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168386832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042181304816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344725216"}, {"nodeId": "140042344725664"}]}}, "140042344725216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042344725664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168386384"}, {"nodeId": "140042168387280"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168387504"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168386384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168387280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168386944"}]}}, "140042168386944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168387504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168387056": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344726112"}, {"nodeId": "140042344907040"}]}}, "140042344726112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042344907040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168387168"}, {"nodeId": "140042168387952"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168388176"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168387168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168387952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168387616"}]}}, "140042168387616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168388176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168387728": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344907488"}, {"nodeId": "140042344907936"}]}}, "140042344907488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042344907936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168387840"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168388624"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042168387840": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168388624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168388400": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344908384"}, {"nodeId": "140042344908832"}]}}, "140042344908384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042344908832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168388848"}, {"nodeId": "140042168388960"}, {"nodeId": "140042168389184"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168389408"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168388848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168388960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168389184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168389072"}]}}, "140042168389072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168389408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168388512": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344909280"}, {"nodeId": "140042344909728"}]}}, "140042344909280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042344909728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168388736"}, {"nodeId": "140042168389520"}, {"nodeId": "140042168389968"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168390192"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168388736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168389520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168389968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168389856"}]}}, "140042168389856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168390192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168389632": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344910176"}, {"nodeId": "140042344910624"}]}}, "140042344910176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042344910624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168389744"}, {"nodeId": "140042168390304"}, {"nodeId": "140042168390752"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168390976"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "140042168389744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168390304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168390752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168390640"}]}}, "140042168390640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168390976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168390416": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344911072"}, {"nodeId": "140042344911520"}]}}, "140042344911072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "140042344911520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168390528"}, {"nodeId": "140042168391088"}, {"nodeId": "140042168391536"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168391760"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "140042168390528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168391088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168391536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168391424"}]}}, "140042168391424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168391760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168391200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344911968"}, {"nodeId": "140042344912416"}]}}, "140042344911968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042344912416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168391312"}, {"nodeId": "140042168392208"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168392432"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "140042168391312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168392208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168391872"}]}}, "140042168391872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168392432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168391984": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344912864"}, {"nodeId": "140042344913312"}]}}, "140042344912864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "140042344913312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168392096"}, {"nodeId": "140042168392544"}, {"nodeId": "140042168392992"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168393216"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "140042168392096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168392544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168392992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168392880"}]}}, "140042168392880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168393216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168392656": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344913760"}, {"nodeId": "140042344914208"}]}}, "140042344913760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "140042344914208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168392768"}, {"nodeId": "140042168393328"}, {"nodeId": "140042168393664"}, {"nodeId": "140042168393888"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168394112"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "140042168392768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168393328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168393664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168393888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168393776"}]}}, "140042168393776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168394112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042168393440": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344914656"}, {"nodeId": "140042344915104"}]}}, "140042344914656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042344915104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168393552"}, {"nodeId": "140042168394224"}, {"nodeId": "140042168394672"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168394896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042168393552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168394224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168394672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168394560"}]}}, "140042168394560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168394896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168319808": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344915552"}, {"nodeId": "140042344916000"}]}}, "140042344915552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042344916000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168395568"}, {"nodeId": "140042168395680"}, {"nodeId": "140042168395904"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168396128"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "140042168395568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168395680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168395904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168395792"}]}}, "140042168395792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168396128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168395344": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344916448"}, {"nodeId": "140042344916896"}]}}, "140042344916448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "140042344916896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168395456"}, {"nodeId": "140042168396576"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168396800"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "140042168395456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168396576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168396240"}]}}, "140042168396240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168396800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168396352": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344917344"}, {"nodeId": "140042344917792"}]}}, "140042344917344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042344917792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168396464"}, {"nodeId": "140042168397248"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168397472"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "140042168396464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168397248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168396912"}]}}, "140042168396912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168397472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168397024": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344918240"}, {"nodeId": "140042344918688"}]}}, "140042344918240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042344918688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168397136"}, {"nodeId": "140042168397920"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168398144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042168397136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168397920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168397584"}]}}, "140042168397584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168398144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168397696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344919136"}, {"nodeId": "140042344919584"}]}}, "140042344919136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "140042344919584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168397808"}, {"nodeId": "140042168398256"}, {"nodeId": "140042168398592"}, {"nodeId": "140042168398816"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168399040"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "140042168397808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168398256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168398592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168398816": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168398704"}]}}, "140042168398704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168399040": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042168398368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344920032"}, {"nodeId": "140042344920480"}]}}, "140042344920032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514592"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042344920480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168398480"}, {"nodeId": "140042168399488"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168399712"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "140042168398480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168399488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168399152"}]}}, "140042168399152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168399712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042344920928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168400048"}, {"nodeId": "140042168399376"}, {"nodeId": "140042168400160"}, {"nodeId": "140042168400608"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168400832"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol"]}}, "140042168400048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168399376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168400160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168399824"}]}}, "140042168399824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168400608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042168400832": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042344921376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168401168"}, {"nodeId": "140042168399936"}, {"nodeId": "140042168401280"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168401504"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}}, "140042168401168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168399936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168401280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168400944"}]}}, "140042168400944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168401504": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042344921824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168401616"}, {"nodeId": "140042168451136"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168451360"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}}, "140042168401616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168451136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042168401728"}]}}, "140042168401728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042214761840"}}}, "140042168451360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042344922272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168451584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "140042168451584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042168399264": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042344922720"}, {"nodeId": "140042345087264"}]}}, "140042344922720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042168451808"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "140042168451808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185620320", "args": [{"nodeId": "140042185812544"}]}}}, "140042345087264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181249856"}, {"nodeId": "140042168451920"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "140042168451920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042180865440": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "IgnoreException", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042180865792": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "clear_and_catch_warnings", "members": [{"kind": "Variable", "content": {"name": "class_modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042302638208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307607840", "args": [{"nodeId": "140042302638208"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042172743040"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345090848"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345091296"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140042198139296", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "140042172743040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345089504"}, {"nodeId": "140042345089952"}, {"nodeId": "140042345090400"}]}}, "140042345089504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042302638208"}]}], "returnType": {"nodeId": "140042180866496"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "140042180866496": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_without_records", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345092192"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140042180865792"}], "isAbstract": false}}, "140042345092192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180866496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042345089952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042302638208"}]}], "returnType": {"nodeId": "140042180866144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "140042180866144": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_with_records", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345091744"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140042180865792"}], "isAbstract": false}}, "140042345091744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180866144"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042198138944": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "WarningMessage", "members": [{"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198157232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198156448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198156560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198156672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324245216"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042198157232": {"type": "Union", "content": {"items": [{"nodeId": "140042307495968"}, {"nodeId": "140042307290208"}]}}, "140042198156448": {"type": "Union", "content": {"items": [{"nodeId": "140042307605728"}, {"nodeId": "N"}]}}, "140042198156560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042198156672": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324245216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198138944"}, {"nodeId": "140042198159136"}, {"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042198159248"}, {"nodeId": "140042198159360"}, {"nodeId": "140042198159584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "message", "category", "filename", "lineno", "file", "line", "source"]}}, "140042198159136": {"type": "Union", "content": {"items": [{"nodeId": "140042307495968"}, {"nodeId": "140042307290208"}]}}, "140042198159248": {"type": "Union", "content": {"items": [{"nodeId": "140042307605728"}, {"nodeId": "N"}]}}, "140042198159360": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042198159584": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042345090400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042302638208"}]}], "returnType": {"nodeId": "140042180865792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "140042345090848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180865792"}], "returnType": {"nodeId": "140042172793568"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042172793568": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}]}}, "140042345091296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180865792"}, {"nodeId": "140042172793680"}, {"nodeId": "140042172793792"}, {"nodeId": "140042172793904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}}, "140042172793680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042172793792": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307296896"}]}}, "140042172793904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302642080"}]}}, "140042198139296": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "catch_warnings", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042198157904"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323904544"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323904992"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140042198139296"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042198139296": {"type": "TypeVar", "content": {"varName": "_W", "values": [], "upperBound": {"nodeId": "140042198157120"}, "def": "140042198139296", "variance": "INVARIANT"}}, "140042198157120": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}, {"nodeId": "N"}]}}, "140042198157904": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042323903200"}, {"nodeId": "140042323903648"}, {"nodeId": "140042323904096"}]}}, "140042323903200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198139296", "args": [{"nodeId": "N"}]}, {"nodeId": "0"}, {"nodeId": "140042198159920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "140042198159920": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042323903648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198139296", "args": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}]}, {"nodeId": "0"}, {"nodeId": "140042198160144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "140042198160144": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042323904096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198139296", "args": [{"nodeId": "140042198160256"}]}, {"nodeId": "140042512503328"}, {"nodeId": "140042198160368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "140042198160256": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}, {"nodeId": "N"}]}}, "140042198160368": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042323904544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198139296", "args": [{"nodeId": ".1.140042198139296"}]}], "returnType": {"nodeId": ".1.140042198139296"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042323904992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198139296", "args": [{"nodeId": ".1.140042198139296"}]}, {"nodeId": "140042198160480"}, {"nodeId": "140042198160592"}, {"nodeId": "140042198160704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042198160480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042198160592": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042198160704": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042180865088": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "KnownFailureException", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042180866848": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "suppress_warnings", "members": [{"kind": "Variable", "content": {"name": "log", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "forwarding_rule", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345092640"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345093088"}, "name": "filter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345093536"}, "name": "record"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345093984"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345094432"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345094880"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042345092640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180866848"}, {"nodeId": "140042172794688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "forwarding_rule"]}}, "140042172794688": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042345093088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180866848"}, {"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042172794800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}}, "140042172794800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302638208"}]}}, "140042345093536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180866848"}, {"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042172794912"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}}, "140042172794912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302638208"}]}}, "140042345093984": {"type": "Function", "content": {"typeVars": [".-1.140042345093984"], "argTypes": [{"nodeId": ".-1.140042345093984"}], "returnType": {"nodeId": ".-1.140042345093984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042345093984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042345093984", "variance": "INVARIANT"}}, "140042345094432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180866848"}, {"nodeId": "140042172795024"}, {"nodeId": "140042172795136"}, {"nodeId": "140042172795248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}}, "140042172795024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "140042172795136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307296896"}]}}, "140042172795248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042302642080"}]}}, "140042345094880": {"type": "Function", "content": {"typeVars": [".-1.140042345094880"], "argTypes": [{"nodeId": "140042180866848"}, {"nodeId": ".-1.140042345094880"}], "returnType": {"nodeId": ".-1.140042345094880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140042345094880": {"type": "TypeVar", "content": {"varName": "_FT", "values": [], "upperBound": {"nodeId": "140042324243424"}, "def": "140042345094880", "variance": "INVARIANT"}}, "140042324243424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042302650176": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390669792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390670688"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390671136"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390671584"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390672032"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390672480"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390672928"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390673376"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390673824"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042390674272"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290237664"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.140042302650176"}], "bases": [{"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}]}], "isAbstract": false}}, ".1.140042302650176": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302650176", "variance": "INVARIANT"}}, "140042390669792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": "140042512512832", "args": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "140042390670688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}], "returnType": {"nodeId": ".1.140042302650176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "140042390671136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042390671584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": ".1.140042302650176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390672032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": ".1.140042302650176"}], "returnType": {"nodeId": ".1.140042302650176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042390672480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042390672928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042302650176"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042390673376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042390673824": {"type": "Function", "content": {"typeVars": [".-1.140042390673824", ".-2.140042390673824"], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042390673824"}, {"nodeId": ".-2.140042390673824"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042290242928"}, {"nodeId": "140042290243040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042390673824": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042390673824", "variance": "INVARIANT"}}, ".-2.140042390673824": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042390673824", "variance": "INVARIANT"}}, "140042290242928": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".-1.140042390673824"}]}}, "140042290243040": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".-2.140042390673824"}]}}, "140042390674272": {"type": "Function", "content": {"typeVars": [".-1.140042390674272", ".-2.140042390674272"], "argTypes": [{"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": ".-1.140042390674272"}, {"nodeId": ".-2.140042390674272"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042290243152"}, {"nodeId": "140042290243264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042390674272": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042390674272", "variance": "INVARIANT"}}, ".-2.140042390674272": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042390674272", "variance": "INVARIANT"}}, "140042290243152": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".-1.140042390674272"}]}}, "140042290243264": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".-2.140042390674272"}]}}, "140042290237664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042390674720"}, {"nodeId": "140042390675168"}]}}, "140042390674720": {"type": "Function", "content": {"typeVars": [".0.140042390674720"], "argTypes": [{"nodeId": ".0.140042390674720"}, {"nodeId": "140042512512480", "args": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}]}], "returnType": {"nodeId": ".0.140042390674720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042390674720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, "def": "140042390674720", "variance": "INVARIANT"}}, "140042390675168": {"type": "Function", "content": {"typeVars": [".0.140042390675168"], "argTypes": [{"nodeId": ".0.140042390675168"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042290243712"}]}], "returnType": {"nodeId": ".0.140042390675168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042390675168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302650176", "args": [{"nodeId": ".1.140042302650176"}]}, "def": "140042390675168", "variance": "INVARIANT"}}, "140042290243712": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042302650176"}, {"nodeId": ".1.140042302650176"}]}}, "140042298914624": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273477392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273175840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273165088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273176736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273346432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273342400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273341728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273342624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273344640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273343520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273346208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273344416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273347104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273351360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273347552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273345536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273348672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514592"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}], "isAbstract": false}}, "140042273477392": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273175840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290243936"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290243936": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273165088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244048"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244048": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273176736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244160"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244160": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273346432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244272"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244272": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273342400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244384"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244384": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273341728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244496"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244496": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273342624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244608"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244608": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273344640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244720"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244720": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273343520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244832"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244832": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273346208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290244944"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290244944": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273344416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290245056"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290245056": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273347104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290245168"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290245168": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273351360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290245280"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290245280": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273347552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290245392"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290245392": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273345536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290245504"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290245504": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042273348672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290245616"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290245616": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042302650528": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273353376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273356736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387001568"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387002016"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387002464"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387002912"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387003360"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387003808"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042387004256"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042302650528"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042302650528": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302650528", "variance": "INVARIANT"}}, "140042273353376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}], "returnType": {"nodeId": ".1.140042302650528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042273356736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}], "returnType": {"nodeId": ".1.140042302650528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042387001568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042387002016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140042387002464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140042387002912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042387003360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042290246064"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140042290246064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294126160"}}}, "140042294126160": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042387003808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042302650528"}]}], "returnType": {"nodeId": ".1.140042302650528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042387004256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042299115648": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273267200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273400512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273400064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273400288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273400736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273401184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273402304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273401408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273404320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273404768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273406336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273405440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042273267200": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273400512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290246400"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290246400": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273400064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290246512"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290246512": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273400288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290246624"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290246624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273400736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290246736"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290246736": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273401184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290246848"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290246848": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273402304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290246960"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290246960": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273401408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290247072"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290247072": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273404320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290247184"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290247184": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273404768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290247296"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290247296": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273406336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290247408"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290247408": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273405440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290247520"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290247520": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042299116000": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273264960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273508032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273508480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273507808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273509152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273508704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": false}}, "140042273264960": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273508032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290248080"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290248080": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273508480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290248192"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290248192": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273507808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290248304"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290248304": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273509152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290248416"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290248416": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273508704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290248528"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290248528": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042299116352": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042278156688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273854560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042273858816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042278156688": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042273854560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290485776"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290485776": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042273858816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290485888"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290485888": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042299116704": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382302496"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382302944"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382303392"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.140042299116704"}], "bases": [{"nodeId": "140042512507552", "args": [{"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042299116704"}]}]}, {"nodeId": "140042298257504", "args": [{"nodeId": "140042299116704", "args": [{"nodeId": ".1.140042299116704"}]}]}], "isAbstract": false}}, ".1.140042299116704": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042299116704", "variance": "INVARIANT"}}, "140042382302496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299116704", "args": [{"nodeId": ".1.140042299116704"}]}], "returnType": {"nodeId": "140042302650528", "args": [{"nodeId": ".1.140042299116704"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042382302944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299116704", "args": [{"nodeId": ".1.140042299116704"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140042382303392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299116704", "args": [{"nodeId": ".1.140042299116704"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298257504": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391098912"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042248072864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042298257504"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.140042298257504": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298257504", "variance": "COVARIANT"}}, "140042391098912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298257504", "args": [{"nodeId": ".1.140042298257504"}]}], "returnType": {"nodeId": ".1.140042298257504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042248072864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298257504", "args": [{"nodeId": ".1.140042298257504"}]}, {"nodeId": "140042286050416"}, {"nodeId": "140042286050528"}, {"nodeId": "140042286050640"}], "returnType": {"nodeId": "140042286050752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286050416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286050528": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286050640": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042286050752": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042299117056": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382499104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382499552"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140042303195616"}], "isAbstract": false}}, "140042382499104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299117056"}, {"nodeId": "140042303195616"}, {"nodeId": "140042302647008", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "140042303195616": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374116768"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256739104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256739552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256739776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256740224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374119008"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374545696"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374546144"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374546592"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374547040"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374547488"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374547936"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374548384"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140042303195264"}, {"nodeId": "140042307605728"}], "isAbstract": false}}, "140042374116768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}, {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042290642752"}, {"nodeId": "140042290806848"}, {"nodeId": "140042290806960"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140042290642752": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290806848": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290806960": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042256739104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}], "returnType": {"nodeId": "140042307605376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042256739552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042256739776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042256740224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374119008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}, {"nodeId": "140042290807072"}, {"nodeId": "140042290807184"}, {"nodeId": "140042290807296"}, {"nodeId": "140042290807408"}, {"nodeId": "140042290807520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140042290807072": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290807184": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290807296": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290807408": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042290807520": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042374545696": {"type": "Function", "content": {"typeVars": [".0.140042374545696"], "argTypes": [{"nodeId": ".0.140042374545696"}], "returnType": {"nodeId": ".0.140042374545696"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042374545696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303195616"}, "def": "140042374545696", "variance": "INVARIANT"}}, "140042374546144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042374546592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374547040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042374547488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042374547936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042374548384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195616"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042303195264": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294128960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299154704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374113184"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374113632"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374114080"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374114528"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374114976"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374115424"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374115872"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374116320"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140042302651232"}], "isAbstract": false}}, "140042294128960": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042299154704": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042374113184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042374113632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374114080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}], "returnType": {"nodeId": "140042307605376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374114528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042374114976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042374115424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042374115872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042374116320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195264"}, {"nodeId": "140042290642640"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290642640": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042302651232": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373828384"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373828832"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373829280"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373829728"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373830176"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373830624"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373831072"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373831520"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373831968"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307061792"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373832416"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373832864"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373833312"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373833760"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373834208"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373834656"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307060224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373835104"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373835552"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373836000"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256548128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373836896"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042373828384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042373828832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373829280": {"type": "Function", "content": {"typeVars": [".0.140042373829280"], "argTypes": [{"nodeId": ".0.140042373829280"}], "returnType": {"nodeId": ".0.140042373829280"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042373829280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302651232"}, "def": "140042373829280", "variance": "INVARIANT"}}, "140042373829728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042290640512"}, {"nodeId": "140042290640624"}, {"nodeId": "140042290640736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042290640512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042290640624": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042290640736": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042373830176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373830624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373831072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373831520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373831968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307061792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042373832416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042373832864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042373833312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373833760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373834208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042290640848"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290640848": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042373834656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042307060224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042373835104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307616288"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042373835552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042290640960"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290640960": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042373836000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042256548128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373836896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651232"}, {"nodeId": "140042290641072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140042290641072": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042302647008": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294118880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294125376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299147312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302504656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302504768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042294923712"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323412128"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323412576"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323413024"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323413472"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323413920"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323414368"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323414816"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323415264"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323415712"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042302647008"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042302647008": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302647008", "variance": "INVARIANT"}}, "140042294118880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042299146752": {"type": "Union", "content": {"items": [{"nodeId": "140042299014752"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042299146304"}]}]}}, "140042299014752": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042298412720": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290560"}]}]}}, "140042299146304": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042294125376": {"type": "Union", "content": {"items": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "N"}]}}, "140042299147312": {"type": "Union", "content": {"items": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "N"}]}}, "140042302504656": {"type": "Union", "content": {"items": [{"nodeId": "140042307605024", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "N"}]}}, "140042302504768": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "A"}]}}, "140042294923712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042307121472"}, {"nodeId": "140042328172000"}, {"nodeId": "140042328172448"}, {"nodeId": "140042328172896"}, {"nodeId": "140042328173344"}, {"nodeId": "140042328173792"}]}}, "140042307121472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042289866432"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289866656"}, {"nodeId": "140042289866880"}, {"nodeId": "140042289867104"}, {"nodeId": "140042289867328"}, {"nodeId": "140042289867440"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042289867776"}, {"nodeId": "140042289868000"}, {"nodeId": "140042289868112"}, {"nodeId": "140042289868336"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512510720", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042289868448"}, {"nodeId": "140042307290208"}, {"nodeId": "140042289868560"}, {"nodeId": "140042289868672"}, {"nodeId": "140042289868784"}, {"nodeId": "140042289869008"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140042289866432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289866656": {"type": "Union", "content": {"items": [{"nodeId": "140042289866544"}, {"nodeId": "N"}]}}, "140042289866544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289866880": {"type": "Union", "content": {"items": [{"nodeId": "140042289866768"}, {"nodeId": "N"}]}}, "140042289866768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042302503200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307605024", "args": [{"nodeId": "A"}]}]}}, "140042289867104": {"type": "Union", "content": {"items": [{"nodeId": "140042289866992"}, {"nodeId": "N"}]}}, "140042289866992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289867328": {"type": "Union", "content": {"items": [{"nodeId": "140042289867216"}, {"nodeId": "N"}]}}, "140042289867216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289867440": {"type": "Union", "content": {"items": [{"nodeId": "140042307121024"}, {"nodeId": "N"}]}}, "140042307121024": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042289867776": {"type": "Union", "content": {"items": [{"nodeId": "140042289867664"}, {"nodeId": "N"}]}}, "140042289867664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289868000": {"type": "Union", "content": {"items": [{"nodeId": "140042289867888"}, {"nodeId": "N"}]}}, "140042289867888": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299147536"}}}, "140042299147536": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290560"}, {"nodeId": "140042299147088"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042299146640"}]}]}}, "140042299147088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042299146640": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289868112": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289868336": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042289868448": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289868560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289868672": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289868784": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289869008": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042289868896"}]}, {"nodeId": "N"}]}}, "140042289868896": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042328172000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042289869120"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289869344"}, {"nodeId": "140042289869568"}, {"nodeId": "140042289869792"}, {"nodeId": "140042289870016"}, {"nodeId": "140042289870128"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042289870464"}, {"nodeId": "140042289870688"}, {"nodeId": "140042289870800"}, {"nodeId": "140042289871024"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512510720", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042289871136"}, {"nodeId": "140042289871248"}, {"nodeId": "140042307290208"}, {"nodeId": "140042289871360"}, {"nodeId": "140042289871472"}, {"nodeId": "140042289871696"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140042289869120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289869344": {"type": "Union", "content": {"items": [{"nodeId": "140042289869232"}, {"nodeId": "N"}]}}, "140042289869232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289869568": {"type": "Union", "content": {"items": [{"nodeId": "140042289869456"}, {"nodeId": "N"}]}}, "140042289869456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289869792": {"type": "Union", "content": {"items": [{"nodeId": "140042289869680"}, {"nodeId": "N"}]}}, "140042289869680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289870016": {"type": "Union", "content": {"items": [{"nodeId": "140042289869904"}, {"nodeId": "N"}]}}, "140042289869904": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289870128": {"type": "Union", "content": {"items": [{"nodeId": "140042307120352"}, {"nodeId": "N"}]}}, "140042307120352": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042289870464": {"type": "Union", "content": {"items": [{"nodeId": "140042289870352"}, {"nodeId": "N"}]}}, "140042289870352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289870688": {"type": "Union", "content": {"items": [{"nodeId": "140042289870576"}, {"nodeId": "N"}]}}, "140042289870576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299147536"}}}, "140042289870800": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289871024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042289871136": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289871248": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289871360": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289871472": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289871696": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042289871584"}]}, {"nodeId": "N"}]}}, "140042289871584": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042328172448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042289871808"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289872032"}, {"nodeId": "140042289872256"}, {"nodeId": "140042289872480"}, {"nodeId": "140042289872704"}, {"nodeId": "140042289938496"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042289938832"}, {"nodeId": "140042289939056"}, {"nodeId": "0"}, {"nodeId": "140042289939392"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512510720", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042289939504"}, {"nodeId": "140042289939616"}, {"nodeId": "140042289939728"}, {"nodeId": "140042289939840"}, {"nodeId": "140042289939952"}, {"nodeId": "140042289940176"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140042289871808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289872032": {"type": "Union", "content": {"items": [{"nodeId": "140042289871920"}, {"nodeId": "N"}]}}, "140042289871920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289872256": {"type": "Union", "content": {"items": [{"nodeId": "140042289872144"}, {"nodeId": "N"}]}}, "140042289872144": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289872480": {"type": "Union", "content": {"items": [{"nodeId": "140042289872368"}, {"nodeId": "N"}]}}, "140042289872368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289872704": {"type": "Union", "content": {"items": [{"nodeId": "140042289872592"}, {"nodeId": "N"}]}}, "140042289872592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289938496": {"type": "Union", "content": {"items": [{"nodeId": "140042307121696"}, {"nodeId": "N"}]}}, "140042307121696": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042289938832": {"type": "Union", "content": {"items": [{"nodeId": "140042289938720"}, {"nodeId": "N"}]}}, "140042289938720": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289939056": {"type": "Union", "content": {"items": [{"nodeId": "140042289938944"}, {"nodeId": "N"}]}}, "140042289938944": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299147536"}}}, "140042289939392": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042289939504": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289939616": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289939728": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289939840": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289939952": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289940176": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042289940064"}]}, {"nodeId": "N"}]}}, "140042289940064": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042328172896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042289940288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289940512"}, {"nodeId": "140042289940736"}, {"nodeId": "140042289940960"}, {"nodeId": "140042289941184"}, {"nodeId": "140042289941296"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042289941632"}, {"nodeId": "140042289941856"}, {"nodeId": "140042289941968"}, {"nodeId": "140042289942192"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512510720", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "0"}, {"nodeId": "140042289942416"}, {"nodeId": "140042289942528"}, {"nodeId": "140042289942640"}, {"nodeId": "140042289942752"}, {"nodeId": "140042289942976"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140042289940288": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289940512": {"type": "Union", "content": {"items": [{"nodeId": "140042289940400"}, {"nodeId": "N"}]}}, "140042289940400": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289940736": {"type": "Union", "content": {"items": [{"nodeId": "140042289940624"}, {"nodeId": "N"}]}}, "140042289940624": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289940960": {"type": "Union", "content": {"items": [{"nodeId": "140042289940848"}, {"nodeId": "N"}]}}, "140042289940848": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289941184": {"type": "Union", "content": {"items": [{"nodeId": "140042289941072"}, {"nodeId": "N"}]}}, "140042289941072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289941296": {"type": "Union", "content": {"items": [{"nodeId": "140042307121920"}, {"nodeId": "N"}]}}, "140042307121920": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042289941632": {"type": "Union", "content": {"items": [{"nodeId": "140042289941520"}, {"nodeId": "N"}]}}, "140042289941520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289941856": {"type": "Union", "content": {"items": [{"nodeId": "140042289941744"}, {"nodeId": "N"}]}}, "140042289941744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299147536"}}}, "140042289941968": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289942192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042289942416": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289942528": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289942640": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289942752": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289942976": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042289942864"}]}, {"nodeId": "N"}]}}, "140042289942864": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042328173344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042289943088"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289943312"}, {"nodeId": "140042289943536"}, {"nodeId": "140042289943760"}, {"nodeId": "140042289943984"}, {"nodeId": "140042289944096"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042289944432"}, {"nodeId": "140042289944656"}, {"nodeId": "140042289944992"}, {"nodeId": "140042289945104"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512510720", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042289945440"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "140042289945328"}, {"nodeId": "140042289945552"}, {"nodeId": "140042289945776"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140042289943088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289943312": {"type": "Union", "content": {"items": [{"nodeId": "140042289943200"}, {"nodeId": "N"}]}}, "140042289943200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289943536": {"type": "Union", "content": {"items": [{"nodeId": "140042289943424"}, {"nodeId": "N"}]}}, "140042289943424": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289943760": {"type": "Union", "content": {"items": [{"nodeId": "140042289943648"}, {"nodeId": "N"}]}}, "140042289943648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289943984": {"type": "Union", "content": {"items": [{"nodeId": "140042289943872"}, {"nodeId": "N"}]}}, "140042289943872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289944096": {"type": "Union", "content": {"items": [{"nodeId": "140042307122144"}, {"nodeId": "N"}]}}, "140042307122144": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042289944432": {"type": "Union", "content": {"items": [{"nodeId": "140042289944320"}, {"nodeId": "N"}]}}, "140042289944320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289944656": {"type": "Union", "content": {"items": [{"nodeId": "140042289944544"}, {"nodeId": "N"}]}}, "140042289944544": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299147536"}}}, "140042289944992": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042289945104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042289945440": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042289945328": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289945552": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289945776": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042289945664"}]}, {"nodeId": "N"}]}}, "140042289945664": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042328173792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": "A"}]}, {"nodeId": "140042289946000"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289946224"}, {"nodeId": "140042289946448"}, {"nodeId": "140042289946672"}, {"nodeId": "140042289946896"}, {"nodeId": "140042289947008"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042289947344"}, {"nodeId": "140042289947568"}, {"nodeId": "140042289947680"}, {"nodeId": "140042289947904"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512510720", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042289948016"}, {"nodeId": "140042289948128"}, {"nodeId": "140042289948240"}, {"nodeId": "140042289948352"}, {"nodeId": "140042289948464"}, {"nodeId": "140042289948688"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "140042289946000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289946224": {"type": "Union", "content": {"items": [{"nodeId": "140042289946112"}, {"nodeId": "N"}]}}, "140042289946112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289946448": {"type": "Union", "content": {"items": [{"nodeId": "140042289946336"}, {"nodeId": "N"}]}}, "140042289946336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289946672": {"type": "Union", "content": {"items": [{"nodeId": "140042289946560"}, {"nodeId": "N"}]}}, "140042289946560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289946896": {"type": "Union", "content": {"items": [{"nodeId": "140042289946784"}, {"nodeId": "N"}]}}, "140042289946784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042302503200"}}}, "140042289947008": {"type": "Union", "content": {"items": [{"nodeId": "140042307122368"}, {"nodeId": "N"}]}}, "140042307122368": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042289947344": {"type": "Union", "content": {"items": [{"nodeId": "140042289947232"}, {"nodeId": "N"}]}}, "140042289947232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042289947568": {"type": "Union", "content": {"items": [{"nodeId": "140042289947456"}, {"nodeId": "N"}]}}, "140042289947456": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299147536"}}}, "140042289947680": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289947904": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042289948016": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042289948128": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289948240": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042289948352": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289948464": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042289948688": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042289948576"}]}, {"nodeId": "N"}]}}, "140042289948576": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042323412128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}], "returnType": {"nodeId": "140042289948800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042289948800": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042323412576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "140042289948912"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140042289948912": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042323413024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "140042289949024"}, {"nodeId": "140042289949136"}], "returnType": {"nodeId": "140042289949360"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "140042289949024": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302647008"}, {"nodeId": "N"}]}}, "140042289949136": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042289949360": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042302647008"}, {"nodeId": ".1.140042302647008"}]}}, "140042323413472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "140042323413920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323414368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323414816": {"type": "Function", "content": {"typeVars": [".0.140042323414816"], "argTypes": [{"nodeId": ".0.140042323414816"}], "returnType": {"nodeId": ".0.140042323414816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042323414816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}, "def": "140042323414816", "variance": "INVARIANT"}}, "140042323415264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647008", "args": [{"nodeId": ".1.140042302647008"}]}, {"nodeId": "140042289949584"}, {"nodeId": "140042289949696"}, {"nodeId": "140042289949808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042289949584": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042289949696": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042289949808": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042323415712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042382499552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299117056"}], "returnType": {"nodeId": "140042290630320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290630320": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042299117408": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042328530768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332263744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332264640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332264864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332265088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332265312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514592"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514592"}]}], "isAbstract": false}}, "140042328530768": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042332263744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290631888"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290631888": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042332264640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290631328"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290631328": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042332264864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290631664"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290631664": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042332265088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290632000"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290632000": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042332265312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290632112"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290632112": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}, {"nodeId": "140042512514592"}]}}, "140042299117760": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042328528640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332262400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332268000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332268224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332268448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332268672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042328528640": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042332262400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290633568"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290633568": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042332268000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290633904"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290633904": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042332268224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290634240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290634240": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042332268448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290634352"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290634352": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042332268672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290634464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290634464": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042299118112": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042328526512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042382616480"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042332270464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042512514240"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042328526512": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042382616480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290638160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "140042290638160": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}]}}, "140042332270464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290637936"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290637936": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}]}}, "140042215091616": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215091264"}], "isAbstract": false}}, "140042202210624": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383039776"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383040224"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383040672"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383041120"}, "name": "LoadLibrary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383041568"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042202210624"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042202210624": {"type": "TypeVar", "content": {"varName": "_DLLT", "values": [], "upperBound": {"nodeId": "140042215091264"}, "def": "140042202210624", "variance": "INVARIANT"}}, "140042383039776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210624", "args": [{"nodeId": ".1.140042202210624"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}}, "140042383040224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210624", "args": [{"nodeId": ".1.140042202210624"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".1.140042202210624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042383040672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210624", "args": [{"nodeId": ".1.140042202210624"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".1.140042202210624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042383041120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202210624", "args": [{"nodeId": ".1.140042202210624"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".1.140042202210624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140042383041568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042215092672": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042215093024": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042383048288"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042307290560"}]}], "isAbstract": false}}, "140042383048288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215093024"}, {"nodeId": "140042202404720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "140042202404720": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042215093376": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386424096"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042215088096"}, {"nodeId": "140042215087392", "args": [{"nodeId": "140042202282384"}]}], "isAbstract": false}}, "140042386424096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215093376"}, {"nodeId": "140042202404832"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "140042202404832": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042202282384": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042215093728": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514592"}]}], "isAbstract": false}}, "140042215094080": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514592"}]}], "isAbstract": false}}, "140042215094432": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514592"}]}], "isAbstract": false}}, "140042215094784": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042215095136": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042215095488": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042215095840": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202202528": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202202880": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202203232": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202203584": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202203936": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202204288": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202204640": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202204992": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202205344": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202205696": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202206048": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202206400": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202206752": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202207104": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042202207808": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": false}}, "140042202208160": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386424544"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042215088096"}, {"nodeId": "140042215087392", "args": [{"nodeId": "140042202273648"}]}], "isAbstract": false}}, "140042386424544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202208160"}, {"nodeId": "140042202404944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "140042202404944": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042202273648": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042202208512": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386424992"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042215087392", "args": [{"nodeId": "140042512503328"}]}], "isAbstract": false}}, "140042386424992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202208512"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "140042202208864": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.140042202208864"}], "bases": [{"nodeId": "140042215087744"}, {"nodeId": "140042215087392", "args": [{"nodeId": ".1.140042202208864"}]}], "isAbstract": false}}, ".1.140042202208864": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042202208864", "variance": "INVARIANT"}}, "140042202209216": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215090560"}], "isAbstract": false}}, "140042215090560": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215089856"}], "isAbstract": false}}, "140042215089856": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345322912"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345323360"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345323808"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042215087040"}], "isAbstract": false}}, "140042345322912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215089856"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}}, "140042345323360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215089856"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042345323808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215089856"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042202209568": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215090560"}], "isAbstract": false}}, "140042198140704": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "content": {"name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198140704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198140704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198140704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386630560"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386631008"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386631456"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042386631904"}, "name": "dst"}}], "typeVars": [], "bases": [{"nodeId": "140042198140352"}], "isAbstract": false}}, "140042386630560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140704"}, {"nodeId": "140042198142112"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}}, "140042386631008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140704"}, {"nodeId": "140042198392768"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042198392768": {"type": "Union", "content": {"items": [{"nodeId": "140042198142464"}, {"nodeId": "N"}]}}, "140042386631456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140704"}, {"nodeId": "140042198392880"}], "returnType": {"nodeId": "140042198142112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042198392880": {"type": "Union", "content": {"items": [{"nodeId": "140042198142464"}, {"nodeId": "N"}]}}, "140042386631904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198140704"}, {"nodeId": "140042198392992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042198392992": {"type": "Union", "content": {"items": [{"nodeId": "140042198142464"}, {"nodeId": "N"}]}}, "140042303204768": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377987680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377988128"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "isAbstract": false}}, "140042377987680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042377988128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204768"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042303205120": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377989920"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252416864"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377991712"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377992160"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377993504"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377994400"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252417088"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377995296"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377995744"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042377996192"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290821296"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042303205472"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "A"}, {"nodeId": "140042303205472"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307500192"}], "isAbstract": false}}, "140042377989920": {"type": "Function", "content": {"typeVars": [".-1.140042377989920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "140042303204768"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.140042377989920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.140042377989920": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042377989920", "variance": "INVARIANT"}}, "140042252416864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512513536"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042303204768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "140042377991712": {"type": "Function", "content": {"typeVars": [".-1.140042377991712"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".-1.140042377991712"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042377991712": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042377991712", "variance": "INVARIANT"}}, "140042377992160": {"type": "Function", "content": {"typeVars": [".-1.140042377992160"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".-1.140042377992160"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042377992160": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042377992160", "variance": "INVARIANT"}}, "140042377993504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042377994400": {"type": "Function", "content": {"typeVars": [".-1.140042377994400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".-1.140042377994400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.140042377994400": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042377994400", "variance": "INVARIANT"}}, "140042252417088": {"type": "Function", "content": {"typeVars": [".-1.140042252417088"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "140042302637152", "args": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042252417088"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.140042252417088": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042252417088", "variance": "INVARIANT"}}, "140042377995296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205120"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042377995744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042377996192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205120"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290821296": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042377996640"}, {"nodeId": "140042377997536"}]}}, "140042377996640": {"type": "Function", "content": {"typeVars": [".-1.140042377996640"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.140042377996640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.140042377996640": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042377996640", "variance": "INVARIANT"}}, "140042377997536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205120"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285814208"}, {"nodeId": "140042285814320"}, {"nodeId": "140042285814432"}, {"nodeId": "140042285814544"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "140042285814208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042303343408"}}}, "140042303343408": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042303341616"}]}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042303341616": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042285814320": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042285814432": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042285814544": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "N"}]}}, "140042303205824": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252524384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378133792"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140042512514240"}, {"nodeId": "140042303205472"}], "isAbstract": false}}, "140042252524384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303205824"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378133792": {"type": "Function", "content": {"typeVars": [".0.140042378133792"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042378133792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140042378133792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303205824"}, "def": "140042378133792", "variance": "INVARIANT"}}, "140042303206176": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303343744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252525504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252526848"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378135584"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378136032"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378136480"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378136928"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378137376"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378137824"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140042303205472"}], "isAbstract": false}}, "140042303343744": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042252525504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303206176"}], "returnType": {"nodeId": "140042285815440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285815440": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042252526848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303206176"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378135584": {"type": "Function", "content": {"typeVars": [".0.140042378135584"], "argTypes": [{"nodeId": ".0.140042378135584"}, {"nodeId": ".0.140042378135584"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378135584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206176"}, "def": "140042378135584", "variance": "INVARIANT"}}, "140042378136032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303206176"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378136480": {"type": "Function", "content": {"typeVars": [".0.140042378136480"], "argTypes": [{"nodeId": ".0.140042378136480"}, {"nodeId": ".0.140042378136480"}], "returnType": {"nodeId": ".0.140042378136480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378136480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206176"}, "def": "140042378136480", "variance": "INVARIANT"}}, "140042378136928": {"type": "Function", "content": {"typeVars": [".0.140042378136928"], "argTypes": [{"nodeId": ".0.140042378136928"}, {"nodeId": ".0.140042378136928"}], "returnType": {"nodeId": ".0.140042378136928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378136928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206176"}, "def": "140042378136928", "variance": "INVARIANT"}}, "140042378137376": {"type": "Function", "content": {"typeVars": [".0.140042378137376"], "argTypes": [{"nodeId": ".0.140042378137376"}, {"nodeId": ".0.140042378137376"}], "returnType": {"nodeId": ".0.140042378137376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378137376": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206176"}, "def": "140042378137376", "variance": "INVARIANT"}}, "140042378137824": {"type": "Function", "content": {"typeVars": [".0.140042378137824"], "argTypes": [{"nodeId": ".0.140042378137824"}], "returnType": {"nodeId": ".0.140042378137824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042378137824": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206176"}, "def": "140042378137824", "variance": "INVARIANT"}}, "140042303206528": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378144992"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378145440"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378145888"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378146336"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252599584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252602048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252603168"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512514240"}, {"nodeId": "140042303206176"}], "isAbstract": false}}, "140042378144992": {"type": "Function", "content": {"typeVars": [".0.140042378144992"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042378144992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.140042378144992": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042378144992", "variance": "INVARIANT"}}, "140042378145440": {"type": "Function", "content": {"typeVars": [".0.140042378145440"], "argTypes": [{"nodeId": ".0.140042378145440"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042378145440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378145440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042378145440", "variance": "INVARIANT"}}, "140042378145888": {"type": "Function", "content": {"typeVars": [".0.140042378145888"], "argTypes": [{"nodeId": ".0.140042378145888"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042378145888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378145888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042378145888", "variance": "INVARIANT"}}, "140042378146336": {"type": "Function", "content": {"typeVars": [".0.140042378146336"], "argTypes": [{"nodeId": ".0.140042378146336"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042378146336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042378146336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042378146336", "variance": "INVARIANT"}}, "140042252599584": {"type": "Function", "content": {"typeVars": [".0.140042252599584"], "argTypes": [{"nodeId": ".0.140042252599584"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042252599584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042252599584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042252599584", "variance": "INVARIANT"}}, "140042252602048": {"type": "Function", "content": {"typeVars": [".0.140042252602048"], "argTypes": [{"nodeId": ".0.140042252602048"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042252602048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042252602048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042252602048", "variance": "INVARIANT"}}, "140042252603168": {"type": "Function", "content": {"typeVars": [".0.140042252603168"], "argTypes": [{"nodeId": ".0.140042252603168"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".0.140042252603168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042252603168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206528"}, "def": "140042252603168", "variance": "INVARIANT"}}, "140042303206880": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252604736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378147232"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140042303206528"}], "isAbstract": false}}, "140042252604736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303206880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378147232": {"type": "Function", "content": {"typeVars": [".0.140042378147232"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042378147232"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042378147232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303206880"}, "def": "140042378147232", "variance": "INVARIANT"}}, "140042307500544": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307293376"}], "isAbstract": false}}, "140042298257856": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042285866496"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042248068608"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042298257856"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.140042298257856": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298257856", "variance": "COVARIANT"}}, "140042285866496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298257856", "args": [{"nodeId": ".1.140042298257856"}]}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140042298257856"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042248068608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298257856", "args": [{"nodeId": ".1.140042298257856"}]}, {"nodeId": "140042286050976"}, {"nodeId": "140042286051088"}, {"nodeId": "140042286051200"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042286051312"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140042286050976": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286051088": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286051200": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042286051312": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042298258560": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391101152"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042298258560"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307074784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391101600"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140042298258560"}], "bases": [{"nodeId": "140042298257504", "args": [{"nodeId": ".1.140042298258560"}]}, {"nodeId": "140042298258208"}], "isAbstract": false}}, ".1.140042298258560": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298258560", "variance": "COVARIANT"}}, "140042391101152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298258560", "args": [{"nodeId": ".1.140042298258560"}]}, {"nodeId": "140042285865376"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140042285865376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": ".1.140042298258560"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042307074784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".1.140042298258560"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042391101600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298258560", "args": [{"nodeId": ".1.140042298258560"}]}, {"nodeId": "140042286051872"}, {"nodeId": "140042286051984"}, {"nodeId": "140042286052096"}], "returnType": {"nodeId": "140042286052208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286051872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286051984": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286052096": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042286052208": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042298258912": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391102944"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042391102944": {"type": "Function", "content": {"typeVars": [".-1.140042391102944"], "argTypes": [{"nodeId": "140042298258912"}, {"nodeId": ".-1.140042391102944"}], "returnType": {"nodeId": ".-1.140042391102944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.140042391102944": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "140042307071648"}, "def": "140042391102944", "variance": "INVARIANT"}}, "140042307071648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042298259264": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391103392"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042298259264"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307073888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042285868288"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140042298259264"}], "bases": [{"nodeId": "140042298257856", "args": [{"nodeId": ".1.140042298259264"}]}, {"nodeId": "140042298258912"}], "isAbstract": false}}, ".1.140042298259264": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298259264", "variance": "COVARIANT"}}, "140042391103392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298259264", "args": [{"nodeId": ".1.140042298259264"}]}, {"nodeId": "140042285868512"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "140042285868512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512509664", "args": [{"nodeId": ".1.140042298259264"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042307073888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512510016", "args": [{"nodeId": ".1.140042298259264"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042285868288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298259264", "args": [{"nodeId": ".1.140042298259264"}]}, {"nodeId": "140042286053104"}, {"nodeId": "140042286053216"}, {"nodeId": "140042286053328"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042286053440"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "140042286053104": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286053216": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286053328": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042286053440": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042298259616": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391105632"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["close"]}}, "140042391105632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298259616"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298259968": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391106080"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391106528"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140042298259968"}], "bases": [{"nodeId": "140042298257504", "args": [{"nodeId": ".1.140042298259968"}]}], "isAbstract": false}}, ".1.140042298259968": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "140042298259616"}, "def": "140042298259968", "variance": "INVARIANT"}}, "140042391106080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298259968", "args": [{"nodeId": ".1.140042298259968"}]}, {"nodeId": ".1.140042298259968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140042391106528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298259968", "args": [{"nodeId": ".1.140042298259968"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140042298260320": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391106976"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["aclose"]}}, "140042391106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298260320"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": "140042512502976"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298260672": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391107424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042285869856"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140042298260672"}], "bases": [{"nodeId": "140042298257856", "args": [{"nodeId": ".1.140042298260672"}]}], "isAbstract": false}}, ".1.140042298260672": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "140042298260320"}, "def": "140042298260672", "variance": "INVARIANT"}}, "140042391107424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298260672", "args": [{"nodeId": ".1.140042298260672"}]}, {"nodeId": ".1.140042298260672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "140042285869856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298260672", "args": [{"nodeId": ".1.140042298260672"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "140042298261024": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391108320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391108768"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140042298257504", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "140042391108320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298261024"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "140042391108768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298261024"}, {"nodeId": "140042286054224"}, {"nodeId": "140042286054336"}, {"nodeId": "140042286054448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286054224": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286054336": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286054448": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042298376256": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042391109216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378477856"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140042298376256"}], "bases": [{"nodeId": "140042298257504", "args": [{"nodeId": ".1.140042298376256"}]}], "isAbstract": false}}, ".1.140042298376256": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140042299158960"}, "def": "140042298376256", "variance": "INVARIANT"}}, "140042299158960": {"type": "Union", "content": {"items": [{"nodeId": "140042307605024", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042391109216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298376256", "args": [{"nodeId": ".1.140042298376256"}]}, {"nodeId": ".1.140042298376256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "140042378477856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298376256", "args": [{"nodeId": ".1.140042298376256"}]}, {"nodeId": "140042286054560"}, {"nodeId": "140042286054672"}, {"nodeId": "140042286054784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286054560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286054672": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286054784": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042298376608": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.140042298376608"}], "bases": [{"nodeId": "140042298376256", "args": [{"nodeId": ".1.140042298376608"}]}], "isAbstract": false}}, ".1.140042298376608": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140042299158960"}, "def": "140042298376608", "variance": "INVARIANT"}}, "140042298376960": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.140042298376960"}], "bases": [{"nodeId": "140042298376256", "args": [{"nodeId": ".1.140042298376960"}]}], "isAbstract": false}}, ".1.140042298376960": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "140042299158960"}, "def": "140042298376960", "variance": "INVARIANT"}}, "140042298377312": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378478304"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378478752"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378479200"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378479648"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378480096"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378480544"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378480992"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042378478304": {"type": "Function", "content": {"typeVars": [".-1.140042378478304"], "argTypes": [{"nodeId": "140042298377312"}, {"nodeId": "140042298257504", "args": [{"nodeId": ".-1.140042378478304"}]}], "returnType": {"nodeId": ".-1.140042378478304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140042378478304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042378478304", "variance": "INVARIANT"}}, "140042378478752": {"type": "Function", "content": {"typeVars": [".-1.140042378478752"], "argTypes": [{"nodeId": "140042298377312"}, {"nodeId": ".-1.140042378478752"}], "returnType": {"nodeId": ".-1.140042378478752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140042378478752": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140042299160080"}, "def": "140042378478752", "variance": "INVARIANT"}}, "140042299160080": {"type": "Union", "content": {"items": [{"nodeId": "140042298257504", "args": [{"nodeId": "A"}]}, {"nodeId": "140042299159520"}]}}, "140042299159520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307094784"}}}, "140042307094784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303351024"}, {"nodeId": "140042303350576"}, {"nodeId": "140042303350688"}], "returnType": {"nodeId": "140042303350800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042303351024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042303350576": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042303350688": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042303350800": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042378479200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377312"}, {"nodeId": "140042285869408"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042285870080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140042285869408": {"type": "Function", "content": {"typeVars": [".-2.140042285869408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140042285869408"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140042285869408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285869408", "variance": "INVARIANT"}}, "140042285870080": {"type": "Function", "content": {"typeVars": [".-2.140042285870080"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140042285870080"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140042285870080": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285870080", "variance": "INVARIANT"}}, "140042378479648": {"type": "Function", "content": {"typeVars": [".0.140042378479648"], "argTypes": [{"nodeId": ".0.140042378479648"}], "returnType": {"nodeId": ".0.140042378479648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042378479648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042298377312"}, "def": "140042378479648", "variance": "INVARIANT"}}, "140042378480096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378480544": {"type": "Function", "content": {"typeVars": [".0.140042378480544"], "argTypes": [{"nodeId": ".0.140042378480544"}], "returnType": {"nodeId": ".0.140042378480544"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042378480544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042298377312"}, "def": "140042378480544", "variance": "INVARIANT"}}, "140042378480992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377312"}, {"nodeId": "140042286187008"}, {"nodeId": "140042286187120"}, {"nodeId": "140042286187232"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286187008": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286187120": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286187232": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042298377664": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378481440"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042285870304"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378482336"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378482784"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378483232"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378483680"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378484128"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378481888"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378484576"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378485024"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042378481440": {"type": "Function", "content": {"typeVars": [".-1.140042378481440"], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": "140042298257504", "args": [{"nodeId": ".-1.140042378481440"}]}], "returnType": {"nodeId": ".-1.140042378481440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140042378481440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042378481440", "variance": "INVARIANT"}}, "140042285870304": {"type": "Function", "content": {"typeVars": [".-1.140042285870304"], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": "140042298257856", "args": [{"nodeId": ".-1.140042285870304"}]}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.140042285870304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.140042285870304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285870304", "variance": "INVARIANT"}}, "140042378482336": {"type": "Function", "content": {"typeVars": [".-1.140042378482336"], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": ".-1.140042378482336"}], "returnType": {"nodeId": ".-1.140042378482336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140042378482336": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "140042299160080"}, "def": "140042378482336", "variance": "INVARIANT"}}, "140042378482784": {"type": "Function", "content": {"typeVars": [".-1.140042378482784"], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": ".-1.140042378482784"}], "returnType": {"nodeId": ".-1.140042378482784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.140042378482784": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "140042299160640"}, "def": "140042378482784", "variance": "INVARIANT"}}, "140042299160640": {"type": "Union", "content": {"items": [{"nodeId": "140042298257856", "args": [{"nodeId": "A"}]}, {"nodeId": "140042299160864"}]}}, "140042299160864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307074112"}}}, "140042307074112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303355280"}, {"nodeId": "140042303353824"}, {"nodeId": "140042303354944"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": "140042303355056"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042303355280": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042303353824": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042303354944": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042303355056": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042378483232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": "140042285869632"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042285870528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140042285869632": {"type": "Function", "content": {"typeVars": [".-2.140042285869632"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140042285869632"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140042285869632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285869632", "variance": "INVARIANT"}}, "140042285870528": {"type": "Function", "content": {"typeVars": [".-2.140042285870528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.140042285870528"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140042285870528": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285870528", "variance": "INVARIANT"}}, "140042378483680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": "140042285866944"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042285870976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "140042285866944": {"type": "Function", "content": {"typeVars": [".-2.140042285866944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".-2.140042285866944"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140042285866944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285866944", "variance": "INVARIANT"}}, "140042285870976": {"type": "Function", "content": {"typeVars": [".-2.140042285870976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": ".-2.140042285870976"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.140042285870976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042285870976", "variance": "INVARIANT"}}, "140042378484128": {"type": "Function", "content": {"typeVars": [".0.140042378484128"], "argTypes": [{"nodeId": ".0.140042378484128"}], "returnType": {"nodeId": ".0.140042378484128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042378484128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042298377664"}, "def": "140042378484128", "variance": "INVARIANT"}}, "140042378481888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377664"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378484576": {"type": "Function", "content": {"typeVars": [".0.140042378484576"], "argTypes": [{"nodeId": ".0.140042378484576"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.140042378484576"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042378484576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042298377664"}, "def": "140042378484576", "variance": "INVARIANT"}}, "140042378485024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298377664"}, {"nodeId": "140042286189360"}, {"nodeId": "140042286189472"}, {"nodeId": "140042286189584"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042512503328"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "140042286189360": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286189472": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286189584": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042298378016": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042298378016"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286189248"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378486816"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378487264"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042285870752"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042285871648"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.140042298378016"}], "bases": [{"nodeId": "140042298257504", "args": [{"nodeId": ".1.140042298378016"}]}, {"nodeId": "140042298257856", "args": [{"nodeId": ".1.140042298378016"}]}], "isAbstract": false}}, ".1.140042298378016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298378016", "variance": "INVARIANT"}}, "140042286189248": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378485472"}, {"nodeId": "140042378485920"}]}}, "140042378485472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378016", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140042378485920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378016", "args": [{"nodeId": ".1.140042298378016"}]}, {"nodeId": ".1.140042298378016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "140042378486816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378016", "args": [{"nodeId": ".1.140042298378016"}]}], "returnType": {"nodeId": ".1.140042298378016"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042378487264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378016", "args": [{"nodeId": ".1.140042298378016"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140042285870752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378016", "args": [{"nodeId": ".1.140042298378016"}]}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.140042298378016"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285871648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298378016", "args": [{"nodeId": ".1.140042298378016"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "140042302649472": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265528576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265527456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265526560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265509248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265508576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265507904"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042289949472"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042289953504"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042289954176"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042289954288"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378745824"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378746272"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378746720"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265501408"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290053856"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378748512"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378748960"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378749408"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042302649472"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042302649472": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302649472", "variance": "INVARIANT"}}, "140042265528576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042265527456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042265526560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042289953952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042289953952": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042265509248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042289954064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042289954064": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042265508576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": ".1.140042302649472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042265507904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302649824": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265332416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265471776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265463712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265464832"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290054304"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290055536"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290056320"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290056768"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290057216"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290057664"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290058448"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290058784"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378893728"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378894176"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042378894624"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042302649824"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042302649824": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302649824", "variance": "INVARIANT"}}, "140042265332416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042265471776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042265463712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042265464832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": ".1.140042302649824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290054304": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042307122592"}, {"nodeId": "140042378751648"}, {"nodeId": "140042378752544"}]}}, "140042307122592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290056432"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290056432": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042378751648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290056544"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290056544": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "N"}]}}, "140042378752544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290056656"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290056656": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": "N"}]}}, "140042290055536": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378752992"}, {"nodeId": "140042290085952"}, {"nodeId": "140042378753888"}]}}, "140042378752992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290056880"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290056880": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290085952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290056992"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290056992": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "N"}]}}, "140042378753888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290057104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290057104": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": "N"}]}}, "140042290056320": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378754336"}, {"nodeId": "140042290086400"}, {"nodeId": "140042378755232"}]}}, "140042378754336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290057328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290057328": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290086400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290057440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290057440": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "N"}]}}, "140042378755232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290057552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290057552": {"type": "Union", "content": {"items": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": "N"}]}}, "140042290056768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378755680"}, {"nodeId": "140042290086624"}, {"nodeId": "140042378887904"}]}}, "140042378755680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042290057888"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140042290057888": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042290086624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042290058112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140042290058112": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "A"}]}}, "140042378887904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042290058336"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "140042290058336": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649824"}, {"nodeId": "A"}]}}, "140042290057216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378888352"}, {"nodeId": "140042290086848"}, {"nodeId": "140042378889248"}]}}, "140042378888352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290086848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042378889248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".1.140042302649824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290057664": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378889696"}, {"nodeId": "140042290087072"}, {"nodeId": "140042378890592"}]}}, "140042378889696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290087072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042378890592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "140042290058448": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378891040"}, {"nodeId": "140042290087744"}, {"nodeId": "140042378891936"}]}}, "140042378891040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042290059008"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140042290059008": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042290087296"}]}}, "140042290087296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042290087744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042290059120"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140042290059120": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042290087520"}]}}, "140042290087520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}], "returnType": {"nodeId": "140042307616288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042378891936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": "140042290059232"}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": ".1.140042302649824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140042290059232": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649824"}, {"nodeId": "140042290086176"}]}}, "140042290086176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": ".1.140042302649824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042290058784": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378892384"}, {"nodeId": "140042290088640"}, {"nodeId": "140042378893280"}]}}, "140042378892384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042290059456"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290059680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140042290059456": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042290087968"}]}}, "140042290087968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042290059680": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042290088640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042290059792"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290060016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140042290059792": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042290088192"}]}}, "140042290088192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}], "returnType": {"nodeId": "140042307616288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042290060016": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042378893280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": "140042290060128"}, {"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290060352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "140042290060128": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649824"}, {"nodeId": "140042290088416"}]}}, "140042290088416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": ".1.140042302649824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042290060352": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.140042302649824"}, {"nodeId": "140042512514240"}]}}, "140042378893728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}], "returnType": {"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378894176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302649824", "args": [{"nodeId": ".1.140042302649824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042378894624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042289949472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042307124608"}, {"nodeId": "140042378741344"}, {"nodeId": "140042378742240"}]}}, "140042307124608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140042378741344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140042378742240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": ".1.140042302649472"}], "returnType": {"nodeId": ".1.140042302649472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140042289953504": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378742688"}, {"nodeId": "140042378743136"}, {"nodeId": "140042378743584"}]}}, "140042378742688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140042302649472"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042378743136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "140042289954512"}], "returnType": {"nodeId": "140042290053184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042289954512": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042290053184": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": "A"}]}}, "140042378743584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "140042290053296"}, {"nodeId": "140042290053408"}, {"nodeId": "140042290053520"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042290053744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "140042290053296": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042290053408": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042290053520": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042290053744": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": "A"}]}}, "140042289954176": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378744032"}, {"nodeId": "140042378744480"}]}}, "140042378744032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042290054080"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290054080": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": "A"}]}}, "140042378744480": {"type": "Function", "content": {"typeVars": [".-1.140042378744480"], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": ".-1.140042378744480"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042290054192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140042378744480": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042378744480", "variance": "INVARIANT"}}, "140042290054192": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": ".-1.140042378744480"}]}}, "140042289954288": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378744928"}, {"nodeId": "140042378745376"}]}}, "140042378744928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042290054528"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290054528": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": "A"}]}}, "140042378745376": {"type": "Function", "content": {"typeVars": [".-1.140042378745376"], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": ".-1.140042378745376"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042290054640"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.140042378745376": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042378745376", "variance": "INVARIANT"}}, "140042290054640": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": ".-1.140042378745376"}]}}, "140042378745824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "140042290054752"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290054752": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042378746272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "140042290054864"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290054864": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042378746720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "140042290054976"}], "returnType": {"nodeId": "140042290055200"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290054976": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042290055200": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042265501408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042290055424"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290055424": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042290053856": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042378747616"}, {"nodeId": "140042378748064"}]}}, "140042378747616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.140042302649472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042378748064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "140042290055760"}], "returnType": {"nodeId": "140042290055984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042290055760": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042290055984": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302649472"}, {"nodeId": "A"}]}}, "140042378748512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}], "returnType": {"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042378748960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302649472", "args": [{"nodeId": ".1.140042302649472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042378749408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042299114944": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303206528"}], "isAbstract": false}}, "140042298608800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240360624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373826592"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294081824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298626272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298626384"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042240360624": {"type": "Tuple", "content": {"items": []}}, "140042373826592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298608800"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042294081824": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042298626272": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042298626384": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298609152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298609504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298609856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240363872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298609504"}], "isAbstract": false}}, "140042240363872": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298610208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240364880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298609152"}], "isAbstract": false}}, "140042240364880": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298620768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298610560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240365888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298609856"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298609152"}], "isAbstract": false}}, "140042240365888": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298611616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298610912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240367232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298609152"}], "isAbstract": false}}, "140042240367232": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298611264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240368128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298609152"}], "isAbstract": false}}, "140042240368128": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298611968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240370704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298907232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294082608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240370704": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298907232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235681632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298907584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298907584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298907584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298630192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294116640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235681632": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298907584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235682864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294116752"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235682864": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294116752": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298629968": {"type": "Union", "content": {"items": [{"nodeId": "140042298907584"}, {"nodeId": "N"}]}}, "140042298630192": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042294116640": {"type": "Union", "content": {"items": [{"nodeId": "140042298907584"}, {"nodeId": "N"}]}}, "140042294082608": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298612320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240373280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298907232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294082944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240373280": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294082944": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298612672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240375632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298907936"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240375632": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298907936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235683760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298630304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235683760": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298630304": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298613024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240376640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294083056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240376640": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042294083056": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298613376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240492368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240492368": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298613728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240493712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240493712": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298614080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240494832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294083168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298797120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240494832": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294083168": {"type": "Union", "content": {"items": [{"nodeId": "140042298793600"}, {"nodeId": "140042298792192"}, {"nodeId": "140042298792896"}]}}, "140042298793600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235542800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298794656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235542800": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298794656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298792192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235537424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298794656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235537424": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298792896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235540896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298794656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235540896": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298797120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298614432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240496176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294083280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294078464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240496176": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294083280": {"type": "Union", "content": {"items": [{"nodeId": "140042298793600"}, {"nodeId": "140042298792192"}, {"nodeId": "140042298792896"}]}}, "140042294078464": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298614784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240497632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240497632": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298615136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240498976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240498976": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298615488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240499872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240499872": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298615840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240500992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240500992": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298616192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240502112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298908640"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240502112": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298908640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235685776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298630416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235685776": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298630416": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298616544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240503232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298908640"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240503232": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298616896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240504128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294116864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294116976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240504128": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294116864": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042294116976": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298617248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240505584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298906880"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240505584": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298906880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235679616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298906528"}], "isAbstract": false}}, "140042235679616": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298629744": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298629856": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298906528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298617600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240506928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294116416"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240506928": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294116416": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298617952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042240507712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298908288"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042240507712": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298908288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235684768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298630080"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235684768": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298630080": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298618304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235364624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294116528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298908288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042235364624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042294116528": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298618656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235365296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042235365296": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298619008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235366192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042235366192": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298619360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235367088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042235367088": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298619712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042298620064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042298620416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042298621120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235368208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298796064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235368208": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298796064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298621472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235369440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298797120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235369440": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298785856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235370336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298900544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235370336": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298900544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298786208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235371344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298907232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235371344": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298786560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235372576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235372576": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298786912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235373472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298626944"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235373472": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298626944": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298787264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235374256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235374256": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298787616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235375376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298906176"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235375376": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298906176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235678608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235678608": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298787968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235376384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298906176"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235376384": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298788320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235377616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298906176"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235377616": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298788672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235378512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298906176"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235378512": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298789024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235379296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235379296": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298789376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235527792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298626832"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235527792": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298626832": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298789728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235528688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235528688": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298790080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235530032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298902304"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235530032": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298902304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298790432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235531152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298907936"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235531152": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298790784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235532272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298626720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235532272": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298626720": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298791136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235532944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235532944": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298791488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235534624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298626608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629184"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235534624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298626608": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298629184": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042307289152"}]}}, "140042298791840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235536192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298793600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235536192": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298792544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235539216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298629632"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235539216": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298629408": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298629520": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298629632": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298793248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235541792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298794656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235541792": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298793952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235675024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298794656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235675024": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298794304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235676032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298794656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298620768"}], "isAbstract": false}}, "140042235676032": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298795008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298794656"}], "isAbstract": false}}, "140042298795360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298794656"}], "isAbstract": false}}, "140042298795712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298794656"}], "isAbstract": false}}, "140042298796416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298796064"}], "isAbstract": false}}, "140042298796768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298796064"}], "isAbstract": false}}, "140042298797472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298797824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298798176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298798528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298798880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298799232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298799584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298799936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298800288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298800640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298800992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298801344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298801696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298797120"}], "isAbstract": false}}, "140042298900896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298900544"}], "isAbstract": false}}, "140042298901248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298900544"}], "isAbstract": false}}, "140042298901600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298900544"}], "isAbstract": false}}, "140042298901952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298900544"}], "isAbstract": false}}, "140042298902656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298903008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298903360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298903712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298904064": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298904416": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298904768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298905120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298905472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298905824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298902304"}], "isAbstract": false}}, "140042298908992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235686784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298909696"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298611616"}], "isAbstract": false}}, "140042235686784": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298909696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235687456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298909344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298630528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298611616"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042235687456": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298909344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042298630528": {"type": "Union", "content": {"items": [{"nodeId": "140042298620768"}, {"nodeId": "N"}]}}, "140042298910048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235687568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235687568": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298910400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235687904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298630640"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235687904": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298630640": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "140042298910752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235688240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298909344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235688240": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298911104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235688576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298630976"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235688576": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042298630976": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298911456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235689360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298620768"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298909344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298631088"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235689360": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298631088": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298911808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235690144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298620768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298909344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298909344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235690144": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298912160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235690368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298631200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298631312"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235690368": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042298631200": {"type": "Union", "content": {"items": [{"nodeId": "140042298909344"}, {"nodeId": "N"}]}}, "140042298631312": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298912512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042235690592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298909344"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298909344"}], "isAbstract": false}}, "140042235690592": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}]}}, "140042302650880": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307299008"}, {"nodeId": "140042307304640"}], "isAbstract": false}}, "140042302651584": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373837344"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373837792"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373838240"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373838688"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140042302651232"}], "isAbstract": false}}, "140042373837344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651584"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373837792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651584"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042290641184"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042290641184": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042373838240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651584"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042290641296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042290641296": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042373838688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651584"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042290641408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290641408": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042302651936": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302651584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373839136"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373839584"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373840032"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042373840480"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374103328"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374103776"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140042302651232"}], "isAbstract": false}}, "140042373839136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651936"}], "returnType": {"nodeId": "140042302651584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042373839584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651936"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042373840032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651936"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042373840480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651936"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042374103328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651936"}, {"nodeId": "140042290641520"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290641520": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042374103776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302651936"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042303193152": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299154592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374104224"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256542720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374105120"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374105568"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374106016"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "140042302651584"}, {"nodeId": "140042307605376"}], "isAbstract": false}}, "140042299154592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298424256"}}}, "140042298424256": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042298424032"}]}}, "140042298424032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042374104224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193152"}, {"nodeId": "140042290641632"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042290641856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "140042290641632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298424256"}}}, "140042290641856": {"type": "Union", "content": {"items": [{"nodeId": "140042290641744"}, {"nodeId": "N"}]}}, "140042290641744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042306892992"}}}, "140042306892992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042256542720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193152"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374105120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193152"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042374105568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193152"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042374106016": {"type": "Function", "content": {"typeVars": [".0.140042374106016"], "argTypes": [{"nodeId": ".0.140042374106016"}], "returnType": {"nodeId": ".0.140042374106016"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042374106016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303193152"}, "def": "140042374106016", "variance": "INVARIANT"}}, "140042303193504": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374106464"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374106912"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374107360"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374107808"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374108256"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "140042302651936"}, {"nodeId": "140042307605376"}], "isAbstract": false}}, "140042374106464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193504"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "140042374106912": {"type": "Function", "content": {"typeVars": [".0.140042374106912"], "argTypes": [{"nodeId": ".0.140042374106912"}], "returnType": {"nodeId": ".0.140042374106912"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042374106912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303193504"}, "def": "140042374106912", "variance": "INVARIANT"}}, "140042374107360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193504"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374107808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193504"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374108256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193504"}, {"nodeId": "140042290642192"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042290642192": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042303193856": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374108704"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374109152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374109600"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140042302651936"}, {"nodeId": "140042307605376"}], "isAbstract": false}}, "140042374108704": {"type": "Function", "content": {"typeVars": [".0.140042374108704"], "argTypes": [{"nodeId": ".0.140042374108704"}], "returnType": {"nodeId": ".0.140042374108704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042374108704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303193856"}, "def": "140042374108704", "variance": "INVARIANT"}}, "140042374109152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193856"}, {"nodeId": "140042302651584"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140042374109600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303193856"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042303194208": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374110048"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374110496"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374110944"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "140042302651936"}, {"nodeId": "140042307605376"}], "isAbstract": false}}, "140042374110048": {"type": "Function", "content": {"typeVars": [".0.140042374110048"], "argTypes": [{"nodeId": ".0.140042374110048"}], "returnType": {"nodeId": ".0.140042374110048"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042374110048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303194208"}, "def": "140042374110048", "variance": "INVARIANT"}}, "140042374110496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303194208"}, {"nodeId": "140042302651584"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "140042374110944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303194208"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042303194560": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374111392"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374111840"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140042303193856"}, {"nodeId": "140042303194208"}], "isAbstract": false}}, "140042374111392": {"type": "Function", "content": {"typeVars": [".0.140042374111392"], "argTypes": [{"nodeId": ".0.140042374111392"}], "returnType": {"nodeId": ".0.140042374111392"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042374111392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303194560"}, "def": "140042374111392", "variance": "INVARIANT"}}, "140042374111840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303194560"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "140042303194912": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374112288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374112736"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "140042302651936"}], "isAbstract": false}}, "140042374112288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303194912"}, {"nodeId": "140042302651584"}, {"nodeId": "140042302651584"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "140042374112736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303194912"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042303195968": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374548832"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374549280"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "140042303195616"}], "isAbstract": false}}, "140042374548832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195968"}, {"nodeId": "140042290807744"}, {"nodeId": "140042290807856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "140042290807744": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290807856": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042374549280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303195968"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042299126560": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374549728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374550176"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256786464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374551072"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140042298382944"}], "isAbstract": false}}, "140042374549728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126560"}, {"nodeId": "140042290807968"}, {"nodeId": "140042512503328"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "140042290807968": {"type": "Union", "content": {"items": [{"nodeId": "140042298382944"}, {"nodeId": "N"}]}}, "140042298382944": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340689376"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042244365376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340690272"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340690720"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340691168"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042340689376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382944"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140042244365376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382944"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140042340690272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340690720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382944"}], "returnType": {"nodeId": "140042286572128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286572128": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042340691168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382944"}, {"nodeId": "140042286572352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140042286572352": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042374550176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126560"}, {"nodeId": "140042290808080"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140042290808080": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307290208"}]}}, "140042256786464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126560"}], "returnType": {"nodeId": "140042290808192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290808192": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042374551072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126560"}, {"nodeId": "140042290808416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042290808416": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042303200544": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042303201248": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252195808"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303200896"}], "isAbstract": true}}, "140042252195808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303201248"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042303201600": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374554656"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374555104"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252194912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374556000"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252194464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303200896"}], "isAbstract": true}}, "140042374554656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303201600"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042374555104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303201600"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042290819056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042290819056": {"type": "Union", "content": {"items": [{"nodeId": "140042302636800"}, {"nodeId": "N"}]}}, "140042252194912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303201600"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042290819168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042290819168": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042374556000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303201600"}, {"nodeId": "140042302638208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140042252194464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290819280"}, {"nodeId": "140042290819504"}], "returnType": {"nodeId": "140042302636800"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "140042290819280": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042298610560"}, {"nodeId": "140042298611264"}, {"nodeId": "140042298610912"}]}}, "140042290819504": {"type": "Union", "content": {"items": [{"nodeId": "140042307616288"}, {"nodeId": "140042290819392"}]}}, "140042290819392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042303201952": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252193120"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303201600"}], "isAbstract": true}}, "140042252193120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303201952"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042303202304": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374557344"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374557792"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374558240"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374558688"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "140042303201248"}, {"nodeId": "140042303201952"}], "isAbstract": true}}, "140042374557344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202304"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512514592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042374557792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202304"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "140042374558240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202304"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042290819616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042290819616": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042374558688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202304"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042303202656": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374559136"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374559584"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374560032"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140042303200544"}], "isAbstract": false}}, "140042374559136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202656"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290819840"}], "returnType": {"nodeId": "140042290819952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140042290819840": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290819952": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042374559584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374560032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303202656"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290820064"}, {"nodeId": "140042290820176"}], "returnType": {"nodeId": "140042290820288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "140042290820064": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290820176": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042290820288": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042303203008": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374560480"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374560928"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374561376"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374660384"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "140042303200544"}], "isAbstract": false}}, "140042374560480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203008"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042290820400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042290820400": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042374560928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203008"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042290820736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042290820736": {"type": "Tuple", "content": {"items": [{"nodeId": "140042290820512"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}]}}, "140042290820512": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042374561376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374660384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203008"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290820848"}], "returnType": {"nodeId": "140042290820960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "140042290820848": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042290820960": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042303203360": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374660832"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374661280"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374661728"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374662176"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "140042303201248"}, {"nodeId": "140042303201952"}], "isAbstract": true}}, "140042374660832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203360"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "140042374661280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203360"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042374661728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203360"}, {"nodeId": "140042290821072"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140042290821072": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042374662176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203360"}, {"nodeId": "140042290821184"}], "returnType": {"nodeId": "140042302638208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140042290821184": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042303203712": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252139232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252138784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252138112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252138560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042252139232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140042252138784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140042252138112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042252138560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303203712"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303204064": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252137216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252136768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252136544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252135872"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290818720"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252136320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252135648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252135424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252135200"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "140042252137216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042252136768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042252136544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042303204064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042252135872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042303204064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "140042290818720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042374667104"}, {"nodeId": "140042374667552"}, {"nodeId": "140042374668000"}, {"nodeId": "140042374668448"}, {"nodeId": "140042374668896"}, {"nodeId": "140042374669344"}, {"nodeId": "140042374669792"}]}}, "140042374667104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042290821408"}, {"nodeId": "140042512514240"}, {"nodeId": "140042290821520"}, {"nodeId": "140042290821632"}, {"nodeId": "140042290821744"}], "returnType": {"nodeId": "140042303195616"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290821408": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298418208"}}}, "140042298418208": {"type": "Union", "content": {"items": [{"nodeId": "140042298420112"}, {"nodeId": "140042298420224"}, {"nodeId": "140042298418096"}]}}, "140042298420112": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298417648"}}}, "140042298417648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042298420224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298419776"}}}, "140042298419776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042298418096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298421792"}}}, "140042298421792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042290821520": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290821632": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290821744": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042374667552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042290821856"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303193152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290821856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298622016"}}}, "140042298622016": {"type": "Union", "content": {"items": [{"nodeId": "140042298423808"}, {"nodeId": "140042298423920"}, {"nodeId": "140042298622352"}]}}, "140042298423808": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298423472"}}}, "140042298423472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042298423920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298623248"}}}, "140042298623248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042298622352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298425152"}}}, "140042298425152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042374668000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042290822080"}, {"nodeId": "140042290822416"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303194560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290822080": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298423472"}}}, "140042290822416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042374668448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042290822528"}, {"nodeId": "140042290822864"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303194208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290822528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298425152"}}}, "140042290822864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042374668896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042290822976"}, {"nodeId": "140042285809952"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303193856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290822976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298623248"}}}, "140042285809952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042374669344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042285810064"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307605376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042285810064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298622016"}}}, "140042374669792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042285810176"}, {"nodeId": "140042285810288"}, {"nodeId": "140042285810400"}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042285810176": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042285810288": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042285810400": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042252136320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042252135648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042303204064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042252135424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042252135200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204064"}, {"nodeId": "140042285810624"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140042285810624": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042303204416": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252133632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374672480"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374672928"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374673376"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042374673824"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "140042303203712"}], "isAbstract": true}}, "140042252133632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204416"}], "returnType": {"nodeId": "140042303204064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042374672480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204416"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042303193856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140042374672928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204416"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "140042374673376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204416"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042374673824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303204416"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042299119520": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257199872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257199424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257198976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257198528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257198080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257197408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257196960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257195840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257194944"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303202656"}, {"nodeId": "140042303201600"}], "isAbstract": false}}, "140042257199872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290815696"}], "returnType": {"nodeId": "140042290815808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140042290815696": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290815808": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042257199424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290815920"}, {"nodeId": "140042290816032"}], "returnType": {"nodeId": "140042290816144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140042290815920": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290816032": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042290816144": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042257198976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257198528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042302638208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257198080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257197408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257196960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140042257195840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199840"}], "returnType": {"nodeId": "140042290816256"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140042290816256": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042257194944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140042299119872": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257193824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257193376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257192928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257192480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257191584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257191136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257190688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257189568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257189344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303202656"}, {"nodeId": "140042303201600"}], "isAbstract": false}}, "140042257193824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290816368"}], "returnType": {"nodeId": "140042290816480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140042290816368": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290816480": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042257193376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290816592"}, {"nodeId": "140042290816704"}], "returnType": {"nodeId": "140042290816816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140042290816592": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290816704": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042290816816": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042257192928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257192480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042302638208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257191584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257191136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "140042257190688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "140042257189568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199840"}], "returnType": {"nodeId": "140042290816928"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "140042290816928": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042257189344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302638208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "140042299120224": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257188224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257187776"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303202656"}], "isAbstract": false}}, "140042257188224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290817040"}], "returnType": {"nodeId": "140042290817152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140042290817040": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290817152": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042257187776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290817264"}, {"nodeId": "140042290817376"}], "returnType": {"nodeId": "140042290817488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140042290817264": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290817376": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042290817488": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042303200192": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257169568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257169120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257170016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257168672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042257169568": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140042257169120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299118816"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042303199488"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "140042299118816": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294129296"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340971488"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256921344"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042294129296": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042340971488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299118816"}, {"nodeId": "140042290812560"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "140042290812560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042256921344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299118816"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303199488": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340973728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340974176"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336502048"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "140042303199136"}], "isAbstract": false}}, "140042340973728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199488"}, {"nodeId": "140042299125504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042299125504": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315159968"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315160416"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315160864"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042261388352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315161760"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315162208"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315164896"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315165344"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315165792"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315166240"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315166688"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315167136"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315167584"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315168032"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315168480"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315168928"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315448608"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315449056"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315449504"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315449952"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290235200"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315453536"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315453984"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315454432"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315454880"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315455328"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315455776"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315457120"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315457568"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315458016"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315458464"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315458912"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315459360"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042261098816"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315460704"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315461152"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315461600"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315462048"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315462496"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315462944"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315463392"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315464288"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "140042299124448"}], "isAbstract": false}}, "140042315159968": {"type": "Function", "content": {"typeVars": [".0.140042315159968"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042290237776"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042315159968"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "140042290237776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, ".0.140042315159968": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315159968", "variance": "INVARIANT"}}, "140042315160416": {"type": "Function", "content": {"typeVars": [".0.140042315160416"], "argTypes": [{"nodeId": ".0.140042315160416"}], "returnType": {"nodeId": ".0.140042315160416"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042315160416": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315160416", "variance": "INVARIANT"}}, "140042315160864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290238000"}, {"nodeId": "140042290238112"}, {"nodeId": "140042290238224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042290238000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042290238112": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042290238224": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042261388352": {"type": "Function", "content": {"typeVars": [".0.140042261388352"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042261388352"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042261388352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042261388352", "variance": "INVARIANT"}}, "140042315161760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042290238336"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "140042290238336": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294126160"}}}, "140042315162208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "140042315164896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315165344": {"type": "Function", "content": {"typeVars": [".0.140042315165344"], "argTypes": [{"nodeId": ".0.140042315165344"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".0.140042315165344"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140042315165344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315165344", "variance": "INVARIANT"}}, "140042315165792": {"type": "Function", "content": {"typeVars": [".0.140042315165792"], "argTypes": [{"nodeId": ".0.140042315165792"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".0.140042315165792"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.140042315165792": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315165792", "variance": "INVARIANT"}}, "140042315166240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315166688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315167136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315167584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315168032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315168480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315168928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315448608": {"type": "Function", "content": {"typeVars": [".0.140042315448608"], "argTypes": [{"nodeId": ".0.140042315448608"}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".0.140042315448608"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042315448608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315448608", "variance": "INVARIANT"}}, "140042315449056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "140042315449504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042290238448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290238448": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294126160"}}}, "140042315449952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "140042290235200": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042315450400"}, {"nodeId": "140042315450848"}, {"nodeId": "140042315451296"}, {"nodeId": "140042315451744"}, {"nodeId": "140042315452192"}, {"nodeId": "140042315452640"}, {"nodeId": "140042315453088"}]}}, "140042315450400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290238672"}, {"nodeId": "140042512514240"}, {"nodeId": "140042290238784"}, {"nodeId": "140042290238896"}, {"nodeId": "140042290239008"}], "returnType": {"nodeId": "140042303195616"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290238672": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298418208"}}}, "140042290238784": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290238896": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290239008": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315450848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290239120"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303193152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290239120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298622016"}}}, "140042315451296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290239344"}, {"nodeId": "140042290239680"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303194560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290239344": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298423472"}}}, "140042290239680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042315451744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290239792"}, {"nodeId": "140042290240128"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303194208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290239792": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298425152"}}}, "140042290240128": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042315452192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290240240"}, {"nodeId": "140042290240576"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042303193856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290240240": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298623248"}}}, "140042290240576": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "140042315452640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290240688"}, {"nodeId": "140042512514240"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307605376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290240688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298622016"}}}, "140042315453088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042290240800"}, {"nodeId": "140042290240912"}, {"nodeId": "140042290241024"}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "140042290240800": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290240912": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290241024": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315453536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315453984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315454432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315454880": {"type": "Function", "content": {"typeVars": [".0.140042315454880"], "argTypes": [{"nodeId": ".0.140042315454880"}], "returnType": {"nodeId": ".0.140042315454880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042315454880": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315454880", "variance": "INVARIANT"}}, "140042315455328": {"type": "Function", "content": {"typeVars": [".0.140042315455328"], "argTypes": [{"nodeId": ".0.140042315455328"}, {"nodeId": "140042290241248"}], "returnType": {"nodeId": ".0.140042315455328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140042315455328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315455328", "variance": "INVARIANT"}}, "140042290241248": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042299124448"}]}}, "140042299124448": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261377568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261377120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261376896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261376672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261376448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261376224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261376000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261375776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315082528"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315082976"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315083424"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315083872"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315084320"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315084768"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315085216"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315085664"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315086112"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315086560"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315087008"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315087456"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315153696"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315154144"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315154592"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315155488"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315155936"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315156384"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315156832"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315157280"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315157728"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261370400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042261385888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315159072"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": false}}, "140042261377568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261377120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261376896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261376672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261376448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261376224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261376000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042261375776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315082528": {"type": "Function", "content": {"typeVars": [".0.140042315082528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042290236880"}], "returnType": {"nodeId": ".0.140042315082528"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140042290236880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, ".0.140042315082528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315082528", "variance": "INVARIANT"}}, "140042315082976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315083424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315083872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315084320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315084768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315085216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315085664": {"type": "Function", "content": {"typeVars": [".0.140042315085664"], "argTypes": [{"nodeId": ".0.140042315085664"}, {"nodeId": "140042290236992"}], "returnType": {"nodeId": ".0.140042315085664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042315085664": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315085664", "variance": "INVARIANT"}}, "140042290236992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042315086112": {"type": "Function", "content": {"typeVars": [".0.140042315086112"], "argTypes": [{"nodeId": ".0.140042315086112"}, {"nodeId": "140042290237104"}], "returnType": {"nodeId": ".0.140042315086112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.140042315086112": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315086112", "variance": "INVARIANT"}}, "140042290237104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042315086560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315087008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315087456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315153696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315154144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315154592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042290237216"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140042290237216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042315155488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124448"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "140042315155936": {"type": "Function", "content": {"typeVars": [".0.140042315155936"], "argTypes": [{"nodeId": ".0.140042315155936"}, {"nodeId": "140042290237328"}], "returnType": {"nodeId": ".0.140042315155936"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140042315155936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315155936", "variance": "INVARIANT"}}, "140042290237328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042315156384": {"type": "Function", "content": {"typeVars": [".0.140042315156384"], "argTypes": [{"nodeId": ".0.140042315156384"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042315156384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.140042315156384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315156384", "variance": "INVARIANT"}}, "140042315156832": {"type": "Function", "content": {"typeVars": [".0.140042315156832"], "argTypes": [{"nodeId": ".0.140042315156832"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042315156832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.140042315156832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315156832", "variance": "INVARIANT"}}, "140042315157280": {"type": "Function", "content": {"typeVars": [".0.140042315157280"], "argTypes": [{"nodeId": ".0.140042315157280"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042315157280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140042315157280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315157280", "variance": "INVARIANT"}}, "140042315157728": {"type": "Function", "content": {"typeVars": [".0.140042315157728"], "argTypes": [{"nodeId": ".0.140042315157728"}, {"nodeId": "140042290237440"}], "returnType": {"nodeId": ".0.140042315157728"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.140042315157728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042315157728", "variance": "INVARIANT"}}, "140042290237440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042261370400": {"type": "Function", "content": {"typeVars": [".0.140042261370400"], "argTypes": [{"nodeId": ".0.140042261370400"}], "returnType": {"nodeId": "140042512511072", "args": [{"nodeId": ".0.140042261370400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042261370400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042261370400", "variance": "INVARIANT"}}, "140042261385888": {"type": "Function", "content": {"typeVars": [".0.140042261385888"], "argTypes": [{"nodeId": ".0.140042261385888"}], "returnType": {"nodeId": ".0.140042261385888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042261385888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124448"}, "def": "140042261385888", "variance": "INVARIANT"}}, "140042315159072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140042315455776": {"type": "Function", "content": {"typeVars": [".0.140042315455776"], "argTypes": [{"nodeId": ".0.140042315455776"}, {"nodeId": "140042290241360"}], "returnType": {"nodeId": ".0.140042315455776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.140042315455776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315455776", "variance": "INVARIANT"}}, "140042290241360": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042299124448"}]}}, "140042315457120": {"type": "Function", "content": {"typeVars": [".0.140042315457120"], "argTypes": [{"nodeId": ".0.140042315457120"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": ".0.140042315457120"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.140042315457120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315457120", "variance": "INVARIANT"}}, "140042315457568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315458016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290241472"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "140042290241472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042315458464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290241584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140042290241584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042315458912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "140042315459360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "140042261098816": {"type": "Function", "content": {"typeVars": [".0.140042261098816"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.140042261098816"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.140042261098816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042261098816", "variance": "INVARIANT"}}, "140042315460704": {"type": "Function", "content": {"typeVars": [".0.140042315460704"], "argTypes": [{"nodeId": ".0.140042315460704"}], "returnType": {"nodeId": ".0.140042315460704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042315460704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315460704", "variance": "INVARIANT"}}, "140042315461152": {"type": "Function", "content": {"typeVars": [".0.140042315461152"], "argTypes": [{"nodeId": ".0.140042315461152"}], "returnType": {"nodeId": ".0.140042315461152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042315461152": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299125504"}, "def": "140042315461152", "variance": "INVARIANT"}}, "140042315461600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315462048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290241696"}, {"nodeId": "140042290241808"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "140042290241696": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290241808": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315462496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290241920"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "140042290241920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042315462944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140042315463392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290242032"}, {"nodeId": "140042290242144"}, {"nodeId": "140042290242256"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "140042290242032": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290242144": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042290242256": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315464288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299125504"}, {"nodeId": "140042290242368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "140042290242368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298412720"}}}, "140042340974176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199488"}, {"nodeId": "140042290812784"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140042290812784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042336502048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199488"}, {"nodeId": "140042290812896"}], "returnType": {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042290812896": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042303199136": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256923808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256924256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256923584"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290811328"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256923360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256922688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256923136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256922464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256922240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256922016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256921792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042256923808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042290811664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "140042290811664": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042256924256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}, {"nodeId": "140042290811776"}], "returnType": {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "140042290811776": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042256923584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042303199136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "140042290811328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042340966560"}, {"nodeId": "140042340967008"}]}}, "140042340966560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042299118816"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042303199136"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "140042340967008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "140042290812000"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042303199136"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "140042290812000": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042256923360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290812224"}], "returnType": {"nodeId": "140042303199488"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "140042290812224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042256922688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}], "returnType": {"nodeId": "140042303196320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303196320": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320087968"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320088416"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320088864"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320089312"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320089760"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256948736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "140042320087968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196320"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042320088416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196320"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042320088864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196320"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042320089312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196320"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042320089760": {"type": "Function", "content": {"typeVars": [".-1.140042320089760"], "argTypes": [{"nodeId": "140042303196320"}, {"nodeId": "140042307290208"}, {"nodeId": ".-1.140042320089760"}], "returnType": {"nodeId": "140042290809200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.140042320089760": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042320089760", "variance": "INVARIANT"}}, "140042290809200": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.140042320089760"}]}}, "140042256948736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196320"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042290809312"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290809312": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}}, "140042256923136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}], "returnType": {"nodeId": "140042303198080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303198080": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340959392"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340959840"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256928544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256932800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042302847712"}]}], "isAbstract": false}}, "140042340959392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198080"}, {"nodeId": "140042290810432"}], "returnType": {"nodeId": "140042290811216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042290810432": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042290811216": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299154256"}}}, "140042299154256": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042340959840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198080"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042303198080"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140042256928544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198080"}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042256932800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198080"}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042302847712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299154256"}}}, "140042256922464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042256922240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}], "returnType": {"nodeId": "140042290812336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290812336": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042299126912"}]}, {"nodeId": "N"}]}}, "140042299126912": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340963424"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340963872"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340964320"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299154480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299152688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303199136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042299124800"}], "isAbstract": false}}, "140042340963424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126912"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "140042340963872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126912"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340964320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299126912"}], "returnType": {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042299154480": {"type": "Union", "content": {"items": [{"nodeId": "140042303198784"}, {"nodeId": "N"}]}}, "140042303198784": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340964768"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042340964768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198784"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140042299152688": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042299124800": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140042299124448"}], "isAbstract": false}}, "140042256922016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}], "returnType": {"nodeId": "140042290812448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290812448": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042256921792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303199136"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042257170016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290817600"}, {"nodeId": "140042290817712"}], "returnType": {"nodeId": "140042290817824"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "140042290817600": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290817712": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042290817824": {"type": "Union", "content": {"items": [{"nodeId": "140042303199840"}, {"nodeId": "N"}]}}, "140042257168672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290817936"}], "returnType": {"nodeId": "140042290818048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "140042290817936": {"type": "Union", "content": {"items": [{"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042290818048": {"type": "Union", "content": {"items": [{"nodeId": "140042303200896"}, {"nodeId": "N"}]}}, "140042299120576": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369594784"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042257168000"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303203008"}], "isAbstract": false}}, "140042369594784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299120576"}, {"nodeId": "140042307290208"}, {"nodeId": "140042290818272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "140042290818272": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}}, "140042257168000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042290818496"}], "returnType": {"nodeId": "140042290583072"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "140042290818496": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}}, "140042290583072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042303203008"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042299120928": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369595680"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "140042303203360"}, {"nodeId": "140042303202304"}], "isAbstract": false}}, "140042369595680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299120928"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "140042299121280": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "140042303203360"}, {"nodeId": "140042303202304"}], "isAbstract": false}}, "140042299121632": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369596128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369596576"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369597024"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369712416"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369712864"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369713312"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369713760"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140042303201952"}], "isAbstract": false}}, "140042369596128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "140042369596576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042290818608"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140042290818608": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042369597024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042369712416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042303199840"}], "returnType": {"nodeId": "140042302638208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "140042369712864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042302638208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "140042369713312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "140042369713760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299121632"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042298255392": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303206880"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303205472"}], "isAbstract": false}}, "140042298255744": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042298256800": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307300064"}], "isAbstract": false}}, "140042298257152": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369727200"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042286046496"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042298257152"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042298257152": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042298257152", "variance": "INVARIANT"}}, "140042369727200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298257152", "args": [{"nodeId": ".1.140042298257152"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "140042286046496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042369727648"}, {"nodeId": "140042369728096"}]}}, "140042369727648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042298257152", "args": [{"nodeId": ".1.140042298257152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140042369728096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042298257152", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "140042215085984": {"type": "Concrete", "content": {"module": "__future__", "simpleName": "_Feature", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "optionalRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mandatoryRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369896224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369896672"}, "name": "getOptionalRelease"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369897120"}, "name": "getMandatoryRelease"}}, {"kind": "Variable", "content": {"name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042369896224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085984"}, {"nodeId": "140042206379280"}, {"nodeId": "140042206379504"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "optionalRelease", "mandatoryRelease", "compiler_flag"]}}, "140042206379280": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206376256"}}}, "140042206376256": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042206379504": {"type": "Union", "content": {"items": [{"nodeId": "140042206379392"}, {"nodeId": "N"}]}}, "140042206379392": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206376256"}}}, "140042369896672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085984"}], "returnType": {"nodeId": "140042206379616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042206379616": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206376256"}}}, "140042369897120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085984"}], "returnType": {"nodeId": "140042206379840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042206379840": {"type": "Union", "content": {"items": [{"nodeId": "140042206379728"}, {"nodeId": "N"}]}}, "140042206379728": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042206376256"}}}, "140042181261824": {"type": "Concrete", "content": {"module": "numpy.ma.mrecords", "simpleName": "MaskedRecords", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "options", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370334784"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_data", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042243670752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fieldmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042243671424"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370335600"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370335872"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370336144"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370336416"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370336688"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370336960"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370337232"}, "name": "view"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370337504"}, "name": "harden_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370337776"}, "name": "soften_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370338048"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370338320"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042370338592"}, "name": "__reduce__"}}], "typeVars": [{"nodeId": ".1.140042181261824"}, {"nodeId": ".2.140042181261824"}], "bases": [{"nodeId": "140042181257248", "args": [{"nodeId": ".1.140042181261824"}, {"nodeId": ".2.140042181261824"}]}], "isAbstract": false}}, ".1.140042181261824": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "140042181261824", "variance": "INVARIANT"}}, ".2.140042181261824": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "140042181260416", "args": [{"nodeId": "A"}]}, "def": "140042181261824", "variance": "COVARIANT"}}, "140042370334784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["cls", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "mask", "hard_mask", "fill_value", "keep_mask", "copy", "options"]}}, "140042243670752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824", "args": [{"nodeId": ".1.140042181261824"}, {"nodeId": ".2.140042181261824"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042243671424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824", "args": [{"nodeId": ".1.140042181261824"}, {"nodeId": ".2.140042181261824"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370335600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042370335872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042370336144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042370336416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "140042370336688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042370336960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042370337232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, "140042370337504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370337776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370338048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042370338320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "140042370338592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181261824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042215082112": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "BadZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042215082464": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "LargeZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042215082816": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_ZipStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369900480"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["read"]}}, "140042369900480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215082816"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042215083168": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_SupportsReadSeekTell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369900928"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369901376"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369901824"}, "name": "tell"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["read", "seek", "tell"]}}, "140042369900928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083168"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042369901376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083168"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042369901824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083168"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042215083520": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_ClosableZipStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369902272"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140042215082816"}], "protocolMembers": ["close", "read"]}}, "140042369902272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083520"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042215083872": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipExtFile", "members": [{"kind": "Variable", "content": {"name": "MAX_N", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MIN_READ_SIZE", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MAX_SEEK_READ", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205930416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042205928176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042205930976"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369904064"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "limit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369904512"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369904960"}, "name": "peek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369905408"}, "name": "read1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369905856"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "140042302651936"}], "isAbstract": false}}, "140042205930416": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "N"}]}}, "140042205928176": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205926272"}}}, "140042205930976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042369902720"}, {"nodeId": "140042369903168"}, {"nodeId": "140042369903616"}]}}, "140042369902720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042215083520"}, {"nodeId": "140042205929632"}, {"nodeId": "140042215085280"}, {"nodeId": "140042205931536"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "140042205929632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205926272"}}}, "140042205931536": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042369903168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042215083520"}, {"nodeId": "140042205931760"}, {"nodeId": "140042215085280"}, {"nodeId": "140042205931872"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "140042205931760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205926272"}}}, "140042205931872": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042369903616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042215082816"}, {"nodeId": "140042205932096"}, {"nodeId": "140042215085280"}, {"nodeId": "140042205932208"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "140042205932096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205926272"}}}, "140042205932208": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042369904064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042205932432"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140042205932432": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042369904512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "limit"]}}, "140042369904960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140042369905408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042205932544"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n"]}}, "140042205932544": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042369905856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215083872"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140042215084928": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "PyZipFile", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365459520"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "basename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filterfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365459968"}, "name": "writepy"}}], "typeVars": [], "bases": [{"nodeId": "140042215084576"}], "isAbstract": false}}, "140042365459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084928"}, {"nodeId": "140042205936240"}, {"nodeId": "140042205936352"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "optimize"]}}, "140042205936240": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}]}}, "140042205936352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205927616"}}}, "140042365459968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215084928"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042205936464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pathname", "basename", "filterfunc"]}}, "140042205936464": {"type": "Union", "content": {"items": [{"nodeId": "140042206130272"}, {"nodeId": "N"}]}}, "140042206130272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042215085632": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "Path", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042206016480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042206016256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042215296352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365465792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365466240"}, "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365467136"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365467584"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365468032"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365599808"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365600256"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365600704"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365601152"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365602048"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042206016480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042206016256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042215296352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042299115296", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365465792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}, {"nodeId": "140042205937248"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "root", "at"]}}, "140042205937248": {"type": "Union", "content": {"items": [{"nodeId": "140042215084576"}, {"nodeId": "140042205937136"}, {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}]}}, "140042205937136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042365466240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}, {"nodeId": "140042205937360"}, {"nodeId": "140042205937472"}, {"nodeId": "A"}, {"nodeId": "140042206363824"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307605024", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "mode", "encoding", "args", "pwd", "kwargs"]}}, "140042205937360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042205927056"}}}, "140042205927056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042205937472": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042206363824": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042365467136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042215085632"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365467584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365468032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365599808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365600256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}, {"nodeId": "140042206364048"}, {"nodeId": "140042206364160"}, {"nodeId": "140042206364272"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "140042206364048": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042206364160": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042206364272": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042365600704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042365601152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}, {"nodeId": "140042206364384"}], "returnType": {"nodeId": "140042215085632"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "140042206364384": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042365602048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215085632"}, {"nodeId": "140042206364496"}], "returnType": {"nodeId": "140042215085632"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042206364496": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042223072032": {"type": "Concrete", "content": {"module": "ast", "simpleName": "_ABC", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365603616"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512513536"}], "isAbstract": false}}, "140042365603616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223072032"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "140042223072384": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Num", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042215034096"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298791488"}], "isAbstract": false}}, "140042215034096": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514592"}, {"nodeId": "140042307289152"}]}}, "140042223072736": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Str", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298791488"}], "isAbstract": false}}, "140042223073088": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Bytes", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298791488"}], "isAbstract": false}}, "140042223073440": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NameConstant", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298791488"}], "isAbstract": false}}, "140042223073792": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298791488"}], "isAbstract": false}}, "140042223074144": {"type": "Concrete", "content": {"module": "ast", "simpleName": "slice", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298608800"}], "isAbstract": false}}, "140042223074496": {"type": "Concrete", "content": {"module": "ast", "simpleName": "ExtSlice", "members": [], "typeVars": [], "bases": [{"nodeId": "140042223074144"}], "isAbstract": false}}, "140042223074848": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Index", "members": [], "typeVars": [], "bases": [{"nodeId": "140042223074144"}], "isAbstract": false}}, "140042215080000": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Suite", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298609152"}], "isAbstract": false}}, "140042215080352": {"type": "Concrete", "content": {"module": "ast", "simpleName": "AugLoad", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298794656"}], "isAbstract": false}}, "140042215080704": {"type": "Concrete", "content": {"module": "ast", "simpleName": "AugStore", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298794656"}], "isAbstract": false}}, "140042215081056": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Param", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298794656"}], "isAbstract": false}}, "140042215081408": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NodeVisitor", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365604064"}, "name": "visit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365604512"}, "name": "generic_visit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365604960"}, "name": "visit_Module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365605408"}, "name": "visit_Interactive"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365605856"}, "name": "visit_Expression"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365606304"}, "name": "visit_FunctionDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365606752"}, "name": "visit_AsyncFunctionDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365607200"}, "name": "visit_ClassDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365607648"}, "name": "visit_Return"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365608096"}, "name": "visit_Delete"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365608544"}, "name": "visit_Assign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365608992"}, "name": "visit_AugAssign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365609440"}, "name": "visit_AnnAssign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365609888"}, "name": "visit_For"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365610336"}, "name": "visit_AsyncFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365610784"}, "name": "visit_While"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365611232"}, "name": "visit_If"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365611680"}, "name": "visit_With"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365612128"}, "name": "visit_AsyncWith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365612576"}, "name": "visit_Raise"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365613024"}, "name": "visit_Try"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365613472"}, "name": "visit_Assert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365613920"}, "name": "visit_Import"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365614368"}, "name": "visit_ImportFrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365614816"}, "name": "visit_Global"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365615264"}, "name": "visit_Nonlocal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365615712"}, "name": "visit_Expr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365911328"}, "name": "visit_Pass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365911776"}, "name": "visit_Break"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365912224"}, "name": "visit_Continue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365912672"}, "name": "visit_Slice"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365913120"}, "name": "visit_BoolOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365913568"}, "name": "visit_BinOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365914016"}, "name": "visit_UnaryOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365914464"}, "name": "visit_Lambda"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365914912"}, "name": "visit_IfExp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365915360"}, "name": "visit_Dict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365915808"}, "name": "visit_Set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365916256"}, "name": "visit_ListComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365916704"}, "name": "visit_SetComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365917152"}, "name": "visit_DictComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365917600"}, "name": "visit_GeneratorExp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365918048"}, "name": "visit_Await"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365918496"}, "name": "visit_Yield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365918944"}, "name": "visit_YieldFrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365919392"}, "name": "visit_Compare"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365919840"}, "name": "visit_Call"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365920288"}, "name": "visit_FormattedValue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365920736"}, "name": "visit_JoinedStr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365921184"}, "name": "visit_Constant"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365921632"}, "name": "visit_NamedExpr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365922080"}, "name": "visit_TypeIgnore"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365922528"}, "name": "visit_Attribute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365922976"}, "name": "visit_Subscript"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365923424"}, "name": "visit_Starred"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365923872"}, "name": "visit_Name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365924320"}, "name": "visit_List"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365924768"}, "name": "visit_Tuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365925216"}, "name": "visit_Del"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365925664"}, "name": "visit_Load"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365926112"}, "name": "visit_Store"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365926560"}, "name": "visit_And"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042365927008"}, "name": "visit_Or"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366026016"}, "name": "visit_Add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366026464"}, "name": "visit_BitAnd"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366026912"}, "name": "visit_BitOr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366027360"}, "name": "visit_BitXor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366027808"}, "name": "visit_Div"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366028256"}, "name": "visit_FloorDiv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366028704"}, "name": "visit_LShift"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366029152"}, "name": "visit_Mod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366029600"}, "name": "visit_Mult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366030048"}, "name": "visit_MatMult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366030496"}, "name": "visit_Pow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366030944"}, "name": "visit_RShift"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366031392"}, "name": "visit_Sub"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366031840"}, "name": "visit_Invert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366032288"}, "name": "visit_Not"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366032736"}, "name": "visit_UAdd"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366033184"}, "name": "visit_USub"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366033632"}, "name": "visit_Eq"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366034080"}, "name": "visit_Gt"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366034528"}, "name": "visit_GtE"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366034976"}, "name": "visit_In"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366035424"}, "name": "visit_Is"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366035872"}, "name": "visit_IsNot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366036320"}, "name": "visit_Lt"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366036768"}, "name": "visit_LtE"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366037216"}, "name": "visit_NotEq"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366037664"}, "name": "visit_NotIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366038112"}, "name": "visit_comprehension"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366038560"}, "name": "visit_ExceptHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366039008"}, "name": "visit_arguments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366039456"}, "name": "visit_arg"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366039904"}, "name": "visit_keyword"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366040352"}, "name": "visit_alias"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366040800"}, "name": "visit_withitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366041248"}, "name": "visit_Match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366041696"}, "name": "visit_MatchValue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366157088"}, "name": "visit_MatchSequence"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366157536"}, "name": "visit_MatchStar"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366157984"}, "name": "visit_MatchMapping"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366158432"}, "name": "visit_MatchClass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366158880"}, "name": "visit_MatchAs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366159328"}, "name": "visit_MatchOr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366160224"}, "name": "visit_ExtSlice"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366160672"}, "name": "visit_Index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366161120"}, "name": "visit_Suite"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366161568"}, "name": "visit_AugLoad"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366162016"}, "name": "visit_AugStore"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366162464"}, "name": "visit_Param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366162912"}, "name": "visit_Num"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366163360"}, "name": "visit_Str"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366163808"}, "name": "visit_Bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366164256"}, "name": "visit_NameConstant"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366164704"}, "name": "visit_Ellipsis"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042365604064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298608800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365604512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298608800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365604960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298610560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365605408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298610912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365605856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298611264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365606304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298611968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365606752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298612320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365607200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298612672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365607648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298613024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365608096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298613376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365608544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298613728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365608992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298614080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365609440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298614432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365609888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298614784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365610336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298615136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365610784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298615488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365611232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298615840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365611680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298616192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365612128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298616544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365612576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298616896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365613024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298617248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365613472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298617600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365613920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298617952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365614368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298618304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365614816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298618656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365615264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298619008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365615712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298619360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365911328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298619712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365911776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298620064"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365912224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298620416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365912672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298792544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365913120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298621120"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365913568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298621472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365914016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298785856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365914464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298786208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365914912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298786560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365915360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298786912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365915808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298787264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365916256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298787616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365916704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298787968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365917152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298788320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365917600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298788672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365918048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298789024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365918496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298789376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365918944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298789728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365919392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298790080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365919840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298790432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365920288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298790784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365920736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298791136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365921184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298791488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365921632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298791840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365922080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298609856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365922528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298792192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365922976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298792896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365923424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298793248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365923872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298793600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365924320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298793952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365924768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298794304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365925216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298795008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365925664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298795360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365926112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298795712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365926560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298796416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042365927008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298796768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366026016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298797472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366026464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298797824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366026912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298798176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366027360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298798528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366027808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298798880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366028256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298799232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366028704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298799584"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366029152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298799936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366029600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298800288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366030048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298800640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366030496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298800992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366030944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298801344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366031392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298801696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366031840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298900896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366032288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298901248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366032736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298901600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366033184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298901952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366033632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298902656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366034080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298903008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366034528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298903360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366034976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298903712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366035424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298904064"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366035872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298904416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366036320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298904768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366036768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298905120"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366037216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298905472"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366037664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298905824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366038112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298906176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366038560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298906880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366039008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298907232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366039456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298907584"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366039904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298907936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366040352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298908288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366040800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298908640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366041248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298908992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366041696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298910048"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366157088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298910752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366157536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298911104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366157984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298911456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366158432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298911808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366158880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298912160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366159328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042298912512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366160224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223074496"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366160672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223074848"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366161120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042215080000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366161568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042215080352"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366162016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042215080704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366162464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042215081056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366162912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223072384"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366163360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223072736"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366163808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223073088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366164256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223073440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042366164704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081408"}, {"nodeId": "140042223073792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042215081760": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NodeTransformer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042366165152"}, "name": "generic_visit"}}], "typeVars": [], "bases": [{"nodeId": "140042215081408"}], "isAbstract": false}}, "140042366165152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215081760"}, {"nodeId": "140042298608800"}], "returnType": {"nodeId": "140042298608800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "140042181248800": {"type": "Concrete", "content": {"module": "numpy.lib.mixins", "simpleName": "NDArrayOperatorsMixin", "members": [{"kind": "Variable", "content": {"name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042122348128"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361366656"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361367104"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361367552"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361368000"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361368448"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361368896"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361369344"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361369792"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361370240"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361370688"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361371136"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361371584"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361372032"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361946176"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361946624"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361947072"}, "name": "__matmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361947520"}, "name": "__rmatmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361947968"}, "name": "__imatmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361948416"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361948864"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361949312"}, "name": "__itruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361949760"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361950208"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361950656"}, "name": "__ifloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361951104"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361951552"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361952000"}, "name": "__imod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361952448"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361952896"}, "name": "__rdivmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361953344"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361953792"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361954240"}, "name": "__ipow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361954688"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361955136"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361955584"}, "name": "__ilshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361956032"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361956480"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361956928"}, "name": "__irshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361957376"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361957824"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361958272"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361958720"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361959168"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361959616"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361960064"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361960512"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361960960"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361961408"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042361961856"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362028096"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362028544"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042122348128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "140042180856640"}, {"nodeId": "140042173014512"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "140042173014512": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042361366656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361367104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361367552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361368000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361368448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361368896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361369344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361369792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361370240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361370688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361371136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361371584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361372032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361946176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361946624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361947072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361947520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361947968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361948416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361948864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361949312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361949760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361950208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361950656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361951104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361951552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361952000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361952448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361952896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042361953344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361953792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361954240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361954688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361955136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361955584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361956032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361956480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361956928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361957376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361957824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361958272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361958720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361959168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361959616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361960064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361960960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042361961408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042361961856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042362028096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042362028544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181248800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223070624": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsCeil", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042362153088"}, "name": "__ceil__"}}], "typeVars": [{"nodeId": ".1.140042223070624"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__ceil__"]}}, ".1.140042223070624": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223070624", "variance": "COVARIANT"}}, "140042362153088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223070624", "args": [{"nodeId": ".1.140042223070624"}]}], "returnType": {"nodeId": ".1.140042223070624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223070976": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsFloor", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357081920"}, "name": "__floor__"}}], "typeVars": [{"nodeId": ".1.140042223070976"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__floor__"]}}, ".1.140042223070976": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223070976", "variance": "COVARIANT"}}, "140042357081920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223070976", "args": [{"nodeId": ".1.140042223070976"}]}], "returnType": {"nodeId": ".1.140042223070976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223071328": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357181120"}, "name": "__trunc__"}}], "typeVars": [{"nodeId": ".1.140042223071328"}], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__trunc__"]}}, ".1.140042223071328": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223071328", "variance": "COVARIANT"}}, "140042357181120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223071328", "args": [{"nodeId": ".1.140042223071328"}]}], "returnType": {"nodeId": ".1.140042223071328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198154784": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357429360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357429632"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357429904"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042357429360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154784"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "funcname"]}}, "140042357429632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042357429904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154784"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "140042189946944": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_single", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357430176"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042198154784"}], "isAbstract": false}}, "140042357430176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189946944"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}}, "140042189947296": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_seq", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357430448"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042198154784"}], "isAbstract": false}}, "140042357430448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189947296"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}}, "140042189947648": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_allargs", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357430720"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042198154784"}], "isAbstract": false}}, "140042357430720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042189947648"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "140042181258304": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "MAxisConcatenator", "members": [{"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042248721952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357436704"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "140042189959264"}], "isAbstract": false}}, "140042248721952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "140042357436704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181258304"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042181258656": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "mr_class", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357436976"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042181258304"}], "isAbstract": false}}, "140042357436976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181258656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198150560": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedArrayFutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307497728"}], "isAbstract": false}}, "140042198151616": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedUFunc", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357720464"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042357720464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198151616"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc"]}}, "140042198151968": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedUnaryOperation", "members": [{"kind": "Variable", "content": {"name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357720736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357721008"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042198151616"}], "isAbstract": false}}, "140042357720736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198151968"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mufunc", "fill", "domain"]}}, "140042357721008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198151968"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "kwargs"]}}, "140042198152320": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedBinaryOperation", "members": [{"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357721280"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357721552"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357721824"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357722096"}, "name": "outer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357722368"}, "name": "accumulate"}}], "typeVars": [], "bases": [{"nodeId": "140042198151616"}], "isAbstract": false}}, "140042357721280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152320"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mbfunc", "fillx", "filly"]}}, "140042357721552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152320"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "b", "args", "kwargs"]}}, "140042357721824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152320"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "target", "axis", "dtype"]}}, "140042357722096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152320"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "140042357722368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152320"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}}, "140042198152672": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_DomainedBinaryOperation", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357722640"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357722912"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042198151616"}], "isAbstract": false}}, "140042357722640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152672"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dbfunc", "domain", "fillx", "filly"]}}, "140042357722912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198152672"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "b", "args", "kwargs"]}}, "140042198153024": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedPrintOption", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "display", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357728624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357728896"}, "name": "display"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357729168"}, "name": "set_display"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357729440"}, "name": "enabled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357729712"}, "name": "enable"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042357728624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "display"]}}, "140042357728896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042357729168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "s"]}}, "140042357729440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042357729712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "shrink"]}}, "140042198153376": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedIterator", "members": [{"kind": "Variable", "content": {"name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dataiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maskiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357730256"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357730528"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357730800"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357731072"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042357731344"}, "name": "__next__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042357730256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153376"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ma"]}}, "140042357730528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042357730800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153376"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042357731072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153376"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042357731344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042181257952": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedConstant", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353105888"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353106160"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353106432"}, "name": "__array_prepare__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353106704"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353106976"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353107248"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353107520"}, "name": "__iop__"}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353107792"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353108064"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353108336"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353108608"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042181257248", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042198003584"}]}]}], "isAbstract": false}}, "140042353105888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042353106160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042353106432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "140042353106704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "140042353106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "140042353107248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353107520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "140042353107792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042353108064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353108336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "memo"]}}, "140042353108608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042181257952"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "value"]}}, "140042198003584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180854176", "args": [{"nodeId": "140042189951520"}]}}}, "140042198153728": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_extrema_operation", "members": [{"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fill_value_func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353109424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353109696"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353109968"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353110240"}, "name": "outer"}}], "typeVars": [], "bases": [{"nodeId": "140042198151616"}], "isAbstract": false}}, "140042353109424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153728"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc", "compare", "fill_value"]}}, "140042353109696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "140042353109968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}}, "140042353110240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198153728"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "140042198154080": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_frommethod", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "methodname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353111328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353111600"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353111872"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042353111328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154080"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "methodname", "reversed"]}}, "140042353111600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353111872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154080"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "params"]}}, "140042198154432": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_convert2ma", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353283936"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353284208"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042353284480"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042353283936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154432"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "funcname", "params"]}}, "140042353284208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042353284480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198154432"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "140042180868608": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "SeedlessSeedSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042348696672"}, "name": "generate_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042206131840"}, "name": "spawn"}}], "typeVars": [], "bases": [{"nodeId": "140042180868256"}], "isAbstract": false}}, "140042348696672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042180868608"}, {"nodeId": "140042512514240"}, {"nodeId": "140042172926544"}], "returnType": {"nodeId": "140042185617504", "args": [{"nodeId": "A"}, {"nodeId": "140042181260416", "args": [{"nodeId": "140042172926992"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "140042172926544": {"type": "Union", "content": {"items": [{"nodeId": "140042172924976"}, {"nodeId": "140042172926656"}]}}, "140042172924976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042180931568"}}}, "140042172926656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042231520432"}}}, "140042172926992": {"type": "Union", "content": {"items": [{"nodeId": "140042172926432"}, {"nodeId": "140042172926880"}]}}, "140042172926432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951872"}]}}}, "140042172926880": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042185621024", "args": [{"nodeId": "140042189951520"}]}}}, "140042206131840": {"type": "Function", "content": {"typeVars": [".-1.140042206131840"], "argTypes": [{"nodeId": ".-1.140042206131840"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": ".-1.140042206131840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, ".-1.140042206131840": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042206131840", "variance": "INVARIANT"}}, "140042198144928": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "FunctionTestCase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testFunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setUp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tearDown", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "description", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324238944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324239392"}, "name": "runTest"}}], "typeVars": [], "bases": [{"nodeId": "140042198144576"}], "isAbstract": false}}, "140042324238944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144928"}, {"nodeId": "140042193833760"}, {"nodeId": "140042193989056"}, {"nodeId": "140042193989392"}, {"nodeId": "140042193989616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "testFunc", "setUp", "tearDown", "description"]}}, "140042193833760": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042193989056": {"type": "Union", "content": {"items": [{"nodeId": "140042193834656"}, {"nodeId": "N"}]}}, "140042193834656": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042193989392": {"type": "Union", "content": {"items": [{"nodeId": "140042193830176"}, {"nodeId": "N"}]}}, "140042193830176": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "140042193989616": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042324239392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198144576": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "TestCase", "members": [{"kind": "Variable", "content": {"name": "failureException", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "longMessage", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxDiff", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194063472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_testMethodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_testMethodDoc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "methodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323664160"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323664608"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323665056"}, "name": "setUp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323665504"}, "name": "tearDown"}}, {"kind": "Variable", "content": {"name": "setUpClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189188096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tearDownClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189190560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323666848"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323667296"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323667744"}, "name": "skipTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323668192"}, "name": "subTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323668640"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323669088"}, "name": "_addSkip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323669536"}, "name": "assertEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323669984"}, "name": "assertNotEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323670432"}, "name": "assertTrue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323670880"}, "name": "assertFalse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323671328"}, "name": "assertIs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323671776"}, "name": "assertIsNot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323672224"}, "name": "assertIsNone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323672672"}, "name": "assertIsNotNone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324033824"}, "name": "assertIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324034272"}, "name": "assertNotIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324034720"}, "name": "assertIsInstance"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324035168"}, "name": "assertNotIsInstance"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194063360"}, "items": [{"kind": "Variable", "content": {"name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertGreater"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194065712"}, "items": [{"kind": "Variable", "content": {"name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertGreaterEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194071648"}, "items": [{"kind": "Variable", "content": {"name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertLess"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194072208"}, "items": [{"kind": "Variable", "content": {"name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertLessEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194072768"}, "items": [{"kind": "Variable", "content": {"name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertRaises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194073328"}, "items": [{"kind": "Variable", "content": {"name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertRaisesRegex"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194073888"}, "items": [{"kind": "Variable", "content": {"name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertWarns"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042194074784"}, "items": [{"kind": "Variable", "content": {"name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertWarnsRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324042784"}, "name": "assertLogs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324043232"}, "name": "assertNoLogs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042193977744"}, "items": [{"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertAlmostEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042193978752"}, "items": [{"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertNotAlmostEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324047264"}, "name": "assertRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unexpected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324047712"}, "name": "assertNotRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324048160"}, "name": "assertCountEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324048608"}, "name": "addTypeEqualityFunc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324049056"}, "name": "assertMultiLineEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324049504"}, "name": "assertSequenceEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324230432"}, "name": "assertListEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tuple1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tuple2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324230880"}, "name": "assertTupleEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "set1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "set2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324231328"}, "name": "assertSetEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "d1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "d2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324231776"}, "name": "assertDictEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324232224"}, "name": "fail"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324232672"}, "name": "countTestCases"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324233120"}, "name": "defaultTestResult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324233568"}, "name": "id"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324234016"}, "name": "shortDescription"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324234464"}, "name": "addCleanup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324235808"}, "name": "doCleanups"}}, {"kind": "Variable", "content": {"name": "addClassCleanup", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189192800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "doClassCleanups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189373504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standardMsg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324237600"}, "name": "_formatMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324238048"}, "name": "_getAssertEqualityFunc"}}, {"kind": "Variable", "content": {"name": "failUnlessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189374176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189374848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIfEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189375296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189375744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnless", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189376192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assert_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189376640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIf", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189377088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnlessRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189359472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnlessAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189360144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189360816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIfAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189361488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189362160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189377760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189378880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertRaisesRegexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042189363168"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dictionary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324238496"}, "name": "assertDictContainsSubset"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042194063472": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042323664160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "methodName"]}}, "140042323664608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042323665056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323665504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189188096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042189190560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042323666848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042194066384"}], "returnType": {"nodeId": "140042194066496"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}}, "140042194066384": {"type": "Union", "content": {"items": [{"nodeId": "140042198142816"}, {"nodeId": "N"}]}}, "140042198142816": {"type": "Concrete", "content": {"module": "unittest.result", "simpleName": "TestResult", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042194061008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failures", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042194061344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "skipped", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042194061568"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "expectedFailures", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042194061792"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "unexpectedSuccesses", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042198144576"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shouldStop", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testsRun", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323915744"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323916192"}, "name": "printErrors"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323916640"}, "name": "wasSuccessful"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323917088"}, "name": "stop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323917536"}, "name": "startTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323917984"}, "name": "stopTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323918432"}, "name": "startTestRun"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323853600"}, "name": "stopTestRun"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323854048"}, "name": "addError"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323854496"}, "name": "addFailure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323854944"}, "name": "addSuccess"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323855392"}, "name": "addSkip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323855840"}, "name": "addExpectedFailure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323856288"}, "name": "addUnexpectedSuccess"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323856736"}, "name": "addSubTest"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042194061008": {"type": "Tuple", "content": {"items": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}]}}, "140042194061344": {"type": "Tuple", "content": {"items": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}]}}, "140042194061568": {"type": "Tuple", "content": {"items": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}]}}, "140042194061792": {"type": "Tuple", "content": {"items": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}]}}, "140042323915744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042194062464"}, {"nodeId": "140042194064032"}, {"nodeId": "140042194064144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity"]}}, "140042194062464": {"type": "Union", "content": {"items": [{"nodeId": "140042307605728"}, {"nodeId": "N"}]}}, "140042194064032": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194064144": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042323916192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323916640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323917088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323917536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042323917984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042323918432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323853600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323854048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}, {"nodeId": "140042194064256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "140042194064256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298624032"}}}, "140042298624032": {"type": "Union", "content": {"items": [{"nodeId": "140042298622128"}, {"nodeId": "140042298623696"}]}}, "140042298622128": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298623360"}}}, "140042298623360": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307296896"}, {"nodeId": "140042302642080"}]}}, "140042298623696": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}}, "140042323854496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}, {"nodeId": "140042194064368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "140042194064368": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298624032"}}}, "140042323854944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042323855392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "reason"]}}, "140042323855840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}, {"nodeId": "140042194064480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "140042194064480": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298624032"}}}, "140042323856288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042323856736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}, {"nodeId": "140042198144576"}, {"nodeId": "140042194064704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "subtest", "err"]}}, "140042194064704": {"type": "Union", "content": {"items": [{"nodeId": "140042194064592"}, {"nodeId": "N"}]}}, "140042194064592": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042298624032"}}}, "140042194066496": {"type": "Union", "content": {"items": [{"nodeId": "140042198142816"}, {"nodeId": "N"}]}}, "140042323667296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042194066608"}], "returnType": {"nodeId": "140042194066720"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}}, "140042194066608": {"type": "Union", "content": {"items": [{"nodeId": "140042198142816"}, {"nodeId": "N"}]}}, "140042194066720": {"type": "Union", "content": {"items": [{"nodeId": "140042198142816"}, {"nodeId": "N"}]}}, "140042323667744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}}, "140042323668192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042298257504", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "params"]}}, "140042323668640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323669088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042198142816"}, {"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "result", "test_case", "reason"]}}, "140042323669536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042194067504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042194067504": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323669984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042194067952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042194067952": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323670432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042194068288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "140042194068288": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323670880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042194068624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "140042194068624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323671328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042194068848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}}, "140042194068848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323671776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042194069072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}}, "140042194069072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323672224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}, {"nodeId": "140042194069296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}}, "140042194069296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323672672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}, {"nodeId": "140042194069520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}}, "140042194069520": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324033824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042194069968"}, {"nodeId": "140042194070192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}}, "140042194069968": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512510368", "args": [{"nodeId": "A"}]}]}}, "140042194070192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324034272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042194070640"}, {"nodeId": "140042194070864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}}, "140042194070640": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512510368", "args": [{"nodeId": "A"}]}]}}, "140042194070864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324034720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}, {"nodeId": "140042194070976"}, {"nodeId": "140042194071200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}}, "140042194070976": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193645440"}}}, "140042193645440": {"type": "Union", "content": {"items": [{"nodeId": "140042512513536"}, {"nodeId": "140042302644192"}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042193644768"}]}]}}, "140042193644768": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193645440"}}}, "140042194071200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324035168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512502976"}, {"nodeId": "140042194071312"}, {"nodeId": "140042194071536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}}, "140042194071312": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193645440"}}}, "140042194071536": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042194063360": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324035616"}, {"nodeId": "140042324036064"}]}}, "140042324035616": {"type": "Function", "content": {"typeVars": [".-1.140042324035616"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298385056", "args": [{"nodeId": ".-1.140042324035616"}]}, {"nodeId": ".-1.140042324035616"}, {"nodeId": "140042194071872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324035616": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324035616", "variance": "INVARIANT"}}, "140042194071872": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324036064": {"type": "Function", "content": {"typeVars": [".-1.140042324036064"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324036064"}, {"nodeId": "140042298384704", "args": [{"nodeId": ".-1.140042324036064"}]}, {"nodeId": "140042194072096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324036064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324036064", "variance": "INVARIANT"}}, "140042194072096": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042194065712": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324036512"}, {"nodeId": "140042324036960"}]}}, "140042324036512": {"type": "Function", "content": {"typeVars": [".-1.140042324036512"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298385760", "args": [{"nodeId": ".-1.140042324036512"}]}, {"nodeId": ".-1.140042324036512"}, {"nodeId": "140042194072432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324036512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324036512", "variance": "INVARIANT"}}, "140042194072432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324036960": {"type": "Function", "content": {"typeVars": [".-1.140042324036960"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324036960"}, {"nodeId": "140042298385408", "args": [{"nodeId": ".-1.140042324036960"}]}, {"nodeId": "140042194072656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324036960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324036960", "variance": "INVARIANT"}}, "140042194072656": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042194071648": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324037408"}, {"nodeId": "140042324037856"}]}}, "140042324037408": {"type": "Function", "content": {"typeVars": [".-1.140042324037408"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298384704", "args": [{"nodeId": ".-1.140042324037408"}]}, {"nodeId": ".-1.140042324037408"}, {"nodeId": "140042194072992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324037408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324037408", "variance": "INVARIANT"}}, "140042194072992": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324037856": {"type": "Function", "content": {"typeVars": [".-1.140042324037856"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324037856"}, {"nodeId": "140042298385056", "args": [{"nodeId": ".-1.140042324037856"}]}, {"nodeId": "140042194073216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324037856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324037856", "variance": "INVARIANT"}}, "140042194073216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042194072208": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324038304"}, {"nodeId": "140042324038752"}]}}, "140042324038304": {"type": "Function", "content": {"typeVars": [".-1.140042324038304"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298384704", "args": [{"nodeId": ".-1.140042324038304"}]}, {"nodeId": ".-1.140042324038304"}, {"nodeId": "140042194073552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324038304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324038304", "variance": "INVARIANT"}}, "140042194073552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324038752": {"type": "Function", "content": {"typeVars": [".-1.140042324038752"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324038752"}, {"nodeId": "140042298385056", "args": [{"nodeId": ".-1.140042324038752"}]}, {"nodeId": "140042194073776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.140042324038752": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324038752", "variance": "INVARIANT"}}, "140042194073776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042194072768": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324039200"}, {"nodeId": "140042324039648"}]}}, "140042324039200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042194074000"}, {"nodeId": "140042193839584"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "callable", "args", "kwargs"]}}, "140042194074000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042193839584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042324039648": {"type": "Function", "content": {"typeVars": [".-1.140042324039648"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042194074560"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042198145280", "args": [{"nodeId": ".-1.140042324039648"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}}, "140042194074560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042198145280": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_AssertRaisesContext", "members": [{"kind": "Variable", "content": {"name": "exception", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042198145280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324239840"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324240288"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324240736"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042198145280"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042198145280": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042307296896"}, "def": "140042198145280", "variance": "INVARIANT"}}, "140042324239840": {"type": "Function", "content": {"typeVars": [".0.140042324239840"], "argTypes": [{"nodeId": ".0.140042324239840"}], "returnType": {"nodeId": ".0.140042324239840"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042324239840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198145280", "args": [{"nodeId": ".1.140042198145280"}]}, "def": "140042324239840", "variance": "INVARIANT"}}, "140042324240288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198145280", "args": [{"nodeId": ".1.140042198145280"}]}, {"nodeId": "140042193989728"}, {"nodeId": "140042193989840"}, {"nodeId": "140042193989952"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042193989728": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042193989840": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042193989952": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042324240736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, ".-1.140042324039648": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042307296896"}, "def": "140042324039648", "variance": "INVARIANT"}}, "140042194073328": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324040096"}, {"nodeId": "140042324040544"}]}}, "140042324040096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042194074896"}, {"nodeId": "140042194075008"}, {"nodeId": "140042193834208"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "expected_regex", "callable", "args", "kwargs"]}}, "140042194074896": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042194075008": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}]}}, "140042193834208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042324040544": {"type": "Function", "content": {"typeVars": [".-1.140042324040544"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193977408"}, {"nodeId": "140042193977520"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042198145280", "args": [{"nodeId": ".-1.140042324040544"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}}, "140042193977408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042193977520": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}]}}, ".-1.140042324040544": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042307296896"}, "def": "140042324040544", "variance": "INVARIANT"}}, "140042194073888": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324040992"}, {"nodeId": "140042324041440"}]}}, "140042324040992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193977856"}, {"nodeId": "140042193839360"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_warning", "callable", "args", "kwargs"]}}, "140042193977856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042193839360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042324041440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193978528"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042198145632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "msg"]}}, "140042193978528": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042198145632": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_AssertWarnsContext", "members": [{"kind": "Variable", "content": {"name": "warning", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198138944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042198138944"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324241184"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042324241632"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042324241184": {"type": "Function", "content": {"typeVars": [".0.140042324241184"], "argTypes": [{"nodeId": ".0.140042324241184"}], "returnType": {"nodeId": ".0.140042324241184"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042324241184": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042198145632"}, "def": "140042324241184", "variance": "INVARIANT"}}, "140042324241632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198145632"}, {"nodeId": "140042193990176"}, {"nodeId": "140042193990288"}, {"nodeId": "140042193990400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042193990176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042193990288": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042193990400": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042194074784": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324041888"}, {"nodeId": "140042324042336"}]}}, "140042324041888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193978864"}, {"nodeId": "140042193978976"}, {"nodeId": "140042193834880"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_warning", "expected_regex", "callable", "args", "kwargs"]}}, "140042193978864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042193978976": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}]}}, "140042193834880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042324042336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193979648"}, {"nodeId": "140042193979760"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042198145632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "expected_regex", "msg"]}}, "140042193979648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042193979760": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}]}}, "140042324042784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193979984"}, {"nodeId": "140042193980096"}], "returnType": {"nodeId": "140042198148096", "args": [{"nodeId": "140042193980208"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}}, "140042193979984": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042202212736"}, {"nodeId": "N"}]}}, "140042202212736": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Logger", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210745856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "propagate", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042202213088"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "disabled", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202216256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202212384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310880608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310881056"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310881504"}, "name": "isEnabledFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310881952"}, "name": "getEffectiveLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310882400"}, "name": "getChild"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310882848"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310883296"}, "name": "info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310883744"}, "name": "warning"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310884192"}, "name": "warn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310884640"}, "name": "error"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310885088"}, "name": "exception"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310885536"}, "name": "critical"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310885984"}, "name": "log"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310886432"}, "name": "_log"}}, {"kind": "Variable", "content": {"name": "fatal", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042211098912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310890912"}, "name": "addHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310891360"}, "name": "removeHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310891808"}, "name": "findCaller"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310892704"}, "name": "handle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310893152"}, "name": "makeRecord"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311270688"}, "name": "hasHandlers"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311271136"}, "name": "callHandlers"}}], "typeVars": [], "bases": [{"nodeId": "140042202212032"}], "isAbstract": false}}, "140042210745856": {"type": "Union", "content": {"items": [{"nodeId": "140042202212736"}, {"nodeId": "N"}]}}, "140042202213088": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Handler", "members": [{"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "formatter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210739472"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311271584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311272032"}, "name": "get_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311272480"}, "name": "set_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311272928"}, "name": "createLock"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311273376"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311273824"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311274272"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311274720"}, "name": "setFormatter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311275168"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311275616"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311276064"}, "name": "handle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311276512"}, "name": "handleError"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311276960"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311277408"}, "name": "emit"}}], "typeVars": [], "bases": [{"nodeId": "140042202212032"}], "isAbstract": false}}, "140042210746080": {"type": "Union", "content": {"items": [{"nodeId": "140042202213440"}, {"nodeId": "N"}]}}, "140042202213440": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Formatter", "members": [{"kind": "Variable", "content": {"name": "converter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210687488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210744848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_style", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202216608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_time_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_msec_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210740144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "style", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "validate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311277856"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311279200"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311279648"}, "name": "formatTime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ei", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311280096"}, "name": "formatException"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311280544"}, "name": "formatMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311280992"}, "name": "formatStack"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311281440"}, "name": "usesTime"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042210687488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042210745072"}], "returnType": {"nodeId": "140042210740256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042210745072": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042210740256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042218569792"}}}, "140042210744848": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210746416": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042202216608": {"type": "Concrete", "content": {"module": "logging", "simpleName": "PercentStyle", "members": [{"kind": "Variable", "content": {"name": "default_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime_search", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "validation_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311693280"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311694176"}, "name": "usesTime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311694624"}, "name": "validate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311695072"}, "name": "format"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042311693280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202216608"}, {"nodeId": "140042307290208"}, {"nodeId": "140042210944032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "defaults"]}}, "140042210944032": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042311694176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202216608"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311694624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202216608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311695072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202216608"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042210740144": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311277856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}, {"nodeId": "140042210752912"}, {"nodeId": "140042210753024"}, {"nodeId": "140042210753136"}, {"nodeId": "140042512503328"}, {"nodeId": "140042210753360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "datefmt", "style", "validate", "defaults"]}}, "140042210752912": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210753024": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210753136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210738576"}}}, "140042210738576": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042210753360": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042311279200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042202214496": {"type": "Concrete", "content": {"module": "logging", "simpleName": "LogRecord", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210740032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "created", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210747088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210744288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "funcName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "levelname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "levelno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msecs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "process", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210741264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "processName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210741712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "relativeCreated", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210741376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "thread", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210741600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "threadName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210741824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311284576"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311285024"}, "name": "getMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311285472"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042210740032": {"type": "Union", "content": {"items": [{"nodeId": "140042210740928"}, {"nodeId": "N"}]}}, "140042210740928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210540592"}}}, "140042210540592": {"type": "Union", "content": {"items": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}]}}, "140042210747088": {"type": "Union", "content": {"items": [{"nodeId": "140042210741152"}, {"nodeId": "N"}]}}, "140042210741152": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210541264": {"type": "Union", "content": {"items": [{"nodeId": "140042210540368"}, {"nodeId": "140042210534768"}]}}, "140042210540368": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307296896"}, {"nodeId": "140042210540480"}]}}, "140042210540480": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042210534768": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}}, "140042210744288": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210746640": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042210741264": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042210741712": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210741376": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210741600": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042210741824": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311284576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214496"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210752688"}, {"nodeId": "140042210754144"}, {"nodeId": "140042210754256"}, {"nodeId": "140042210754368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "level", "pathname", "lineno", "msg", "args", "exc_info", "func", "sinfo"]}}, "140042210752688": {"type": "Union", "content": {"items": [{"nodeId": "140042210753920"}, {"nodeId": "N"}]}}, "140042210753920": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210540592"}}}, "140042210754144": {"type": "Union", "content": {"items": [{"nodeId": "140042210754032"}, {"nodeId": "N"}]}}, "140042210754032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210754256": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210754368": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311285024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311285472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214496"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042311279648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}, {"nodeId": "140042202214496"}, {"nodeId": "140042210753472"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "record", "datefmt"]}}, "140042210753472": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311280096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}, {"nodeId": "140042210753584"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ei"]}}, "140042210753584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042311280544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042311280992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stack_info"]}}, "140042311281440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213440"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042210746192": {"type": "Union", "content": {"items": [{"nodeId": "140042223062880"}, {"nodeId": "N"}]}}, "140042210739472": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311271584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042210752576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140042210752576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210738688"}}}, "140042210738688": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042311272032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311272480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140042311272928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311273376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311273824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311274272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042210752800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "140042210752800": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210738688"}}}, "140042311274720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042210748768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt"]}}, "140042210748768": {"type": "Union", "content": {"items": [{"nodeId": "140042202213440"}, {"nodeId": "N"}]}}, "140042311275168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311275616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311276064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042311276512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042311276960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042311277408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213088"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042202212032": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Filterer", "members": [{"kind": "Variable", "content": {"name": "filters", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042210744064"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310877472"}, "name": "addFilter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310877920"}, "name": "removeFilter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310878368"}, "name": "filter"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042210744064": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210745408"}}}, "140042210745408": {"type": "Union", "content": {"items": [{"nodeId": "140042202214144"}, {"nodeId": "140042210642176"}]}}, "140042202214144": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Filter", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311283680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311284128"}, "name": "filter"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042311283680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214144"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140042311284128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214144"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042210642176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042310877472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212032"}, {"nodeId": "140042210739024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}}, "140042210739024": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210745408"}}}, "140042310877920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212032"}, {"nodeId": "140042210743952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}}, "140042210743952": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210745408"}}}, "140042310878368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212032"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042202216256": {"type": "Concrete", "content": {"module": "logging", "simpleName": "RootLogger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311692832"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042202212736"}], "isAbstract": false}}, "140042311692832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202216256"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "140042202212384": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Manager", "members": [{"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202216256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "disable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "emittedNoHandlerWarning", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loggerDict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042210745520"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loggerClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210744736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "logRecordFactory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210744960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rootnode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310878816"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310879264"}, "name": "getLogger"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "klass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310879712"}, "name": "setLoggerClass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310880160"}, "name": "setLogRecordFactory"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042210745520": {"type": "Union", "content": {"items": [{"nodeId": "140042202212736"}, {"nodeId": "140042202215904"}]}}, "140042202215904": {"type": "Concrete", "content": {"module": "logging", "simpleName": "PlaceHolder", "members": [{"kind": "Variable", "content": {"name": "loggerMap", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042202212736"}, {"nodeId": "N"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311691936"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311692384"}, "name": "append"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042311691936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202215904"}, {"nodeId": "140042202212736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}}, "140042311692384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202215904"}, {"nodeId": "140042202212736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}}, "140042210744736": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042210744960": {"type": "Union", "content": {"items": [{"nodeId": "140042210687040"}, {"nodeId": "N"}]}}, "140042210687040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042202214496"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042310878816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212384"}, {"nodeId": "140042202216256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "rootnode"]}}, "140042310879264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212384"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042202212736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140042310879712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212384"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "klass"]}}, "140042310880160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212384"}, {"nodeId": "140042210688160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "factory"]}}, "140042210688160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042202214496"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042310880608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042307290208"}, {"nodeId": "140042210747872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "level"]}}, "140042210747872": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210738688"}}}, "140042310881056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042210748432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "140042210748432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210738688"}}}, "140042310881504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "140042310881952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042310882400": {"type": "Function", "content": {"typeVars": [".0.140042310882400"], "argTypes": [{"nodeId": ".0.140042310882400"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042310882400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.140042310882400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042202212736"}, "def": "140042310882400", "variance": "INVARIANT"}}, "140042310882848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210749104"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210748544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210749104": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210748656"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210748656": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210748544": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310883296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210749440"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210748880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210749440": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210748992"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210748992": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210748880": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310883744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210749776"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210749216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210749776": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210749328"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210749328": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210749216": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310884192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210750112"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210749552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210750112": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210749664"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210749664": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210749552": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310884640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210750448"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210749888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210750448": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210750000"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210750000": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210749888": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310885088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210750224"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210750336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210750224": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541040"}}}, "140042210541040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042512503328"}, {"nodeId": "140042210540816"}, {"nodeId": "140042307296896"}]}}, "140042210540816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210750336": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310885536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210751008"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210747312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210751008": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210750784"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210750784": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210747312": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310885984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210751344"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210750896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042210751344": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210750560"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210750560": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210750896": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310886432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210751120"}, {"nodeId": "140042210750672"}, {"nodeId": "140042210751456"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "extra", "stack_info", "stacklevel"]}}, "140042210751120": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210540592"}}}, "140042210750672": {"type": "Union", "content": {"items": [{"nodeId": "140042210751232"}, {"nodeId": "N"}]}}, "140042210751232": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541040"}}}, "140042210751456": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042211098912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042211054688"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042211054016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "140042211054688": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210750784"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042211054016": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042310890912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}}, "140042310891360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042202213088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}}, "140042310891808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042210751792"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stack_info", "stacklevel"]}}, "140042210751792": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042210751568"}]}}, "140042210751568": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042310892704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042310893152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210752016"}, {"nodeId": "140042210752128"}, {"nodeId": "140042210752240"}, {"nodeId": "140042210752352"}, {"nodeId": "140042210752464"}], "returnType": {"nodeId": "140042202214496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "level", "fn", "lno", "msg", "args", "exc_info", "func", "extra", "sinfo"]}}, "140042210752016": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210540592"}}}, "140042210752128": {"type": "Union", "content": {"items": [{"nodeId": "140042210751680"}, {"nodeId": "N"}]}}, "140042210751680": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210752240": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210752352": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042210752464": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311270688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311271136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202212736"}, {"nodeId": "140042202214496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "140042193980096": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042198148096": {"type": "Concrete", "content": {"module": "unittest._log", "simpleName": "_AssertLogsContext", "members": [{"kind": "Variable", "content": {"name": "LOGGING_FORMAT", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198144576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315609056"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315609952"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315610400"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.140042198148096"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042198148096": {"type": "TypeVar", "content": {"varName": "_L", "values": [{"nodeId": "N"}, {"nodeId": "140042193641744"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042198148096", "variance": "INVARIANT"}}, "140042193641744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193643200"}}}, "140042193643200": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042202214496"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}]}}, "140042315609056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148096", "args": [{"nodeId": ".1.140042198148096"}]}, {"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test_case", "logger_name", "level", "no_logs"]}}, "140042315609952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148096", "args": [{"nodeId": ".1.140042198148096"}]}], "returnType": {"nodeId": ".1.140042198148096"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042315610400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148096", "args": [{"nodeId": ".1.140042198148096"}]}, {"nodeId": "140042194065264"}, {"nodeId": "140042194065376"}, {"nodeId": "140042194065488"}], "returnType": {"nodeId": "140042194065600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042194065264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042194065376": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042194065488": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042194065600": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042193980208": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193643200"}}}, "140042324043232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193980320"}, {"nodeId": "140042193980432"}], "returnType": {"nodeId": "140042198148096", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}}, "140042193980320": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042202212736"}, {"nodeId": "N"}]}}, "140042193980432": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042193977744": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324043680"}, {"nodeId": "140042324044128"}, {"nodeId": "140042324044576"}, {"nodeId": "140042324045024"}]}}, "140042324043680": {"type": "Function", "content": {"typeVars": [".-1.140042324043680"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324043680"}, {"nodeId": ".-1.140042324043680"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324043680": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042324043680", "variance": "INVARIANT"}}, "140042198144224": {"type": "Protocol", "content": {"module": "unittest.case", "simpleName": "_SupportsAbsAndDunderGE", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298385760", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512506496", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__abs__", "__ge__"]}}, "140042324044128": {"type": "Function", "content": {"typeVars": [".-1.140042324044128"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324044128"}, {"nodeId": ".-1.140042324044128"}, {"nodeId": "N"}, {"nodeId": "140042193980880"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324044128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042324044128", "variance": "INVARIANT"}}, "140042193980880": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324044576": {"type": "Function", "content": {"typeVars": [".-1.140042324044576"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298387168", "args": [{"nodeId": ".-1.140042324044576"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": ".-1.140042324044576"}, {"nodeId": "140042193980992"}, {"nodeId": "140042193981216"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324044576": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324044576", "variance": "INVARIANT"}}, "140042193980992": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042193981216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324045024": {"type": "Function", "content": {"typeVars": [".-1.140042324045024"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324045024"}, {"nodeId": "140042298387520", "args": [{"nodeId": ".-1.140042324045024"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": "140042193981328"}, {"nodeId": "140042193981552"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324045024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324045024", "variance": "INVARIANT"}}, "140042193981328": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042193981552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042193978752": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042324045472"}, {"nodeId": "140042324045920"}, {"nodeId": "140042324046368"}, {"nodeId": "140042324046816"}]}}, "140042324045472": {"type": "Function", "content": {"typeVars": [".-1.140042324045472"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324045472"}, {"nodeId": ".-1.140042324045472"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324045472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042324045472", "variance": "INVARIANT"}}, "140042324045920": {"type": "Function", "content": {"typeVars": [".-1.140042324045920"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324045920"}, {"nodeId": ".-1.140042324045920"}, {"nodeId": "N"}, {"nodeId": "140042193982000"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324045920": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042324045920", "variance": "INVARIANT"}}, "140042193982000": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324046368": {"type": "Function", "content": {"typeVars": [".-1.140042324046368"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298387168", "args": [{"nodeId": ".-1.140042324046368"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": ".-1.140042324046368"}, {"nodeId": "140042193982112"}, {"nodeId": "140042193982336"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324046368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324046368", "variance": "INVARIANT"}}, "140042193982112": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042193982336": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324046816": {"type": "Function", "content": {"typeVars": [".-1.140042324046816"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324046816"}, {"nodeId": "140042298387520", "args": [{"nodeId": ".-1.140042324046816"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": "140042193982448"}, {"nodeId": "140042193982672"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042324046816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324046816", "variance": "INVARIANT"}}, "140042193982448": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042193982672": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324047264": {"type": "Function", "content": {"typeVars": [".-1.140042324047264"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324047264"}, {"nodeId": "140042193982784"}, {"nodeId": "140042193983008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}}, ".-1.140042324047264": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324047264", "variance": "INVARIANT"}}, "140042193982784": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042324047264"}, {"nodeId": "140042302649824", "args": [{"nodeId": ".-1.140042324047264"}]}]}}, "140042193983008": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324047712": {"type": "Function", "content": {"typeVars": [".-1.140042324047712"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042324047712"}, {"nodeId": "140042193983120"}, {"nodeId": "140042193983344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}}, ".-1.140042324047712": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042324047712", "variance": "INVARIANT"}}, "140042193983120": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042324047712"}, {"nodeId": "140042302649824", "args": [{"nodeId": ".-1.140042324047712"}]}]}}, "140042193983344": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324048160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042193983792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042193983792": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324048608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "0"}, {"nodeId": "140042193842496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typeobj", "function"]}}, "140042193842496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042324049056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042193984240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042193984240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324049504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042193984688"}, {"nodeId": "140042193984912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seq1", "seq2", "msg", "seq_type"]}}, "140042193984688": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042193984912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042324230432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, {"nodeId": "140042193985360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "list1", "list2", "msg"]}}, "140042193985360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324230880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "140042193985808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "tuple1", "tuple2", "msg"]}}, "140042193985808": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324231328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "140042512511776", "args": [{"nodeId": "140042512502976"}]}, {"nodeId": "140042193986032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "set1", "set2", "msg"]}}, "140042193986032": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324231776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "140042512502976"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "140042512502976"}]}, {"nodeId": "140042193986480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "d1", "d2", "msg"]}}, "140042193986480": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324232224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193986704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140042193986704": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042324232672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042324233120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042324233568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042324234016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "140042193986816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193986816": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042324234464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193843392"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "140042193843392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042324235808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042189192800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042193836000"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}}, "140042193836000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042189373504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042324237600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042193988048"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "standardMsg"]}}, "140042193988048": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042324238048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042193844064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second"]}}, "140042193844064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042189374176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042194368800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042194368800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189374848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042194368128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042194368128": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189375296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042194366224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042194366224": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189375744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "140042194362976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "140042194362976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189376192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042189358800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "140042189358800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189376640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042189358912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "140042189358912": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189377088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "A"}, {"nodeId": "140042189359024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "140042189359024": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189359472": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042189377984"}, {"nodeId": "140042189378208"}]}}, "140042189377984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042189359136"}, {"nodeId": "140042189374400"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "callable", "args", "kwargs"]}}, "140042189359136": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042189374400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042189378208": {"type": "Function", "content": {"typeVars": [".-1.140042189378208"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042189359248"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042198145280", "args": [{"nodeId": ".-1.140042189378208"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}}, "140042189359248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, ".-1.140042189378208": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042307296896"}, "def": "140042189378208", "variance": "INVARIANT"}}, "140042189360144": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042189379104"}, {"nodeId": "140042189379328"}, {"nodeId": "140042189379552"}, {"nodeId": "140042189379776"}]}}, "140042189379104": {"type": "Function", "content": {"typeVars": [".-1.140042189379104"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189379104"}, {"nodeId": ".-1.140042189379104"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189379104": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189379104", "variance": "INVARIANT"}}, "140042189379328": {"type": "Function", "content": {"typeVars": [".-1.140042189379328"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189379328"}, {"nodeId": ".-1.140042189379328"}, {"nodeId": "N"}, {"nodeId": "140042189359360"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189379328": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189379328", "variance": "INVARIANT"}}, "140042189359360": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189379552": {"type": "Function", "content": {"typeVars": [".-1.140042189379552"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298387168", "args": [{"nodeId": ".-1.140042189379552"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": ".-1.140042189379552"}, {"nodeId": "140042189359584"}, {"nodeId": "140042189359696"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189379552": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189379552", "variance": "INVARIANT"}}, "140042189359584": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189359696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189379776": {"type": "Function", "content": {"typeVars": [".-1.140042189379776"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189379776"}, {"nodeId": "140042298387520", "args": [{"nodeId": ".-1.140042189379776"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": "140042189359808"}, {"nodeId": "140042189359920"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189379776": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189379776", "variance": "INVARIANT"}}, "140042189359808": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189359920": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189360816": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042189380224"}, {"nodeId": "140042189380448"}, {"nodeId": "140042189380672"}, {"nodeId": "140042189380896"}]}}, "140042189380224": {"type": "Function", "content": {"typeVars": [".-1.140042189380224"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189380224"}, {"nodeId": ".-1.140042189380224"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189380224": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189380224", "variance": "INVARIANT"}}, "140042189380448": {"type": "Function", "content": {"typeVars": [".-1.140042189380448"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189380448"}, {"nodeId": ".-1.140042189380448"}, {"nodeId": "N"}, {"nodeId": "140042189360032"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189380448": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189380448", "variance": "INVARIANT"}}, "140042189360032": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189380672": {"type": "Function", "content": {"typeVars": [".-1.140042189380672"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298387168", "args": [{"nodeId": ".-1.140042189380672"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": ".-1.140042189380672"}, {"nodeId": "140042189360256"}, {"nodeId": "140042189360368"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189380672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189380672", "variance": "INVARIANT"}}, "140042189360256": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189360368": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189380896": {"type": "Function", "content": {"typeVars": [".-1.140042189380896"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189380896"}, {"nodeId": "140042298387520", "args": [{"nodeId": ".-1.140042189380896"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": "140042189360480"}, {"nodeId": "140042189360592"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189380896": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189380896", "variance": "INVARIANT"}}, "140042189360480": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189360592": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189361488": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042189381344"}, {"nodeId": "140042189381568"}, {"nodeId": "140042189381792"}, {"nodeId": "140042189382016"}]}}, "140042189381344": {"type": "Function", "content": {"typeVars": [".-1.140042189381344"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189381344"}, {"nodeId": ".-1.140042189381344"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189381344": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189381344", "variance": "INVARIANT"}}, "140042189381568": {"type": "Function", "content": {"typeVars": [".-1.140042189381568"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189381568"}, {"nodeId": ".-1.140042189381568"}, {"nodeId": "N"}, {"nodeId": "140042189360704"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189381568": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189381568", "variance": "INVARIANT"}}, "140042189360704": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189381792": {"type": "Function", "content": {"typeVars": [".-1.140042189381792"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298387168", "args": [{"nodeId": ".-1.140042189381792"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": ".-1.140042189381792"}, {"nodeId": "140042189360928"}, {"nodeId": "140042189361040"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189381792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189381792", "variance": "INVARIANT"}}, "140042189360928": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189361040": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189382016": {"type": "Function", "content": {"typeVars": [".-1.140042189382016"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189382016"}, {"nodeId": "140042298387520", "args": [{"nodeId": ".-1.140042189382016"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": "140042189361152"}, {"nodeId": "140042189361264"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189382016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189382016", "variance": "INVARIANT"}}, "140042189361152": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189361264": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189362160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042189382464"}, {"nodeId": "140042189382688"}, {"nodeId": "140042189382912"}, {"nodeId": "140042189383136"}]}}, "140042189382464": {"type": "Function", "content": {"typeVars": [".-1.140042189382464"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189382464"}, {"nodeId": ".-1.140042189382464"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189382464": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189382464", "variance": "INVARIANT"}}, "140042189382688": {"type": "Function", "content": {"typeVars": [".-1.140042189382688"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189382688"}, {"nodeId": ".-1.140042189382688"}, {"nodeId": "N"}, {"nodeId": "140042189361376"}, {"nodeId": "140042198144224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189382688": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042298387168", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "140042189382688", "variance": "INVARIANT"}}, "140042189361376": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189382912": {"type": "Function", "content": {"typeVars": [".-1.140042189382912"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042298387168", "args": [{"nodeId": ".-1.140042189382912"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": ".-1.140042189382912"}, {"nodeId": "140042189361600"}, {"nodeId": "140042189361712"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189382912": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189382912", "variance": "INVARIANT"}}, "140042189361600": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189361712": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189383136": {"type": "Function", "content": {"typeVars": [".-1.140042189383136"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189383136"}, {"nodeId": "140042298387520", "args": [{"nodeId": ".-1.140042189383136"}, {"nodeId": "140042512506496", "args": [{"nodeId": "140042512506848", "args": [{"nodeId": "140042512502976"}]}]}]}, {"nodeId": "140042189361824"}, {"nodeId": "140042189361936"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.140042189383136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189383136", "variance": "INVARIANT"}}, "140042189361824": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042189361936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189377760": {"type": "Function", "content": {"typeVars": [".-1.140042189377760"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189377760"}, {"nodeId": "140042189362048"}, {"nodeId": "140042189362272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}}, ".-1.140042189377760": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189377760", "variance": "INVARIANT"}}, "140042189362048": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042189377760"}, {"nodeId": "140042302649824", "args": [{"nodeId": ".-1.140042189377760"}]}]}}, "140042189362272": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189378880": {"type": "Function", "content": {"typeVars": [".-1.140042189378880"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": ".-1.140042189378880"}, {"nodeId": "140042189362384"}, {"nodeId": "140042189362496"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}}, ".-1.140042189378880": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042189378880", "variance": "INVARIANT"}}, "140042189362384": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042189378880"}, {"nodeId": "140042302649824", "args": [{"nodeId": ".-1.140042189378880"}]}]}}, "140042189362496": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042189363168": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042189384256"}, {"nodeId": "140042189384480"}]}}, "140042189384256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042189362608"}, {"nodeId": "140042189362720"}, {"nodeId": "140042189377536"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "expected_regex", "callable", "args", "kwargs"]}}, "140042189362608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042189362720": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}]}}, "140042189377536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042189384480": {"type": "Function", "content": {"typeVars": [".-1.140042189384480"], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042189362832"}, {"nodeId": "140042189362944"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042198145280", "args": [{"nodeId": ".-1.140042189384480"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}}, "140042189362832": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307291968", "args": [{"nodeId": "0"}]}]}}, "140042189362944": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}]}}, ".-1.140042189384480": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "140042307296896"}, "def": "140042189384480", "variance": "INVARIANT"}}, "140042324238496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198144576"}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "140042193988944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "subset", "dictionary", "msg"]}}, "140042193988944": {"type": "Union", "content": {"items": [{"nodeId": "140042512502976"}, {"nodeId": "N"}]}}, "140042198143872": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "SkipTest", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323663712"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042323663712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198143872"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}}, "140042198147040": {"type": "Concrete", "content": {"module": "unittest.loader", "simpleName": "TestLoader", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testMethodPrefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sortTestMethodsUsing", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194059440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193646000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suiteClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194059552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323906336"}, "name": "loadTestsFromTestCase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323906784"}, "name": "loadTestsFromModule"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323907232"}, "name": "loadTestsFromName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323907680"}, "name": "loadTestsFromNames"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323908128"}, "name": "getTestCaseNames"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "top_level_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323908576"}, "name": "discover"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "full_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323909024"}, "name": "_match_path"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042194059440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042273118624"}}}, "140042273118624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042193646000": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042194059552": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193849696"}}}, "140042193849696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042198144576"}]}], "returnType": {"nodeId": "140042198148800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042198148800": {"type": "Concrete", "content": {"module": "unittest.suite", "simpleName": "TestSuite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323868832"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "140042198148448"}], "isAbstract": false}}, "140042323868832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148800"}, {"nodeId": "140042198142816"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "result", "debug"]}}, "140042198148448": {"type": "Concrete", "content": {"module": "unittest.suite", "simpleName": "BaseTestSuite", "members": [{"kind": "Variable", "content": {"name": "_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042198144576"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_removed_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323864800"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323865248"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323865696"}, "name": "addTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323866144"}, "name": "addTests"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323866592"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323867040"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323867488"}, "name": "countTestCases"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323867936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323868384"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "140042512507200", "args": [{"nodeId": "140042193645104"}]}], "isAbstract": false}}, "140042323864800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042193991520"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tests"]}}, "140042193991520": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193644656"}}}, "140042193644656": {"type": "Union", "content": {"items": [{"nodeId": "140042198144576"}, {"nodeId": "140042198148800"}]}}, "140042323865248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}, {"nodeId": "140042198142816"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}}, "140042323865696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}, {"nodeId": "140042193991632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042193991632": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193644656"}}}, "140042323866144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042193991744"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "tests"]}}, "140042193991744": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193644656"}}}, "140042323866592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}, {"nodeId": "140042198142816"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}}, "140042323867040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323867488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323867936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042193991856"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042193991856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193644656"}}}, "140042323868384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198148448"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042193645104": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042193644656"}}}, "140042323906336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042198148800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}}, "140042323906784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "140042302638208"}, {"nodeId": "A"}, {"nodeId": "140042194354240"}], "returnType": {"nodeId": "140042198148800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "module", "args", "pattern"]}}, "140042194354240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323907232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "140042307290208"}, {"nodeId": "140042194354352"}], "returnType": {"nodeId": "140042198148800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "module"]}}, "140042194354352": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042323907680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042194354464"}], "returnType": {"nodeId": "140042198148800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "names", "module"]}}, "140042194354464": {"type": "Union", "content": {"items": [{"nodeId": "140042302638208"}, {"nodeId": "N"}]}}, "140042323908128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}}, "140042323908576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042194354576"}], "returnType": {"nodeId": "140042198148800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "start_dir", "pattern", "top_level_dir"]}}, "140042194354576": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042323909024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147040"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "full_path", "pattern"]}}, "140042198147744": {"type": "Concrete", "content": {"module": "unittest.main", "simpleName": "TestProgram", "members": [{"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042198142816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "progName", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042194060784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaultTest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testRunner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testLoader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323912160"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323912608"}, "name": "usageExit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323913056"}, "name": "parseArgs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "from_discovery", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323913504"}, "name": "createTests"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323913952"}, "name": "runTests"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042194060112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042302638208"}]}}, "140042194060224": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194060336": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194060448": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194060560": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042194060672": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042194060784": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042323912160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147744"}, {"nodeId": "140042193991968"}, {"nodeId": "140042194355584"}, {"nodeId": "140042194355696"}, {"nodeId": "140042194355808"}, {"nodeId": "140042198147040"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042194355920"}, {"nodeId": "140042194356032"}, {"nodeId": "140042194356144"}, {"nodeId": "140042194356256"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "module", "defaultTest", "argv", "testRunner", "testLoader", "exit", "verbosity", "failfast", "catchbreak", "buffer", "warnings", "tb_locals"]}}, "140042193991968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042302638208"}]}}, "140042194355584": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042194355696": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "N"}]}}, "140042194355808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042198147392"}, {"nodeId": "N"}]}}, "140042198147392": {"type": "Protocol", "content": {"module": "unittest.main", "simpleName": "_TestRunner", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323911712"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["run"]}}, "140042323911712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147392"}, {"nodeId": "140042194355360"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042194355360": {"type": "Union", "content": {"items": [{"nodeId": "140042198148800"}, {"nodeId": "140042198144576"}]}}, "140042194355920": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194356032": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194356144": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042194356256": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042323912608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147744"}, {"nodeId": "140042194355472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "140042194355472": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "140042323913056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147744"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "argv"]}}, "140042323913504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147744"}, {"nodeId": "140042512503328"}, {"nodeId": "140042194356480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "from_discovery", "Loader"]}}, "140042194356480": {"type": "Union", "content": {"items": [{"nodeId": "140042198147040"}, {"nodeId": "N"}]}}, "140042323913952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198147744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042198146336": {"type": "Concrete", "content": {"module": "unittest.runner", "simpleName": "TextTestResult", "members": [{"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dots", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "separator1", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "separator2", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "showAll", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307605728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323858080"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323858528"}, "name": "getDescription"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flavour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323858976"}, "name": "printErrorList"}}], "typeVars": [], "bases": [{"nodeId": "140042198142816"}], "isAbstract": false}}, "140042323858080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198146336"}, {"nodeId": "140042307605728"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "descriptions", "verbosity"]}}, "140042323858528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198146336"}, {"nodeId": "140042198144576"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042323858976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198146336"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042193992640"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "flavour", "errors"]}}, "140042193992640": {"type": "Tuple", "content": {"items": [{"nodeId": "140042198144576"}, {"nodeId": "140042307290208"}]}}, "140042198146688": {"type": "Concrete", "content": {"module": "unittest.runner", "simpleName": "TextTestRunner", "members": [{"kind": "Variable", "content": {"name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042193649136"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323859424"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323859872"}, "name": "_makeResult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323860320"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042193649136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042273118400"}}}, "140042273118400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307605728"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042323859424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198146688"}, {"nodeId": "140042193992752"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042193992976"}, {"nodeId": "140042193993088"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity", "failfast", "buffer", "resultclass", "warnings", "tb_locals"]}}, "140042193992752": {"type": "Union", "content": {"items": [{"nodeId": "140042307605728"}, {"nodeId": "N"}]}}, "140042193992976": {"type": "Union", "content": {"items": [{"nodeId": "140042193992864"}, {"nodeId": "N"}]}}, "140042193992864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042273118400"}}}, "140042193993088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042323859872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198146688"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323860320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198146688"}, {"nodeId": "140042193993200"}], "returnType": {"nodeId": "140042198142816"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "140042193993200": {"type": "Union", "content": {"items": [{"nodeId": "140042198148800"}, {"nodeId": "140042198144576"}]}}, "140042198145984": {"type": "Concrete", "content": {"module": "unittest.async_case", "simpleName": "IsolatedAsyncioTestCase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042193836224"}, "name": "asyncSetUp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042193844736"}, "name": "asyncTearDown"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319218272"}, "name": "addAsyncCleanup"}}], "typeVars": [], "bases": [{"nodeId": "140042198144576"}], "isAbstract": false}}, "140042193836224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198145984"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042193844736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198145984"}], "returnType": {"nodeId": "140042512508960", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042319218272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198145984"}, {"nodeId": "140042193833312"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "140042193833312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "140042512508608", "args": [{"nodeId": "140042512502976"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042302645600": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042302645600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042302645600"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369719584"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369718688"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042369718240"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042302645600"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042302645600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042302645600", "variance": "INVARIANT"}}, "140042369719584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302645600", "args": [{"nodeId": ".1.140042302645600"}]}, {"nodeId": "140042294923264"}, {"nodeId": "140042512514240"}, {"nodeId": "140042294923376"}, {"nodeId": "140042294923488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "140042294923264": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042294923376": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302645600"}, {"nodeId": "N"}]}}, "140042294923488": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042302645600"}, {"nodeId": "N"}]}}, "140042369718688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302645600", "args": [{"nodeId": ".1.140042302645600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042369718240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042302645952": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042302646304": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042327568480"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294119552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299147648"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042302645952"}], "isAbstract": false}}, "140042327568480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302646304"}, {"nodeId": "140042289865648"}, {"nodeId": "140042512514592"}, {"nodeId": "140042289865760"}, {"nodeId": "140042289865872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "140042289865648": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289865760": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042289865872": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042294119552": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042299147648": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042302646656": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042327568928"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042302645952"}], "isAbstract": false}}, "140042327568928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302646656"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289865984"}, {"nodeId": "140042289866096"}, {"nodeId": "140042289866208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "140042289865984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299146752"}}}, "140042289866096": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042289866208": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042215086688": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323422432"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323422880"}, "name": "__rmul__"}}], "typeVars": [], "bases": [{"nodeId": "140042512513536"}], "isAbstract": false}}, "140042323422432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042323422880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042202209920": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "content": {"name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042202209920"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202271968"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042202282160"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345317984"}, "name": "__setitem__"}}], "typeVars": [{"nodeId": ".1.140042202209920"}], "bases": [{"nodeId": "140042215088096"}, {"nodeId": "140042215087040"}], "isAbstract": false}}, ".1.140042202209920": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "140042215087040"}, "def": "140042202209920", "variance": "INVARIANT"}}, "140042202271968": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042323426912"}, {"nodeId": "140042345316640"}]}}, "140042323426912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202209920", "args": [{"nodeId": ".1.140042202209920"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042345316640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202209920", "args": [{"nodeId": ".1.140042202209920"}]}, {"nodeId": ".1.140042202209920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}}, "140042202282160": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042345317088"}, {"nodeId": "140042345317536"}]}}, "140042345317088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202209920", "args": [{"nodeId": ".1.140042202209920"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042345317536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202209920", "args": [{"nodeId": ".1.140042202209920"}]}, {"nodeId": "140042307291616"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042345317984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202209920", "args": [{"nodeId": ".1.140042202209920"}]}, {"nodeId": "140042512514240"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042215089152": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042215089504": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "content": {"name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512511072", "args": [{"nodeId": "140042202271296"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042345322464"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042215086688"}], "isAbstract": false}}, "140042202271296": {"type": "Union", "content": {"items": [{"nodeId": "140042202270960"}, {"nodeId": "140042202271184"}]}}, "140042202270960": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}]}}, "140042202271184": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "0"}, {"nodeId": "140042512514240"}]}}, "140042345322464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042215089504"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042215089152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042215090208": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "140042215089856"}], "isAbstract": false}}, "140042215090912": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042223069920": {"type": "Concrete", "content": {"module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042218582000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214540000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214540448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214540672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214540896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214541120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214541344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214541568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214541792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214542016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214542240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042214542464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "140042219126480"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042512514240"}]}], "isAbstract": false}}, "140042218582000": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042214540000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218570464"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218570464": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214540448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218570576"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218570576": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214540672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218570688"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218570688": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214540896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218570800"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218570800": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214541120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218570912"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218570912": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214541344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218571024"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218571024": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214541568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218571136"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218571136": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214541792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218571248"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218571248": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214542016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218571360"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218571360": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214542240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218571472"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218571472": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042214542464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042218571584"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218571584": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042219126480": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140042512514240"}]}}, "140042223070272": {"type": "Protocol", "content": {"module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "content": {"name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}}, "140042302648768": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302836064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302836176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332115616"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042302836064": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042302836176": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042332115616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648768"}, {"nodeId": "140042307290208"}, {"nodeId": "140042289953392"}, {"nodeId": "140042289953056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "140042289953392": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "N"}]}}, "140042289953056": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042302649120": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332116064"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140042512514240"}], "isAbstract": false}}, "140042332116064": {"type": "Function", "content": {"typeVars": [".0.140042332116064"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".0.140042332116064"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.140042332116064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042302649120"}, "def": "140042332116064", "variance": "INVARIANT"}}, "140042298379424": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332117408"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332117856"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332118304"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["close", "seek", "write"]}}, "140042332117408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379424"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042332117856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379424"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042332118304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379424"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298379776": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332118752"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332119200"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332119648"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["close", "read", "seek"]}}, "140042332118752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379776"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "140042332119200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379776"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042332119648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298379776"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042299121984": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298379424"}, {"nodeId": "140042298379776"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "140042298380128": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332120096"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042332120096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298380128"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042286567200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140042286567200": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042298380480": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332120544"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042332120544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298380480"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042286567424"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140042286567424": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042298380832": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332120992"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042332120992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298380832"}, {"nodeId": "140042298379776"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042299123744"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140042299123744": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298379776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340746848"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340747296"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340747744"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340748192"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340748640"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340749088"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340749536"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340749984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340750432"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340750880"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042298382240"}], "isAbstract": false}}, "140042340746848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}, {"nodeId": "140042298379776"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140042340747296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "140042340747744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}, {"nodeId": "140042286573584"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "140042286573584": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340748192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}, {"nodeId": "140042286573696"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "140042286573696": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340748640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340749088": {"type": "Function", "content": {"typeVars": [".0.140042340749088"], "argTypes": [{"nodeId": ".0.140042340749088"}], "returnType": {"nodeId": ".0.140042340749088"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340749088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299123744"}, "def": "140042340749088", "variance": "INVARIANT"}}, "140042340749536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}, {"nodeId": "140042286573920"}, {"nodeId": "140042286574032"}, {"nodeId": "140042286574144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286573920": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286574032": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286574144": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042340749984": {"type": "Function", "content": {"typeVars": [".0.140042340749984"], "argTypes": [{"nodeId": ".0.140042340749984"}], "returnType": {"nodeId": ".0.140042340749984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340749984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299123744"}, "def": "140042340749984", "variance": "INVARIANT"}}, "140042340750432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340750880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123744"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285873664"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042285873664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042298382240": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340686240"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340686688"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042340686240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042286571456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140042286571456": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042340686688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382240"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042286571680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "140042286571680": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042298381184": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332121440"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042332121440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298381184"}, {"nodeId": "140042298379424"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042299123392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140042299123392": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298379424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340694304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340694752"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340695200"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340695648"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340745504"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340745952"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340746400"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042298382240"}], "isAbstract": false}}, "140042340694304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123392"}, {"nodeId": "140042298379424"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "140042340694752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123392"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "140042340695200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123392"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140042340695648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340745504": {"type": "Function", "content": {"typeVars": [".0.140042340745504"], "argTypes": [{"nodeId": ".0.140042340745504"}], "returnType": {"nodeId": ".0.140042340745504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340745504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299123392"}, "def": "140042340745504", "variance": "INVARIANT"}}, "140042340745952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123392"}, {"nodeId": "140042286573024"}, {"nodeId": "140042286573136"}, {"nodeId": "140042286573248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286573024": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286573136": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286573248": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042340746400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123392"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285873216"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "140042285873216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042298381536": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332121888"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042332121888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298381536"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042298382592"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140042298382592": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340687136"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042244366272"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340688032"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340688480"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340688928"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042340687136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382592"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140042244366272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382592"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140042340688032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340688480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382592"}], "returnType": {"nodeId": "140042286571792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286571792": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042340688928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298382592"}, {"nodeId": "140042286571904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "140042286571904": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042298381888": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332122336"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__call__"]}}, "140042332122336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298381888"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042298382944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140042299122336": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244426432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244406656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244406432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244405536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244405984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042244404192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042332125472"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042512502976"}]}], "isAbstract": false}}, "140042244426432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042286567648"}], "returnType": {"nodeId": "140042298380128"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286567648": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042244406656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042286567760"}], "returnType": {"nodeId": "140042298380480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286567760": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042244406432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042286567872"}], "returnType": {"nodeId": "140042298380832"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286567872": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042244405536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042286567984"}], "returnType": {"nodeId": "140042298381184"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286567984": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042244405984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042286568096"}], "returnType": {"nodeId": "140042298381536"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286568096": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042244404192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042286568208"}], "returnType": {"nodeId": "140042298381888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286568208": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042332125472": {"type": "Function", "content": {"typeVars": [".0.140042332125472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042286568432"}, {"nodeId": "140042286568544"}, {"nodeId": "140042286568656"}, {"nodeId": "140042286568768"}, {"nodeId": "140042286568880"}, {"nodeId": "140042286568992"}], "returnType": {"nodeId": ".0.140042332125472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "140042286568432": {"type": "Union", "content": {"items": [{"nodeId": "140042298380832"}, {"nodeId": "N"}]}}, "140042286568544": {"type": "Union", "content": {"items": [{"nodeId": "140042298381184"}, {"nodeId": "N"}]}}, "140042286568656": {"type": "Union", "content": {"items": [{"nodeId": "140042298381536"}, {"nodeId": "N"}]}}, "140042286568768": {"type": "Union", "content": {"items": [{"nodeId": "140042298381888"}, {"nodeId": "N"}]}}, "140042286568880": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042286568992": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, ".0.140042332125472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042286566976"}, "def": "140042332125472", "variance": "INVARIANT"}}, "140042286566976": {"type": "Tuple", "content": {"items": [{"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}]}}, "140042299122688": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340691616"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042244364480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340692512"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "140042298382592"}], "isAbstract": true}}, "140042340691616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299122688"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140042244364480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299122688"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042286572576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140042286572576": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042512514240"}]}}, "140042340692512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299122688"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140042299123040": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340692960"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042244363360"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340693856"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "140042298382944"}], "isAbstract": true}}, "140042340692960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123040"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "140042244363360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123040"}, {"nodeId": "140042307616288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042286572800"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "140042286572800": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042340693856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299123040"}, {"nodeId": "140042307616288"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "140042299124096": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299121984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340751328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340751776"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340752224"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340752672"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340753120"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340753568"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340754016"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340754464"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340754912"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340755360"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340755808"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340756256"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340756704"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340757152"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340757600"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340758048"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340758496"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340758944"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340759392"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340759840"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340760288"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340760736"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140042307605728"}], "isAbstract": false}}, "140042340751328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042299121984"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "140042340751776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042340752224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042286574480"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042286574480": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340752672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042286574592"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140042286574592": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340753120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340753568": {"type": "Function", "content": {"typeVars": [".0.140042340753568"], "argTypes": [{"nodeId": ".0.140042340753568"}], "returnType": {"nodeId": ".0.140042340753568"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340753568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124096"}, "def": "140042340753568", "variance": "INVARIANT"}}, "140042340754016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140042340754464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140042340754912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340755360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140042340755808": {"type": "Function", "content": {"typeVars": [".0.140042340755808"], "argTypes": [{"nodeId": ".0.140042340755808"}], "returnType": {"nodeId": ".0.140042340755808"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340755808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042299124096"}, "def": "140042340755808", "variance": "INVARIANT"}}, "140042340756256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042286574816"}, {"nodeId": "140042286574928"}, {"nodeId": "140042286575040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286574816": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286574928": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286575040": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042340756704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042340757152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340757600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340758048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340758496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340758944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340759392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}, {"nodeId": "140042286575264"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042286575264": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340759840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340760288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340760736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299124096"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042298383296": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340761184"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340401440"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340401888"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340402336"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340402784"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340403232"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340403680"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340404128"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340404576"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340405024"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340405472"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340405920"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340406368"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340406816"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340407264"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340407712"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340408160"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340408608"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340409056"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340409504"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340409952"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340410400"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "140042307605376"}], "isAbstract": false}}, "140042340761184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042299121984"}, {"nodeId": "140042298380128"}, {"nodeId": "140042298380480"}, {"nodeId": "140042298380832"}, {"nodeId": "140042298381184"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "140042340401440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042340401888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042286575376"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042286575376": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340402336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042286575488"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290560"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "140042286575488": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340402784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340403232": {"type": "Function", "content": {"typeVars": [".0.140042340403232"], "argTypes": [{"nodeId": ".0.140042340403232"}], "returnType": {"nodeId": ".0.140042340403232"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340403232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042298383296"}, "def": "140042340403232", "variance": "INVARIANT"}}, "140042340403680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042307290560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "140042340404128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "140042340404576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340405024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042340405472": {"type": "Function", "content": {"typeVars": [".0.140042340405472"], "argTypes": [{"nodeId": ".0.140042340405472"}], "returnType": {"nodeId": ".0.140042340405472"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.140042340405472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042298383296"}, "def": "140042340405472", "variance": "INVARIANT"}}, "140042340405920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042286575824"}, {"nodeId": "140042286575936"}, {"nodeId": "140042286576048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042286575824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042286575936": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042286576048": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042340406368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "140042340406816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340407264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340407712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340408160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340408608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340409056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}, {"nodeId": "140042286576160"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "140042286576160": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042340409504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340409952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042340410400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298383296"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303197024": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256940192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042307486464"}], "isAbstract": false}}, "140042256940192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303197024"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303197728": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340416224"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256938176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256937504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256937952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302847600"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340958944"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "140042303197376"}], "isAbstract": false}}, "140042340416224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290810544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290810544": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042256938176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290810768"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290810768": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042256937504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290810880"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290810880": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042256937952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290810992"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290810992": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042302847600": {"type": "Union", "content": {"items": [{"nodeId": "140042303199136"}, {"nodeId": "N"}]}}, "140042340958944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042290811104"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140042290811104": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042303197376": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302846480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302846032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306895008"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042307068736"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042307064928"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307066944"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140042307291968", "args": [{"nodeId": "140042307290208"}]}], "isAbstract": false}}, "140042302846480": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042302846032": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "140042306895008": {"type": "Function", "content": {"typeVars": [".-1.140042306895008"], "argTypes": [{"nodeId": ".-1.140042306895008"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".-1.140042306895008"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.140042306895008": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140042302846256"}, "def": "140042306895008", "variance": "INVARIANT"}}, "140042302846256": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042307068736": {"type": "Function", "content": {"typeVars": [".-1.140042307068736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": ".-1.140042307068736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.140042307068736": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140042302846256"}, "def": "140042307068736", "variance": "INVARIANT"}}, "140042307064928": {"type": "Function", "content": {"typeVars": [".-1.140042307064928"], "argTypes": [{"nodeId": ".-1.140042307064928"}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.140042307064928": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140042302846256"}, "def": "140042307064928", "variance": "INVARIANT"}}, "140042307066944": {"type": "Function", "content": {"typeVars": [".-1.140042307066944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.140042307066944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.140042307066944": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "140042302846256"}, "def": "140042307066944", "variance": "INVARIANT"}}, "140042303198432": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256927648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256927200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042256926976"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042290809872"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042303198080"}]}], "isAbstract": false}}, "140042256927648": {"type": "Function", "content": {"typeVars": [".0.140042256927648"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042290811440"}]}], "returnType": {"nodeId": ".0.140042256927648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "140042290811440": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299154256"}}}, ".0.140042256927648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303198432"}, "def": "140042256927648", "variance": "INVARIANT"}}, "140042256927200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198432"}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042256926976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198432"}], "returnType": {"nodeId": "140042307607840", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042290809872": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042340962528"}, {"nodeId": "140042340962976"}]}}, "140042340962528": {"type": "Function", "content": {"typeVars": [".0.140042340962528"], "argTypes": [{"nodeId": ".0.140042340962528"}], "returnType": {"nodeId": ".0.140042340962528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042340962528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303198432"}, "def": "140042340962528", "variance": "INVARIANT"}}, "140042340962976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303198432"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042303198080"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "140042299118464": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "140042299118816"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256921120"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042303202656"}], "isAbstract": true}}, "140042256921120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299118464"}, {"nodeId": "140042299118816"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042303199136"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "140042299119168": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042256919776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042340973280"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "140042299118464"}], "isAbstract": false}}, "140042256919776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042299118816"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042303199488"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "140042340973280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299119168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "140042223067808": {"type": "Concrete", "content": {"module": "functools", "simpleName": "_lru_cache_wrapper", "members": [{"kind": "Variable", "content": {"name": "__wrapped__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219178912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336510112"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336510560"}, "name": "cache_info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336511008"}, "name": "cache_clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336511456"}, "name": "cache_parameters"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336511904"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336512352"}, "name": "__deepcopy__"}}], "typeVars": [{"nodeId": ".1.140042223067808"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042223067808": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223067808", "variance": "INVARIANT"}}, "140042219178912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223067808"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336510112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}, {"nodeId": "140042307602912"}, {"nodeId": "140042307602912"}], "returnType": {"nodeId": ".1.140042223067808"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "140042336510560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}], "returnType": {"nodeId": "140042218604352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218604352": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042219236912"}}}, "140042219236912": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042219235904"}, {"nodeId": "140042512514240"}]}}, "140042219235904": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042336511008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042336511456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}], "returnType": {"nodeId": "140042218604464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218604464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "140042336511904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}], "returnType": {"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042336512352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042223067808", "args": [{"nodeId": ".1.140042223067808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042223068160": {"type": "Concrete", "content": {"module": "functools", "simpleName": "partial", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219165888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219166336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219166560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336436512"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336436960"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336437408"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042223068160"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042223068160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223068160", "variance": "INVARIANT"}}, "140042219165888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068160", "args": [{"nodeId": ".1.140042223068160"}]}], "returnType": {"nodeId": "140042219322528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042219322528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068160"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219166336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068160", "args": [{"nodeId": ".1.140042223068160"}]}], "returnType": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042219166560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068160", "args": [{"nodeId": ".1.140042223068160"}]}], "returnType": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042336436512": {"type": "Function", "content": {"typeVars": [".0.140042336436512"], "argTypes": [{"nodeId": "0"}, {"nodeId": "140042219322304"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042336436512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}}, "140042219322304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068160"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".0.140042336436512": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042223068160", "args": [{"nodeId": ".1.140042223068160"}]}, "def": "140042336436512", "variance": "INVARIANT"}}, "140042336436960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068160", "args": [{"nodeId": ".1.140042223068160"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068160"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}}, "140042336437408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042223068512": {"type": "Concrete", "content": {"module": "functools", "simpleName": "partialmethod", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219240272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042218603120"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336438752"}, "name": "__get__"}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219168800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336440096"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042223068512"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042223068512": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223068512", "variance": "INVARIANT"}}, "140042219240272": {"type": "Union", "content": {"items": [{"nodeId": "140042219178688"}, {"nodeId": "140042219240160"}]}}, "140042219178688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068512"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219240160": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042218603120": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042336437856"}, {"nodeId": "140042336438304"}]}}, "140042336437856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068512", "args": [{"nodeId": ".1.140042223068512"}]}, {"nodeId": "140042219322080"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}}, "140042219322080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068512"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336438304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068512", "args": [{"nodeId": ".1.140042223068512"}]}, {"nodeId": "140042218606816"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}}, "140042218606816": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042336438752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068512", "args": [{"nodeId": ".1.140042223068512"}]}, {"nodeId": "A"}, {"nodeId": "140042218607376"}], "returnType": {"nodeId": "140042219322752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}}, "140042218607376": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042219322752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068512"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219168800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068512", "args": [{"nodeId": ".1.140042223068512"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042336440096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042223068864": {"type": "Concrete", "content": {"module": "functools", "simpleName": "_SingleDispatchCallable", "members": [{"kind": "Variable", "content": {"name": "registry", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302637152", "args": [{"nodeId": "A"}, {"nodeId": "140042219178240"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336440544"}, "name": "dispatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042218604688"}, "items": [{"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "register"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336442336"}, "name": "_clear_cache"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336442784"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.140042223068864"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042223068864": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223068864", "variance": "INVARIANT"}}, "140042219178240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336440544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223068864"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "140042219321408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}}, "140042219321408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042218604688": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042336440992"}, {"nodeId": "140042336441440"}, {"nodeId": "140042336441888"}]}}, "140042336440992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223068864"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042219319168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}}, "140042219319168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042219320960"}], "returnType": {"nodeId": "140042219320736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042219320960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219320736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336441440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223068864"}]}, {"nodeId": "140042219321632"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042219320288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}}, "140042219321632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219320288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336441888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223068864"}]}, {"nodeId": "0"}, {"nodeId": "140042219321184"}], "returnType": {"nodeId": "140042219319840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "func"]}}, "140042219321184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219319840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336442336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223068864"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042336442784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223068864"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223068864"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}}, "140042223069216": {"type": "Concrete", "content": {"module": "functools", "simpleName": "singledispatchmethod", "members": [{"kind": "Variable", "content": {"name": "dispatcher", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223068864", "args": [{"nodeId": ".1.140042223069216"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219178016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336443680"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219170144"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042218606368"}, "items": [{"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "register"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336445920"}, "name": "__get__"}}], "typeVars": [{"nodeId": ".1.140042223069216"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042223069216": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223069216", "variance": "INVARIANT"}}, "140042219178016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336443680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069216", "args": [{"nodeId": ".1.140042223069216"}]}, {"nodeId": "140042219319392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, "140042219319392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219170144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069216", "args": [{"nodeId": ".1.140042223069216"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218606368": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042336444576"}, {"nodeId": "140042336445024"}, {"nodeId": "140042336445472"}]}}, "140042336444576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069216", "args": [{"nodeId": ".1.140042223069216"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042219001152"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}}, "140042219001152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042219000928"}], "returnType": {"nodeId": "140042219001376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042219000928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042219001376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336445024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069216", "args": [{"nodeId": ".1.140042223069216"}]}, {"nodeId": "140042218961184"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042218959840"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}}, "140042218961184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042218959840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336445472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069216", "args": [{"nodeId": ".1.140042223069216"}]}, {"nodeId": "0"}, {"nodeId": "140042218960064"}], "returnType": {"nodeId": "140042218959616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "method"]}}, "140042218960064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042218959616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042336445920": {"type": "Function", "content": {"typeVars": [".-1.140042336445920"], "argTypes": [{"nodeId": "140042223069216", "args": [{"nodeId": ".1.140042223069216"}]}, {"nodeId": ".-1.140042336445920"}, {"nodeId": "140042218610400"}], "returnType": {"nodeId": "140042218960512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}}, ".-1.140042336445920": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042336445920", "variance": "INVARIANT"}}, "140042218610400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042218960512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069216"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042223069568": {"type": "Concrete", "content": {"module": "functools", "simpleName": "cached_property", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219177792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attrname", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042218602672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336446368"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042218607936"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336447712"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336448160"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042336448608"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.140042223069568"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042223069568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042223069568", "variance": "INVARIANT"}}, "140042219177792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069568"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042218602672": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042336446368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069568", "args": [{"nodeId": ".1.140042223069568"}]}, {"nodeId": "140042218960288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, "140042218960288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.140042223069568"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042218607936": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042336446816"}, {"nodeId": "140042336447264"}]}}, "140042336446816": {"type": "Function", "content": {"typeVars": [".0.140042336446816"], "argTypes": [{"nodeId": ".0.140042336446816"}, {"nodeId": "N"}, {"nodeId": "140042218610960"}], "returnType": {"nodeId": ".0.140042336446816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}}, ".0.140042336446816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042223069568", "args": [{"nodeId": ".1.140042223069568"}]}, "def": "140042336446816", "variance": "INVARIANT"}}, "140042218610960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042336447264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069568", "args": [{"nodeId": ".1.140042223069568"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042218611184"}], "returnType": {"nodeId": ".1.140042223069568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}}, "140042218611184": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042336447712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069568", "args": [{"nodeId": ".1.140042223069568"}]}, {"nodeId": "0"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "140042336448160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223069568", "args": [{"nodeId": ".1.140042223069568"}]}, {"nodeId": "140042512502976"}, {"nodeId": ".1.140042223069568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "instance", "value"]}}, "140042336448608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042302643488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "140042223066400": {"type": "Concrete", "content": {"module": "numpy.polynomial.polyutils", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307496320"}], "isAbstract": false}}, "140042223061472": {"type": "Concrete", "content": {"module": "threading", "simpleName": "ThreadError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042223061824": {"type": "Concrete", "content": {"module": "threading", "simpleName": "local", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335985824"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335986272"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335986720"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042335985824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061824"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042335986272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061824"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042335986720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061824"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042223062176": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Thread", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ident", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219520960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335987616"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335988064"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335988512"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335988960"}, "name": "join"}}, {"kind": "Variable", "content": {"name": "native_id", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042219520064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335989856"}, "name": "is_alive"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335990752"}, "name": "getName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335991200"}, "name": "setName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335991648"}, "name": "isDaemon"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "daemonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335992096"}, "name": "setDaemon"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042219520960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "140042223049008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223049008": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042335987616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}, {"nodeId": "N"}, {"nodeId": "140042223049232"}, {"nodeId": "140042223049344"}, {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "140042223049680"}, {"nodeId": "140042223049792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "group", "target", "name", "args", "kwargs", "daemon"]}}, "140042223049232": {"type": "Union", "content": {"items": [{"nodeId": "140042256789376"}, {"nodeId": "N"}]}}, "140042256789376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042223049344": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042223049680": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042223049792": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "N"}]}}, "140042335988064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335988512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335988960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}, {"nodeId": "140042223049904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140042223049904": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042219520064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "140042223050016"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223050016": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042335989856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335990752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335991200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140042335991648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042335992096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062176"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "daemonic"]}}, "140042223062528": {"type": "Concrete", "content": {"module": "threading", "simpleName": "_DummyThread", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042335992544"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042223062176"}], "isAbstract": false}}, "140042335992544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223062528"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223063232": {"type": "Concrete", "content": {"module": "threading", "simpleName": "_RLock", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323543648"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323544096"}, "name": "release"}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042219532832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323544544"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042323543648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063232"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "140042323544096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042219532832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063232"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "140042323544544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063232"}, {"nodeId": "140042223050464"}, {"nodeId": "140042223050576"}, {"nodeId": "140042223050688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042223050464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042223050576": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223050688": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223063584": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Condition", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323544992"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323545440"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323545888"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323546336"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323546784"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323547232"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "predicate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323547680"}, "name": "wait_for"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323548128"}, "name": "notify"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323548576"}, "name": "notify_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323549024"}, "name": "notifyAll"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042323544992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}, {"nodeId": "140042223050800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "lock"]}}, "140042223050800": {"type": "Union", "content": {"items": [{"nodeId": "140042223062880"}, {"nodeId": "140042223063232"}, {"nodeId": "N"}]}}, "140042323545440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042323545888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}, {"nodeId": "140042223050912"}, {"nodeId": "140042223051024"}, {"nodeId": "140042223051136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042223050912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042223051024": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223051136": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042323546336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "140042323546784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323547232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}, {"nodeId": "140042223051248"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140042223051248": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042323547680": {"type": "Function", "content": {"typeVars": [".-1.140042323547680"], "argTypes": [{"nodeId": "140042223063584"}, {"nodeId": "140042256789600"}, {"nodeId": "140042223051360"}], "returnType": {"nodeId": ".-1.140042323547680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "predicate", "timeout"]}}, "140042256789600": {"type": "Function", "content": {"typeVars": [".-1.140042256789600"], "argTypes": [], "returnType": {"nodeId": ".-1.140042256789600"}, "argKinds": [], "argNames": []}}, ".-1.140042256789600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042256789600", "variance": "INVARIANT"}}, "140042223051360": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, ".-1.140042323547680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042323547680", "variance": "INVARIANT"}}, "140042323548128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140042323548576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323549024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063584"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223063936": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Semaphore", "members": [{"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323549472"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323549920"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323550368"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323550816"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323551264"}, "name": "release"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042323549472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063936"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "140042323549920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063936"}, {"nodeId": "140042223051472"}, {"nodeId": "140042223051584"}, {"nodeId": "140042223051696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042223051472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042223051584": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223051696": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042323550368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063936"}, {"nodeId": "140042512503328"}, {"nodeId": "140042223051808"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "140042223051808": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042323550816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063936"}, {"nodeId": "140042512503328"}, {"nodeId": "140042223051920"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "140042223051920": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042323551264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223063936"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "140042223064288": {"type": "Concrete", "content": {"module": "threading", "simpleName": "BoundedSemaphore", "members": [], "typeVars": [], "bases": [{"nodeId": "140042223063936"}], "isAbstract": false}}, "140042223064640": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Event", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323552160"}, "name": "is_set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323552608"}, "name": "isSet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323553056"}, "name": "set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323553504"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323553952"}, "name": "wait"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042323552160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064640"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323552608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064640"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323553504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323553952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064640"}, {"nodeId": "140042223052032"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140042223052032": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042223064992": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Timer", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finished", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223064640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042273123776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323554400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323554848"}, "name": "cancel"}}], "typeVars": [], "bases": [{"nodeId": "140042223062176"}], "isAbstract": false}}, "140042273123776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042323554400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064992"}, {"nodeId": "140042512514592"}, {"nodeId": "140042256788704"}, {"nodeId": "140042223052368"}, {"nodeId": "140042223052592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "interval", "function", "args", "kwargs"]}}, "140042256788704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042512502976"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042223052368": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042223052592": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042323554848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223064992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223065344": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Barrier", "members": [{"kind": "Variable", "content": {"name": "parties", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042218999136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_waiting", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042218999584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "broken", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042218999808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parties", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "action", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323556640"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323557088"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323557536"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323557984"}, "name": "abort"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042218999136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218999584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042218999808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323556640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}, {"nodeId": "140042512514240"}, {"nodeId": "140042223052704"}, {"nodeId": "140042223052816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "parties", "action", "timeout"]}}, "140042223052704": {"type": "Union", "content": {"items": [{"nodeId": "140042273166432"}, {"nodeId": "N"}]}}, "140042273166432": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "140042223052816": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042323557088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}, {"nodeId": "140042223052928"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "140042223052928": {"type": "Union", "content": {"items": [{"nodeId": "140042512514592"}, {"nodeId": "N"}]}}, "140042323557536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042323557984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223065344"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223065696": {"type": "Concrete", "content": {"module": "threading", "simpleName": "BrokenBarrierError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307302880"}], "isAbstract": false}}, "140042198143520": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_BaseTestCaseContext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042323658784"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042323658784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042198143520"}, {"nodeId": "140042198144576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test_case"]}}, "140042202218016": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "_OptionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042223060416": {"type": "Concrete", "content": {"module": "json.decoder", "simpleName": "JSONDecodeError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310863776"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307304640"}], "isAbstract": false}}, "140042310863776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060416"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "doc", "pos"]}}, "140042223060768": {"type": "Concrete", "content": {"module": "json.decoder", "simpleName": "JSONDecoder", "members": [{"kind": "Variable", "content": {"name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223525600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223525376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223525152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223524928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223524704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310864224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_w", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310864672"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "idx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310865120"}, "name": "raw_decode"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042223525600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223525376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223525152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223524928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223524704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042223080544"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223080544": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042310864224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060768"}, {"nodeId": "140042223080768"}, {"nodeId": "140042223081104"}, {"nodeId": "140042223081328"}, {"nodeId": "140042223081552"}, {"nodeId": "140042512503328"}, {"nodeId": "140042223081776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "object_hook", "parse_float", "parse_int", "parse_constant", "strict", "object_pairs_hook"]}}, "140042223080768": {"type": "Union", "content": {"items": [{"nodeId": "140042223524480"}, {"nodeId": "N"}]}}, "140042223524480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223081104": {"type": "Union", "content": {"items": [{"nodeId": "140042223524032"}, {"nodeId": "N"}]}}, "140042223524032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223081328": {"type": "Union", "content": {"items": [{"nodeId": "140042223524256"}, {"nodeId": "N"}]}}, "140042223524256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223081552": {"type": "Union", "content": {"items": [{"nodeId": "140042223521792"}, {"nodeId": "N"}]}}, "140042223521792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223081776": {"type": "Union", "content": {"items": [{"nodeId": "140042223520224"}, {"nodeId": "N"}]}}, "140042223520224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042223082112"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042223082112": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}}, "140042310864672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060768"}, {"nodeId": "140042307290208"}, {"nodeId": "140042223522016"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "_w"]}}, "140042223522016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042310865120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060768"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042223082896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "idx"]}}, "140042223082896": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140042512514240"}]}}, "140042223060064": {"type": "Concrete", "content": {"module": "json.encoder", "simpleName": "JSONEncoder", "members": [{"kind": "Variable", "content": {"name": "item_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223076960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "separators", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310867360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310867808"}, "name": "default"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310868256"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_one_shot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310868704"}, "name": "iterencode"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042223076960": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042310867360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060064"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042223076736"}, {"nodeId": "140042223077296"}, {"nodeId": "140042223077520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "skipkeys", "ensure_ascii", "check_circular", "allow_nan", "sort_keys", "indent", "separators", "default"]}}, "140042223076736": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042223077296": {"type": "Union", "content": {"items": [{"nodeId": "140042223077184"}, {"nodeId": "N"}]}}, "140042223077184": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042223077520": {"type": "Union", "content": {"items": [{"nodeId": "140042222980000"}, {"nodeId": "N"}]}}, "140042222980000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042310867808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060064"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}}, "140042310868256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060064"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}}, "140042310868704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223060064"}, {"nodeId": "A"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "o", "_one_shot"]}}, "140042302647360": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042302647712": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042302833264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294120672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265338240"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319422944"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319423392"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319423840"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319424288"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042302833264": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042294120672": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042265338240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647712"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042319422944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647712"}, {"nodeId": "140042289950592"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "140042289950592": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042319423392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647712"}, {"nodeId": "140042512514240"}, {"nodeId": "140042302648064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "140042302648064": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042294123360"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294077456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302647712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319424736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319425632"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319426080"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319426528"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319426976"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319427424"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319427872"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319428320"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319428768"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042294123360": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124592"}}}, "140042294124592": {"type": "Tuple", "content": {"items": [{"nodeId": "140042302649120"}, {"nodeId": "140042294123472"}]}}, "140042294123472": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124368"}}}, "140042294124368": {"type": "Union", "content": {"items": [{"nodeId": "140042294122576"}, {"nodeId": "140042294123136"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042302648064"}]}, {"nodeId": "140042294124032"}, {"nodeId": "140042294124256"}]}}, "140042294122576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307292320", "args": [{"nodeId": "140042302833040"}]}}}, "140042302833040": {"type": "Tuple", "content": {"items": [{"nodeId": "140042302649120"}, {"nodeId": "140042512514240"}]}}, "140042294123136": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299148768"}}}, "140042299148768": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042302648064"}]}]}}, "140042294124032": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299148656"}}}, "140042299148656": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042302648064"}, {"nodeId": "140042302648064"}]}}, "140042294124256": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294119440"}}}, "140042294119440": {"type": "Tuple", "content": {"items": [{"nodeId": "140042302503984"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}, {"nodeId": "140042302648064"}]}}, "140042302503984": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042294077456": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042319424736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042302647712"}, {"nodeId": "140042289950816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "140042289950816": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042289950704"}]}, {"nodeId": "N"}]}}, "140042289950704": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124592"}}}, "140042319425632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "140042319426080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042319426528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042289951152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042289951152": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307291616"}]}}, "140042319426976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042289951040"}], "returnType": {"nodeId": "140042289951376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042289951040": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307291616"}]}}, "140042289951376": {"type": "Union", "content": {"items": [{"nodeId": "140042302648064"}, {"nodeId": "140042289950928"}]}}, "140042289950928": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124592"}}}, "140042319427424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042289951600"}, {"nodeId": "140042289951488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042289951600": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307291616"}]}}, "140042289951488": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124592"}}}, "140042319427872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042512514240"}, {"nodeId": "140042289951712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "140042289951712": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124592"}}}, "140042319428320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}, {"nodeId": "140042289952048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "140042289952048": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042294124592"}}}, "140042319428768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648064"}], "returnType": {"nodeId": "140042289951824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042289951824": {"type": "Tuple", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}}, "140042319423840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647712"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "140042319424288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302647712"}, {"nodeId": "140042512514240"}, {"nodeId": "140042302648416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "140042302648416": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294124480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319429216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319692064"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319692512"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319692960"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319693408"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042265333536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319694752"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319695200"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319695648"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042294124480": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042319429216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140042319692064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "140042319692512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}], "returnType": {"nodeId": "140042289952272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042289952272": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042319692960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}, {"nodeId": "140042512514240"}, {"nodeId": "140042512507200", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "140042319693408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "140042265333536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042319694752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042319695200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "140042319695648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042302648416"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042302648768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "140042298608448": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042319701024"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042319701024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298608448"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303196672": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320090656"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320091104"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320091552"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320092000"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "140042320090656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196672"}], "returnType": {"nodeId": "140042303196672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042320091104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196672"}], "returnType": {"nodeId": "140042303196672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042320091552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196672"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042320092000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303196672"}], "returnType": {"nodeId": "140042303196672"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042303208288": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303207232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042294129184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299158736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042298247648"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320093344"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320093792"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320094240"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320094688"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320095136"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320095584"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320096032"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320096480"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320096928"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320097376"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320097824"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320098272"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320098720"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320099168"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320099616"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320100064"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042320100512"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285811408"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285816224"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314974816"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314975264"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314975712"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314976160"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314976608"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314977056"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314977504"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285819696"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285820256"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314979744"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314980192"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285821040"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285822608"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314982432"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285822496"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042285822720"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314984672"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314985120"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314985568"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314986016"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314986464"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314986912"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314987360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314987808"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314988256"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042303207232": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303343968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303344304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310923680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310924128"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310924576"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310925024"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310925472"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252703936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252703488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252703264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252703040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042252701024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": true}}, "140042303343968": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042303344304": {"type": "Union", "content": {"items": [{"nodeId": "140042307071872"}, {"nodeId": "N"}]}}, "140042307071872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}], "returnType": {"nodeId": "140042303208288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042310923680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042285816000"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042285816112"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "140042285816000": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042285816112": {"type": "Union", "content": {"items": [{"nodeId": "140042285859104"}, {"nodeId": "N"}]}}, "140042285859104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}], "returnType": {"nodeId": "140042303208288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042310924128": {"type": "Function", "content": {"typeVars": [".0.140042310924128"], "argTypes": [{"nodeId": ".0.140042310924128"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.140042310924128"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.140042310924128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303207232"}, "def": "140042310924128", "variance": "INVARIANT"}}, "140042310924576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042303208288"}, {"nodeId": "140042298247648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140042298247648": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310922112"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042307304640"}], "isAbstract": false}}, "140042310922112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298247648"}, {"nodeId": "140042286042576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "140042286042576": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042310925024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042303208288"}, {"nodeId": "140042298247648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "140042310925472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042285816448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "140042285816448": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042252703936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042285816672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140042285816672": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042252703488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042285816896"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042285816896": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042252703264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042252703040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042252701024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042294129184": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042299158736": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042320093344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042320093792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "140042320094240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042285818240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285818240": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042320094688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042303208288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "140042320095136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042285818352"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "140042285818352": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042320095584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042285818576"}, {"nodeId": "140042285818800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "140042285818576": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042303344192"}}}, "140042303344192": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042303208288"}]}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}]}}, "140042285818800": {"type": "Union", "content": {"items": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298255040": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303346096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303346208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042303346320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310913376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310913824"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310914272"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310914720"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310915168"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310915616"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310916064"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310916512"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042303346096": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042303346208": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042303346320": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042310913376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "140042310913824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042310914272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}], "returnType": {"nodeId": "140042286044144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042286044144": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042310914720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140042310915168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512507552", "args": [{"nodeId": "140042512514240"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "140042310915616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "140042310916064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042310916512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298255040"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042320096032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042285818688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "140042285818688": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299158512"}}}, "140042299158512": {"type": "Union", "content": {"items": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042320096480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042285818912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285818912": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299158512"}}}, "140042320096928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042320097376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042320097824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042320098272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042285819024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042285819024": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042320098720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285819136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "140042285819136": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042320099168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042320099616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042320100064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042285819248"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285819248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042320100512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042285819584"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285819584": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042285819360"}]}}, "140042285819360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042285811408": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042320100960"}, {"nodeId": "140042314973472"}]}}, "140042320100960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042285819920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140042285819920": {"type": "Union", "content": {"items": [{"nodeId": "140042285819808"}, {"nodeId": "N"}]}}, "140042285819808": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042314973472": {"type": "Function", "content": {"typeVars": [".-1.140042314973472"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314973472"}], "returnType": {"nodeId": "140042285820144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140042314973472": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314973472", "variance": "INVARIANT"}}, "140042285820144": {"type": "Union", "content": {"items": [{"nodeId": "140042285820032"}, {"nodeId": ".-1.140042314973472"}]}}, "140042285820032": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042285816224": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314973920"}, {"nodeId": "140042314974368"}]}}, "140042314973920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042285820480"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "140042285820480": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042285820368"}]}, {"nodeId": "N"}]}}, "140042285820368": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042314974368": {"type": "Function", "content": {"typeVars": [".-1.140042314974368"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314974368"}], "returnType": {"nodeId": "140042285820704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.140042314974368": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314974368", "variance": "INVARIANT"}}, "140042285820704": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042285820592"}]}, {"nodeId": ".-1.140042314974368"}]}}, "140042285820592": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042314974816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285820816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "140042285820816": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042303347440"}}}, "140042303347440": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}, {"nodeId": "140042303347664"}]}}, "140042303347664": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042303347216"}, {"nodeId": "140042307290208"}]}}, "140042303347216": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314975264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285820928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "140042285820928": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042314975712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042314976160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042314976608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042314977056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042314977504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "140042285819696": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314977952"}, {"nodeId": "140042314978400"}]}}, "140042314977952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042285821376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "140042285821376": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042285821264"}]}, {"nodeId": "N"}]}}, "140042285821264": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042314978400": {"type": "Function", "content": {"typeVars": [".-1.140042314978400"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": ".-1.140042314978400"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042285821712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.140042314978400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314978400", "variance": "INVARIANT"}}, "140042285821712": {"type": "Union", "content": {"items": [{"nodeId": "140042307292320", "args": [{"nodeId": "140042285821600"}]}, {"nodeId": ".-1.140042314978400"}]}}, "140042285821600": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042285820256": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314978848"}, {"nodeId": "140042314979296"}]}}, "140042314978848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042285822048"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "140042285822048": {"type": "Union", "content": {"items": [{"nodeId": "140042285821936"}, {"nodeId": "N"}]}}, "140042285821936": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042303346768"}}}, "140042303346768": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042303345760"}]}}, "140042303345760": {"type": "Tuple", "content": {"items": [{"nodeId": "140042303346992"}, {"nodeId": "140042303346880"}, {"nodeId": "140042307290208"}]}}, "140042303346992": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042303346880": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314979296": {"type": "Function", "content": {"typeVars": [".-1.140042314979296"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314979296"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "140042285822384"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.140042314979296": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314979296", "variance": "INVARIANT"}}, "140042285822384": {"type": "Union", "content": {"items": [{"nodeId": "140042285821824"}, {"nodeId": ".-1.140042314979296"}]}}, "140042285821824": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042303346768"}}}, "140042314979744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "140042314980192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "140042285821040": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314980640"}, {"nodeId": "140042314981088"}]}}, "140042314980640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042285822160"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140042285822160": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314981088": {"type": "Function", "content": {"typeVars": [".-1.140042314981088"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": ".-1.140042314981088"}], "returnType": {"nodeId": "140042285822272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140042314981088": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314981088", "variance": "INVARIANT"}}, "140042285822272": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314981088"}]}}, "140042285822608": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314981536"}, {"nodeId": "140042314981984"}]}}, "140042314981536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042285822832"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140042285822832": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314981984": {"type": "Function", "content": {"typeVars": [".-1.140042314981984"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": ".-1.140042314981984"}], "returnType": {"nodeId": "140042285822944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140042314981984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314981984", "variance": "INVARIANT"}}, "140042285822944": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314981984"}]}}, "140042314982432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "140042285822496": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314982880"}, {"nodeId": "140042314983328"}]}}, "140042314982880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042285823168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285823168": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314983328": {"type": "Function", "content": {"typeVars": [".-1.140042314983328"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": ".-1.140042314983328"}], "returnType": {"nodeId": "140042285823280"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140042314983328": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314983328", "variance": "INVARIANT"}}, "140042285823280": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314983328"}]}}, "140042285822720": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042314983776"}, {"nodeId": "140042314984224"}]}}, "140042314983776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "N"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042285823504"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "140042285823504": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314984224": {"type": "Function", "content": {"typeVars": [".-1.140042314984224"], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": ".-1.140042314984224"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042285823616"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.140042314984224": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042314984224", "variance": "INVARIANT"}}, "140042285823616": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": ".-1.140042314984224"}]}}, "140042314984672": {"type": "Function", "content": {"typeVars": [".0.140042314984672"], "argTypes": [{"nodeId": ".0.140042314984672"}], "returnType": {"nodeId": "140042512508256", "args": [{"nodeId": ".0.140042314984672"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.140042314984672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "140042303208288"}, "def": "140042314984672", "variance": "INVARIANT"}}, "140042314985120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042285823840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285823840": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314985568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042285823952"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140042285823952": {"type": "Union", "content": {"items": [{"nodeId": "140042303207232"}, {"nodeId": "N"}]}}, "140042314986016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042512503328"}, {"nodeId": "140042285824064"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "140042285824064": {"type": "Union", "content": {"items": [{"nodeId": "140042303207232"}, {"nodeId": "N"}]}}, "140042314986464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042314986912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042285824176"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "140042285824176": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042314987360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042303207232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140042314987808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285824288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042285824288": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042314988256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208288"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042285824624"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042285824624": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042285824400"}]}}, "140042285824400": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "140042303208640": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314988704"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042314989152"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315071776"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315072224"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315072672"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315073120"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315073568"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315074016"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315074464"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315074912"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315075360"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315075808"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315076256"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315076704"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315077152"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315077600"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "140042303208288"}], "isAbstract": false}}, "140042314988704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "140042285824736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "140042285824736": {"type": "Union", "content": {"items": [{"nodeId": "140042303207232"}, {"nodeId": "N"}]}}, "140042314989152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042285824848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "140042285824848": {"type": "Union", "content": {"items": [{"nodeId": "140042303208288"}, {"nodeId": "N"}]}}, "140042315071776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042303208288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315072224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}], "returnType": {"nodeId": "140042512507552", "args": [{"nodeId": "140042303208288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315072672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "A"}, {"nodeId": "140042285825072"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140042285825072": {"type": "Union", "content": {"items": [{"nodeId": "140042298254688"}, {"nodeId": "N"}]}}, "140042298254688": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310919200"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310919648"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310920096"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310920544"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042310919200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298254688"}, {"nodeId": "140042303208288"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "140042310919648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298254688"}, {"nodeId": "140042303208288"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "140042310920096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298254688"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285860448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "140042285860448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042310920544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298254688"}, {"nodeId": "140042512513536"}, {"nodeId": "140042285860224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "140042285860224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042315073120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "A"}, {"nodeId": "140042285825520"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140042285825520": {"type": "Union", "content": {"items": [{"nodeId": "140042298254688"}, {"nodeId": "N"}]}}, "140042315073568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "140042285825744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140042285825744": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315074016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "140042285825856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140042285825856": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315074464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "140042286039104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "140042286039104": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315074912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "A"}, {"nodeId": "140042286039328"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140042286039328": {"type": "Union", "content": {"items": [{"nodeId": "140042298254688"}, {"nodeId": "N"}]}}, "140042315075360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "A"}, {"nodeId": "140042286039664"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140042286039664": {"type": "Union", "content": {"items": [{"nodeId": "140042298254688"}, {"nodeId": "N"}]}}, "140042315075808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "A"}, {"nodeId": "140042286040000"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "140042286040000": {"type": "Union", "content": {"items": [{"nodeId": "140042298254688"}, {"nodeId": "N"}]}}, "140042315076256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315076704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315077152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}, {"nodeId": "140042512503328"}, {"nodeId": "140042286040224"}, {"nodeId": "140042286040336"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "140042286040224": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286040336": {"type": "Union", "content": {"items": [{"nodeId": "140042303207232"}, {"nodeId": "N"}]}}, "140042315077600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303208640"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042303208992": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "140042303208640"}], "isAbstract": false}}, "140042299125152": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140042299124448"}], "isAbstract": false}}, "140042299125856": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140042299125504"}, {"nodeId": "140042299124800"}], "isAbstract": false}}, "140042299126208": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "140042299125504"}, {"nodeId": "140042299125152"}], "isAbstract": false}}, "140042202211680": {"type": "Concrete", "content": {"module": "numpy.compat.py3k", "simpleName": "contextlib_nullcontext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310953120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310953392"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310953664"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042310953120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202211680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "140042310953392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202211680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042310953664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202211680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "140042223061120": {"type": "Concrete", "content": {"module": "_thread", "simpleName": "LockType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315600544"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315872768"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315601440"}, "name": "locked"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315871424"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315602336"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042315600544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061120"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514592"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "140042315872768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315601440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061120"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315871424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061120"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042315602336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223061120"}, {"nodeId": "140042223045200"}, {"nodeId": "140042223045088"}, {"nodeId": "140042223045424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "140042223045200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "140042223045088": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223045424": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223066048": {"type": "Concrete", "content": {"module": "_thread", "simpleName": "_ExceptHookArgs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223056176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042252417984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042223698880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042223703584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "thread", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042223703136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042298607744", "args": [{"nodeId": "A"}]}, {"nodeId": "140042307291968", "args": [{"nodeId": "140042223089616"}]}], "isAbstract": false}}, "140042223056176": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042252417984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223046320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223046320": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042223045984"}, {"nodeId": "140042223046096"}, {"nodeId": "140042223046208"}]}}, "140042223045984": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223046096": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223046208": {"type": "Union", "content": {"items": [{"nodeId": "140042223062176"}, {"nodeId": "N"}]}}, "140042223698880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223046768"}], "returnType": {"nodeId": "140042223046880"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223046768": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042223046432"}, {"nodeId": "140042223046544"}, {"nodeId": "140042223046656"}]}}, "140042223046432": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223046544": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223046656": {"type": "Union", "content": {"items": [{"nodeId": "140042223062176"}, {"nodeId": "N"}]}}, "140042223046880": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223703584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223047328"}], "returnType": {"nodeId": "140042223047440"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223047328": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042223046992"}, {"nodeId": "140042223047104"}, {"nodeId": "140042223047216"}]}}, "140042223046992": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223047104": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223047216": {"type": "Union", "content": {"items": [{"nodeId": "140042223062176"}, {"nodeId": "N"}]}}, "140042223047440": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223703136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223047888"}], "returnType": {"nodeId": "140042223048000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042223047888": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042223047552"}, {"nodeId": "140042223047664"}, {"nodeId": "140042223047776"}]}}, "140042223047552": {"type": "Union", "content": {"items": [{"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042223047664": {"type": "Union", "content": {"items": [{"nodeId": "140042302642080"}, {"nodeId": "N"}]}}, "140042223047776": {"type": "Union", "content": {"items": [{"nodeId": "140042223062176"}, {"nodeId": "N"}]}}, "140042223048000": {"type": "Union", "content": {"items": [{"nodeId": "140042223062176"}, {"nodeId": "N"}]}}, "140042223089616": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "140042307296896"}, {"nodeId": "140042302642080"}, {"nodeId": "140042223062176"}]}}, "140042202213792": {"type": "Concrete", "content": {"module": "logging", "simpleName": "BufferingFormatter", "members": [{"kind": "Variable", "content": {"name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202213440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311281888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311282336"}, "name": "formatHeader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311282784"}, "name": "formatFooter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311283232"}, "name": "format"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042311281888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213792"}, {"nodeId": "140042210753696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "linefmt"]}}, "140042210753696": {"type": "Union", "content": {"items": [{"nodeId": "140042202213440"}, {"nodeId": "N"}]}}, "140042311282336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213792"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042202214496"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "140042311282784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213792"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042202214496"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "140042311283232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202213792"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042202214496"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "140042202217664": {"type": "Concrete", "content": {"module": "logging", "simpleName": "LoggerAdapter", "members": [{"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042202217664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042202212384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311285920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311467296"}, "name": "process"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311467744"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311468192"}, "name": "info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311468640"}, "name": "warning"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311469088"}, "name": "warn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311469536"}, "name": "error"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311469984"}, "name": "exception"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311470432"}, "name": "critical"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311470880"}, "name": "log"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311474912"}, "name": "isEnabledFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311475360"}, "name": "getEffectiveLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311475808"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311476256"}, "name": "hasHandlers"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311476704"}, "name": "_log"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "140042211104960"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.140042202217664"}], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, ".1.140042202217664": {"type": "TypeVar", "content": {"varName": "_L", "values": [], "upperBound": {"nodeId": "140042210748208"}, "def": "140042202217664", "variance": "INVARIANT"}}, "140042210748208": {"type": "Union", "content": {"items": [{"nodeId": "140042202212736"}, {"nodeId": "140042202217664", "args": [{"nodeId": "A"}]}]}}, "140042210746304": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311285920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": ".1.140042202217664"}, {"nodeId": "140042210935072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "logger", "extra"]}}, "140042210935072": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311467296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "A"}, {"nodeId": "140042512512832", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140042210935632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "kwargs"]}}, "140042210935632": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "140042512512832", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}]}}, "140042311467744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210936304"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210935744"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210936304": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210935856"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210935856": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210935744": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311468192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210936640"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210935968"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210936640": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210936192"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210936192": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210935968": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311468640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210936976"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210936080"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210936976": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210936528"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210936528": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210936080": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311469088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210937312"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210936416"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210937312": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210936864"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210936864": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210936416": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311469536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210937648"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210936752"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210937648": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210937200"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210937200": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210936752": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311469984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210937088"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210937536"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210937088": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541040"}}}, "140042210937536": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311470432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210938208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210937424"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210938208": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210937984"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210937984": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210937424": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311470880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210938544"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042210937872"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "level", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "140042210938544": {"type": "Union", "content": {"items": [{"nodeId": "140042512503328"}, {"nodeId": "140042210937760"}, {"nodeId": "140042307296896"}, {"nodeId": "N"}]}}, "140042210937760": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541264"}}}, "140042210937872": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042311474912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "140042311475360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}], "returnType": {"nodeId": "140042512514240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311475808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042210938096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "140042210938096": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210738688"}}}, "140042311476256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042311476704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512502976"}, {"nodeId": "140042210938432"}, {"nodeId": "140042210938656"}, {"nodeId": "140042210938768"}, {"nodeId": "140042512503328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "extra", "stack_info"]}}, "140042210938432": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210540592"}}}, "140042210938656": {"type": "Union", "content": {"items": [{"nodeId": "140042210938320"}, {"nodeId": "N"}]}}, "140042210938320": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042210541040"}}}, "140042210938768": {"type": "Union", "content": {"items": [{"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "N"}]}}, "140042211104960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202217664", "args": [{"nodeId": ".1.140042202217664"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202214848": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StreamHandler", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.140042202214848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042210746976"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311689696"}, "name": "setStream"}}], "typeVars": [{"nodeId": ".1.140042202214848"}], "bases": [{"nodeId": "140042202213088"}], "isAbstract": false}}, ".1.140042202214848": {"type": "TypeVar", "content": {"varName": "_StreamT", "values": [], "upperBound": {"nodeId": "140042298605984", "args": [{"nodeId": "140042307290208"}]}, "def": "140042202214848", "variance": "INVARIANT"}}, "140042210746976": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042311688800"}, {"nodeId": "140042311689248"}]}}, "140042311688800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214848", "args": [{"nodeId": "140042307605728"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "stream"]}}, "140042311689248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214848", "args": [{"nodeId": ".1.140042202214848"}]}, {"nodeId": ".1.140042202214848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}}, "140042311689696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202214848", "args": [{"nodeId": ".1.140042202214848"}]}, {"nodeId": ".1.140042202214848"}], "returnType": {"nodeId": "140042210943472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}}, "140042210943472": {"type": "Union", "content": {"items": [{"nodeId": ".1.140042202214848"}, {"nodeId": "N"}]}}, "140042202215200": {"type": "Concrete", "content": {"module": "logging", "simpleName": "FileHandler", "members": [{"kind": "Variable", "content": {"name": "baseFilename", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042210746864"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311690592"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042311691488"}, "name": "_open"}}], "typeVars": [], "bases": [{"nodeId": "140042202214848", "args": [{"nodeId": "140042303195616"}]}], "isAbstract": false}}, "140042210746528": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210746864": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311690592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202215200"}, {"nodeId": "140042210943584"}, {"nodeId": "140042307290208"}, {"nodeId": "140042210943696"}, {"nodeId": "140042512503328"}, {"nodeId": "140042210943808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "mode", "encoding", "delay", "errors"]}}, "140042210943584": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042307239632"}}}, "140042210943696": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042210943808": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042311691488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042202215200"}], "returnType": {"nodeId": "140042303195616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042202215552": {"type": "Concrete", "content": {"module": "logging", "simpleName": "NullHandler", "members": [], "typeVars": [], "bases": [{"nodeId": "140042202213088"}], "isAbstract": false}}, "140042202216960": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StrFormatStyle", "members": [{"kind": "Variable", "content": {"name": "fmt_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "field_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042202216608"}], "isAbstract": false}}, "140042202217312": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StringTemplateStyle", "members": [{"kind": "Variable", "content": {"name": "_tpl", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223059008"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "140042202216608"}], "isAbstract": false}}, "140042223059008": {"type": "Concrete", "content": {"module": "string", "simpleName": "Template", "members": [{"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "delimiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "idpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "braceidpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223372880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042299114944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315711200"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315711648"}, "name": "substitute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315712096"}, "name": "safe_substitute"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042223372880": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315711200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059008"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "140042315711648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059008"}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}}, "140042315712096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059008"}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042512502976"}]}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}}, "140042298245536": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042298245888": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298245536"}], "isAbstract": false}}, "140042298246240": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298245888"}], "isAbstract": false}}, "140042298246592": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298245888"}], "isAbstract": false}}, "140042298246944": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298245536"}, {"nodeId": "140042307304288"}], "isAbstract": false}}, "140042298247296": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298245536"}], "isAbstract": false}}, "140042298248000": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298248352": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298248704": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298249056": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298249408": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298249760": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298250112": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298250464": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298250816": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298251168": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298251520": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298251872": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298252224": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298247648"}], "isAbstract": false}}, "140042298252576": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298252224"}], "isAbstract": false}}, "140042298252928": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298252224"}], "isAbstract": false}}, "140042298253280": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042310922560"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "140042298252224"}], "isAbstract": false}}, "140042310922560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298253280"}, {"nodeId": "140042286042688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "140042286042688": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042298253632": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298252224"}], "isAbstract": false}}, "140042298253984": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298252224"}], "isAbstract": false}}, "140042298254336": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "140042298252224"}], "isAbstract": false}}, "140042303207584": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315860000"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315860448"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315860896"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315861344"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315861792"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140042303207232"}], "isAbstract": false}}, "140042315860000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207584"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042285817120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140042285817120": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042315860448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207584"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042285817344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042285817344": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042315860896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207584"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042285817456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042285817456": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042298245184"}]}}, "140042298245184": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315719264"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315719712"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315720160"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315720608"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315721056"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042315719264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298245184"}, {"nodeId": "140042286040448"}, {"nodeId": "140042286040560"}, {"nodeId": "140042286040672"}, {"nodeId": "140042286040784"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "140042286040448": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042286040560": {"type": "Union", "content": {"items": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042286040672": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042286040784": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315719712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298245184"}, {"nodeId": "140042286040896"}, {"nodeId": "140042286041008"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "140042286040896": {"type": "Union", "content": {"items": [{"nodeId": "140042307290560"}, {"nodeId": "140042307290912"}, {"nodeId": "140042307290208"}]}}, "140042286041008": {"type": "Union", "content": {"items": [{"nodeId": "140042298255040"}, {"nodeId": "140042307290208"}, {"nodeId": "N"}]}}, "140042315720160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298245184"}, {"nodeId": "140042307290208"}, {"nodeId": "140042286041120"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "140042286041120": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042315720608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298245184"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315721056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298245184"}, {"nodeId": "140042512502976"}], "returnType": {"nodeId": "140042512503328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315861344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207584"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042315861792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207584"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042303207936": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307062688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042298254688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315862240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315862688"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315863136"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315863584"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315864032"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315864480"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "140042303207232"}], "isAbstract": false}}, "140042307062688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315862240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207936"}, {"nodeId": "140042285817568"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042285817680"}, {"nodeId": "140042512503328"}, {"nodeId": "140042307290208"}, {"nodeId": "140042285861568"}, {"nodeId": "140042298254688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "140042285817568": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042285817680": {"type": "Union", "content": {"items": [{"nodeId": "140042285861344"}, {"nodeId": "N"}]}}, "140042285861344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207232"}], "returnType": {"nodeId": "140042303208288"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042285861568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042315862688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207936"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042285817904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "140042285817904": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042315863136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207936"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042285818128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042285818128": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}}, "140042315863584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207936"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042315864032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207936"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042315864480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042303207936"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "140042223059712": {"type": "Concrete", "content": {"module": "textwrap", "simpleName": "TextWrapper", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042223379824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sentence_end_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "wordsep_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "wordsep_simple_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042302649824", "args": [{"nodeId": "140042307290208"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "unicode_whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "uspace", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315866944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315867392"}, "name": "_munge_whitespace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315867840"}, "name": "_split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315868288"}, "name": "_fix_sentence_endings"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reversed_chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cur_line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cur_len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315868736"}, "name": "_handle_long_word"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315869184"}, "name": "_wrap_chunks"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315869632"}, "name": "_split_chunks"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315870080"}, "name": "wrap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315870528"}, "name": "fill"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042223379824": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042315866944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512503328"}, {"nodeId": "140042512514240"}, {"nodeId": "140042223380608"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "width", "initial_indent", "subsequent_indent", "expand_tabs", "replace_whitespace", "fix_sentence_endings", "break_long_words", "drop_whitespace", "break_on_hyphens", "tabsize", "max_lines", "placeholder"]}}, "140042223380608": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042315867392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "140042315867840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "140042315868288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}}, "140042315868736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "reversed_chunks", "cur_line", "cur_len", "width"]}}, "140042315869184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}}, "140042315869632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "140042315870080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307292320", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "140042315870528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059712"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "140042223059360": {"type": "Concrete", "content": {"module": "string", "simpleName": "Formatter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042223373104"}, "items": [{"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "format"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "140042223373216"}, "items": [{"kind": "Variable", "content": {"name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursion_depth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "auto_arg_index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315715232"}, "name": "_vformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315715680"}, "name": "parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "field_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315716128"}, "name": "get_field"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315716576"}, "name": "get_value"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315717024"}, "name": "check_unused_args"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315717472"}, "name": "format_field"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315717920"}, "name": "convert_field"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042223373104": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042315713440"}, {"nodeId": "140042315713888"}]}}, "140042315713440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "140042315713888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307290208"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "140042223373216": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042315714336"}, {"nodeId": "140042315714784"}]}}, "140042315714336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "140042307290208"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}}, "140042315714784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "140042307290208"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}}, "140042315715232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, {"nodeId": "140042307607840", "args": [{"nodeId": "140042223374336"}]}, {"nodeId": "140042512514240"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042223374560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format_string", "args", "kwargs", "used_args", "recursion_depth", "auto_arg_index"]}}, "140042223374336": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042223374560": {"type": "Tuple", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042512514240"}]}}, "140042315715680": {"type": "Function", "content": {"typeVars": [".-1.140042315715680"], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": ".-1.140042315715680"}], "returnType": {"nodeId": "140042512507200", "args": [{"nodeId": "140042223375120"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_string"]}}, ".-1.140042315715680": {"type": "TypeVar", "content": {"varName": "StrOrLiteralStr", "values": [{"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "upperBound": {"nodeId": "140042512502976"}, "def": "140042315715680", "variance": "INVARIANT"}}, "140042223375120": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.140042315715680"}, {"nodeId": "140042223374672"}, {"nodeId": "140042223374784"}, {"nodeId": "140042223374896"}]}}, "140042223374672": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042315715680"}, {"nodeId": "N"}]}}, "140042223374784": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042315715680"}, {"nodeId": "N"}]}}, "140042223374896": {"type": "Union", "content": {"items": [{"nodeId": ".-1.140042315715680"}, {"nodeId": "N"}]}}, "140042315716128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307290208"}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "field_name", "args", "kwargs"]}}, "140042315716576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042223375568"}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "args", "kwargs"]}}, "140042223375568": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042315717024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "140042307607840", "args": [{"nodeId": "140042223376016"}]}, {"nodeId": "140042512511072", "args": [{"nodeId": "A"}]}, {"nodeId": "140042512512480", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "used_args", "args", "kwargs"]}}, "140042223376016": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "140042307290208"}]}}, "140042315717472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "A"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "format_spec"]}}, "140042315717920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042223059360"}, {"nodeId": "A"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "conversion"]}}, "140042299127264": {"type": "Protocol", "content": {"module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315723296"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315723744"}, "name": "readline"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "protocolMembers": ["read", "readline"]}}, "140042315723296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127264"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042315723744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127264"}], "returnType": {"nodeId": "140042307290560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042299127616": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315724192"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315724640"}, "name": "raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315725088"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315725536"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042315725984"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042315724192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127616"}, {"nodeId": "140042307616288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}}, "140042315724640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127616"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315725088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042315725536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127616"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307291264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042315725984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127616"}, {"nodeId": "140042307291264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042299127968": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042307298304"}], "isAbstract": false}}, "140042299128320": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042299127968"}], "isAbstract": false}}, "140042299128672": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "140042299127968"}], "isAbstract": false}}, "140042299129024": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "content": {"name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512512480", "args": [{"nodeId": "140042512513536"}, {"nodeId": "140042282251232"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512503328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512513536"}, {"nodeId": "140042227101792"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306882912"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306883360"}, "name": "reducer_override"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306884256"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306884704"}, "name": "clear_memo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306885152"}, "name": "persistent_id"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042282251232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "140042227541248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042227541248": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042227546512"}}}, "140042227546512": {"type": "Union", "content": {"items": [{"nodeId": "140042307290208"}, {"nodeId": "140042227540240"}, {"nodeId": "140042227544384"}, {"nodeId": "140042227545280"}, {"nodeId": "140042227546400"}]}}, "140042227540240": {"type": "Tuple", "content": {"items": [{"nodeId": "140042227466752"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}]}}, "140042227466752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042227544384": {"type": "Tuple", "content": {"items": [{"nodeId": "140042269013408"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}}, "140042269013408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042227545280": {"type": "Tuple", "content": {"items": [{"nodeId": "140042227360800"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140042227545168"}]}}, "140042227360800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042227545168": {"type": "Union", "content": {"items": [{"nodeId": "140042512507552", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042227546400": {"type": "Tuple", "content": {"items": [{"nodeId": "140042227355648"}, {"nodeId": "140042307291968", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "140042227546064"}, {"nodeId": "140042227546288"}]}}, "140042227355648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "140042227546064": {"type": "Union", "content": {"items": [{"nodeId": "140042512507552", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042227546288": {"type": "Union", "content": {"items": [{"nodeId": "140042512507552", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042227101792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129376"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "140042299129376": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "content": {"name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042512514240"}, {"nodeId": "140042227353408"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306885600"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306886496"}, "name": "load"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306886944"}, "name": "find_class"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042306887392"}, "name": "persistent_load"}}], "typeVars": [], "bases": [{"nodeId": "140042512502976"}], "isAbstract": false}}, "140042227353408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042306885600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129376"}, {"nodeId": "140042299127264"}, {"nodeId": "140042512503328"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}, {"nodeId": "140042223386800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "fix_imports", "encoding", "errors", "buffers"]}}, "140042223386800": {"type": "Union", "content": {"items": [{"nodeId": "140042512507200", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "140042306886496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042306886944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129376"}, {"nodeId": "140042307290208"}, {"nodeId": "140042307290208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "140042306887392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129376"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}}, "140042306882912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129024"}, {"nodeId": "140042298605984", "args": [{"nodeId": "140042307290560"}]}, {"nodeId": "140042227547296"}, {"nodeId": "140042512503328"}, {"nodeId": "140042227547072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}}, "140042227547296": {"type": "Union", "content": {"items": [{"nodeId": "140042512514240"}, {"nodeId": "N"}]}}, "140042227547072": {"type": "TypeAlias", "content": {"target": {"nodeId": "140042299150224"}}}, "140042299150224": {"type": "Union", "content": {"items": [{"nodeId": "140042232067264"}, {"nodeId": "N"}]}}, "140042232067264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299127616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042306883360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042306884256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "140042306884704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "140042306885152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042299129024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "140042130992800": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042130622944"}, {"nodeId": "140042130620928"}, {"nodeId": "140042130628768"}, {"nodeId": "140042130629888"}]}}, "140042130622944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}}, "140042130620928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140042130628768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042130629888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042130992912": {"type": "Overloaded", "content": {"items": [{"nodeId": "140042130632800"}, {"nodeId": "140042130635040"}, {"nodeId": "140042130635264"}, {"nodeId": "140042130604096"}]}}, "140042130632800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}}, "140042130635040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "140042512514240"}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": "140042307290208"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "140042130635264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042298390336", "args": [{"nodeId": ".1.140042307501248"}, {"nodeId": "140042512514240"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042130604096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "140042512507200", "args": [{"nodeId": ".1.140042307501248"}]}], "returnType": {"nodeId": "140042307501248", "args": [{"nodeId": ".1.140042307501248"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "140042130608128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "140042130489760"}, "argKinds": [], "argNames": []}}, "140042130610592": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "140042130490816"}, "argKinds": [], "argNames": []}}, "140042130612384": {"type": "Function", "content": {"typeVars": [".-1.140042130612384"], "argTypes": [{"nodeId": "140042512506496", "args": [{"nodeId": ".-1.140042130612384"}]}], "returnType": {"nodeId": ".-1.140042130612384"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.140042130612384": {"type": "TypeVar", "content": {"varName": "T", "values": [], "upperBound": {"nodeId": "140042512502976"}, "def": "140042130612384", "variance": "INVARIANT"}}}, "exprTypes": {"subtypes": [{"startOffset": 205, "endOffset": 223, "line": 13, "type": {"nodeId": "140042130992800"}}, {"startOffset": 226, "endOffset": 226, "line": 13, "type": {"nodeId": "140042122656032"}}, {"startOffset": 304, "endOffset": 322, "line": 18, "type": {"nodeId": "140042130992912"}}, {"startOffset": 325, "endOffset": 325, "line": 18, "type": {"nodeId": "140042122655808"}}, {"startOffset": 372, "endOffset": 375, "line": 22, "type": {"nodeId": "N"}}, {"startOffset": 379, "endOffset": 388, "line": 25, "type": {"nodeId": "140042130754912"}}, {"startOffset": 390, "endOffset": 390, "line": 25, "type": {"nodeId": "140042130608128"}}, {"startOffset": 510, "endOffset": 513, "line": 35, "type": {"nodeId": "140042130490816"}}, {"startOffset": 558, "endOffset": 561, "line": 39, "type": {"nodeId": "N"}}, {"startOffset": 565, "endOffset": 574, "line": 42, "type": {"nodeId": "140042130759168"}}, {"startOffset": 576, "endOffset": 580, "line": 42, "type": {"nodeId": "140042130610592"}}, {"startOffset": 587, "endOffset": 587, "line": 45, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}}, {"startOffset": 670, "endOffset": 672, "line": 52, "type": {"nodeId": "140042130612384"}}, {"startOffset": 674, "endOffset": 674, "line": 52, "type": {"nodeId": "140042512506496", "args": [{"nodeId": ".-1.140042222980672"}]}}, {"startOffset": 678, "endOffset": 679, "line": 55, "type": {"nodeId": "140042512514240"}}]}, "definitions": {"subtypes": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307290208"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292672", "args": [{"nodeId": "140042307290208"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "P": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042130489408"}}}, "S": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042130489760"}}}, "S1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042130490112"}}}, "func_for_P": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042130754912"}, "name": "func_for_P"}}, "R": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042130490464"}}}, "RImpl": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042130490816"}}}, "func_for_R": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042130759168"}, "name": "func_for_R"}}, "a": {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042307292320", "args": [{"nodeId": "140042512514240"}]}, "isInitializedInClass": false}}, "func_abs": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "140042222980672"}, "name": "func_abs"}}, "b": {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "140042512514240"}, "isInitializedInClass": false}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307610304"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307610656"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307611008"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307611360"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307501248"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298378368"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298378720"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298379072"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307611712"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307612064"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307612416"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307612768"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307501600"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307613120"}}}}, "numpy": {"PytestTester": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202211328"}}}, "_ctypes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185614688"}}}, "_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948000"}}}, "_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198140000"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948704"}}}, "_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198150208"}}}, "NBitBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189949760"}}}, "_256Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189950112"}}}, "_128Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189950464"}}}, "_96Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189950816"}}}, "_80Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189951168"}}}, "_64Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189951520"}}}, "_32Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189951872"}}}, "_16Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189952224"}}}, "_8Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189952576"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255488"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255840"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256192"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256544"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256896"}}}, "_BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185606240"}}}, "_BoolBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185606592"}}}, "_BoolSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185606944"}}}, "_BoolTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185607296"}}}, "_BoolMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185607648"}}}, "_BoolDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185608000"}}}, "_TD64Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185608352"}}}, "_IntTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185608704"}}}, "_UnsignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185609056"}}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185609408"}}}, "_UnsignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185609760"}}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185610112"}}}, "_SignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185610464"}}}, "_SignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185610816"}}}, "_SignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185611168"}}}, "_SignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185611520"}}}, "_FloatOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185611872"}}}, "_FloatMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185612224"}}}, "_FloatDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185612576"}}}, "_ComplexOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185612928"}}}, "_NumberOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185613280"}}}, "_ComparisonOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185614336"}}}, "flagsobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189962784"}}}, "Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181259008"}}}, "_IOProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185615040"}}}, "_MemMapIOProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185615392"}}}, "_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185615744"}}}, "dtype": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181260416"}}}, "flatiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181260768"}}}, "_ArrayOrScalarCommon": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185616096"}}}, "_SupportsItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185616448"}}}, "_SupportsReal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185616800"}}}, "_SupportsImag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185617152"}}}, "ndarray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185617504"}}}, "generic": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185617856"}}}, "number": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185618208"}}}, "bool_": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185618560"}}}, "object_": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185618912"}}}, "_DatetimeScalar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185619264"}}}, "datetime64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185619616"}}}, "integer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185619968"}}}, "signedinteger": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185620320"}}}, "timedelta64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185620672"}}}, "unsignedinteger": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185621024"}}}, "inexact": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180853824"}}}, "floating": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180854176"}}}, "complexfloating": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180854528"}}}, "flexible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180854880"}}}, "void": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180855232"}}}, "character": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180855584"}}}, "bytes_": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180855936"}}}, "str_": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180856288"}}}, "ufunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180856640"}}}, "_CopyMode": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180856992"}}}, "ModuleDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180857344"}}}, "VisibleDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180857696"}}}, "ComplexWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180858048"}}}, "RankWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180858400"}}}, "TooHardError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180858752"}}}, "AxisError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180859104"}}}, "errstate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180859456"}}}, "ndenumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181261120"}}}, "ndindex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180859808"}}}, "DataSource": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180860160"}}}, "broadcast": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180860512"}}}, "busdaycalendar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180860864"}}}, "finfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181261472"}}}, "iinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180861216"}}}, "format_parser": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180861568"}}}, "recarray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180861920"}}}, "record": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180862272"}}}, "nditer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180862624"}}}, "memmap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180862976"}}}, "vectorize": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180863328"}}}, "poly1d": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180863680"}}}, "matrix": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180864032"}}}, "chararray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180864384"}}}, "_SupportsDLPack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180864736"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307615232"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512504032"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512504384"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512504736"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512505088"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512505440"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512505792"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512506144"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307600448"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307600800"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307601152"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307601504"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307601856"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307602208"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512506496"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512506848"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307602560"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307602912"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512507200"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512507552"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512507904"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512508256"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512508608"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512508960"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307603264"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512509312"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512509664"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512510016"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512510368"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512510720"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512511072"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512511424"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512511776"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512512128"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307603616"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307603968"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307604320"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307604672"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512512480"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512512832"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307605024"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307605376"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307605728"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307606080"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307606432"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512513184"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512502976"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512503328"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512503680"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512513536"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512513888"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512514240"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042512514592"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307289152"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307289504"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307289856"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307290208"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307290560"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307290912"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307291264"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307291616"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307291968"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307292320"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307292672"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307607840"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307608192"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307608544"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307293024"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307293376"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307293728"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298913568"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307294080"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307608896"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307294432"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307609248"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298913920"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307294784"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307295136"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307295488"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307609600"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307295840"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307296192"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298914272"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307609952"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307296544"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307296896"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307297248"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307297600"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307297952"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307298304"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307298656"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307299008"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307299360"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307299712"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307300064"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307300416"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307300768"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307301120"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307301472"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307301824"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307302176"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307302528"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307302880"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307303232"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307303584"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307303936"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307304288"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307304640"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307304992"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307485760"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307486112"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307486464"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307486816"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307487168"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307487520"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307487872"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307488224"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307488576"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307488928"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307489280"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307489632"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307489984"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307490336"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307490688"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307491040"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307491392"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307491744"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307492096"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307492448"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307492800"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307493152"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307493504"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307493856"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307494208"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307494560"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307494912"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307495264"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307495616"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307495968"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307496320"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307496672"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307497024"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307497376"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307497728"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307498080"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307498432"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307498784"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307499136"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307499488"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307499840"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302644544"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298915680"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298916032"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298916384"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302644896"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299113536"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299113888"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299114240"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302645248"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299114592"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307606784"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307607136"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307607488"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298383648"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298384000"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298384352"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298384704"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298385056"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298385408"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298385760"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298386112"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298386464"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298386816"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298387168"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298387520"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298387872"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298388224"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298388576"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298388928"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298389280"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298389632"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298389984"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298390336"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298390688"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298391040"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298391392"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298391744"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298392096"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298605632"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298605984"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298606336"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298606688"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298607040"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298607392"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298607744"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298608096"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307613472"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307613824"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307614176"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307614528"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307614880"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307615232"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307615584"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307615936"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307616288"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302636096"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302636448"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302636800"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302637152"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302637504"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302637856"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302638208"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302638560"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302638912"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302639264"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302639616"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302639968"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302640320"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302640672"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302641024"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302641376"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302641728"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302642080"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302642432"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302642784"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302643136"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302643488"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302643840"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302644192"}}}}, "numpy.core._internal": {"_ctypes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185614688"}}}}, "numpy._typing._callable": {"_BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185606240"}}}, "_BoolBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185606592"}}}, "_BoolSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185606944"}}}, "_BoolTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185607296"}}}, "_BoolMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185607648"}}}, "_BoolDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185608000"}}}, "_TD64Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185608352"}}}, "_IntTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185608704"}}}, "_UnsignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185609056"}}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185609408"}}}, "_UnsignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185609760"}}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185610112"}}}, "_SignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185610464"}}}, "_SignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185610816"}}}, "_SignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185611168"}}}, "_SignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185611520"}}}, "_FloatOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185611872"}}}, "_FloatMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185612224"}}}, "_FloatDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185612576"}}}, "_ComplexOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185612928"}}}, "_NumberOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185613280"}}}, "_SupportsLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185613632"}}}, "_SupportsGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185613984"}}}, "_ComparisonOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042185614336"}}}}, "numpy.core.records": {"_SupportsReadInto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181249504"}}}}, "numpy.core.multiarray": {"_SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189962432"}}}, "flagsobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189962784"}}}}, "numpy.core.numerictypes": {"_CastFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189961728"}}}, "_typedict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181259360"}}}}, "numpy.lib.arraypad": {"_ModeFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189961376"}}}}, "numpy.lib.arrayterator": {"Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181259008"}}}}, "numpy.lib.function_base": {"_TrimZerosSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189960672"}}}, "_SupportsWriteFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189961024"}}}}, "numpy.lib.index_tricks": {"nd_grid": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189958208"}}}, "MGridClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189958560"}}}, "OGridClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189958912"}}}, "AxisConcatenator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189959264"}}}, "RClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189959616"}}}, "CClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189959968"}}}, "IndexExpression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189960320"}}}}, "numpy.lib.npyio": {"_SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189956096"}}}, "_SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189956448"}}}, "_SupportsReadSeek": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189956800"}}}, "_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189957152"}}}, "BagObj": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189957504"}}}, "NpzFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189957856"}}}}, "numpy.lib.shape_base": {"_ArrayWrap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189954688"}}}, "_ArrayPrepare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189955040"}}}, "_SupportsArrayWrap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189955392"}}}, "_SupportsArrayPrepare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189955744"}}}}, "numpy.lib.stride_tricks": {"DummyArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189954336"}}}}, "numpy.lib.type_check": {"_SupportsReal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189953632"}}}, "_SupportsImag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189953984"}}}}, "numpy.lib.utils": {"_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189952928"}}}, "_Deprecate": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189953280"}}}}, "numpy._pytesttester": {"PytestTester": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202211328"}}}}, "numpy._typing": {"NBitBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189949760"}}}, "_256Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189950112"}}}, "_128Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189950464"}}}, "_96Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189950816"}}}, "_80Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189951168"}}}, "_64Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189951520"}}}, "_32Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189951872"}}}, "_16Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189952224"}}}, "_8Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189952576"}}}, "_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198140000"}}}, "_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198150208"}}}, "_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948000"}}}, "_SupportsArrayFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948352"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948704"}}}, "_GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198149152"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255488"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255840"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256192"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256544"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256896"}}}}, "numpy.ctypeslib": {"_ndptr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189949056"}}}, "_concrete_ndptr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189949408"}}}}, "numpy.lib": {"NumpyVersion": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223071680"}}}, "Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181259008"}}}}, "numpy.linalg": {"LinAlgError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181249152"}}}}, "numpy.ma": {"MAError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198150912"}}}, "MaskError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198151264"}}}, "MaskedArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181257248"}}}, "mvoid": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181257600"}}}}, "numpy.polynomial": {"Chebyshev": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181248448"}}}, "Hermite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181248096"}}}, "HermiteE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181247744"}}}, "Laguerre": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181247392"}}}, "Legendre": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181247040"}}}, "Polynomial": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180869664"}}}}, "numpy.random": {"Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181254784"}}}, "MT19937": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181254432"}}}, "PCG64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181253024"}}}, "PCG64DXSM": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181253376"}}}, "Philox": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181251968"}}}, "SFC64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181250912"}}}, "BitGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180869312"}}}, "SeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180868960"}}}, "RandomState": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181249856"}}}}, "numpy.testing": {"IgnoreException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180865440"}}}, "clear_and_catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180865792"}}}, "KnownFailureException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180865088"}}}, "suppress_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180866848"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302650176"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298914624"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299115296"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302650528"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299115648"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299116000"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299116352"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299116704"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299117056"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299117408"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299117760"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299118112"}}}}, "mmap": {"mmap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202210976"}}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215091264"}}}, "PyDLL": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215091616"}}}, "LibraryLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202210624"}}}, "_FuncPointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215091968"}}}, "_NamedFuncPointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215092320"}}}, "c_byte": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215092672"}}}, "c_char": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215093024"}}}, "c_char_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215093376"}}}, "c_double": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215093728"}}}, "c_longdouble": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215094080"}}}, "c_float": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215094432"}}}, "c_int": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215094784"}}}, "c_int8": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215095136"}}}, "c_int16": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215095488"}}}, "c_int32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215095840"}}}, "c_int64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202202176"}}}, "c_long": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202202528"}}}, "c_longlong": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202202880"}}}, "c_short": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202203232"}}}, "c_size_t": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202203584"}}}, "c_ssize_t": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202203936"}}}, "c_ubyte": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202204288"}}}, "c_uint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202204640"}}}, "c_uint8": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202204992"}}}, "c_uint16": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202205344"}}}, "c_uint32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202205696"}}}, "c_uint64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202206048"}}}, "c_ulong": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202206400"}}}, "c_ulonglong": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202206752"}}}, "c_ushort": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202207104"}}}, "c_void_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202207456"}}}, "c_wchar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202207808"}}}, "c_wchar_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202208160"}}}, "c_bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202208512"}}}, "py_object": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202208864"}}}, "BigEndianStructure": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202209216"}}}, "LittleEndianStructure": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202209568"}}}}, "array": {"array": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215086336"}}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198140352"}}}, "timezone": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198140704"}}}, "date": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198141408"}}}, "time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198141760"}}}, "timedelta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198142112"}}}, "datetime": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198142464"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303204768"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303205120"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303205472"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303205824"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303206176"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303206528"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303206880"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307500192"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307500544"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042307500896"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298257504"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298257856"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298258208"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298258560"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298258912"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298259264"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298259616"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298259968"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298260320"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298260672"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298261024"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298376256"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298376608"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298376960"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298377312"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298377664"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298378016"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302649472"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302649824"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299114944"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298608800"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298609152"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298609504"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298609856"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298610208"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298610560"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298610912"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298611264"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298611616"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298611968"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298612320"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298612672"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298613024"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298613376"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298613728"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298614080"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298614432"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298614784"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298615136"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298615488"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298615840"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298616192"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298616544"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298616896"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298617248"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298617600"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298617952"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298618304"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298618656"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298619008"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298619360"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298619712"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298620064"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298620416"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298620768"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298621120"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298621472"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298785856"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298786208"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298786560"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298786912"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298787264"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298787616"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298787968"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298788320"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298788672"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298789024"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298789376"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298789728"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298790080"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298790432"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298790784"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298791136"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298791488"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298791840"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298792192"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298792544"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298792896"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298793248"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298793600"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298793952"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298794304"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298794656"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298795008"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298795360"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298795712"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298796064"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298796416"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298796768"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298797120"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298797472"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298797824"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298798176"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298798528"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298798880"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298799232"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298799584"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298799936"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298800288"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298800640"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298800992"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298801344"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298801696"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298900544"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298900896"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298901248"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298901600"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298901952"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298902304"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298902656"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298903008"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298903360"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298903712"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298904064"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298904416"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298904768"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298905120"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298905472"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298905824"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298906176"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298906528"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298906880"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298907232"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298907584"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298907936"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298908288"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298908640"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298908992"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298909344"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298909696"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298910048"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298910400"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298910752"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298911104"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298911456"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298911808"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298912160"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298912512"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302650880"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302651232"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302651584"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302651936"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303193152"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303193504"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303193856"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303194208"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303194560"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303194912"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303195264"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303195616"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303195968"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299126560"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303200544"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303200896"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303201248"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303201600"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303201952"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303202304"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303202656"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303203008"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303203360"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303203712"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303204064"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303204416"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303199840"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299119520"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299119872"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299120224"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303200192"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299120576"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299120928"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299121280"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299121632"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298255392"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298255744"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298256096"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298256448"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298256800"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298257152"}}}}, "numpy._typing._generic_alias": {"_GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198149152"}}}}, "numpy._typing._nested_sequence": {"_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198140000"}}}}, "__future__": {"_Feature": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215085984"}}}}, "numpy.ma.mrecords": {"MaskedRecords": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181261824"}}}}, "zipfile": {"BadZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215082112"}}}, "LargeZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215082464"}}}, "_ZipStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215082816"}}}, "_SupportsReadSeekTell": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215083168"}}}, "_ClosableZipStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215083520"}}}, "ZipExtFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215083872"}}}, "_Writer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215084224"}}}, "ZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215084576"}}}, "PyZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215084928"}}}, "ZipInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215085280"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215085632"}}}}, "ast": {"_ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223072032"}}}, "Num": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223072384"}}}, "Str": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223072736"}}}, "Bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223073088"}}}, "NameConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223073440"}}}, "Ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223073792"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223074144"}}}, "ExtSlice": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223074496"}}}, "Index": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223074848"}}}, "Suite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215080000"}}}, "AugLoad": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215080352"}}}, "AugStore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215080704"}}}, "Param": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215081056"}}}, "NodeVisitor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215081408"}}}, "NodeTransformer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215081760"}}}}, "numpy._typing._dtype_like": {"_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198150208"}}}}, "numpy._typing._array_like": {"_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948000"}}}, "_SupportsArrayFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948352"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189948704"}}}}, "numpy._typing._ufunc": {"_SupportsArrayUFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255136"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255488"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181255840"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256192"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256544"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181256896"}}}}, "numpy.lib.mixins": {"NDArrayOperatorsMixin": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181248800"}}}}, "numpy.lib._version": {"NumpyVersion": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223071680"}}}}, "math": {"_SupportsCeil": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223070624"}}}, "_SupportsFloor": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223070976"}}}, "_SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223071328"}}}}, "numpy.ma.extras": {"_fromnxfunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198154784"}}}, "_fromnxfunction_single": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189946944"}}}, "_fromnxfunction_seq": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189947296"}}}, "_fromnxfunction_allargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042189947648"}}}, "MAxisConcatenator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181258304"}}}, "mr_class": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181258656"}}}}, "numpy.ma.core": {"MaskedArrayFutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198150560"}}}, "MAError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198150912"}}}, "MaskError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198151264"}}}, "_MaskedUFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198151616"}}}, "_MaskedUnaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198151968"}}}, "_MaskedBinaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198152320"}}}, "_DomainedBinaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198152672"}}}, "_MaskedPrintOption": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198153024"}}}, "MaskedIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198153376"}}}, "MaskedArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181257248"}}}, "mvoid": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181257600"}}}, "MaskedConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181257952"}}}, "_extrema_operation": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198153728"}}}, "_frommethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198154080"}}}, "_convert2ma": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198154432"}}}}, "numpy.polynomial.chebyshev": {"Chebyshev": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181248448"}}}}, "numpy.polynomial.hermite": {"Hermite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181248096"}}}}, "numpy.polynomial.hermite_e": {"HermiteE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181247744"}}}}, "numpy.polynomial.laguerre": {"Laguerre": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181247392"}}}}, "numpy.polynomial.legendre": {"Legendre": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181247040"}}}}, "numpy.polynomial.polynomial": {"Polynomial": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180869664"}}}}, "numpy.random._generator": {"Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181254784"}}}}, "numpy.random._mt19937": {"MT19937": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181254432"}}}}, "numpy.random._pcg64": {"PCG64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181253024"}}}, "PCG64DXSM": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181253376"}}}}, "numpy.random._philox": {"Philox": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181251968"}}}}, "numpy.random._sfc64": {"SFC64": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181250912"}}}}, "numpy.random.bit_generator": {"ISeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180867904"}}}, "ISpawnableSeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180868256"}}}, "SeedlessSeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180868608"}}}, "SeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180868960"}}}, "BitGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180869312"}}}}, "numpy.random.mtrand": {"RandomState": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042181249856"}}}}, "numpy.testing._private.utils": {"KnownFailureException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180865088"}}}, "IgnoreException": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180865440"}}}, "clear_and_catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180865792"}}}, "_clear_and_catch_warnings_with_records": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180866144"}}}, "_clear_and_catch_warnings_without_records": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180866496"}}}, "suppress_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042180866848"}}}}, "unittest": {"FunctionTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198144928"}}}, "SkipTest": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198143872"}}}, "TestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198144576"}}}, "TestLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198147040"}}}, "TestProgram": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198147744"}}}, "TestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198142816"}}}, "TextTestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198146336"}}}, "TextTestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198146688"}}}, "BaseTestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198148448"}}}, "TestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198148800"}}}, "IsolatedAsyncioTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198145984"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302645600"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302645952"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302646304"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302646656"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302647008"}}}}, "_ctypes": {"_CDataMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215086688"}}}, "_CData": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215087040"}}}, "_SimpleCData": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215087392"}}}, "_CanCastTo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215087744"}}}, "_PointerLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215088096"}}}, "_Pointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202209920"}}}, "_CArgObject": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215088448"}}}, "CFuncPtr": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215088800"}}}, "_CField": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215089152"}}}, "_StructUnionMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215089504"}}}, "_StructUnionBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215089856"}}}, "Union": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215090208"}}}, "Structure": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215090560"}}}, "Array": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202210272"}}}, "ArgumentError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042215090912"}}}}, "time": {"struct_time": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223069920"}}}, "_ClockInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223070272"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302648768"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302649120"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298379424"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298379776"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299121984"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298380128"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298380480"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298380832"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298381184"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298381536"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298381888"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299122336"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298382240"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298382592"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298382944"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299122688"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299123040"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299123392"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299123744"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299124096"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298383296"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303200896"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303196320"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303197024"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303197728"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303198080"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303198432"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299126912"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303198784"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303199136"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299118464"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299119168"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303199488"}}}}, "functools": {"_lru_cache_wrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223067808"}}}, "partial": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223068160"}}}, "partialmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223068512"}}}, "_SingleDispatchCallable": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223068864"}}}, "singledispatchmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223069216"}}}, "cached_property": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223069568"}}}}, "numpy.polynomial._polybase": {"ABCPolyBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223066752"}}}}, "numpy.polynomial.polyutils": {"RankWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223066400"}}}}, "threading": {"ThreadError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223061472"}}}, "local": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223061824"}}}, "Thread": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223062176"}}}, "_DummyThread": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223062528"}}}, "Lock": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223062880"}}}, "_RLock": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223063232"}}}, "Condition": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223063584"}}}, "Semaphore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223063936"}}}, "BoundedSemaphore": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223064288"}}}, "Event": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223064640"}}}, "Timer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223064992"}}}, "Barrier": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223065344"}}}, "BrokenBarrierError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223065696"}}}}, "unittest.case": {"_BaseTestCaseContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198143520"}}}, "SkipTest": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198143872"}}}, "_SupportsAbsAndDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198144224"}}}, "TestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198144576"}}}, "FunctionTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198144928"}}}, "_AssertRaisesContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198145280"}}}, "_AssertWarnsContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198145632"}}}}, "warnings": {"_OptionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202218016"}}}, "WarningMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198138944"}}}, "catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198139296"}}}}, "unittest.loader": {"TestLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198147040"}}}}, "unittest.main": {"_TestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198147392"}}}, "TestProgram": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198147744"}}}}, "unittest.result": {"TestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198142816"}}}}, "unittest.runner": {"TextTestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198146336"}}}, "TextTestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198146688"}}}}, "unittest.suite": {"BaseTestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198148448"}}}, "TestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198148800"}}}}, "unittest.async_case": {"IsolatedAsyncioTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198145984"}}}}, "json": {"JSONDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223060416"}}}, "JSONDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223060768"}}}, "JSONEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223060064"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302647360"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302647712"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302648064"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042302648416"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298608448"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303196320"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303196672"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303208288"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303208640"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303208992"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299124448"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299124800"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299125152"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299125504"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299125856"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299126208"}}}}, "numpy.compat": {"contextlib_nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202211680"}}}}, "_thread": {"LockType": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223061120"}}}, "_ExceptHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223066048"}}}}, "unittest._log": {"_AssertLogsContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042198148096"}}}}, "logging": {"Filterer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202212032"}}}, "Manager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202212384"}}}, "Logger": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202212736"}}}, "Handler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202213088"}}}, "Formatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202213440"}}}, "BufferingFormatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202213792"}}}, "Filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202214144"}}}, "LogRecord": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202214496"}}}, "LoggerAdapter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202217664"}}}, "StreamHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202214848"}}}, "FileHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202215200"}}}, "NullHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202215552"}}}, "PlaceHolder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202215904"}}}, "RootLogger": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202216256"}}}, "PercentStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202216608"}}}, "StrFormatStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202216960"}}}, "StringTemplateStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202217312"}}}}, "json.decoder": {"JSONDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223060416"}}}, "JSONDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223060768"}}}}, "json.encoder": {"JSONEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223060064"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303208288"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303207232"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298255040"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298254688"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298245536"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298245888"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298246240"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298246592"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298246944"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298247296"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298247648"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298248000"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298248352"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298248704"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298249056"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298249408"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298249760"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298250112"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298250464"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298250816"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298251168"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298251520"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298251872"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298252224"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298252576"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298252928"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298253280"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298253632"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298253984"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298254336"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303207232"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303207584"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042303207936"}}}}, "numpy.compat.py3k": {"contextlib_nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042202211680"}}}}, "textwrap": {"TextWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223059712"}}}}, "string": {"Template": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223059008"}}}, "Formatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042223059360"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042298245184"}}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299127264"}}}, "PickleBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299127616"}}}, "PickleError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299127968"}}}, "PicklingError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299128320"}}}, "UnpicklingError": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299128672"}}}, "Pickler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299129024"}}}, "Unpickler": {"kind": "ClassDef", "content": {"type": {"nodeId": "140042299129376"}}}}}, "names": {"subtypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "numpy", "kind": "Module", "fullname": "numpy"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing.ParamSpec"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "ByteString", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "P", "kind": "LocalType"}, {"name": "S", "kind": "LocalType"}, {"name": "S1", "kind": "LocalType"}, {"name": "func_for_P", "kind": "Other"}, {"name": "R", "kind": "LocalType"}, {"name": "RImpl", "kind": "LocalType"}, {"name": "func_for_R", "kind": "Other"}, {"name": "a", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "func_abs", "kind": "Other"}, {"name": "b", "kind": "Other"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "numpy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "ct", "kind": "Module", "fullname": "ctypes"}, {"name": "_array", "kind": "Module", "fullname": "array"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "ContextDecorator", "kind": "ImportedType", "fullname": "contextlib.ContextDecorator"}, {"name": "contextmanager", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "PytestTester", "kind": "LocalType"}, {"name": "_ctypes", "kind": "LocalType"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_NestedSequence", "kind": "LocalType"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "NBitBase", "kind": "LocalType"}, {"name": "_256Bit", "kind": "LocalType"}, {"name": "_128Bit", "kind": "LocalType"}, {"name": "_96Bit", "kind": "LocalType"}, {"name": "_80Bit", "kind": "LocalType"}, {"name": "_64Bit", "kind": "LocalType"}, {"name": "_32Bit", "kind": "LocalType"}, {"name": "_16Bit", "kind": "LocalType"}, {"name": "_8Bit", "kind": "LocalType"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_BoolOp", "kind": "LocalType"}, {"name": "_BoolBitOp", "kind": "LocalType"}, {"name": "_BoolSub", "kind": "LocalType"}, {"name": "_BoolTrueDiv", "kind": "LocalType"}, {"name": "_BoolMod", "kind": "LocalType"}, {"name": "_BoolDivMod", "kind": "LocalType"}, {"name": "_TD64Div", "kind": "LocalType"}, {"name": "_IntTrueDiv", "kind": "LocalType"}, {"name": "_UnsignedIntOp", "kind": "LocalType"}, {"name": "_UnsignedIntBitOp", "kind": "LocalType"}, {"name": "_UnsignedIntMod", "kind": "LocalType"}, {"name": "_UnsignedIntDivMod", "kind": "LocalType"}, {"name": "_SignedIntOp", "kind": "LocalType"}, {"name": "_SignedIntBitOp", "kind": "LocalType"}, {"name": "_SignedIntMod", "kind": "LocalType"}, {"name": "_SignedIntDivMod", "kind": "LocalType"}, {"name": "_FloatOp", "kind": "LocalType"}, {"name": "_FloatMod", "kind": "LocalType"}, {"name": "_FloatDivMod", "kind": "LocalType"}, {"name": "_ComplexOp", "kind": "LocalType"}, {"name": "_NumberOp", "kind": "LocalType"}, {"name": "_ComparisonOp", "kind": "LocalType"}, {"name": "uint128", "kind": "Other"}, {"name": "uint256", "kind": "Other"}, {"name": "int128", "kind": "Other"}, {"name": "int256", "kind": "Other"}, {"name": "float80", "kind": "Other"}, {"name": "float96", "kind": "Other"}, {"name": "float128", "kind": "Other"}, {"name": "float256", "kind": "Other"}, {"name": "complex160", "kind": "Other"}, {"name": "complex192", "kind": "Other"}, {"name": "complex256", "kind": "Other"}, {"name": "complex512", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ctypeslib", "kind": "Module", "fullname": "numpy.ctypeslib"}, {"name": "fft", "kind": "Module", "fullname": "numpy.fft"}, {"name": "lib", "kind": "Module", "fullname": "numpy.lib"}, {"name": "linalg", "kind": "Module", "fullname": "numpy.linalg"}, {"name": "ma", "kind": "Module", "fullname": "numpy.ma"}, {"name": "polynomial", "kind": "Module", "fullname": "numpy.polynomial"}, {"name": "random", "kind": "Module", "fullname": "numpy.random"}, {"name": "testing", "kind": "Module", "fullname": "numpy.testing"}, {"name": "version", "kind": "Module", "fullname": "numpy.version"}, {"name": "defchararray", "kind": "Module", "fullname": "numpy.core.defchararray"}, {"name": "records", "kind": "Module", "fullname": "numpy.core.records"}, {"name": "char", "kind": "Module", "fullname": "numpy.core.defchararray"}, {"name": "rec", "kind": "Module", "fullname": "numpy.core.records"}, {"name": "linspace", "kind": "Other"}, {"name": "logspace", "kind": "Other"}, {"name": "geomspace", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "argpartition", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "searchsorted", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "require", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "seterr", "kind": "Other"}, {"name": "geterr", "kind": "Other"}, {"name": "setbufsize", "kind": "Other"}, {"name": "getbufsize", "kind": "Other"}, {"name": "seterrcall", "kind": "Other"}, {"name": "geterrcall", "kind": "Other"}, {"name": "_ErrKind", "kind": "Other"}, {"name": "_ErrFunc", "kind": "Other"}, {"name": "_ErrDictOptional", "kind": "LocalType"}, {"name": "set_printoptions", "kind": "Other"}, {"name": "get_printoptions", "kind": "Other"}, {"name": "array2string", "kind": "Other"}, {"name": "format_float_scientific", "kind": "Other"}, {"name": "format_float_positional", "kind": "Other"}, {"name": "array_repr", "kind": "Other"}, {"name": "array_str", "kind": "Other"}, {"name": "set_string_function", "kind": "Other"}, {"name": "printoptions", "kind": "Other"}, {"name": "einsum", "kind": "Other"}, {"name": "einsum_path", "kind": "Other"}, {"name": "ALLOW_THREADS", "kind": "Other"}, {"name": "BUFSIZE", "kind": "Other"}, {"name": "CLIP", "kind": "Other"}, {"name": "MAXDIMS", "kind": "Other"}, {"name": "MAY_SHARE_BOUNDS", "kind": "Other"}, {"name": "MAY_SHARE_EXACT", "kind": "Other"}, {"name": "RAISE", "kind": "Other"}, {"name": "WRAP", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "lexsort", "kind": "Other"}, {"name": "can_cast", "kind": "Other"}, {"name": "min_scalar_type", "kind": "Other"}, {"name": "result_type", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "vdot", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "copyto", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "shares_memory", "kind": "Other"}, {"name": "may_share_memory", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "ascontiguousarray", "kind": "Other"}, {"name": "asfortranarray", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "busday_count", "kind": "Other"}, {"name": "busday_offset", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "datetime_as_string", "kind": "Other"}, {"name": "datetime_data", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "fromiter", "kind": "Other"}, {"name": "is_busday", "kind": "Other"}, {"name": "promote_types", "kind": "Other"}, {"name": "seterrobj", "kind": "Other"}, {"name": "geterrobj", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "frompyfunc", "kind": "Other"}, {"name": "nested_iters", "kind": "Other"}, {"name": "flagsobj", "kind": "LocalType"}, {"name": "zeros_like", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "full", "kind": "Other"}, {"name": "full_like", "kind": "Other"}, {"name": "count_nonzero", "kind": "Other"}, {"name": "isfortran", "kind": "Other"}, {"name": "argwhere", "kind": "Other"}, {"name": "flatnonzero", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "tensordot", "kind": "Other"}, {"name": "roll", "kind": "Other"}, {"name": "rollaxis", "kind": "Other"}, {"name": "moveaxis", "kind": "Other"}, {"name": "cross", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "isscalar", "kind": "Other"}, {"name": "binary_repr", "kind": "Other"}, {"name": "base_repr", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "array_equal", "kind": "Other"}, {"name": "array_equiv", "kind": "Other"}, {"name": "maximum_sctype", "kind": "Other"}, {"name": "issctype", "kind": "Other"}, {"name": "obj2sctype", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "sctype2char", "kind": "Other"}, {"name": "find_common_type", "kind": "Other"}, {"name": "nbytes", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "block", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "emath", "kind": "Module", "fullname": "numpy.lib.scimath"}, {"name": "pad", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}, {"name": "select", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "digitize", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "msort", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "mgrid", "kind": "Other"}, {"name": "ogrid", "kind": "Other"}, {"name": "r_", "kind": "Other"}, {"name": "c_", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "index_exp", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "get_include", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "mat", "kind": "Other"}, {"name": "bmat", "kind": "Other"}, {"name": "_AnyStr_contra", "kind": "Other"}, {"name": "_IOProtocol", "kind": "LocalType"}, {"name": "_MemMapIOProtocol", "kind": "LocalType"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "__git_version__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "cumproduct", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "show_config", "kind": "Other"}, {"name": "_NdArraySubClass", "kind": "Other"}, {"name": "_DTypeScalar_co", "kind": "Other"}, {"name": "_ByteOrder", "kind": "Other"}, {"name": "dtype", "kind": "LocalType"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_FlatIterSelf", "kind": "Other"}, {"name": "flatiter", "kind": "LocalType"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_PartitionKind", "kind": "Other"}, {"name": "_SortKind", "kind": "Other"}, {"name": "_SortSide", "kind": "Other"}, {"name": "_ArraySelf", "kind": "Other"}, {"name": "_ArrayOrScalarCommon", "kind": "LocalType"}, {"name": "_DType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_FlexDType", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_ShapeType2", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_ArrayUInt_co", "kind": "Other"}, {"name": "_ArrayInt_co", "kind": "Other"}, {"name": "_ArrayFloat_co", "kind": "Other"}, {"name": "_ArrayComplex_co", "kind": "Other"}, {"name": "_ArrayNumber_co", "kind": "Other"}, {"name": "_ArrayTD64_co", "kind": "Other"}, {"name": "_dtype", "kind": "Other"}, {"name": "_PyCapsule", "kind": "Other"}, {"name": "_SupportsItem", "kind": "LocalType"}, {"name": "_SupportsReal", "kind": "LocalType"}, {"name": "_SupportsImag", "kind": "LocalType"}, {"name": "ndarray", "kind": "LocalType"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "generic", "kind": "LocalType"}, {"name": "number", "kind": "LocalType"}, {"name": "bool_", "kind": "LocalType"}, {"name": "object_", "kind": "LocalType"}, {"name": "_DatetimeScalar", "kind": "LocalType"}, {"name": "datetime64", "kind": "LocalType"}, {"name": "_IntValue", "kind": "Other"}, {"name": "_FloatValue", "kind": "Other"}, {"name": "_ComplexValue", "kind": "Other"}, {"name": "integer", "kind": "LocalType"}, {"name": "signedinteger", "kind": "LocalType"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "timedelta64", "kind": "LocalType"}, {"name": "unsignedinteger", "kind": "LocalType"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uintp", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "inexact", "kind": "LocalType"}, {"name": "_IntType", "kind": "Other"}, {"name": "_FloatType", "kind": "Other"}, {"name": "floating", "kind": "LocalType"}, {"name": "float16", "kind": "Other"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "longfloat", "kind": "Other"}, {"name": "complexfloating", "kind": "LocalType"}, {"name": "complex64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "singlecomplex", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "complex_", "kind": "Other"}, {"name": "cfloat", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "clongfloat", "kind": "Other"}, {"name": "longcomplex", "kind": "Other"}, {"name": "flexible", "kind": "LocalType"}, {"name": "void", "kind": "LocalType"}, {"name": "character", "kind": "LocalType"}, {"name": "bytes_", "kind": "LocalType"}, {"name": "string_", "kind": "Other"}, {"name": "str_", "kind": "LocalType"}, {"name": "unicode_", "kind": "Other"}, {"name": "Inf", "kind": "Other"}, {"name": "Infinity", "kind": "Other"}, {"name": "NAN", "kind": "Other"}, {"name": "NINF", "kind": "Other"}, {"name": "NZERO", "kind": "Other"}, {"name": "NaN", "kind": "Other"}, {"name": "PINF", "kind": "Other"}, {"name": "PZERO", "kind": "Other"}, {"name": "e", "kind": "Other"}, {"name": "euler_gamma", "kind": "Other"}, {"name": "inf", "kind": "Other"}, {"name": "infty", "kind": "Other"}, {"name": "nan", "kind": "Other"}, {"name": "pi", "kind": "Other"}, {"name": "ERR_IGNORE", "kind": "Other"}, {"name": "ERR_WARN", "kind": "Other"}, {"name": "ERR_RAISE", "kind": "Other"}, {"name": "ERR_CALL", "kind": "Other"}, {"name": "ERR_PRINT", "kind": "Other"}, {"name": "ERR_LOG", "kind": "Other"}, {"name": "ERR_DEFAULT", "kind": "Other"}, {"name": "SHIFT_DIVIDEBYZERO", "kind": "Other"}, {"name": "SHIFT_OVERFLOW", "kind": "Other"}, {"name": "SHIFT_UNDERFLOW", "kind": "Other"}, {"name": "SHIFT_INVALID", "kind": "Other"}, {"name": "FPE_DIVIDEBYZERO", "kind": "Other"}, {"name": "FPE_OVERFLOW", "kind": "Other"}, {"name": "FPE_UNDERFLOW", "kind": "Other"}, {"name": "FPE_INVALID", "kind": "Other"}, {"name": "FLOATING_POINT_SUPPORT", "kind": "Other"}, {"name": "UFUNC_BUFSIZE_DEFAULT", "kind": "Other"}, {"name": "little_endian", "kind": "Other"}, {"name": "True_", "kind": "Other"}, {"name": "False_", "kind": "Other"}, {"name": "UFUNC_PYVALS_NAME", "kind": "Other"}, {"name": "newaxis", "kind": "Other"}, {"name": "ufunc", "kind": "LocalType"}, {"name": "absolute", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_not", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "cbrt", "kind": "Other"}, {"name": "ceil", "kind": "Other"}, {"name": "conj", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "copysign", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "deg2rad", "kind": "Other"}, {"name": "degrees", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "exp2", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expm1", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "float_power", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "fmax", "kind": "Other"}, {"name": "fmin", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frexp", "kind": "Other"}, {"name": "gcd", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "heaviside", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "invert", "kind": "Other"}, {"name": "isfinite", "kind": "Other"}, {"name": "isinf", "kind": "Other"}, {"name": "isnan", "kind": "Other"}, {"name": "isnat", "kind": "Other"}, {"name": "lcm", "kind": "Other"}, {"name": "ldexp", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log1p", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "logaddexp2", "kind": "Other"}, {"name": "logaddexp", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "matmul", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "modf", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "nextafter", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "positive", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rad2deg", "kind": "Other"}, {"name": "radians", "kind": "Other"}, {"name": "reciprocal", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "rint", "kind": "Other"}, {"name": "sign", "kind": "Other"}, {"name": "signbit", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "spacing", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "square", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "trunc", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "_CopyMode", "kind": "LocalType"}, {"name": "ModuleDeprecationWarning", "kind": "LocalType"}, {"name": "VisibleDeprecationWarning", "kind": "LocalType"}, {"name": "ComplexWarning", "kind": "LocalType"}, {"name": "RankWarning", "kind": "LocalType"}, {"name": "TooHardError", "kind": "LocalType"}, {"name": "AxisError", "kind": "LocalType"}, {"name": "_CallType", "kind": "Other"}, {"name": "errstate", "kind": "LocalType"}, {"name": "_no_nep50_warning", "kind": "Other"}, {"name": "_get_promotion_state", "kind": "Other"}, {"name": "_set_promotion_state", "kind": "Other"}, {"name": "ndenumerate", "kind": "LocalType"}, {"name": "ndindex", "kind": "LocalType"}, {"name": "DataSource", "kind": "LocalType"}, {"name": "broadcast", "kind": "LocalType"}, {"name": "busdaycalendar", "kind": "LocalType"}, {"name": "finfo", "kind": "LocalType"}, {"name": "iinfo", "kind": "LocalType"}, {"name": "format_parser", "kind": "LocalType"}, {"name": "recarray", "kind": "LocalType"}, {"name": "record", "kind": "LocalType"}, {"name": "_NDIterFlagsKind", "kind": "Other"}, {"name": "_NDIterOpFlagsKind", "kind": "Other"}, {"name": "nditer", "kind": "LocalType"}, {"name": "_MemMapModeKind", "kind": "Other"}, {"name": "memmap", "kind": "LocalType"}, {"name": "vectorize", "kind": "LocalType"}, {"name": "poly1d", "kind": "LocalType"}, {"name": "matrix", "kind": "LocalType"}, {"name": "_CharType", "kind": "Other"}, {"name": "_CharDType", "kind": "Other"}, {"name": "_CharArray", "kind": "Other"}, {"name": "chararray", "kind": "LocalType"}, {"name": "_SupportsDLPack", "kind": "LocalType"}, {"name": "from_dlpack", "kind": "Other"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "numpy.core._internal": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "ct", "kind": "Module", "fullname": "ctypes"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "c_intp", "kind": "Other"}, {"name": "_CastT", "kind": "Other"}, {"name": "_CT", "kind": "Other"}, {"name": "_PT", "kind": "Other"}, {"name": "_ctypes", "kind": "LocalType"}], "numpy._typing._callable": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "int8", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "float64", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "complex128", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T1_contra", "kind": "Other"}, {"name": "_T2_contra", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "_IntType", "kind": "Other"}, {"name": "_FloatType", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_NumberType_co", "kind": "Other"}, {"name": "_GenericType_co", "kind": "Other"}, {"name": "_BoolOp", "kind": "LocalType"}, {"name": "_BoolBitOp", "kind": "LocalType"}, {"name": "_BoolSub", "kind": "LocalType"}, {"name": "_BoolTrueDiv", "kind": "LocalType"}, {"name": "_BoolMod", "kind": "LocalType"}, {"name": "_BoolDivMod", "kind": "LocalType"}, {"name": "_TD64Div", "kind": "LocalType"}, {"name": "_IntTrueDiv", "kind": "LocalType"}, {"name": "_UnsignedIntOp", "kind": "LocalType"}, {"name": "_UnsignedIntBitOp", "kind": "LocalType"}, {"name": "_UnsignedIntMod", "kind": "LocalType"}, {"name": "_UnsignedIntDivMod", "kind": "LocalType"}, {"name": "_SignedIntOp", "kind": "LocalType"}, {"name": "_SignedIntBitOp", "kind": "LocalType"}, {"name": "_SignedIntMod", "kind": "LocalType"}, {"name": "_SignedIntDivMod", "kind": "LocalType"}, {"name": "_FloatOp", "kind": "LocalType"}, {"name": "_FloatMod", "kind": "LocalType"}, {"name": "_FloatDivMod", "kind": "LocalType"}, {"name": "_ComplexOp", "kind": "LocalType"}, {"name": "_NumberOp", "kind": "LocalType"}, {"name": "_SupportsLT", "kind": "LocalType"}, {"name": "_SupportsGT", "kind": "LocalType"}, {"name": "_ComparisonOp", "kind": "LocalType"}], "numpy._typing._extended_precision": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_80Bit", "kind": "ImportedType", "fullname": "numpy._typing._80Bit"}, {"name": "_96Bit", "kind": "ImportedType", "fullname": "numpy._typing._96Bit"}, {"name": "_128Bit", "kind": "ImportedType", "fullname": "numpy._typing._128Bit"}, {"name": "_256Bit", "kind": "ImportedType", "fullname": "numpy._typing._256Bit"}, {"name": "uint128", "kind": "Other"}, {"name": "uint256", "kind": "Other"}, {"name": "int128", "kind": "Other"}, {"name": "int256", "kind": "Other"}, {"name": "float80", "kind": "Other"}, {"name": "float96", "kind": "Other"}, {"name": "float128", "kind": "Other"}, {"name": "float256", "kind": "Other"}, {"name": "complex160", "kind": "Other"}, {"name": "complex192", "kind": "Other"}, {"name": "complex256", "kind": "Other"}, {"name": "complex512", "kind": "Other"}], "numpy.core.defchararray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "chararray", "kind": "ImportedType", "fullname": "numpy.chararray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "int_", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "U_co", "kind": "Other"}, {"name": "S_co", "kind": "Other"}, {"name": "i_co", "kind": "Other"}, {"name": "b_co", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CharArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "capitalize", "kind": "Other"}, {"name": "center", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "expandtabs", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "ljust", "kind": "Other"}, {"name": "lower", "kind": "Other"}, {"name": "lstrip", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rjust", "kind": "Other"}, {"name": "rpartition", "kind": "Other"}, {"name": "rsplit", "kind": "Other"}, {"name": "rstrip", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitlines", "kind": "Other"}, {"name": "strip", "kind": "Other"}, {"name": "swapcase", "kind": "Other"}, {"name": "title", "kind": "Other"}, {"name": "translate", "kind": "Other"}, {"name": "upper", "kind": "Other"}, {"name": "zfill", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "endswith", "kind": "Other"}, {"name": "find", "kind": "Other"}, {"name": "index", "kind": "Other"}, {"name": "isalpha", "kind": "Other"}, {"name": "isalnum", "kind": "Other"}, {"name": "isdecimal", "kind": "Other"}, {"name": "isdigit", "kind": "Other"}, {"name": "islower", "kind": "Other"}, {"name": "isnumeric", "kind": "Other"}, {"name": "isspace", "kind": "Other"}, {"name": "istitle", "kind": "Other"}, {"name": "isupper", "kind": "Other"}, {"name": "rfind", "kind": "Other"}, {"name": "rindex", "kind": "Other"}, {"name": "startswith", "kind": "Other"}, {"name": "str_len", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "asarray", "kind": "Other"}], "numpy.core.records": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "format_parser", "kind": "ImportedType", "fullname": "numpy.format_parser"}, {"name": "record", "kind": "ImportedType", "fullname": "numpy.record"}, {"name": "recarray", "kind": "ImportedType", "fullname": "numpy.recarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "_ByteOrder", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_SCT", "kind": "Other"}, {"name": "_RecArray", "kind": "Other"}, {"name": "_SupportsReadInto", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "fromarrays", "kind": "Other"}, {"name": "fromrecords", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "array", "kind": "Other"}], "numpy.core.function_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "NDArray", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "linspace", "kind": "Other"}, {"name": "logspace", "kind": "Other"}, {"name": "geomspace", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}], "numpy.core.fromnumeric": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Union", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "uint64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float16", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderACF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_PartitionKind", "kind": "Other"}, {"name": "_SortKind", "kind": "Other"}, {"name": "_SortSide", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_SCT_uifcO", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "argpartition", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "searchsorted", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "var", "kind": "Other"}], "numpy.core._asarray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_Requirements", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_RequirementsWithE", "kind": "Other"}, {"name": "require", "kind": "Other"}], "numpy.core._type_aliases": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "_SCTypes", "kind": "LocalType"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}], "numpy.core._ufunc_config": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "_SupportsWrite", "kind": "ImportedType", "fullname": "numpy._SupportsWrite"}, {"name": "_ErrKind", "kind": "Other"}, {"name": "_ErrFunc", "kind": "Other"}, {"name": "_ErrDict", "kind": "LocalType"}, {"name": "_ErrDictOptional", "kind": "LocalType"}, {"name": "seterr", "kind": "Other"}, {"name": "geterr", "kind": "Other"}, {"name": "setbufsize", "kind": "Other"}, {"name": "getbufsize", "kind": "Other"}, {"name": "seterrcall", "kind": "Other"}, {"name": "geterrcall", "kind": "Other"}], "numpy.core.arrayprint": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_GeneratorContextManager", "kind": "ImportedType", "fullname": "contextlib._GeneratorContextManager"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "longdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_FloatMode", "kind": "Other"}, {"name": "_FormatDict", "kind": "LocalType"}, {"name": "_FormatOptions", "kind": "LocalType"}, {"name": "set_printoptions", "kind": "Other"}, {"name": "get_printoptions", "kind": "Other"}, {"name": "array2string", "kind": "Other"}, {"name": "format_float_scientific", "kind": "Other"}, {"name": "format_float_positional", "kind": "Other"}, {"name": "array_repr", "kind": "Other"}, {"name": "array_str", "kind": "Other"}, {"name": "set_string_function", "kind": "Other"}, {"name": "printoptions", "kind": "Other"}], "numpy.core.einsumfunc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_OptimizeKind", "kind": "Other"}, {"name": "_CastingSafe", "kind": "Other"}, {"name": "_CastingUnsafe", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "einsum", "kind": "Other"}, {"name": "einsum_path", "kind": "Other"}], "numpy.core.multiarray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "busdaycalendar", "kind": "ImportedType", "fullname": "numpy.busdaycalendar"}, {"name": "broadcast", "kind": "ImportedType", "fullname": "numpy.broadcast"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "nditer", "kind": "ImportedType", "fullname": "numpy.nditer"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "uint8", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "_IOProtocol", "kind": "ImportedType", "fullname": "numpy._IOProtocol"}, {"name": "_CopyMode", "kind": "ImportedType", "fullname": "numpy._CopyMode"}, {"name": "_NDIterFlagsKind", "kind": "Other"}, {"name": "_NDIterOpFlagsKind", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_UnitKind", "kind": "Other"}, {"name": "_RollKind", "kind": "Other"}, {"name": "_SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "ALLOW_THREADS", "kind": "Other"}, {"name": "BUFSIZE", "kind": "Other"}, {"name": "CLIP", "kind": "Other"}, {"name": "WRAP", "kind": "Other"}, {"name": "RAISE", "kind": "Other"}, {"name": "MAXDIMS", "kind": "Other"}, {"name": "MAY_SHARE_BOUNDS", "kind": "Other"}, {"name": "MAY_SHARE_EXACT", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "lexsort", "kind": "Other"}, {"name": "can_cast", "kind": "Other"}, {"name": "min_scalar_type", "kind": "Other"}, {"name": "result_type", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "vdot", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "copyto", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "shares_memory", "kind": "Other"}, {"name": "may_share_memory", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "ascontiguousarray", "kind": "Other"}, {"name": "asfortranarray", "kind": "Other"}, {"name": "geterrobj", "kind": "Other"}, {"name": "seterrobj", "kind": "Other"}, {"name": "promote_types", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "frompyfunc", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "fromiter", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "datetime_data", "kind": "Other"}, {"name": "busday_count", "kind": "Other"}, {"name": "busday_offset", "kind": "Other"}, {"name": "is_busday", "kind": "Other"}, {"name": "datetime_as_string", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "_GetItemKeys", "kind": "Other"}, {"name": "_SetItemKeys", "kind": "Other"}, {"name": "flagsobj", "kind": "LocalType"}, {"name": "nested_iters", "kind": "Other"}], "numpy.core.numeric": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "ComplexWarning", "kind": "ImportedType", "fullname": "numpy.ComplexWarning"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_CorrelateMode", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "zeros_like", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "full", "kind": "Other"}, {"name": "full_like", "kind": "Other"}, {"name": "count_nonzero", "kind": "Other"}, {"name": "isfortran", "kind": "Other"}, {"name": "argwhere", "kind": "Other"}, {"name": "flatnonzero", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "tensordot", "kind": "Other"}, {"name": "roll", "kind": "Other"}, {"name": "rollaxis", "kind": "Other"}, {"name": "moveaxis", "kind": "Other"}, {"name": "cross", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "isscalar", "kind": "Other"}, {"name": "binary_repr", "kind": "Other"}, {"name": "base_repr", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "array_equal", "kind": "Other"}, {"name": "array_equiv", "kind": "Other"}], "numpy.core.numerictypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CastFunc", "kind": "LocalType"}, {"name": "_TypeCodes", "kind": "LocalType"}, {"name": "_typedict", "kind": "LocalType"}, {"name": "_TypeTuple", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "maximum_sctype", "kind": "Other"}, {"name": "issctype", "kind": "Other"}, {"name": "obj2sctype", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "sctype2char", "kind": "Other"}, {"name": "find_common_type", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "nbytes", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}], "numpy.core.shape_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "block", "kind": "Other"}], "numpy.lib.arraypad": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ModeFunc", "kind": "LocalType"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "pad", "kind": "Other"}], "numpy.lib.arraysetops": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ushort", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_SCTNoCast", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}], "numpy.lib.arrayterator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_Index", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}], "numpy.lib.function_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "vectorize", "kind": "ImportedType", "fullname": "numpy.vectorize"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "_add_newdoc_ufunc", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_TrimZerosSequence", "kind": "LocalType"}, {"name": "_SupportsWriteFlush", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "select", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "_MethodKind", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "digitize", "kind": "Other"}], "numpy.lib.histograms": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_BinKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}], "numpy.lib.index_tricks": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_Matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "ndenumerate", "kind": "ImportedType", "fullname": "numpy.ndenumerate"}, {"name": "ndindex", "kind": "ImportedType", "fullname": "numpy.ndindex"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int_", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "complex_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_BoolType", "kind": "Other"}, {"name": "_TupType", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "nd_grid", "kind": "LocalType"}, {"name": "MGridClass", "kind": "LocalType"}, {"name": "mgrid", "kind": "Other"}, {"name": "OGridClass", "kind": "LocalType"}, {"name": "ogrid", "kind": "Other"}, {"name": "AxisConcatenator", "kind": "LocalType"}, {"name": "RClass", "kind": "LocalType"}, {"name": "r_", "kind": "Other"}, {"name": "CClass", "kind": "LocalType"}, {"name": "c_", "kind": "Other"}, {"name": "IndexExpression", "kind": "LocalType"}, {"name": "index_exp", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}], "numpy.lib.nanfunctions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}], "numpy.lib.npyio": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "zipfile", "kind": "Module", "fullname": "zipfile"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "DataSource", "kind": "ImportedType", "fullname": "numpy.DataSource"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "recarray", "kind": "ImportedType", "fullname": "numpy.recarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "float64", "kind": "Other"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "record", "kind": "ImportedType", "fullname": "numpy.record"}, {"name": "MaskedRecords", "kind": "ImportedType", "fullname": "numpy.ma.mrecords.MaskedRecords"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CharType_co", "kind": "Other"}, {"name": "_CharType_contra", "kind": "Other"}, {"name": "_SupportsGetItem", "kind": "LocalType"}, {"name": "_SupportsRead", "kind": "LocalType"}, {"name": "_SupportsReadSeek", "kind": "LocalType"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "BagObj", "kind": "LocalType"}, {"name": "NpzFile", "kind": "LocalType"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}], "numpy.lib.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "NoReturn", "kind": "Other"}, {"name": "RankWarning", "kind": "ImportedType", "fullname": "numpy.RankWarning"}, {"name": "poly1d", "kind": "ImportedType", "fullname": "numpy.poly1d"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_2Tup", "kind": "Other"}, {"name": "_5Tup", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}], "numpy.lib.shape_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Protocol", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayWrap", "kind": "LocalType"}, {"name": "_ArrayPrepare", "kind": "LocalType"}, {"name": "_SupportsArrayWrap", "kind": "LocalType"}, {"name": "_SupportsArrayPrepare", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "get_array_prepare", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}], "numpy.lib.stride_tricks": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DummyArray", "kind": "LocalType"}, {"name": "as_strided", "kind": "Other"}, {"name": "sliding_window_view", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}], "numpy.lib.twodim_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_MaskFunc", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}], "numpy.lib.type_check": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "float64", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "_64Bit", "kind": "ImportedType", "fullname": "numpy._typing._64Bit"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "_SupportsReal", "kind": "LocalType"}, {"name": "_SupportsImag", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}], "numpy.lib.ufunclike": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "NDArray", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}], "numpy.lib.utils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "AST", "kind": "ImportedType", "fullname": "_ast.AST"}, {"name": "Callable", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_FuncType", "kind": "Other"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "_Deprecate", "kind": "LocalType"}, {"name": "get_include", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}], "numpy._pytesttester": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PytestTester", "kind": "LocalType"}], "numpy._typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "set_module", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "NBitBase", "kind": "LocalType"}, {"name": "_256Bit", "kind": "LocalType"}, {"name": "_128Bit", "kind": "LocalType"}, {"name": "_96Bit", "kind": "LocalType"}, {"name": "_80Bit", "kind": "LocalType"}, {"name": "_64Bit", "kind": "LocalType"}, {"name": "_32Bit", "kind": "LocalType"}, {"name": "_16Bit", "kind": "LocalType"}, {"name": "_8Bit", "kind": "LocalType"}, {"name": "_NestedSequence", "kind": "LocalType"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_UIntLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_VoidLike_co", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeTD64", "kind": "Other"}, {"name": "_DTypeLikeDT64", "kind": "Other"}, {"name": "_DTypeLikeObject", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_DTypeLikeStr", "kind": "Other"}, {"name": "_DTypeLikeBytes", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_SupportsArrayFunc", "kind": "LocalType"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "NDArray", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_GenericAlias", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}], "numpy.ctypeslib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_c_intp", "kind": "ImportedType", "fullname": "ctypes.c_int64"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "_ctypes", "kind": "ImportedType", "fullname": "numpy.core._internal._ctypes"}, {"name": "flagsobj", "kind": "ImportedType", "fullname": "numpy.core.multiarray.flagsobj"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_DTypeOptional", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_FlagsKind", "kind": "Other"}, {"name": "_ndptr", "kind": "LocalType"}, {"name": "_concrete_ndptr", "kind": "LocalType"}, {"name": "load_library", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "c_intp", "kind": "Other"}, {"name": "ndpointer", "kind": "Other"}, {"name": "as_ctypes_type", "kind": "Other"}, {"name": "as_array", "kind": "Other"}, {"name": "as_ctypes", "kind": "Other"}], "numpy.fft": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "fft", "kind": "Other"}, {"name": "ifft", "kind": "Other"}, {"name": "rfft", "kind": "Other"}, {"name": "irfft", "kind": "Other"}, {"name": "hfft", "kind": "Other"}, {"name": "ihfft", "kind": "Other"}, {"name": "rfftn", "kind": "Other"}, {"name": "irfftn", "kind": "Other"}, {"name": "rfft2", "kind": "Other"}, {"name": "irfft2", "kind": "Other"}, {"name": "fft2", "kind": "Other"}, {"name": "ifft2", "kind": "Other"}, {"name": "fftn", "kind": "Other"}, {"name": "ifftn", "kind": "Other"}, {"name": "fftshift", "kind": "Other"}, {"name": "ifftshift", "kind": "Other"}, {"name": "fftfreq", "kind": "Other"}, {"name": "rfftfreq", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.lib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "math", "kind": "Module", "fullname": "math"}, {"name": "Any", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "ndenumerate", "kind": "ImportedType", "fullname": "numpy.ndenumerate"}, {"name": "ndindex", "kind": "ImportedType", "fullname": "numpy.ndindex"}, {"name": "version", "kind": "Other"}, {"name": "format", "kind": "Module", "fullname": "numpy.lib.format"}, {"name": "mixins", "kind": "Module", "fullname": "numpy.lib.mixins"}, {"name": "scimath", "kind": "Module", "fullname": "numpy.lib.scimath"}, {"name": "stride_tricks", "kind": "Module", "fullname": "numpy.lib.stride_tricks"}, {"name": "NumpyVersion", "kind": "LocalType"}, {"name": "pad", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}, {"name": "select", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "vectorize", "kind": "ImportedType", "fullname": "numpy.vectorize"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "digitize", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "msort", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "mgrid", "kind": "Other"}, {"name": "ogrid", "kind": "Other"}, {"name": "r_", "kind": "Other"}, {"name": "c_", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "index_exp", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "DataSource", "kind": "ImportedType", "fullname": "numpy.DataSource"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "RankWarning", "kind": "ImportedType", "fullname": "numpy.RankWarning"}, {"name": "poly1d", "kind": "ImportedType", "fullname": "numpy.poly1d"}, {"name": "column_stack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "get_include", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "emath", "kind": "Module", "fullname": "numpy.lib.scimath"}], "numpy.linalg": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "matrix_power", "kind": "Other"}, {"name": "solve", "kind": "Other"}, {"name": "tensorsolve", "kind": "Other"}, {"name": "tensorinv", "kind": "Other"}, {"name": "inv", "kind": "Other"}, {"name": "cholesky", "kind": "Other"}, {"name": "eigvals", "kind": "Other"}, {"name": "eigvalsh", "kind": "Other"}, {"name": "pinv", "kind": "Other"}, {"name": "slogdet", "kind": "Other"}, {"name": "det", "kind": "Other"}, {"name": "svd", "kind": "Other"}, {"name": "eig", "kind": "Other"}, {"name": "eigh", "kind": "Other"}, {"name": "lstsq", "kind": "Other"}, {"name": "norm", "kind": "Other"}, {"name": "qr", "kind": "Other"}, {"name": "cond", "kind": "Other"}, {"name": "matrix_rank", "kind": "Other"}, {"name": "multi_dot", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "LinAlgError", "kind": "LocalType"}], "numpy.ma": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "extras", "kind": "Module", "fullname": "numpy.ma.extras"}, {"name": "MAError", "kind": "LocalType"}, {"name": "MaskError", "kind": "LocalType"}, {"name": "MaskType", "kind": "Other"}, {"name": "MaskedArray", "kind": "LocalType"}, {"name": "abs", "kind": "Other"}, {"name": "absolute", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "allequal", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "anom", "kind": "Other"}, {"name": "anomalies", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ceil", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "common_fill_value", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "compressed", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "default_fill_value", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "filled", "kind": "Other"}, {"name": "fix_invalid", "kind": "Other"}, {"name": "flatten_mask", "kind": "Other"}, {"name": "flatten_structured_array", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromflex", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "getdata", "kind": "Other"}, {"name": "getmask", "kind": "Other"}, {"name": "getmaskarray", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "harden_mask", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "ids", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "innerproduct", "kind": "Other"}, {"name": "isMA", "kind": "Other"}, {"name": "isMaskedArray", "kind": "Other"}, {"name": "is_mask", "kind": "Other"}, {"name": "is_masked", "kind": "Other"}, {"name": "isarray", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "make_mask", "kind": "Other"}, {"name": "make_mask_descr", "kind": "Other"}, {"name": "make_mask_none", "kind": "Other"}, {"name": "mask_or", "kind": "Other"}, {"name": "masked", "kind": "Other"}, {"name": "masked_array", "kind": "Other"}, {"name": "masked_equal", "kind": "Other"}, {"name": "masked_greater", "kind": "Other"}, {"name": "masked_greater_equal", "kind": "Other"}, {"name": "masked_inside", "kind": "Other"}, {"name": "masked_invalid", "kind": "Other"}, {"name": "masked_less", "kind": "Other"}, {"name": "masked_less_equal", "kind": "Other"}, {"name": "masked_not_equal", "kind": "Other"}, {"name": "masked_object", "kind": "Other"}, {"name": "masked_outside", "kind": "Other"}, {"name": "masked_print_option", "kind": "Other"}, {"name": "masked_singleton", "kind": "Other"}, {"name": "masked_values", "kind": "Other"}, {"name": "masked_where", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "maximum_fill_value", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "minimum_fill_value", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "mvoid", "kind": "LocalType"}, {"name": "ndim", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "nomask", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "outerproduct", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "set_fill_value", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "soften_mask", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "clump_masked", "kind": "Other"}, {"name": "clump_unmasked", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "compress_cols", "kind": "Other"}, {"name": "compress_nd", "kind": "Other"}, {"name": "compress_rowcols", "kind": "Other"}, {"name": "compress_rows", "kind": "Other"}, {"name": "count_masked", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "flatnotmasked_contiguous", "kind": "Other"}, {"name": "flatnotmasked_edges", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "mask_cols", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}, {"name": "mask_rows", "kind": "Other"}, {"name": "masked_all", "kind": "Other"}, {"name": "masked_all_like", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "mr_", "kind": "Other"}, {"name": "ndenumerate", "kind": "Other"}, {"name": "notmasked_contiguous", "kind": "Other"}, {"name": "notmasked_edges", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "chebyshev", "kind": "Module", "fullname": "numpy.polynomial.chebyshev"}, {"name": "hermite", "kind": "Module", "fullname": "numpy.polynomial.hermite"}, {"name": "hermite_e", "kind": "Module", "fullname": "numpy.polynomial.hermite_e"}, {"name": "laguerre", "kind": "Module", "fullname": "numpy.polynomial.laguerre"}, {"name": "legendre", "kind": "Module", "fullname": "numpy.polynomial.legendre"}, {"name": "polynomial", "kind": "Module", "fullname": "numpy.polynomial.polynomial"}, {"name": "Chebyshev", "kind": "LocalType"}, {"name": "Hermite", "kind": "LocalType"}, {"name": "HermiteE", "kind": "LocalType"}, {"name": "Laguerre", "kind": "LocalType"}, {"name": "Legendre", "kind": "LocalType"}, {"name": "Polynomial", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "set_default_printstyle", "kind": "Other"}], "numpy.random": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "Generator", "kind": "LocalType"}, {"name": "default_rng", "kind": "Other"}, {"name": "MT19937", "kind": "LocalType"}, {"name": "PCG64", "kind": "LocalType"}, {"name": "PCG64DXSM", "kind": "LocalType"}, {"name": "Philox", "kind": "LocalType"}, {"name": "SFC64", "kind": "LocalType"}, {"name": "BitGenerator", "kind": "LocalType"}, {"name": "SeedSequence", "kind": "LocalType"}, {"name": "RandomState", "kind": "LocalType"}, {"name": "beta", "kind": "Other"}, {"name": "binomial", "kind": "Other"}, {"name": "bytes", "kind": "Other"}, {"name": "chisquare", "kind": "Other"}, {"name": "choice", "kind": "Other"}, {"name": "dirichlet", "kind": "Other"}, {"name": "exponential", "kind": "Other"}, {"name": "f", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "geometric", "kind": "Other"}, {"name": "get_bit_generator", "kind": "Other"}, {"name": "get_state", "kind": "Other"}, {"name": "gumbel", "kind": "Other"}, {"name": "hypergeometric", "kind": "Other"}, {"name": "laplace", "kind": "Other"}, {"name": "logistic", "kind": "Other"}, {"name": "lognormal", "kind": "Other"}, {"name": "logseries", "kind": "Other"}, {"name": "multinomial", "kind": "Other"}, {"name": "multivariate_normal", "kind": "Other"}, {"name": "negative_binomial", "kind": "Other"}, {"name": "noncentral_chisquare", "kind": "Other"}, {"name": "noncentral_f", "kind": "Other"}, {"name": "normal", "kind": "Other"}, {"name": "pareto", "kind": "Other"}, {"name": "permutation", "kind": "Other"}, {"name": "poisson", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rand", "kind": "Other"}, {"name": "randint", "kind": "Other"}, {"name": "randn", "kind": "Other"}, {"name": "random", "kind": "Other"}, {"name": "random_integers", "kind": "Other"}, {"name": "random_sample", "kind": "Other"}, {"name": "ranf", "kind": "Other"}, {"name": "rayleigh", "kind": "Other"}, {"name": "sample", "kind": "Other"}, {"name": "seed", "kind": "Other"}, {"name": "set_bit_generator", "kind": "Other"}, {"name": "set_state", "kind": "Other"}, {"name": "shuffle", "kind": "Other"}, {"name": "standard_cauchy", "kind": "Other"}, {"name": "standard_exponential", "kind": "Other"}, {"name": "standard_gamma", "kind": "Other"}, {"name": "standard_normal", "kind": "Other"}, {"name": "standard_t", "kind": "Other"}, {"name": "triangular", "kind": "Other"}, {"name": "uniform", "kind": "Other"}, {"name": "vonmises", "kind": "Other"}, {"name": "wald", "kind": "Other"}, {"name": "weibull", "kind": "Other"}, {"name": "zipf", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.testing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "assert_equal", "kind": "Other"}, {"name": "assert_almost_equal", "kind": "Other"}, {"name": "assert_approx_equal", "kind": "Other"}, {"name": "assert_array_equal", "kind": "Other"}, {"name": "assert_array_less", "kind": "Other"}, {"name": "assert_string_equal", "kind": "Other"}, {"name": "assert_array_almost_equal", "kind": "Other"}, {"name": "assert_raises", "kind": "Other"}, {"name": "build_err_msg", "kind": "Other"}, {"name": "decorate_methods", "kind": "Other"}, {"name": "jiffies", "kind": "Other"}, {"name": "memusage", "kind": "Other"}, {"name": "print_assert_equal", "kind": "Other"}, {"name": "raises", "kind": "Other"}, {"name": "rundocs", "kind": "Other"}, {"name": "runstring", "kind": "Other"}, {"name": "verbose", "kind": "Other"}, {"name": "measure", "kind": "Other"}, {"name": "assert_", "kind": "Other"}, {"name": "assert_array_almost_equal_nulp", "kind": "Other"}, {"name": "assert_raises_regex", "kind": "Other"}, {"name": "assert_array_max_ulp", "kind": "Other"}, {"name": "assert_warns", "kind": "Other"}, {"name": "assert_no_warnings", "kind": "Other"}, {"name": "assert_allclose", "kind": "Other"}, {"name": "IgnoreException", "kind": "LocalType"}, {"name": "clear_and_catch_warnings", "kind": "LocalType"}, {"name": "SkipTest", "kind": "ImportedType", "fullname": "unittest.case.SkipTest"}, {"name": "KnownFailureException", "kind": "LocalType"}, {"name": "temppath", "kind": "Other"}, {"name": "tempdir", "kind": "Other"}, {"name": "IS_PYPY", "kind": "Other"}, {"name": "IS_PYSTON", "kind": "Other"}, {"name": "HAS_REFCOUNT", "kind": "Other"}, {"name": "suppress_warnings", "kind": "LocalType"}, {"name": "assert_array_compare", "kind": "Other"}, {"name": "assert_no_gc_cycles", "kind": "Other"}, {"name": "break_cycles", "kind": "Other"}, {"name": "HAS_LAPACK64", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "run_module_suite", "kind": "Other"}], "numpy.version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "get_versions", "kind": "Other"}, {"name": "__ALL__", "kind": "Other"}, {"name": "vinfo", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "full_version", "kind": "Other"}, {"name": "git_revision", "kind": "Other"}, {"name": "release", "kind": "Other"}, {"name": "short_version", "kind": "Other"}], "numpy.core": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "numpy.matrixlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "bmat", "kind": "Other"}, {"name": "mat", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "mmap": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "ACCESS_DEFAULT", "kind": "Other"}, {"name": "ACCESS_READ", "kind": "Other"}, {"name": "ACCESS_WRITE", "kind": "Other"}, {"name": "ACCESS_COPY", "kind": "Other"}, {"name": "ALLOCATIONGRANULARITY", "kind": "Other"}, {"name": "MAP_DENYWRITE", "kind": "Other"}, {"name": "MAP_EXECUTABLE", "kind": "Other"}, {"name": "MAP_POPULATE", "kind": "Other"}, {"name": "MAP_ANON", "kind": "Other"}, {"name": "MAP_ANONYMOUS", "kind": "Other"}, {"name": "MAP_PRIVATE", "kind": "Other"}, {"name": "MAP_SHARED", "kind": "Other"}, {"name": "PROT_EXEC", "kind": "Other"}, {"name": "PROT_READ", "kind": "Other"}, {"name": "PROT_WRITE", "kind": "Other"}, {"name": "PAGESIZE", "kind": "Other"}, {"name": "mmap", "kind": "LocalType"}, {"name": "MADV_NORMAL", "kind": "Other"}, {"name": "MADV_RANDOM", "kind": "Other"}, {"name": "MADV_SEQUENTIAL", "kind": "Other"}, {"name": "MADV_WILLNEED", "kind": "Other"}, {"name": "MADV_DONTNEED", "kind": "Other"}, {"name": "MADV_FREE", "kind": "Other"}, {"name": "MADV_REMOVE", "kind": "Other"}, {"name": "MADV_DONTFORK", "kind": "Other"}, {"name": "MADV_DOFORK", "kind": "Other"}, {"name": "MADV_HWPOISON", "kind": "Other"}, {"name": "MADV_MERGEABLE", "kind": "Other"}, {"name": "MADV_UNMERGEABLE", "kind": "Other"}, {"name": "MADV_HUGEPAGE", "kind": "Other"}, {"name": "MADV_NOHUGEPAGE", "kind": "Other"}, {"name": "MADV_DONTDUMP", "kind": "Other"}, {"name": "MADV_DODUMP", "kind": "Other"}], "ctypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "POINTER", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ArgumentError", "kind": "ImportedType", "fullname": "_ctypes.ArgumentError"}, {"name": "Array", "kind": "ImportedType", "fullname": "_ctypes.Array"}, {"name": "_CFuncPtr", "kind": "ImportedType", "fullname": "_ctypes.CFuncPtr"}, {"name": "Structure", "kind": "ImportedType", "fullname": "_ctypes.Structure"}, {"name": "Union", "kind": "ImportedType", "fullname": "_ctypes.Union"}, {"name": "_CanCastTo", "kind": "ImportedType", "fullname": "_ctypes._CanCastTo"}, {"name": "_CArgObject", "kind": "ImportedType", "fullname": "_ctypes._CArgObject"}, {"name": "_CData", "kind": "ImportedType", "fullname": "_ctypes._CData"}, {"name": "_CDataMeta", "kind": "ImportedType", "fullname": "_ctypes._CDataMeta"}, {"name": "_CField", "kind": "ImportedType", "fullname": "_ctypes._CField"}, {"name": "_Pointer", "kind": "ImportedType", "fullname": "_ctypes._Pointer"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "_ctypes._PointerLike"}, {"name": "_SimpleCData", "kind": "ImportedType", "fullname": "_ctypes._SimpleCData"}, {"name": "_StructUnionBase", "kind": "ImportedType", "fullname": "_ctypes._StructUnionBase"}, {"name": "_StructUnionMeta", "kind": "ImportedType", "fullname": "_ctypes._StructUnionMeta"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "kind": "Other"}, {"name": "get_errno", "kind": "Other"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "DEFAULT_MODE", "kind": "Other"}, {"name": "CDLL", "kind": "LocalType"}, {"name": "PyDLL", "kind": "LocalType"}, {"name": "LibraryLoader", "kind": "LocalType"}, {"name": "cdll", "kind": "Other"}, {"name": "pydll", "kind": "Other"}, {"name": "pythonapi", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "_CastT", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "create_string_buffer", "kind": "Other"}, {"name": "c_buffer", "kind": "Other"}, {"name": "create_unicode_buffer", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "c_byte", "kind": "LocalType"}, {"name": "c_char", "kind": "LocalType"}, {"name": "c_char_p", "kind": "LocalType"}, {"name": "c_double", "kind": "LocalType"}, {"name": "c_longdouble", "kind": "LocalType"}, {"name": "c_float", "kind": "LocalType"}, {"name": "c_int", "kind": "LocalType"}, {"name": "c_int8", "kind": "LocalType"}, {"name": "c_int16", "kind": "LocalType"}, {"name": "c_int32", "kind": "LocalType"}, {"name": "c_int64", "kind": "LocalType"}, {"name": "c_long", "kind": "LocalType"}, {"name": "c_longlong", "kind": "LocalType"}, {"name": "c_short", "kind": "LocalType"}, {"name": "c_size_t", "kind": "LocalType"}, {"name": "c_ssize_t", "kind": "LocalType"}, {"name": "c_ubyte", "kind": "LocalType"}, {"name": "c_uint", "kind": "LocalType"}, {"name": "c_uint8", "kind": "LocalType"}, {"name": "c_uint16", "kind": "LocalType"}, {"name": "c_uint32", "kind": "LocalType"}, {"name": "c_uint64", "kind": "LocalType"}, {"name": "c_ulong", "kind": "LocalType"}, {"name": "c_ulonglong", "kind": "LocalType"}, {"name": "c_ushort", "kind": "LocalType"}, {"name": "c_void_p", "kind": "LocalType"}, {"name": "c_wchar", "kind": "LocalType"}, {"name": "c_wchar_p", "kind": "LocalType"}, {"name": "c_bool", "kind": "LocalType"}, {"name": "py_object", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}], "array": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsRead", "kind": "ImportedType", "fullname": "_typeshed.SupportsRead"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_IntTypeCode", "kind": "Other"}, {"name": "_FloatTypeCode", "kind": "Other"}, {"name": "_UnicodeTypeCode", "kind": "Other"}, {"name": "_TypeCode", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "array", "kind": "LocalType"}, {"name": "ArrayType", "kind": "Other"}], "datetime": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_D", "kind": "Other"}, {"name": "MINYEAR", "kind": "Other"}, {"name": "MAXYEAR", "kind": "Other"}, {"name": "tzinfo", "kind": "LocalType"}, {"name": "_TzInfo", "kind": "Other"}, {"name": "timezone", "kind": "LocalType"}, {"name": "_IsoCalendarDate", "kind": "LocalType"}, {"name": "date", "kind": "LocalType"}, {"name": "time", "kind": "LocalType"}, {"name": "_Date", "kind": "Other"}, {"name": "_Time", "kind": "Other"}, {"name": "timedelta", "kind": "LocalType"}, {"name": "datetime", "kind": "LocalType"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "numpy._typing._nbit": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}], "numpy._typing._scalars": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_UIntLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_VoidLike_co", "kind": "Other"}], "numpy._typing._generic_alias": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_to_str", "kind": "Other"}, {"name": "_parse_parameters", "kind": "Other"}, {"name": "_reconstruct_alias", "kind": "Other"}, {"name": "_GenericAlias", "kind": "LocalType"}, {"name": "_GENERIC_ALIAS_TYPE", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}], "numpy._typing._nested_sequence": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_NestedSequence", "kind": "LocalType"}], "__future__": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_VersionInfo", "kind": "Other"}, {"name": "_Feature", "kind": "LocalType"}, {"name": "absolute_import", "kind": "Other"}, {"name": "division", "kind": "Other"}, {"name": "generators", "kind": "Other"}, {"name": "nested_scopes", "kind": "Other"}, {"name": "print_function", "kind": "Other"}, {"name": "unicode_literals", "kind": "Other"}, {"name": "with_statement", "kind": "Other"}, {"name": "barry_as_FLUFL", "kind": "Other"}, {"name": "generator_stop", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "all_feature_names", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy.core.umath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_multiarray_umath", "kind": "Other"}, {"name": "_UFUNC_API", "kind": "Other"}, {"name": "_add_newdoc_ufunc", "kind": "Other"}, {"name": "_ones_like", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy.ma.mrecords": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "MaskedArray", "kind": "ImportedType", "fullname": "numpy.ma.core.MaskedArray"}, {"name": "__all__", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "MaskedRecords", "kind": "LocalType"}, {"name": "mrecarray", "kind": "Other"}, {"name": "fromarrays", "kind": "Other"}, {"name": "fromrecords", "kind": "Other"}, {"name": "fromtextfile", "kind": "Other"}, {"name": "addfield", "kind": "Other"}], "zipfile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "io", "kind": "Module", "fullname": "io"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SizedBuffer", "kind": "ImportedType", "fullname": "_typeshed.SizedBuffer"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DateTuple", "kind": "Other"}, {"name": "_ReadWriteMode", "kind": "Other"}, {"name": "_ReadWriteBinaryMode", "kind": "Other"}, {"name": "_ZipFileMode", "kind": "Other"}, {"name": "BadZipFile", "kind": "LocalType"}, {"name": "BadZipfile", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "LargeZipFile", "kind": "LocalType"}, {"name": "_ZipStream", "kind": "LocalType"}, {"name": "_SupportsReadSeekTell", "kind": "LocalType"}, {"name": "_ClosableZipStream", "kind": "LocalType"}, {"name": "ZipExtFile", "kind": "LocalType"}, {"name": "_Writer", "kind": "LocalType"}, {"name": "ZipFile", "kind": "LocalType"}, {"name": "PyZipFile", "kind": "LocalType"}, {"name": "ZipInfo", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "is_zipfile", "kind": "Other"}, {"name": "ZIP_STORED", "kind": "Other"}, {"name": "ZIP_DEFLATED", "kind": "Other"}, {"name": "ZIP64_LIMIT", "kind": "Other"}, {"name": "ZIP_FILECOUNT_LIMIT", "kind": "Other"}, {"name": "ZIP_MAX_COMMENT", "kind": "Other"}, {"name": "ZIP_BZIP2", "kind": "Other"}, {"name": "ZIP_LZMA", "kind": "Other"}], "ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "AST", "kind": "ImportedType", "fullname": "_ast.AST"}, {"name": "mod", "kind": "ImportedType", "fullname": "_ast.mod"}, {"name": "type_ignore", "kind": "ImportedType", "fullname": "_ast.type_ignore"}, {"name": "TypeIgnore", "kind": "ImportedType", "fullname": "_ast.TypeIgnore"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "_ast.FunctionType"}, {"name": "Module", "kind": "ImportedType", "fullname": "_ast.Module"}, {"name": "Interactive", "kind": "ImportedType", "fullname": "_ast.Interactive"}, {"name": "Expression", "kind": "ImportedType", "fullname": "_ast.Expression"}, {"name": "stmt", "kind": "ImportedType", "fullname": "_ast.stmt"}, {"name": "FunctionDef", "kind": "ImportedType", "fullname": "_ast.FunctionDef"}, {"name": "AsyncFunctionDef", "kind": "ImportedType", "fullname": "_ast.AsyncFunctionDef"}, {"name": "ClassDef", "kind": "ImportedType", "fullname": "_ast.ClassDef"}, {"name": "Return", "kind": "ImportedType", "fullname": "_ast.Return"}, {"name": "Delete", "kind": "ImportedType", "fullname": "_ast.Delete"}, {"name": "Assign", "kind": "ImportedType", "fullname": "_ast.Assign"}, {"name": "AugAssign", "kind": "ImportedType", "fullname": "_ast.AugAssign"}, {"name": "AnnAssign", "kind": "ImportedType", "fullname": "_ast.AnnAssign"}, {"name": "For", "kind": "ImportedType", "fullname": "_ast.For"}, {"name": "AsyncFor", "kind": "ImportedType", "fullname": "_ast.AsyncFor"}, {"name": "While", "kind": "ImportedType", "fullname": "_ast.While"}, {"name": "If", "kind": "ImportedType", "fullname": "_ast.If"}, {"name": "With", "kind": "ImportedType", "fullname": "_ast.With"}, {"name": "AsyncWith", "kind": "ImportedType", "fullname": "_ast.AsyncWith"}, {"name": "Raise", "kind": "ImportedType", "fullname": "_ast.Raise"}, {"name": "Try", "kind": "ImportedType", "fullname": "_ast.Try"}, {"name": "Assert", "kind": "ImportedType", "fullname": "_ast.Assert"}, {"name": "Import", "kind": "ImportedType", "fullname": "_ast.Import"}, {"name": "ImportFrom", "kind": "ImportedType", "fullname": "_ast.ImportFrom"}, {"name": "Global", "kind": "ImportedType", "fullname": "_ast.Global"}, {"name": "Nonlocal", "kind": "ImportedType", "fullname": "_ast.Nonlocal"}, {"name": "Expr", "kind": "ImportedType", "fullname": "_ast.Expr"}, {"name": "Pass", "kind": "ImportedType", "fullname": "_ast.Pass"}, {"name": "Break", "kind": "ImportedType", "fullname": "_ast.Break"}, {"name": "Continue", "kind": "ImportedType", "fullname": "_ast.Continue"}, {"name": "expr", "kind": "ImportedType", "fullname": "_ast.expr"}, {"name": "BoolOp", "kind": "ImportedType", "fullname": "_ast.BoolOp"}, {"name": "BinOp", "kind": "ImportedType", "fullname": "_ast.BinOp"}, {"name": "UnaryOp", "kind": "ImportedType", "fullname": "_ast.UnaryOp"}, {"name": "Lambda", "kind": "ImportedType", "fullname": "_ast.Lambda"}, {"name": "IfExp", "kind": "ImportedType", "fullname": "_ast.IfExp"}, {"name": "Dict", "kind": "ImportedType", "fullname": "_ast.Dict"}, {"name": "Set", "kind": "ImportedType", "fullname": "_ast.Set"}, {"name": "ListComp", "kind": "ImportedType", "fullname": "_ast.ListComp"}, {"name": "SetComp", "kind": "ImportedType", "fullname": "_ast.SetComp"}, {"name": "DictComp", "kind": "ImportedType", "fullname": "_ast.DictComp"}, {"name": "GeneratorExp", "kind": "ImportedType", "fullname": "_ast.GeneratorExp"}, {"name": "Await", "kind": "ImportedType", "fullname": "_ast.Await"}, {"name": "Yield", "kind": "ImportedType", "fullname": "_ast.Yield"}, {"name": "YieldFrom", "kind": "ImportedType", "fullname": "_ast.YieldFrom"}, {"name": "Compare", "kind": "ImportedType", "fullname": "_ast.Compare"}, {"name": "Call", "kind": "ImportedType", "fullname": "_ast.Call"}, {"name": "FormattedValue", "kind": "ImportedType", "fullname": "_ast.FormattedValue"}, {"name": "JoinedStr", "kind": "ImportedType", "fullname": "_ast.JoinedStr"}, {"name": "Constant", "kind": "ImportedType", "fullname": "_ast.Constant"}, {"name": "NamedExpr", "kind": "ImportedType", "fullname": "_ast.NamedExpr"}, {"name": "Attribute", "kind": "ImportedType", "fullname": "_ast.Attribute"}, {"name": "Slice", "kind": "ImportedType", "fullname": "_ast.Slice"}, {"name": "Subscript", "kind": "ImportedType", "fullname": "_ast.Subscript"}, {"name": "Starred", "kind": "ImportedType", "fullname": "_ast.Starred"}, {"name": "Name", "kind": "ImportedType", "fullname": "_ast.Name"}, {"name": "List", "kind": "ImportedType", "fullname": "_ast.List"}, {"name": "Tuple", "kind": "ImportedType", "fullname": "_ast.Tuple"}, {"name": "expr_context", "kind": "ImportedType", "fullname": "_ast.expr_context"}, {"name": "Del", "kind": "ImportedType", "fullname": "_ast.Del"}, {"name": "Load", "kind": "ImportedType", "fullname": "_ast.Load"}, {"name": "Store", "kind": "ImportedType", "fullname": "_ast.Store"}, {"name": "boolop", "kind": "ImportedType", "fullname": "_ast.boolop"}, {"name": "And", "kind": "ImportedType", "fullname": "_ast.And"}, {"name": "Or", "kind": "ImportedType", "fullname": "_ast.Or"}, {"name": "operator", "kind": "ImportedType", "fullname": "_ast.operator"}, {"name": "Add", "kind": "ImportedType", "fullname": "_ast.Add"}, {"name": "BitAnd", "kind": "ImportedType", "fullname": "_ast.BitAnd"}, {"name": "BitOr", "kind": "ImportedType", "fullname": "_ast.BitOr"}, {"name": "BitXor", "kind": "ImportedType", "fullname": "_ast.BitXor"}, {"name": "Div", "kind": "ImportedType", "fullname": "_ast.Div"}, {"name": "FloorDiv", "kind": "ImportedType", "fullname": "_ast.FloorDiv"}, {"name": "LShift", "kind": "ImportedType", "fullname": "_ast.LShift"}, {"name": "Mod", "kind": "ImportedType", "fullname": "_ast.Mod"}, {"name": "Mult", "kind": "ImportedType", "fullname": "_ast.Mult"}, {"name": "MatMult", "kind": "ImportedType", "fullname": "_ast.MatMult"}, {"name": "Pow", "kind": "ImportedType", "fullname": "_ast.Pow"}, {"name": "RShift", "kind": "ImportedType", "fullname": "_ast.RShift"}, {"name": "Sub", "kind": "ImportedType", "fullname": "_ast.Sub"}, {"name": "unaryop", "kind": "ImportedType", "fullname": "_ast.unaryop"}, {"name": "Invert", "kind": "ImportedType", "fullname": "_ast.Invert"}, {"name": "Not", "kind": "ImportedType", "fullname": "_ast.Not"}, {"name": "UAdd", "kind": "ImportedType", "fullname": "_ast.UAdd"}, {"name": "USub", "kind": "ImportedType", "fullname": "_ast.USub"}, {"name": "cmpop", "kind": "ImportedType", "fullname": "_ast.cmpop"}, {"name": "Eq", "kind": "ImportedType", "fullname": "_ast.Eq"}, {"name": "Gt", "kind": "ImportedType", "fullname": "_ast.Gt"}, {"name": "GtE", "kind": "ImportedType", "fullname": "_ast.GtE"}, {"name": "In", "kind": "ImportedType", "fullname": "_ast.In"}, {"name": "Is", "kind": "ImportedType", "fullname": "_ast.Is"}, {"name": "IsNot", "kind": "ImportedType", "fullname": "_ast.IsNot"}, {"name": "Lt", "kind": "ImportedType", "fullname": "_ast.Lt"}, {"name": "LtE", "kind": "ImportedType", "fullname": "_ast.LtE"}, {"name": "NotEq", "kind": "ImportedType", "fullname": "_ast.NotEq"}, {"name": "NotIn", "kind": "ImportedType", "fullname": "_ast.NotIn"}, {"name": "comprehension", "kind": "ImportedType", "fullname": "_ast.comprehension"}, {"name": "excepthandler", "kind": "ImportedType", "fullname": "_ast.excepthandler"}, {"name": "ExceptHandler", "kind": "ImportedType", "fullname": "_ast.ExceptHandler"}, {"name": "arguments", "kind": "ImportedType", "fullname": "_ast.arguments"}, {"name": "arg", "kind": "ImportedType", "fullname": "_ast.arg"}, {"name": "keyword", "kind": "ImportedType", "fullname": "_ast.keyword"}, {"name": "alias", "kind": "ImportedType", "fullname": "_ast.alias"}, {"name": "withitem", "kind": "ImportedType", "fullname": "_ast.withitem"}, {"name": "Match", "kind": "ImportedType", "fullname": "_ast.Match"}, {"name": "pattern", "kind": "ImportedType", "fullname": "_ast.pattern"}, {"name": "match_case", "kind": "ImportedType", "fullname": "_ast.match_case"}, {"name": "MatchValue", "kind": "ImportedType", "fullname": "_ast.MatchValue"}, {"name": "MatchSingleton", "kind": "ImportedType", "fullname": "_ast.MatchSingleton"}, {"name": "MatchSequence", "kind": "ImportedType", "fullname": "_ast.MatchSequence"}, {"name": "MatchStar", "kind": "ImportedType", "fullname": "_ast.MatchStar"}, {"name": "MatchMapping", "kind": "ImportedType", "fullname": "_ast.MatchMapping"}, {"name": "MatchClass", "kind": "ImportedType", "fullname": "_ast.MatchClass"}, {"name": "MatchAs", "kind": "ImportedType", "fullname": "_ast.MatchAs"}, {"name": "MatchOr", "kind": "ImportedType", "fullname": "_ast.MatchOr"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "_TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "_ABC", "kind": "LocalType"}, {"name": "Num", "kind": "LocalType"}, {"name": "Str", "kind": "LocalType"}, {"name": "Bytes", "kind": "LocalType"}, {"name": "NameConstant", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "ExtSlice", "kind": "LocalType"}, {"name": "Index", "kind": "LocalType"}, {"name": "Suite", "kind": "LocalType"}, {"name": "AugLoad", "kind": "LocalType"}, {"name": "AugStore", "kind": "LocalType"}, {"name": "Param", "kind": "LocalType"}, {"name": "NodeVisitor", "kind": "LocalType"}, {"name": "NodeTransformer", "kind": "LocalType"}, {"name": "_T", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "unparse", "kind": "Other"}, {"name": "copy_location", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "fix_missing_locations", "kind": "Other"}, {"name": "get_docstring", "kind": "Other"}, {"name": "increment_lineno", "kind": "Other"}, {"name": "iter_child_nodes", "kind": "Other"}, {"name": "iter_fields", "kind": "Other"}, {"name": "literal_eval", "kind": "Other"}, {"name": "get_source_segment", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "main", "kind": "Other"}], "numpy.core.overrides": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "functools", "kind": "Module", "fullname": "functools"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "add_docstring", "kind": "Other"}, {"name": "implement_array_function", "kind": "Other"}, {"name": "_get_implementing_args", "kind": "Other"}, {"name": "getargspec", "kind": "Other"}, {"name": "ARRAY_FUNCTION_ENABLED", "kind": "Other"}, {"name": "array_function_like_doc", "kind": "Other"}, {"name": "set_array_function_like_doc", "kind": "Other"}, {"name": "ArgSpec", "kind": "LocalType"}, {"name": "verify_matching_signatures", "kind": "Other"}, {"name": "set_module", "kind": "Other"}, {"name": "array_function_dispatch", "kind": "Other"}, {"name": "array_function_from_dispatcher", "kind": "Other"}], "numpy._typing._char_codes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}], "numpy._typing._shape": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Tuple", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}], "numpy._typing._dtype_like": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Tuple", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DType", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_DTypeLikeNested", "kind": "Other"}, {"name": "_DTypeDictBase", "kind": "LocalType"}, {"name": "_DTypeDict", "kind": "LocalType"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeDT64", "kind": "Other"}, {"name": "_DTypeLikeTD64", "kind": "Other"}, {"name": "_DTypeLikeStr", "kind": "Other"}, {"name": "_DTypeLikeBytes", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_DTypeLikeObject", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}], "numpy._typing._array_like": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Protocol", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_T", "kind": "Other"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_SupportsArrayFunc", "kind": "LocalType"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DualArrayLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}], "numpy._typing._ufunc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Protocol", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_3Tuple", "kind": "Other"}, {"name": "_4Tuple", "kind": "Other"}, {"name": "_NTypes", "kind": "Other"}, {"name": "_IDType", "kind": "Other"}, {"name": "_NameType", "kind": "Other"}, {"name": "_SupportsArrayUFunc", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}], "numpy.fft._pocketfft": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_NormKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fft", "kind": "Other"}, {"name": "ifft", "kind": "Other"}, {"name": "rfft", "kind": "Other"}, {"name": "irfft", "kind": "Other"}, {"name": "hfft", "kind": "Other"}, {"name": "ihfft", "kind": "Other"}, {"name": "fftn", "kind": "Other"}, {"name": "ifftn", "kind": "Other"}, {"name": "rfftn", "kind": "Other"}, {"name": "irfftn", "kind": "Other"}, {"name": "fft2", "kind": "Other"}, {"name": "ifft2", "kind": "Other"}, {"name": "rfft2", "kind": "Other"}, {"name": "irfft2", "kind": "Other"}], "numpy.fft.helper": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fftshift", "kind": "Other"}, {"name": "ifftshift", "kind": "Other"}, {"name": "fftfreq", "kind": "Other"}, {"name": "rfftfreq", "kind": "Other"}], "numpy.lib.format": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "EXPECTED_KEYS", "kind": "Other"}, {"name": "MAGIC_PREFIX", "kind": "Other"}, {"name": "MAGIC_LEN", "kind": "Other"}, {"name": "ARRAY_ALIGN", "kind": "Other"}, {"name": "BUFFER_SIZE", "kind": "Other"}, {"name": "magic", "kind": "Other"}, {"name": "read_magic", "kind": "Other"}, {"name": "dtype_to_descr", "kind": "Other"}, {"name": "descr_to_dtype", "kind": "Other"}, {"name": "header_data_from_array_1_0", "kind": "Other"}, {"name": "write_array_header_1_0", "kind": "Other"}, {"name": "write_array_header_2_0", "kind": "Other"}, {"name": "read_array_header_1_0", "kind": "Other"}, {"name": "read_array_header_2_0", "kind": "Other"}, {"name": "write_array", "kind": "Other"}, {"name": "read_array", "kind": "Other"}, {"name": "open_memmap", "kind": "Other"}], "numpy.lib.mixins": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "__all__", "kind": "Other"}, {"name": "NDArrayOperatorsMixin", "kind": "LocalType"}], "numpy.lib.scimath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "logn", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}], "numpy.lib._version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "NumpyVersion", "kind": "LocalType"}], "math": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SupportsFloatOrIndex", "kind": "Other"}, {"name": "e", "kind": "Other"}, {"name": "pi", "kind": "Other"}, {"name": "inf", "kind": "Other"}, {"name": "nan", "kind": "Other"}, {"name": "tau", "kind": "Other"}, {"name": "acos", "kind": "Other"}, {"name": "acosh", "kind": "Other"}, {"name": "asin", "kind": "Other"}, {"name": "asinh", "kind": "Other"}, {"name": "atan", "kind": "Other"}, {"name": "atan2", "kind": "Other"}, {"name": "atanh", "kind": "Other"}, {"name": "_SupportsCeil", "kind": "LocalType"}, {"name": "ceil", "kind": "Other"}, {"name": "comb", "kind": "Other"}, {"name": "copysign", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "degrees", "kind": "Other"}, {"name": "dist", "kind": "Other"}, {"name": "erf", "kind": "Other"}, {"name": "erfc", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expm1", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "factorial", "kind": "Other"}, {"name": "_SupportsFloor", "kind": "LocalType"}, {"name": "floor", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frexp", "kind": "Other"}, {"name": "fsum", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "gcd", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "isinf", "kind": "Other"}, {"name": "isfinite", "kind": "Other"}, {"name": "isnan", "kind": "Other"}, {"name": "isqrt", "kind": "Other"}, {"name": "lcm", "kind": "Other"}, {"name": "ldexp", "kind": "Other"}, {"name": "lgamma", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log1p", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "modf", "kind": "Other"}, {"name": "nextafter", "kind": "Other"}, {"name": "perm", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "radians", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "_SupportsTrunc", "kind": "LocalType"}, {"name": "trunc", "kind": "Other"}, {"name": "ulp", "kind": "Other"}], "numpy.linalg.linalg": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "int32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "LinAlgError", "kind": "ImportedType", "fullname": "numpy.linalg.LinAlgError"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "tensorsolve", "kind": "Other"}, {"name": "solve", "kind": "Other"}, {"name": "tensorinv", "kind": "Other"}, {"name": "inv", "kind": "Other"}, {"name": "matrix_power", "kind": "Other"}, {"name": "cholesky", "kind": "Other"}, {"name": "qr", "kind": "Other"}, {"name": "eigvals", "kind": "Other"}, {"name": "eigvalsh", "kind": "Other"}, {"name": "eig", "kind": "Other"}, {"name": "eigh", "kind": "Other"}, {"name": "svd", "kind": "Other"}, {"name": "cond", "kind": "Other"}, {"name": "matrix_rank", "kind": "Other"}, {"name": "pinv", "kind": "Other"}, {"name": "slogdet", "kind": "Other"}, {"name": "det", "kind": "Other"}, {"name": "lstsq", "kind": "Other"}, {"name": "norm", "kind": "Other"}, {"name": "multi_dot", "kind": "Other"}], "numpy.ma.extras": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "AxisConcatenator", "kind": "ImportedType", "fullname": "numpy.lib.index_tricks.AxisConcatenator"}, {"name": "dot", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "count_masked", "kind": "Other"}, {"name": "masked_all", "kind": "Other"}, {"name": "masked_all_like", "kind": "Other"}, {"name": "_fromnxfunction", "kind": "LocalType"}, {"name": "_fromnxfunction_single", "kind": "LocalType"}, {"name": "_fromnxfunction_seq", "kind": "LocalType"}, {"name": "_fromnxfunction_allargs", "kind": "LocalType"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "compress_nd", "kind": "Other"}, {"name": "compress_rowcols", "kind": "Other"}, {"name": "compress_rows", "kind": "Other"}, {"name": "compress_cols", "kind": "Other"}, {"name": "mask_rows", "kind": "Other"}, {"name": "mask_cols", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "MAxisConcatenator", "kind": "LocalType"}, {"name": "mr_class", "kind": "LocalType"}, {"name": "mr_", "kind": "Other"}, {"name": "ndenumerate", "kind": "Other"}, {"name": "flatnotmasked_edges", "kind": "Other"}, {"name": "notmasked_edges", "kind": "Other"}, {"name": "flatnotmasked_contiguous", "kind": "Other"}, {"name": "notmasked_contiguous", "kind": "Other"}, {"name": "clump_unmasked", "kind": "Other"}, {"name": "clump_masked", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}], "numpy.ma.core": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float64", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "expand_dims", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "zeros_like", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "MaskType", "kind": "Other"}, {"name": "nomask", "kind": "Other"}, {"name": "MaskedArrayFutureWarning", "kind": "LocalType"}, {"name": "MAError", "kind": "LocalType"}, {"name": "MaskError", "kind": "LocalType"}, {"name": "default_fill_value", "kind": "Other"}, {"name": "minimum_fill_value", "kind": "Other"}, {"name": "maximum_fill_value", "kind": "Other"}, {"name": "set_fill_value", "kind": "Other"}, {"name": "common_fill_value", "kind": "Other"}, {"name": "filled", "kind": "Other"}, {"name": "getdata", "kind": "Other"}, {"name": "get_data", "kind": "Other"}, {"name": "fix_invalid", "kind": "Other"}, {"name": "_MaskedUFunc", "kind": "LocalType"}, {"name": "_MaskedUnaryOperation", "kind": "LocalType"}, {"name": "_MaskedBinaryOperation", "kind": "LocalType"}, {"name": "_DomainedBinaryOperation", "kind": "LocalType"}, {"name": "exp", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "absolute", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "ceil", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "make_mask_descr", "kind": "Other"}, {"name": "getmask", "kind": "Other"}, {"name": "get_mask", "kind": "Other"}, {"name": "getmaskarray", "kind": "Other"}, {"name": "is_mask", "kind": "Other"}, {"name": "make_mask", "kind": "Other"}, {"name": "make_mask_none", "kind": "Other"}, {"name": "mask_or", "kind": "Other"}, {"name": "flatten_mask", "kind": "Other"}, {"name": "masked_where", "kind": "Other"}, {"name": "masked_greater", "kind": "Other"}, {"name": "masked_greater_equal", "kind": "Other"}, {"name": "masked_less", "kind": "Other"}, {"name": "masked_less_equal", "kind": "Other"}, {"name": "masked_not_equal", "kind": "Other"}, {"name": "masked_equal", "kind": "Other"}, {"name": "masked_inside", "kind": "Other"}, {"name": "masked_outside", "kind": "Other"}, {"name": "masked_object", "kind": "Other"}, {"name": "masked_values", "kind": "Other"}, {"name": "masked_invalid", "kind": "Other"}, {"name": "_MaskedPrintOption", "kind": "LocalType"}, {"name": "masked_print_option", "kind": "Other"}, {"name": "flatten_structured_array", "kind": "Other"}, {"name": "MaskedIterator", "kind": "LocalType"}, {"name": "MaskedArray", "kind": "LocalType"}, {"name": "mvoid", "kind": "LocalType"}, {"name": "isMaskedArray", "kind": "Other"}, {"name": "isarray", "kind": "Other"}, {"name": "isMA", "kind": "Other"}, {"name": "MaskedConstant", "kind": "LocalType"}, {"name": "masked", "kind": "Other"}, {"name": "masked_singleton", "kind": "Other"}, {"name": "masked_array", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "is_masked", "kind": "Other"}, {"name": "_extrema_operation", "kind": "LocalType"}, {"name": "min", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "_frommethod", "kind": "LocalType"}, {"name": "all", "kind": "Other"}, {"name": "anomalies", "kind": "Other"}, {"name": "anom", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "harden_mask", "kind": "Other"}, {"name": "ids", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "soften_mask", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "compressed", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "innerproduct", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "outerproduct", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "allequal", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "fromflex", "kind": "Other"}, {"name": "_convert2ma", "kind": "LocalType"}, {"name": "arange", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}], "numpy.polynomial.chebyshev": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "chebtrim", "kind": "Other"}, {"name": "poly2cheb", "kind": "Other"}, {"name": "cheb2poly", "kind": "Other"}, {"name": "chebdomain", "kind": "Other"}, {"name": "chebzero", "kind": "Other"}, {"name": "chebone", "kind": "Other"}, {"name": "chebx", "kind": "Other"}, {"name": "chebline", "kind": "Other"}, {"name": "chebfromroots", "kind": "Other"}, {"name": "chebadd", "kind": "Other"}, {"name": "chebsub", "kind": "Other"}, {"name": "chebmulx", "kind": "Other"}, {"name": "chebmul", "kind": "Other"}, {"name": "chebdiv", "kind": "Other"}, {"name": "chebpow", "kind": "Other"}, {"name": "chebder", "kind": "Other"}, {"name": "chebint", "kind": "Other"}, {"name": "chebval", "kind": "Other"}, {"name": "chebval2d", "kind": "Other"}, {"name": "chebgrid2d", "kind": "Other"}, {"name": "chebval3d", "kind": "Other"}, {"name": "chebgrid3d", "kind": "Other"}, {"name": "chebvander", "kind": "Other"}, {"name": "chebvander2d", "kind": "Other"}, {"name": "chebvander3d", "kind": "Other"}, {"name": "chebfit", "kind": "Other"}, {"name": "chebcompanion", "kind": "Other"}, {"name": "chebroots", "kind": "Other"}, {"name": "chebinterpolate", "kind": "Other"}, {"name": "chebgauss", "kind": "Other"}, {"name": "chebweight", "kind": "Other"}, {"name": "chebpts1", "kind": "Other"}, {"name": "chebpts2", "kind": "Other"}, {"name": "Chebyshev", "kind": "LocalType"}], "numpy.polynomial.hermite": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "hermtrim", "kind": "Other"}, {"name": "poly2herm", "kind": "Other"}, {"name": "herm2poly", "kind": "Other"}, {"name": "hermdomain", "kind": "Other"}, {"name": "hermzero", "kind": "Other"}, {"name": "hermone", "kind": "Other"}, {"name": "hermx", "kind": "Other"}, {"name": "hermline", "kind": "Other"}, {"name": "hermfromroots", "kind": "Other"}, {"name": "hermadd", "kind": "Other"}, {"name": "hermsub", "kind": "Other"}, {"name": "hermmulx", "kind": "Other"}, {"name": "hermmul", "kind": "Other"}, {"name": "hermdiv", "kind": "Other"}, {"name": "hermpow", "kind": "Other"}, {"name": "hermder", "kind": "Other"}, {"name": "hermint", "kind": "Other"}, {"name": "hermval", "kind": "Other"}, {"name": "hermval2d", "kind": "Other"}, {"name": "hermgrid2d", "kind": "Other"}, {"name": "hermval3d", "kind": "Other"}, {"name": "hermgrid3d", "kind": "Other"}, {"name": "hermvander", "kind": "Other"}, {"name": "hermvander2d", "kind": "Other"}, {"name": "hermvander3d", "kind": "Other"}, {"name": "hermfit", "kind": "Other"}, {"name": "hermcompanion", "kind": "Other"}, {"name": "hermroots", "kind": "Other"}, {"name": "hermgauss", "kind": "Other"}, {"name": "hermweight", "kind": "Other"}, {"name": "Hermite", "kind": "LocalType"}], "numpy.polynomial.hermite_e": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "hermetrim", "kind": "Other"}, {"name": "poly2herme", "kind": "Other"}, {"name": "herme2poly", "kind": "Other"}, {"name": "hermedomain", "kind": "Other"}, {"name": "hermezero", "kind": "Other"}, {"name": "hermeone", "kind": "Other"}, {"name": "hermex", "kind": "Other"}, {"name": "hermeline", "kind": "Other"}, {"name": "hermefromroots", "kind": "Other"}, {"name": "hermeadd", "kind": "Other"}, {"name": "hermesub", "kind": "Other"}, {"name": "hermemulx", "kind": "Other"}, {"name": "hermemul", "kind": "Other"}, {"name": "hermediv", "kind": "Other"}, {"name": "hermepow", "kind": "Other"}, {"name": "hermeder", "kind": "Other"}, {"name": "hermeint", "kind": "Other"}, {"name": "hermeval", "kind": "Other"}, {"name": "hermeval2d", "kind": "Other"}, {"name": "hermegrid2d", "kind": "Other"}, {"name": "hermeval3d", "kind": "Other"}, {"name": "hermegrid3d", "kind": "Other"}, {"name": "hermevander", "kind": "Other"}, {"name": "hermevander2d", "kind": "Other"}, {"name": "hermevander3d", "kind": "Other"}, {"name": "hermefit", "kind": "Other"}, {"name": "hermecompanion", "kind": "Other"}, {"name": "hermeroots", "kind": "Other"}, {"name": "hermegauss", "kind": "Other"}, {"name": "hermeweight", "kind": "Other"}, {"name": "HermiteE", "kind": "LocalType"}], "numpy.polynomial.laguerre": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "lagtrim", "kind": "Other"}, {"name": "poly2lag", "kind": "Other"}, {"name": "lag2poly", "kind": "Other"}, {"name": "lagdomain", "kind": "Other"}, {"name": "lagzero", "kind": "Other"}, {"name": "lagone", "kind": "Other"}, {"name": "lagx", "kind": "Other"}, {"name": "lagline", "kind": "Other"}, {"name": "lagfromroots", "kind": "Other"}, {"name": "lagadd", "kind": "Other"}, {"name": "lagsub", "kind": "Other"}, {"name": "lagmulx", "kind": "Other"}, {"name": "lagmul", "kind": "Other"}, {"name": "lagdiv", "kind": "Other"}, {"name": "lagpow", "kind": "Other"}, {"name": "lagder", "kind": "Other"}, {"name": "lagint", "kind": "Other"}, {"name": "lagval", "kind": "Other"}, {"name": "lagval2d", "kind": "Other"}, {"name": "laggrid2d", "kind": "Other"}, {"name": "lagval3d", "kind": "Other"}, {"name": "laggrid3d", "kind": "Other"}, {"name": "lagvander", "kind": "Other"}, {"name": "lagvander2d", "kind": "Other"}, {"name": "lagvander3d", "kind": "Other"}, {"name": "lagfit", "kind": "Other"}, {"name": "lagcompanion", "kind": "Other"}, {"name": "lagroots", "kind": "Other"}, {"name": "laggauss", "kind": "Other"}, {"name": "lagweight", "kind": "Other"}, {"name": "Laguerre", "kind": "LocalType"}], "numpy.polynomial.legendre": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "legtrim", "kind": "Other"}, {"name": "poly2leg", "kind": "Other"}, {"name": "leg2poly", "kind": "Other"}, {"name": "legdomain", "kind": "Other"}, {"name": "legzero", "kind": "Other"}, {"name": "legone", "kind": "Other"}, {"name": "legx", "kind": "Other"}, {"name": "legline", "kind": "Other"}, {"name": "legfromroots", "kind": "Other"}, {"name": "legadd", "kind": "Other"}, {"name": "legsub", "kind": "Other"}, {"name": "legmulx", "kind": "Other"}, {"name": "legmul", "kind": "Other"}, {"name": "legdiv", "kind": "Other"}, {"name": "legpow", "kind": "Other"}, {"name": "legder", "kind": "Other"}, {"name": "legint", "kind": "Other"}, {"name": "legval", "kind": "Other"}, {"name": "legval2d", "kind": "Other"}, {"name": "leggrid2d", "kind": "Other"}, {"name": "legval3d", "kind": "Other"}, {"name": "leggrid3d", "kind": "Other"}, {"name": "legvander", "kind": "Other"}, {"name": "legvander2d", "kind": "Other"}, {"name": "legvander3d", "kind": "Other"}, {"name": "legfit", "kind": "Other"}, {"name": "legcompanion", "kind": "Other"}, {"name": "legroots", "kind": "Other"}, {"name": "leggauss", "kind": "Other"}, {"name": "legweight", "kind": "Other"}, {"name": "Legendre", "kind": "LocalType"}], "numpy.polynomial.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "polytrim", "kind": "Other"}, {"name": "polydomain", "kind": "Other"}, {"name": "polyzero", "kind": "Other"}, {"name": "polyone", "kind": "Other"}, {"name": "polyx", "kind": "Other"}, {"name": "polyline", "kind": "Other"}, {"name": "polyfromroots", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymulx", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polypow", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyvalfromroots", "kind": "Other"}, {"name": "polyval2d", "kind": "Other"}, {"name": "polygrid2d", "kind": "Other"}, {"name": "polyval3d", "kind": "Other"}, {"name": "polygrid3d", "kind": "Other"}, {"name": "polyvander", "kind": "Other"}, {"name": "polyvander2d", "kind": "Other"}, {"name": "polyvander3d", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "polyroots", "kind": "Other"}, {"name": "Polynomial", "kind": "LocalType"}], "numpy.random._generator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint", "kind": "Other"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_DTypeLikeFloat32", "kind": "Other"}, {"name": "_DTypeLikeFloat64", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "default_rng", "kind": "Other"}], "numpy.random._mt19937": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint32", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_MT19937Internal", "kind": "LocalType"}, {"name": "_MT19937State", "kind": "LocalType"}, {"name": "MT19937", "kind": "LocalType"}], "numpy.random._pcg64": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_PCG64Internal", "kind": "LocalType"}, {"name": "_PCG64State", "kind": "LocalType"}, {"name": "PCG64", "kind": "LocalType"}, {"name": "PCG64DXSM", "kind": "LocalType"}], "numpy.random._philox": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_PhiloxInternal", "kind": "LocalType"}, {"name": "_PhiloxState", "kind": "LocalType"}, {"name": "Philox", "kind": "LocalType"}], "numpy.random._sfc64": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_SFC64Internal", "kind": "LocalType"}, {"name": "_SFC64State", "kind": "LocalType"}, {"name": "SFC64", "kind": "LocalType"}], "numpy.random.bit_generator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "Lock", "kind": "ImportedType", "fullname": "threading.Lock"}, {"name": "Callable", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypedDict", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_DTypeLikeUint32", "kind": "Other"}, {"name": "_DTypeLikeUint64", "kind": "Other"}, {"name": "_SeedSeqState", "kind": "LocalType"}, {"name": "_Interface", "kind": "LocalType"}, {"name": "ISeedSequence", "kind": "LocalType"}, {"name": "ISpawnableSeedSequence", "kind": "LocalType"}, {"name": "SeedlessSeedSequence", "kind": "LocalType"}, {"name": "SeedSequence", "kind": "LocalType"}, {"name": "BitGenerator", "kind": "LocalType"}], "numpy.random.mtrand": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint", "kind": "Other"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_DTypeLikeFloat32", "kind": "Other"}, {"name": "_DTypeLikeFloat64", "kind": "Other"}, {"name": "RandomState", "kind": "LocalType"}, {"name": "_rand", "kind": "Other"}, {"name": "beta", "kind": "Other"}, {"name": "binomial", "kind": "Other"}, {"name": "bytes", "kind": "Other"}, {"name": "chisquare", "kind": "Other"}, {"name": "choice", "kind": "Other"}, {"name": "dirichlet", "kind": "Other"}, {"name": "exponential", "kind": "Other"}, {"name": "f", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "get_state", "kind": "Other"}, {"name": "geometric", "kind": "Other"}, {"name": "gumbel", "kind": "Other"}, {"name": "hypergeometric", "kind": "Other"}, {"name": "laplace", "kind": "Other"}, {"name": "logistic", "kind": "Other"}, {"name": "lognormal", "kind": "Other"}, {"name": "logseries", "kind": "Other"}, {"name": "multinomial", "kind": "Other"}, {"name": "multivariate_normal", "kind": "Other"}, {"name": "negative_binomial", "kind": "Other"}, {"name": "noncentral_chisquare", "kind": "Other"}, {"name": "noncentral_f", "kind": "Other"}, {"name": "normal", "kind": "Other"}, {"name": "pareto", "kind": "Other"}, {"name": "permutation", "kind": "Other"}, {"name": "poisson", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rand", "kind": "Other"}, {"name": "randint", "kind": "Other"}, {"name": "randn", "kind": "Other"}, {"name": "random", "kind": "Other"}, {"name": "random_integers", "kind": "Other"}, {"name": "random_sample", "kind": "Other"}, {"name": "rayleigh", "kind": "Other"}, {"name": "seed", "kind": "Other"}, {"name": "set_state", "kind": "Other"}, {"name": "shuffle", "kind": "Other"}, {"name": "standard_cauchy", "kind": "Other"}, {"name": "standard_exponential", "kind": "Other"}, {"name": "standard_gamma", "kind": "Other"}, {"name": "standard_normal", "kind": "Other"}, {"name": "standard_t", "kind": "Other"}, {"name": "triangular", "kind": "Other"}, {"name": "uniform", "kind": "Other"}, {"name": "vonmises", "kind": "Other"}, {"name": "wald", "kind": "Other"}, {"name": "weibull", "kind": "Other"}, {"name": "zipf", "kind": "Other"}, {"name": "sample", "kind": "Other"}, {"name": "ranf", "kind": "Other"}, {"name": "set_bit_generator", "kind": "Other"}, {"name": "get_bit_generator", "kind": "Other"}], "numpy.testing._private.utils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ast", "kind": "Module", "fullname": "ast"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "warnings", "kind": "Module", "fullname": "warnings"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "contextlib", "kind": "Module", "fullname": "contextlib"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "_FloatValue", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "SkipTest", "kind": "ImportedType", "fullname": "unittest.case.SkipTest"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ET", "kind": "Other"}, {"name": "_FT", "kind": "Other"}, {"name": "_ComparisonFunc", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "KnownFailureException", "kind": "LocalType"}, {"name": "IgnoreException", "kind": "LocalType"}, {"name": "clear_and_catch_warnings", "kind": "LocalType"}, {"name": "_clear_and_catch_warnings_with_records", "kind": "LocalType"}, {"name": "_clear_and_catch_warnings_without_records", "kind": "LocalType"}, {"name": "suppress_warnings", "kind": "LocalType"}, {"name": "verbose", "kind": "Other"}, {"name": "IS_PYPY", "kind": "Other"}, {"name": "IS_PYSTON", "kind": "Other"}, {"name": "HAS_REFCOUNT", "kind": "Other"}, {"name": "HAS_LAPACK64", "kind": "Other"}, {"name": "assert_", "kind": "Other"}, {"name": "memusage", "kind": "Other"}, {"name": "jiffies", "kind": "Other"}, {"name": "build_err_msg", "kind": "Other"}, {"name": "assert_equal", "kind": "Other"}, {"name": "print_assert_equal", "kind": "Other"}, {"name": "assert_almost_equal", "kind": "Other"}, {"name": "assert_approx_equal", "kind": "Other"}, {"name": "assert_array_compare", "kind": "Other"}, {"name": "assert_array_equal", "kind": "Other"}, {"name": "assert_array_almost_equal", "kind": "Other"}, {"name": "assert_array_less", "kind": "Other"}, {"name": "runstring", "kind": "Other"}, {"name": "assert_string_equal", "kind": "Other"}, {"name": "rundocs", "kind": "Other"}, {"name": "raises", "kind": "Other"}, {"name": "assert_raises", "kind": "Other"}, {"name": "assert_raises_regex", "kind": "Other"}, {"name": "decorate_methods", "kind": "Other"}, {"name": "measure", "kind": "Other"}, {"name": "assert_allclose", "kind": "Other"}, {"name": "assert_array_almost_equal_nulp", "kind": "Other"}, {"name": "assert_array_max_ulp", "kind": "Other"}, {"name": "assert_warns", "kind": "Other"}, {"name": "assert_no_warnings", "kind": "Other"}, {"name": "tempdir", "kind": "Other"}, {"name": "temppath", "kind": "Other"}, {"name": "assert_no_gc_cycles", "kind": "Other"}, {"name": "break_cycles", "kind": "Other"}], "unittest": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FunctionTestCase", "kind": "LocalType"}, {"name": "SkipTest", "kind": "LocalType"}, {"name": "TestCase", "kind": "LocalType"}, {"name": "expectedFailure", "kind": "Other"}, {"name": "skip", "kind": "Other"}, {"name": "skipIf", "kind": "Other"}, {"name": "skipUnless", "kind": "Other"}, {"name": "TestLoader", "kind": "LocalType"}, {"name": "defaultTestLoader", "kind": "Other"}, {"name": "findTestCases", "kind": "Other"}, {"name": "getTestCaseNames", "kind": "Other"}, {"name": "makeSuite", "kind": "Other"}, {"name": "TestProgram", "kind": "LocalType"}, {"name": "main", "kind": "Other"}, {"name": "TestResult", "kind": "LocalType"}, {"name": "TextTestResult", "kind": "LocalType"}, {"name": "TextTestRunner", "kind": "LocalType"}, {"name": "installHandler", "kind": "Other"}, {"name": "registerResult", "kind": "Other"}, {"name": "removeHandler", "kind": "Other"}, {"name": "removeResult", "kind": "Other"}, {"name": "BaseTestSuite", "kind": "LocalType"}, {"name": "TestSuite", "kind": "LocalType"}, {"name": "IsolatedAsyncioTestCase", "kind": "LocalType"}, {"name": "addModuleCleanup", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "load_tests", "kind": "Other"}, {"name": "__dir__", "kind": "Other"}], "numpy._version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "json", "kind": "Module", "fullname": "json"}, {"name": "version_json", "kind": "Other"}, {"name": "get_versions", "kind": "Other"}], "numpy.matrixlib.defmatrix": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "bmat", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "mat", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "_ctypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "CDLL", "kind": "ImportedType", "fullname": "ctypes.CDLL"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_CT", "kind": "Other"}, {"name": "FUNCFLAG_CDECL", "kind": "Other"}, {"name": "FUNCFLAG_PYTHONAPI", "kind": "Other"}, {"name": "FUNCFLAG_USE_ERRNO", "kind": "Other"}, {"name": "FUNCFLAG_USE_LASTERROR", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "POINTER", "kind": "Other"}, {"name": "pointer", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "byref", "kind": "Other"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "CFuncPtr", "kind": "LocalType"}, {"name": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "Array", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "get_errno", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}], "time": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_TimeTuple", "kind": "Other"}, {"name": "altzone", "kind": "Other"}, {"name": "daylight", "kind": "Other"}, {"name": "timezone", "kind": "Other"}, {"name": "tzname", "kind": "Other"}, {"name": "CLOCK_BOOTTIME", "kind": "Other"}, {"name": "CLOCK_MONOTONIC", "kind": "Other"}, {"name": "CLOCK_MONOTONIC_RAW", "kind": "Other"}, {"name": "CLOCK_PROCESS_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_REALTIME", "kind": "Other"}, {"name": "CLOCK_THREAD_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_TAI", "kind": "Other"}, {"name": "struct_time", "kind": "LocalType"}, {"name": "asctime", "kind": "Other"}, {"name": "ctime", "kind": "Other"}, {"name": "gmtime", "kind": "Other"}, {"name": "localtime", "kind": "Other"}, {"name": "mktime", "kind": "Other"}, {"name": "sleep", "kind": "Other"}, {"name": "strftime", "kind": "Other"}, {"name": "strptime", "kind": "Other"}, {"name": "time", "kind": "Other"}, {"name": "tzset", "kind": "Other"}, {"name": "_ClockInfo", "kind": "LocalType"}, {"name": "get_clock_info", "kind": "Other"}, {"name": "monotonic", "kind": "Other"}, {"name": "perf_counter", "kind": "Other"}, {"name": "process_time", "kind": "Other"}, {"name": "clock_getres", "kind": "Other"}, {"name": "clock_gettime", "kind": "Other"}, {"name": "clock_settime", "kind": "Other"}, {"name": "clock_gettime_ns", "kind": "Other"}, {"name": "clock_settime_ns", "kind": "Other"}, {"name": "pthread_getcpuclockid", "kind": "Other"}, {"name": "monotonic_ns", "kind": "Other"}, {"name": "perf_counter_ns", "kind": "Other"}, {"name": "process_time_ns", "kind": "Other"}, {"name": "time_ns", "kind": "Other"}, {"name": "thread_time", "kind": "Other"}, {"name": "thread_time_ns", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "numpy.compat._inspect": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "__all__", "kind": "Other"}, {"name": "ismethod", "kind": "Other"}, {"name": "isfunction", "kind": "Other"}, {"name": "iscode", "kind": "Other"}, {"name": "CO_OPTIMIZED", "kind": "Other"}, {"name": "CO_NEWLOCALS", "kind": "Other"}, {"name": "CO_VARARGS", "kind": "Other"}, {"name": "CO_VARKEYWORDS", "kind": "Other"}, {"name": "getargs", "kind": "Other"}, {"name": "getargspec", "kind": "Other"}, {"name": "getargvalues", "kind": "Other"}, {"name": "joinseq", "kind": "Other"}, {"name": "strseq", "kind": "Other"}, {"name": "formatargspec", "kind": "Other"}, {"name": "formatargvalues", "kind": "Other"}], "functools": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "SupportsAllComparisons", "kind": "ImportedType", "fullname": "_typeshed.SupportsAllComparisons"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "Callable", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_AnyCallable", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "reduce", "kind": "Other"}, {"name": "_CacheInfo", "kind": "LocalType"}, {"name": "_CacheParameters", "kind": "LocalType"}, {"name": "_lru_cache_wrapper", "kind": "LocalType"}, {"name": "lru_cache", "kind": "Other"}, {"name": "WRAPPER_ASSIGNMENTS", "kind": "Other"}, {"name": "WRAPPER_UPDATES", "kind": "Other"}, {"name": "update_wrapper", "kind": "Other"}, {"name": "wraps", "kind": "Other"}, {"name": "total_ordering", "kind": "Other"}, {"name": "cmp_to_key", "kind": "Other"}, {"name": "partial", "kind": "LocalType"}, {"name": "_Descriptor", "kind": "Other"}, {"name": "partialmethod", "kind": "LocalType"}, {"name": "_SingleDispatchCallable", "kind": "LocalType"}, {"name": "singledispatch", "kind": "Other"}, {"name": "singledispatchmethod", "kind": "LocalType"}, {"name": "cached_property", "kind": "LocalType"}, {"name": "cache", "kind": "Other"}, {"name": "_make_key", "kind": "Other"}], "numpy.typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_docstrings", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "test", "kind": "Other"}], "numpy.polynomial._polybase": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "LocalType"}], "numpy.polynomial.polyutils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "RankWarning", "kind": "LocalType"}, {"name": "trimseq", "kind": "Other"}, {"name": "as_series", "kind": "Other"}, {"name": "trimcoef", "kind": "Other"}, {"name": "getdomain", "kind": "Other"}, {"name": "mapparms", "kind": "Other"}, {"name": "mapdomain", "kind": "Other"}, {"name": "format_float", "kind": "Other"}], "threading": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_profile_hook", "kind": "Other"}, {"name": "active_count", "kind": "Other"}, {"name": "activeCount", "kind": "Other"}, {"name": "current_thread", "kind": "Other"}, {"name": "currentThread", "kind": "Other"}, {"name": "get_ident", "kind": "Other"}, {"name": "enumerate", "kind": "Other"}, {"name": "main_thread", "kind": "Other"}, {"name": "get_native_id", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "stack_size", "kind": "Other"}, {"name": "TIMEOUT_MAX", "kind": "Other"}, {"name": "ThreadError", "kind": "LocalType"}, {"name": "local", "kind": "LocalType"}, {"name": "Thread", "kind": "LocalType"}, {"name": "_DummyThread", "kind": "LocalType"}, {"name": "Lock", "kind": "LocalType"}, {"name": "_RLock", "kind": "LocalType"}, {"name": "RLock", "kind": "Other"}, {"name": "Condition", "kind": "LocalType"}, {"name": "Semaphore", "kind": "LocalType"}, {"name": "BoundedSemaphore", "kind": "LocalType"}, {"name": "Event", "kind": "LocalType"}, {"name": "_excepthook", "kind": "Other"}, {"name": "_ExceptHookArgs", "kind": "ImportedType", "fullname": "_thread._ExceptHookArgs"}, {"name": "excepthook", "kind": "Other"}, {"name": "ExceptHookArgs", "kind": "Other"}, {"name": "Timer", "kind": "LocalType"}, {"name": "Barrier", "kind": "LocalType"}, {"name": "BrokenBarrierError", "kind": "LocalType"}], "numpy.testing._private": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "unittest.case": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "logging", "kind": "Module", "fullname": "logging"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "SupportsDunderGE", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderGE"}, {"name": "SupportsDunderGT", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderGT"}, {"name": "SupportsDunderLE", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderLE"}, {"name": "SupportsDunderLT", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderLT"}, {"name": "SupportsRSub", "kind": "ImportedType", "fullname": "_typeshed.SupportsRSub"}, {"name": "SupportsSub", "kind": "ImportedType", "fullname": "_typeshed.SupportsSub"}, {"name": "Callable", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "WarningMessage", "kind": "ImportedType", "fullname": "warnings.WarningMessage"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "_T", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_FT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "DIFF_OMITTED", "kind": "Other"}, {"name": "_BaseTestCaseContext", "kind": "LocalType"}, {"name": "_AssertLogsContext", "kind": "ImportedType", "fullname": "unittest._log._AssertLogsContext"}, {"name": "_LoggingWatcher", "kind": "ImportedType", "fullname": "unittest._log._LoggingWatcher"}, {"name": "addModuleCleanup", "kind": "Other"}, {"name": "doModuleCleanups", "kind": "Other"}, {"name": "expectedFailure", "kind": "Other"}, {"name": "skip", "kind": "Other"}, {"name": "skipIf", "kind": "Other"}, {"name": "skipUnless", "kind": "Other"}, {"name": "SkipTest", "kind": "LocalType"}, {"name": "_SupportsAbsAndDunderGE", "kind": "LocalType"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "TestCase", "kind": "LocalType"}, {"name": "FunctionTestCase", "kind": "LocalType"}, {"name": "_AssertRaisesContext", "kind": "LocalType"}, {"name": "_AssertWarnsContext", "kind": "LocalType"}], "warnings": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "warn", "kind": "Other"}, {"name": "warn_explicit", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_W", "kind": "Other"}, {"name": "_ActionKind", "kind": "Other"}, {"name": "filters", "kind": "Other"}, {"name": "showwarning", "kind": "Other"}, {"name": "formatwarning", "kind": "Other"}, {"name": "filterwarnings", "kind": "Other"}, {"name": "simplefilter", "kind": "Other"}, {"name": "resetwarnings", "kind": "Other"}, {"name": "_OptionError", "kind": "LocalType"}, {"name": "WarningMessage", "kind": "LocalType"}, {"name": "catch_warnings", "kind": "LocalType"}], "unittest.loader": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "Any", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_SortComparisonMethod", "kind": "Other"}, {"name": "_SuiteClass", "kind": "Other"}, {"name": "VALID_MODULE_NAME", "kind": "Other"}, {"name": "TestLoader", "kind": "LocalType"}, {"name": "defaultTestLoader", "kind": "Other"}, {"name": "getTestCaseNames", "kind": "Other"}, {"name": "makeSuite", "kind": "Other"}, {"name": "findTestCases", "kind": "Other"}], "unittest.main": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "MAIN_EXAMPLES", "kind": "Other"}, {"name": "MODULE_EXAMPLES", "kind": "Other"}, {"name": "_TestRunner", "kind": "LocalType"}, {"name": "TestProgram", "kind": "LocalType"}, {"name": "main", "kind": "Other"}], "unittest.result": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_F", "kind": "Other"}, {"name": "STDOUT_LINE", "kind": "Other"}, {"name": "STDERR_LINE", "kind": "Other"}, {"name": "failfast", "kind": "Other"}, {"name": "TestResult", "kind": "LocalType"}], "unittest.runner": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ResultClassType", "kind": "Other"}, {"name": "TextTestResult", "kind": "LocalType"}, {"name": "TextTestRunner", "kind": "LocalType"}], "unittest.signals": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "installHandler", "kind": "Other"}, {"name": "registerResult", "kind": "Other"}, {"name": "removeResult", "kind": "Other"}, {"name": "removeHandler", "kind": "Other"}], "unittest.suite": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_TestType", "kind": "Other"}, {"name": "BaseTestSuite", "kind": "LocalType"}, {"name": "TestSuite", "kind": "LocalType"}], "unittest.async_case": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "_T", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "IsolatedAsyncioTestCase", "kind": "LocalType"}], "json": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsRead", "kind": "ImportedType", "fullname": "_typeshed.SupportsRead"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "JSONDecodeError", "kind": "LocalType"}, {"name": "JSONDecoder", "kind": "LocalType"}, {"name": "JSONEncoder", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "dumps", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "loads", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "detect_encoding", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "numpy.compat": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_inspect", "kind": "Module", "fullname": "numpy.compat._inspect"}, {"name": "py3k", "kind": "Module", "fullname": "numpy.compat.py3k"}, {"name": "getargspec", "kind": "Other"}, {"name": "formatargspec", "kind": "Other"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "pickle", "kind": "Other"}, {"name": "long", "kind": "Other"}, {"name": "integer_types", "kind": "Other"}, {"name": "basestring", "kind": "Other"}, {"name": "unicode", "kind": "Other"}, {"name": "bytes", "kind": "ImportedType", "fullname": "builtins.bytes"}, {"name": "asunicode", "kind": "Other"}, {"name": "asbytes", "kind": "Other"}, {"name": "asstr", "kind": "Other"}, {"name": "isfileobj", "kind": "Other"}, {"name": "open_latin1", "kind": "Other"}, {"name": "sixu", "kind": "Other"}, {"name": "strchar", "kind": "Other"}, {"name": "getexception", "kind": "Other"}, {"name": "asbytes_nested", "kind": "Other"}, {"name": "asunicode_nested", "kind": "Other"}, {"name": "is_pathlib_path", "kind": "Other"}, {"name": "contextlib_nullcontext", "kind": "LocalType"}, {"name": "npy_load_module", "kind": "Other"}, {"name": "os_fspath", "kind": "Other"}, {"name": "os_PathLike", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy._typing._add_docstring": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "re", "kind": "Module", "fullname": "re"}, {"name": "textwrap", "kind": "Module", "fullname": "textwrap"}, {"name": "NDArray", "kind": "Other"}, {"name": "_docstrings_list", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "_parse_docstrings", "kind": "Other"}, {"name": "_docstrings", "kind": "Other"}], "_thread": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Callable", "kind": "Other"}, {"name": "Thread", "kind": "ImportedType", "fullname": "threading.Thread"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "_count", "kind": "Other"}, {"name": "LockType", "kind": "LocalType"}, {"name": "start_new_thread", "kind": "Other"}, {"name": "interrupt_main", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "allocate_lock", "kind": "Other"}, {"name": "get_ident", "kind": "Other"}, {"name": "stack_size", "kind": "Other"}, {"name": "TIMEOUT_MAX", "kind": "Other"}, {"name": "get_native_id", "kind": "Other"}, {"name": "_ExceptHookArgs", "kind": "LocalType"}, {"name": "_excepthook", "kind": "Other"}], "unittest._log": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "logging", "kind": "Module", "fullname": "logging"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "_L", "kind": "Other"}, {"name": "_LoggingWatcher", "kind": "LocalType"}, {"name": "_AssertLogsContext", "kind": "LocalType"}], "logging": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "threading", "kind": "Module", "fullname": "threading"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Template", "kind": "ImportedType", "fullname": "string.Template"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_SysExcInfoType", "kind": "Other"}, {"name": "_ExcInfoType", "kind": "Other"}, {"name": "_ArgsType", "kind": "Other"}, {"name": "_FilterType", "kind": "Other"}, {"name": "_Level", "kind": "Other"}, {"name": "_FormatStyle", "kind": "Other"}, {"name": "raiseExceptions", "kind": "Other"}, {"name": "logThreads", "kind": "Other"}, {"name": "logMultiprocessing", "kind": "Other"}, {"name": "logProcesses", "kind": "Other"}, {"name": "_srcfile", "kind": "Other"}, {"name": "currentframe", "kind": "Other"}, {"name": "_levelToName", "kind": "Other"}, {"name": "_nameToLevel", "kind": "Other"}, {"name": "Filterer", "kind": "LocalType"}, {"name": "Manager", "kind": "LocalType"}, {"name": "Logger", "kind": "LocalType"}, {"name": "CRITICAL", "kind": "Other"}, {"name": "FATAL", "kind": "Other"}, {"name": "ERROR", "kind": "Other"}, {"name": "WARNING", "kind": "Other"}, {"name": "WARN", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "NOTSET", "kind": "Other"}, {"name": "Handler", "kind": "LocalType"}, {"name": "Formatter", "kind": "LocalType"}, {"name": "BufferingFormatter", "kind": "LocalType"}, {"name": "Filter", "kind": "LocalType"}, {"name": "LogRecord", "kind": "LocalType"}, {"name": "_L", "kind": "Other"}, {"name": "LoggerAdapter", "kind": "LocalType"}, {"name": "getLogger", "kind": "Other"}, {"name": "getLoggerClass", "kind": "Other"}, {"name": "getLogRecordFactory", "kind": "Other"}, {"name": "debug", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "warning", "kind": "Other"}, {"name": "warn", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "critical", "kind": "Other"}, {"name": "exception", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "fatal", "kind": "Other"}, {"name": "disable", "kind": "Other"}, {"name": "addLevelName", "kind": "Other"}, {"name": "getLevelName", "kind": "Other"}, {"name": "makeLogRecord", "kind": "Other"}, {"name": "basicConfig", "kind": "Other"}, {"name": "shutdown", "kind": "Other"}, {"name": "setLoggerClass", "kind": "Other"}, {"name": "captureWarnings", "kind": "Other"}, {"name": "setLogRecordFactory", "kind": "Other"}, {"name": "lastResort", "kind": "Other"}, {"name": "_StreamT", "kind": "Other"}, {"name": "StreamHandler", "kind": "LocalType"}, {"name": "FileHandler", "kind": "LocalType"}, {"name": "NullHandler", "kind": "LocalType"}, {"name": "PlaceHolder", "kind": "LocalType"}, {"name": "RootLogger", "kind": "LocalType"}, {"name": "root", "kind": "Other"}, {"name": "PercentStyle", "kind": "LocalType"}, {"name": "StrFormatStyle", "kind": "LocalType"}, {"name": "StringTemplateStyle", "kind": "LocalType"}, {"name": "_STYLES", "kind": "Other"}, {"name": "BASIC_FORMAT", "kind": "Other"}], "_warnings": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "_defaultaction", "kind": "Other"}, {"name": "_onceregistry", "kind": "Other"}, {"name": "filters", "kind": "Other"}, {"name": "warn", "kind": "Other"}, {"name": "warn_explicit", "kind": "Other"}], "json.decoder": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "JSONDecodeError", "kind": "LocalType"}, {"name": "JSONDecoder", "kind": "LocalType"}], "json.encoder": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ESCAPE", "kind": "Other"}, {"name": "ESCAPE_ASCII", "kind": "Other"}, {"name": "HAS_UTF8", "kind": "Other"}, {"name": "ESCAPE_DCT", "kind": "Other"}, {"name": "INFINITY", "kind": "Other"}, {"name": "py_encode_basestring", "kind": "Other"}, {"name": "py_encode_basestring_ascii", "kind": "Other"}, {"name": "JSONEncoder", "kind": "LocalType"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "numpy.compat.py3k": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "io", "kind": "Module", "fullname": "io"}, {"name": "pickle", "kind": "Other"}, {"name": "long", "kind": "Other"}, {"name": "integer_types", "kind": "Other"}, {"name": "basestring", "kind": "Other"}, {"name": "unicode", "kind": "Other"}, {"name": "bytes", "kind": "ImportedType", "fullname": "builtins.bytes"}, {"name": "asunicode", "kind": "Other"}, {"name": "asbytes", "kind": "Other"}, {"name": "asstr", "kind": "Other"}, {"name": "isfileobj", "kind": "Other"}, {"name": "open_latin1", "kind": "Other"}, {"name": "sixu", "kind": "Other"}, {"name": "strchar", "kind": "Other"}, {"name": "getexception", "kind": "Other"}, {"name": "asbytes_nested", "kind": "Other"}, {"name": "asunicode_nested", "kind": "Other"}, {"name": "is_pathlib_path", "kind": "Other"}, {"name": "contextlib_nullcontext", "kind": "LocalType"}, {"name": "npy_load_module", "kind": "Other"}, {"name": "os_fspath", "kind": "Other"}, {"name": "os_PathLike", "kind": "Other"}], "textwrap": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "__all__", "kind": "Other"}, {"name": "TextWrapper", "kind": "LocalType"}, {"name": "wrap", "kind": "Other"}, {"name": "fill", "kind": "Other"}, {"name": "shorten", "kind": "Other"}, {"name": "dedent", "kind": "Other"}, {"name": "indent", "kind": "Other"}], "string": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "RegexFlag", "kind": "ImportedType", "fullname": "re.RegexFlag"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ascii_letters", "kind": "Other"}, {"name": "ascii_lowercase", "kind": "Other"}, {"name": "ascii_uppercase", "kind": "Other"}, {"name": "digits", "kind": "Other"}, {"name": "hexdigits", "kind": "Other"}, {"name": "octdigits", "kind": "Other"}, {"name": "punctuation", "kind": "Other"}, {"name": "printable", "kind": "Other"}, {"name": "whitespace", "kind": "Other"}, {"name": "capwords", "kind": "Other"}, {"name": "_TemplateMetaclass", "kind": "Other"}, {"name": "Template", "kind": "LocalType"}, {"name": "Formatter", "kind": "LocalType"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}], "pickle": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "HIGHEST_PROTOCOL", "kind": "Other"}, {"name": "DEFAULT_PROTOCOL", "kind": "Other"}, {"name": "bytes_types", "kind": "Other"}, {"name": "_ReadableFileobj", "kind": "LocalType"}, {"name": "PickleBuffer", "kind": "LocalType"}, {"name": "_BufferCallback", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "dumps", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "loads", "kind": "Other"}, {"name": "PickleError", "kind": "LocalType"}, {"name": "PicklingError", "kind": "LocalType"}, {"name": "UnpicklingError", "kind": "LocalType"}, {"name": "_ReducedType", "kind": "Other"}, {"name": "Pickler", "kind": "LocalType"}, {"name": "Unpickler", "kind": "LocalType"}, {"name": "MARK", "kind": "Other"}, {"name": "STOP", "kind": "Other"}, {"name": "POP", "kind": "Other"}, {"name": "POP_MARK", "kind": "Other"}, {"name": "DUP", "kind": "Other"}, {"name": "FLOAT", "kind": "Other"}, {"name": "INT", "kind": "Other"}, {"name": "BININT", "kind": "Other"}, {"name": "BININT1", "kind": "Other"}, {"name": "LONG", "kind": "Other"}, {"name": "BININT2", "kind": "Other"}, {"name": "NONE", "kind": "Other"}, {"name": "PERSID", "kind": "Other"}, {"name": "BINPERSID", "kind": "Other"}, {"name": "REDUCE", "kind": "Other"}, {"name": "STRING", "kind": "Other"}, {"name": "BINSTRING", "kind": "Other"}, {"name": "SHORT_BINSTRING", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "BINUNICODE", "kind": "Other"}, {"name": "APPEND", "kind": "Other"}, {"name": "BUILD", "kind": "Other"}, {"name": "GLOBAL", "kind": "Other"}, {"name": "DICT", "kind": "Other"}, {"name": "EMPTY_DICT", "kind": "Other"}, {"name": "APPENDS", "kind": "Other"}, {"name": "GET", "kind": "Other"}, {"name": "BINGET", "kind": "Other"}, {"name": "INST", "kind": "Other"}, {"name": "LONG_BINGET", "kind": "Other"}, {"name": "LIST", "kind": "Other"}, {"name": "EMPTY_LIST", "kind": "Other"}, {"name": "OBJ", "kind": "Other"}, {"name": "PUT", "kind": "Other"}, {"name": "BINPUT", "kind": "Other"}, {"name": "LONG_BINPUT", "kind": "Other"}, {"name": "SETITEM", "kind": "Other"}, {"name": "TUPLE", "kind": "Other"}, {"name": "EMPTY_TUPLE", "kind": "Other"}, {"name": "SETITEMS", "kind": "Other"}, {"name": "BINFLOAT", "kind": "Other"}, {"name": "TRUE", "kind": "Other"}, {"name": "FALSE", "kind": "Other"}, {"name": "PROTO", "kind": "Other"}, {"name": "NEWOBJ", "kind": "Other"}, {"name": "EXT1", "kind": "Other"}, {"name": "EXT2", "kind": "Other"}, {"name": "EXT4", "kind": "Other"}, {"name": "TUPLE1", "kind": "Other"}, {"name": "TUPLE2", "kind": "Other"}, {"name": "TUPLE3", "kind": "Other"}, {"name": "NEWTRUE", "kind": "Other"}, {"name": "NEWFALSE", "kind": "Other"}, {"name": "LONG1", "kind": "Other"}, {"name": "LONG4", "kind": "Other"}, {"name": "BINBYTES", "kind": "Other"}, {"name": "SHORT_BINBYTES", "kind": "Other"}, {"name": "SHORT_BINUNICODE", "kind": "Other"}, {"name": "BINUNICODE8", "kind": "Other"}, {"name": "BINBYTES8", "kind": "Other"}, {"name": "EMPTY_SET", "kind": "Other"}, {"name": "ADDITEMS", "kind": "Other"}, {"name": "FROZENSET", "kind": "Other"}, {"name": "NEWOBJ_EX", "kind": "Other"}, {"name": "STACK_GLOBAL", "kind": "Other"}, {"name": "MEMOIZE", "kind": "Other"}, {"name": "FRAME", "kind": "Other"}, {"name": "BYTEARRAY8", "kind": "Other"}, {"name": "NEXT_BUFFER", "kind": "Other"}, {"name": "READONLY_BUFFER", "kind": "Other"}, {"name": "encode_long", "kind": "Other"}, {"name": "decode_long", "kind": "Other"}, {"name": "_Pickler", "kind": "Other"}, {"name": "_Unpickler", "kind": "Other"}]}} \ No newline at end of file +{"nodeStorage": {"139805276669024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "str", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251296768"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406236000"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406236448"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406236896"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406237344"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406237792"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406238240"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406238688"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406239584"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406240032"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "map", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406240480"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406240928"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406241376"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406241824"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406242272"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406242720"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406243168"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406243616"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406244064"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406244512"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406244960"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406245408"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406245856"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406246304"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406246752"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406247200"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406247648"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406248096"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406248544"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406331168"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406331616"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406332064"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406332512"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406332960"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406333408"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406333856"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406334304"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406334752"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406335200"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406335648"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406336096"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406336544"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406336992"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406337440"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406337888"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406338336"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406338784"}, "name": "zfill"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251296992"}, "items": [{"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "maketrans"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406340576"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406341024"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406341472"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406341920"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406342368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406342816"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406343264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406343712"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406344160"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406344608"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406345056"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406345504"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406345952"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406346400"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406346848"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805251296768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406235104"}, {"nodeId": "139805406235552"}]}}, "139805406235104": {"type": "Function", "content": {"typeVars": [".0.139805406235104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805406235104"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "object"]}}, "0": {"type": "Unknown", "content": {}}, "139805481881792": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "object", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268028640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255958336"}, "items": [{"kind": "Variable", "content": {"name": "__class__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200690176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452859232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452859680"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452860128"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452860576"}, "name": "__delattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452861024"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444161824"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444162272"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444162720"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444163168"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444163616"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444164064"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444164512"}, "name": "__sizeof__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444164960"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444165408"}, "name": "__reduce_ex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444166752"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444167200"}, "name": "__init_subclass__"}}, {"kind": "Variable", "content": {"name": "__subclasshook__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805200687488"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [], "isAbstract": false}}, "139805268028640": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "N": {"type": "NoneType", "content": {}}, "139805276671488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "dict", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251579104"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402105440"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402105888"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402106336"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402106784"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402107232"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251579552"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251580336"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251580672"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402110368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402110816"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402111264"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402111712"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402112160"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402112608"}, "name": "__reversed__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402113056"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402113504"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402113952"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251581008"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "isAbstract": false}}, ".1.139805276671488": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276671488", "variance": "INVARIANT"}}, ".2.139805276671488": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276671488", "variance": "INVARIANT"}}, "139805251579104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401986912"}, {"nodeId": "139805401987360"}, {"nodeId": "139805401987808"}, {"nodeId": "139805401988256"}, {"nodeId": "139805401988704"}, {"nodeId": "139805402104096"}, {"nodeId": "139805402104544"}, {"nodeId": "139805402104992"}]}}, "139805401986912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401987360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805401987808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805267818304": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsKeysAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443969472"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443969920"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805267818304"}, {"nodeId": ".2.139805267818304"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "keys"]}}, ".1.139805267818304": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818304", "variance": "INVARIANT"}}, ".2.139805267818304": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818304", "variance": "COVARIANT"}}, "139805443969472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805267818304"}, {"nodeId": ".2.139805267818304"}]}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805267818304"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481886016": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterable", "members": [{"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242520544"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481886016"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__iter__"]}}, ".1.139805481886016": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481886016", "variance": "COVARIANT"}}, "139805242520544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481886016"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886016"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805481886368": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Iterator", "members": [{"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242589920"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444404864"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805481886368"}], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481886368"}]}], "protocolMembers": ["__iter__", "__next__"]}}, ".1.139805481886368": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481886368", "variance": "COVARIANT"}}, "139805242589920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886368"}]}], "returnType": {"nodeId": ".1.139805481886368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444404864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886368"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886368"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "A": {"type": "Any", "content": {}}, "139805443969920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805267818304"}, {"nodeId": ".2.139805267818304"}]}, {"nodeId": ".1.139805267818304"}], "returnType": {"nodeId": ".2.139805267818304"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401988256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805401988704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805251580000"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251580000": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}}, "139805402104096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805251580224"}]}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805251580224": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276671488"}]}}, "139805402104544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276671136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "list", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251577312"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401973472"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401973920"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401974368"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401974816"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401975264"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401975712"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401976160"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401976608"}, "name": "remove"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251577424"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401977952"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401978400"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251578544"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251578656"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401980640"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251578880"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401981984"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401982432"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401982880"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401983328"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401983776"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401984224"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401984672"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401985120"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401985568"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401986016"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401986464"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805276671136"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805276671136"}]}], "isAbstract": false}}, ".1.139805276671136": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276671136", "variance": "INVARIANT"}}, "139805251577312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401841248"}, {"nodeId": "139805401973024"}]}}, "139805401841248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401973024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401973472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401973920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401974368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401974816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805276671136"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805277009376": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247276192"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__index__"]}}, "139805247276192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481893056": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "int", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251289824"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411138400"}, "name": "as_integer_ratio"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200679200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805205609632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805205608960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805205608512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411140640"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411141088"}, "name": "bit_length"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411141536"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411142880"}, "name": "to_bytes"}}, {"kind": "Variable", "content": {"name": "from_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805209884736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411144224"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411144672"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411145120"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411145568"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411146016"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411146464"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411146912"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411147360"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414146336"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414146784"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414147232"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414147680"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414148128"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414148576"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251290944"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414151712"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414152160"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414152608"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414153056"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414153504"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414153952"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414154400"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414154848"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414155296"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414155744"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414156192"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414156640"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414157088"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414157536"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414157984"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414158432"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414158880"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414159328"}, "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414159776"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414160224"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414160672"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414161120"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414161568"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414162016"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415047456"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415047904"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415048352"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415048800"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415049248"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415049696"}, "name": "__index__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251289824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805411137504"}, {"nodeId": "139805411137952"}]}}, "139805411137504": {"type": "Function", "content": {"typeVars": [".0.139805411137504"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251291616"}], "returnType": {"nodeId": ".0.139805411137504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139805251291616": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}, {"nodeId": "139805276996000"}, {"nodeId": "139805277009376"}, {"nodeId": "139805267817600"}]}}, "139805277011488": {"type": "Protocol", "content": {"module": "typing_extensions", "simpleName": "Buffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410508864"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__buffer__"]}}, "139805410508864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276670080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "memoryview", "members": [{"kind": "Variable", "content": {"name": "format", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201330496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suboffsets", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201331840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readonly", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201332960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201333184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201333408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406957792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406958240"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406958688"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406959136"}, "name": "cast"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251572720"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406960480"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406960928"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406961376"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251573728"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406962720"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406964064"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406964512"}, "name": "toreadonly"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406964960"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406965408"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406966304"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406966752"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805201330496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201331168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201331392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805251573392"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251573392": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805276670784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "tuple", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401831840"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401832288"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401832736"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575744"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401834080"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401834528"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401834976"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401835424"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401835872"}, "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251577200"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401837216"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401837664"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401838112"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401838560"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401839008"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805276670784"}], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805276670784"}]}], "isAbstract": false}}, ".1.139805276670784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276670784", "variance": "COVARIANT"}}, "139805401831840": {"type": "Function", "content": {"typeVars": [".0.139805401831840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": ".0.139805401831840"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, ".0.139805401831840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "def": "139805401831840", "variance": "INVARIANT"}}, "139805401832288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401832736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481882144": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406967200"}, "name": "__new__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251574288"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575072"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575184"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575296"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575408"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575520"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401828704"}, "name": "__getnewargs__"}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}], "isAbstract": false}}, "139805406967200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139805251574288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406967648"}, {"nodeId": "139805406968096"}]}}, "139805406967648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406968096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406968544"}, {"nodeId": "139805406968992"}]}}, "139805406968544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406968992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406969440"}, {"nodeId": "139805401825568"}]}}, "139805406969440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401825568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401826016"}, {"nodeId": "139805401826464"}]}}, "139805401826016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401826464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401826912"}, {"nodeId": "139805401827360"}]}}, "139805401826912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401827360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251575520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401827808"}, {"nodeId": "139805401828256"}]}}, "139805401827808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401828256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401828704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805251575968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251575968": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805251575744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401833184"}, {"nodeId": "139805401833632"}]}}, "139805401833184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805276670784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401833632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805276670432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "slice", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201429024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201429472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201430592"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251575632"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401831392"}, "name": "indices"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805201429024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201429472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201430592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251575632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401830496"}, {"nodeId": "139805401830944"}]}}, "139805401830496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401830944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805401831392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670432"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805251577088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251577088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805401834080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401834528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401834976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401835424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401835872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251577200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401836320"}, {"nodeId": "139805401836768"}]}}, "139805401836320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401836768": {"type": "Function", "content": {"typeVars": [".-1.139805401836768"], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": ".-1.139805401836768"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805251577536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805401836768": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805401836768", "variance": "INVARIANT"}}, "139805251577536": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276670784"}, {"nodeId": ".-1.139805401836768"}]}}, "139805401837216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401837664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401838112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401838560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670784", "args": [{"nodeId": ".1.139805276670784"}]}, {"nodeId": "A"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805401839008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805272038688": {"type": "Concrete", "content": {"module": "types", "simpleName": "GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238760992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238761440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238761664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414608896"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414609344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414610688"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238760992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481892352": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "type", "members": [{"kind": "Variable", "content": {"name": "__base__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200684352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__basicsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dictoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200682784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__flags__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itemsize__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200683232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mro__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200682336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__text_signature__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200682112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__weakrefoffset__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200681888"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251060000"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251073104"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411132576"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411133024"}, "name": "__subclasses__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411133472"}, "name": "mro"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411133920"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411134368"}, "name": "__subclasscheck__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805200681664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411135264"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805411135712"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805200684352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272032352": {"type": "Concrete", "content": {"module": "types", "simpleName": "MappingProxyType", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410986240"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410986688"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410987136"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410987584"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410988032"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410988480"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410988928"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410989376"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410989824"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410990272"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410990720"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410991168"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410991616"}, "name": "__ror__"}}], "typeVars": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "isAbstract": false}}, ".1.139805272032352": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272032352", "variance": "INVARIANT"}}, ".2.139805272032352": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272032352", "variance": "COVARIANT"}}, "139805410986240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805410986688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": ".1.139805272032352"}], "returnType": {"nodeId": ".2.139805272032352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410987136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805410987584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805410988032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410988480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410988928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276999520": {"type": "Concrete", "content": {"module": "typing", "simpleName": "KeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452277504"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452277952"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452278400"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452278848"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452279296"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452279744"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452280192"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452280640"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452281088"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452281536"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452281984"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452282432"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139805276999520"}], "bases": [{"nodeId": "139805276998816"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805276999520"}]}], "isAbstract": false}}, ".1.139805276999520": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999520", "variance": "COVARIANT"}}, "139805452277504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276999520"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805481891296": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Mapping", "members": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242955968"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263872736"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452286016"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452286464"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452286912"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452287360"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452402752"}, "name": "__eq__"}}], "typeVars": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}], "bases": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481891296"}]}], "isAbstract": true}}, ".1.139805481891296": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891296", "variance": "INVARIANT"}}, ".2.139805481891296": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891296", "variance": "COVARIANT"}}, "139805242955968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": ".1.139805481891296"}], "returnType": {"nodeId": ".2.139805481891296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805263872736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452285120"}, {"nodeId": "139805452285568"}]}}, "139805452285120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": ".1.139805481891296"}], "returnType": {"nodeId": "139805263878112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263878112": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891296"}, {"nodeId": "N"}]}}, "139805452285568": {"type": "Function", "content": {"typeVars": [".-1.139805452285568"], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": ".1.139805481891296"}, {"nodeId": "139805263878224"}], "returnType": {"nodeId": "139805263878336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139805263878224": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891296"}, {"nodeId": ".-1.139805452285568"}]}}, ".-1.139805452285568": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452285568", "variance": "INVARIANT"}}, "139805263878336": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891296"}, {"nodeId": ".-1.139805452285568"}]}}, "139805452286016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}], "returnType": {"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276999168": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452272128"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452272576"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452273024"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452273472"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452273920"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452274368"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452274816"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452275264"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452275712"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452276160"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452276608"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452277056"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}], "bases": [{"nodeId": "139805276998816"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805271905600"}]}], "isAbstract": false}}, ".1.139805276999168": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999168", "variance": "COVARIANT"}}, ".2.139805276999168": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999168", "variance": "COVARIANT"}}, "139805452272128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805452272576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263874864"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277003040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "set", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251581456"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402116192"}, "name": "add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402116640"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402117088"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402117536"}, "name": "difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402117984"}, "name": "discard"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402118432"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402118880"}, "name": "intersection_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402119328"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402119776"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402235168"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__element", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402235616"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402236064"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402236512"}, "name": "symmetric_difference_update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402236960"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402237408"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402237856"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402238304"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402238752"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402239200"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402239648"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402240096"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402240544"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402240992"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402241440"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402241888"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402242336"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402242784"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402243232"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402243680"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402244128"}, "name": "__gt__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402244576"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277003040"}], "bases": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805277003040"}]}], "isAbstract": false}}, ".1.139805277003040": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277003040", "variance": "INVARIANT"}}, "139805251581456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402115296"}, {"nodeId": "139805402115744"}]}}, "139805402115296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402115744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402116192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": ".1.139805277003040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402116640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402117088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402117536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402117984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": ".1.139805277003040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402118432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402118880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402119328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402119776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402235168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402235616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": ".1.139805277003040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402236064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402236512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402236960": {"type": "Function", "content": {"typeVars": [".-1.139805402236960"], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402236960"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805251583584"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139805402236960": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402236960", "variance": "INVARIANT"}}, "139805251583584": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": ".-1.139805402236960"}]}}, "139805402237408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402237856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402238304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402238752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402239200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481890592": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AbstractSet", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242755776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452950592"}, "name": "_hash"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452951040"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452951488"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452951936"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452952384"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452952832"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452953280"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452953728"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452954176"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452954624"}, "name": "isdisjoint"}}], "typeVars": [{"nodeId": ".1.139805481890592"}], "bases": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481890592"}]}], "isAbstract": true}}, ".1.139805481890592": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481890592", "variance": "COVARIANT"}}, "139805242755776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452950592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452951040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452951488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452951936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452952384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452952832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452953280": {"type": "Function", "content": {"typeVars": [".-1.139805452953280"], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805452953280"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": "139805263873632"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452953280": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452953280", "variance": "INVARIANT"}}, "139805263873632": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805481890592"}, {"nodeId": ".-1.139805452953280"}]}}, "139805452953728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452954176": {"type": "Function", "content": {"typeVars": [".-1.139805452954176"], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805452954176"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": "139805263873856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452954176": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452954176", "variance": "INVARIANT"}}, "139805263873856": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805481890592"}, {"nodeId": ".-1.139805452954176"}]}}, "139805452954624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890592"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805481889536": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Collection", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242666656"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481889536"}], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481889536"}]}, {"nodeId": "139805481889184", "args": [{"nodeId": ".1.139805481889536"}]}], "protocolMembers": ["__contains__", "__iter__", "__len__"]}}, ".1.139805481889536": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481889536", "variance": "COVARIANT"}}, "139805242666656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481889536"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805481889184": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Container", "members": [{"kind": "Variable", "content": {"name": "__contains__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242663296"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481889184"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__"]}}, ".1.139805481889184": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481889184", "variance": "COVARIANT"}}, "139805242663296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889184", "args": [{"nodeId": ".1.139805481889184"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402239648": {"type": "Function", "content": {"typeVars": [".0.139805402239648"], "argTypes": [{"nodeId": ".0.139805402239648"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": ".0.139805402239648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402239648": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402239648", "variance": "INVARIANT"}}, "139805402240096": {"type": "Function", "content": {"typeVars": [".-1.139805402240096"], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402240096"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805251583808"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402240096": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402240096", "variance": "INVARIANT"}}, "139805251583808": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": ".-1.139805402240096"}]}}, "139805402240544": {"type": "Function", "content": {"typeVars": [".0.139805402240544"], "argTypes": [{"nodeId": ".0.139805402240544"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": ".0.139805402240544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402240544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402240544", "variance": "INVARIANT"}}, "139805402240992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805246701632"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805246701632": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": "N"}]}}, "139805402241440": {"type": "Function", "content": {"typeVars": [".0.139805402241440"], "argTypes": [{"nodeId": ".0.139805402241440"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": ".0.139805402241440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402241440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402241440", "variance": "INVARIANT"}}, "139805402241888": {"type": "Function", "content": {"typeVars": [".-1.139805402241888"], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402241888"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805246701744"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402241888": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402241888", "variance": "INVARIANT"}}, "139805246701744": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003040"}, {"nodeId": ".-1.139805402241888"}]}}, "139805402242336": {"type": "Function", "content": {"typeVars": [".0.139805402242336"], "argTypes": [{"nodeId": ".0.139805402242336"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003040"}]}], "returnType": {"nodeId": ".0.139805402242336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402242336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, "def": "139805402242336", "variance": "INVARIANT"}}, "139805402242784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402243232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402243680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402244128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805277003040"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402244576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805481890944": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSet", "members": [{"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242757344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "discard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242766080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452955968"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452956416"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452956864"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452957312"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452957760"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452958208"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "it", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452958656"}, "name": "__isub__"}}], "typeVars": [{"nodeId": ".1.139805481890944"}], "bases": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890944"}]}], "isAbstract": true}}, ".1.139805481890944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481890944", "variance": "INVARIANT"}}, "139805242757344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, {"nodeId": ".1.139805481890944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805242766080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, {"nodeId": ".1.139805481890944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452955968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452956416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": ".1.139805481890944"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452956864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, {"nodeId": ".1.139805481890944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452957312": {"type": "Function", "content": {"typeVars": [".0.139805452957312"], "argTypes": [{"nodeId": ".0.139805452957312"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": ".0.139805452957312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452957312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452957312", "variance": "INVARIANT"}}, "139805452957760": {"type": "Function", "content": {"typeVars": [".0.139805452957760"], "argTypes": [{"nodeId": ".0.139805452957760"}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805452957760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452957760": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452957760", "variance": "INVARIANT"}}, "139805452958208": {"type": "Function", "content": {"typeVars": [".0.139805452958208"], "argTypes": [{"nodeId": ".0.139805452958208"}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805481890944"}]}], "returnType": {"nodeId": ".0.139805452958208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452958208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452958208", "variance": "INVARIANT"}}, "139805452958656": {"type": "Function", "content": {"typeVars": [".0.139805452958656"], "argTypes": [{"nodeId": ".0.139805452958656"}, {"nodeId": "139805481890592", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805452958656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452958656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890944", "args": [{"nodeId": ".1.139805481890944"}]}, "def": "139805452958656", "variance": "INVARIANT"}}, "139805263874864": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452273024": {"type": "Function", "content": {"typeVars": [".-1.139805452273024"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452273024"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452273024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452273024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452273024", "variance": "INVARIANT"}}, "139805452273472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452273920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805263875088"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805263875088": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452274368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805263875312"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805263875312": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452274816": {"type": "Function", "content": {"typeVars": [".-1.139805452274816"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452274816"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263875648"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452274816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452274816", "variance": "INVARIANT"}}, "139805263875648": {"type": "Union", "content": {"items": [{"nodeId": "139805263875536"}, {"nodeId": ".-1.139805452274816"}]}}, "139805263875536": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452275264": {"type": "Function", "content": {"typeVars": [".-1.139805452275264"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452275264"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263875984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452275264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452275264", "variance": "INVARIANT"}}, "139805263875984": {"type": "Union", "content": {"items": [{"nodeId": "139805263875872"}, {"nodeId": ".-1.139805452275264"}]}}, "139805263875872": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452275712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263876320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805263876320": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452276160": {"type": "Function", "content": {"typeVars": [".-1.139805452276160"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452276160"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452276160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452276160": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452276160", "variance": "INVARIANT"}}, "139805452276608": {"type": "Function", "content": {"typeVars": [".-1.139805452276608"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452276608"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263876656"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452276608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452276608", "variance": "INVARIANT"}}, "139805263876656": {"type": "Union", "content": {"items": [{"nodeId": "139805263876544"}, {"nodeId": ".-1.139805452276608"}]}}, "139805263876544": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452277056": {"type": "Function", "content": {"typeVars": [".-1.139805452277056"], "argTypes": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452277056"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263876992"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452277056": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452277056", "variance": "INVARIANT"}}, "139805263876992": {"type": "Union", "content": {"items": [{"nodeId": "139805263876880"}, {"nodeId": ".-1.139805452277056"}]}}, "139805263876880": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805276998816": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MappingView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452959104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452271680"}, "name": "__len__"}}], "typeVars": [], "bases": [{"nodeId": "139805276997760"}], "isAbstract": false}}, "139805452959104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276998816"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805452271680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276998816"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276997760": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Sized", "members": [{"kind": "Variable", "content": {"name": "__len__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242518304"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__len__"]}}, "139805242518304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276997760"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805271905600": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276999168"}, {"nodeId": ".2.139805276999168"}]}}, "139805452286464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}], "returnType": {"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805481891296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452286912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}], "returnType": {"nodeId": "139805276999872", "args": [{"nodeId": ".2.139805481891296"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276999872": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452282880"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452283328"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452283776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452284224"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805276999872"}], "bases": [{"nodeId": "139805276998816"}, {"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805276999872"}]}], "isAbstract": false}}, ".1.139805276999872": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276999872", "variance": "COVARIANT"}}, "139805452282880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": ".1.139805276999872"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805452283328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452283776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452284224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805276999872"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999872"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452287360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452402752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891296"}, {"nodeId": ".2.139805481891296"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452277952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452278400": {"type": "Function", "content": {"typeVars": [".-1.139805452278400"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452278400"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452278400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452278400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452278400", "variance": "INVARIANT"}}, "139805452278848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452279296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452279744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452280192": {"type": "Function", "content": {"typeVars": [".-1.139805452280192"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452280192"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877328"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452280192": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452280192", "variance": "INVARIANT"}}, "139805263877328": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452280192"}]}}, "139805452280640": {"type": "Function", "content": {"typeVars": [".-1.139805452280640"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452280640"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452280640": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452280640", "variance": "INVARIANT"}}, "139805263877440": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452280640"}]}}, "139805452281088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".1.139805276999520"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452281536": {"type": "Function", "content": {"typeVars": [".-1.139805452281536"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452281536"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": ".-1.139805452281536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452281536": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452281536", "variance": "INVARIANT"}}, "139805452281984": {"type": "Function", "content": {"typeVars": [".-1.139805452281984"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452281984"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877664"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452281984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452281984", "variance": "INVARIANT"}}, "139805263877664": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452281984"}]}}, "139805452282432": {"type": "Function", "content": {"typeVars": [".-1.139805452282432"], "argTypes": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805276999520"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805452282432"}]}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805263877776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805452282432": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452282432", "variance": "INVARIANT"}}, "139805263877776": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276999520"}, {"nodeId": ".-1.139805452282432"}]}}, "139805410989376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276999872", "args": [{"nodeId": ".2.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410989824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410990272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805410990720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805272032352"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805410991168": {"type": "Function", "content": {"typeVars": [".-1.139805410991168", ".-2.139805410991168"], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805410991168"}, {"nodeId": ".-2.139805410991168"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805263886624"}, {"nodeId": "139805263886736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410991168": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991168", "variance": "INVARIANT"}}, ".-2.139805410991168": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991168", "variance": "INVARIANT"}}, "139805263886624": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".-1.139805410991168"}]}}, "139805263886736": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805272032352"}, {"nodeId": ".-2.139805410991168"}]}}, "139805410991616": {"type": "Function", "content": {"typeVars": [".-1.139805410991616", ".-2.139805410991616"], "argTypes": [{"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".2.139805272032352"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805410991616"}, {"nodeId": ".-2.139805410991616"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805263886848"}, {"nodeId": "139805263886960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410991616": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991616", "variance": "INVARIANT"}}, ".-2.139805410991616": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410991616", "variance": "INVARIANT"}}, "139805263886848": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272032352"}, {"nodeId": ".-1.139805410991616"}]}}, "139805263886960": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805272032352"}, {"nodeId": ".-2.139805410991616"}]}}, "139805200682784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200683232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200682336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200682112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805251289376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251289376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805200681888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251060000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444177056"}, {"nodeId": "139805444177504"}]}}, "139805444177056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805444177504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, null, "kwds"]}}, "139805251073104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805411131680"}, {"nodeId": "139805411132128"}]}}, "139805411131680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805411132128": {"type": "Function", "content": {"typeVars": [".-1.139805411132128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805411132128"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["cls", null, null, null, "kwds"]}}, ".-1.139805411132128": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805411132128", "variance": "INVARIANT"}}, "139805411132576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139805411133024": {"type": "Function", "content": {"typeVars": [".-1.139805411133024"], "argTypes": [{"nodeId": ".-1.139805411133024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805411133024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805411133024": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805411133024", "variance": "INVARIANT"}}, "139805411133472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481892352"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411133920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805411134368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805200681664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", null, null, "kwds"]}}, "139805411135264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272039392": {"type": "Concrete", "content": {"module": "types", "simpleName": "UnionType", "members": [{"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238764576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414612032"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414612480"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238764576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039392"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414612032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039392"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414612480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039392"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411135712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272039392"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805238761440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238761664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414608896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}, {"nodeId": "139805481892352"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "origin", "args"]}}, "139805414609344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414610688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038688"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481889888": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Sequence", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263690912"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444700224"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444700672"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444701120"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444701568"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452943424"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805481889888"}], "bases": [{"nodeId": "139805481889536", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805481889888"}]}], "isAbstract": true}}, ".1.139805481889888": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481889888", "variance": "COVARIANT"}}, "139805263690912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444699328"}, {"nodeId": "139805444699776"}]}}, "139805444699328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481889888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444699776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444700224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "A"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "value", "start", "stop"]}}, "139805444700672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805444701120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444701568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481889888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805452943424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481889888"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481889888"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805481886720": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Reversible", "members": [{"kind": "Variable", "content": {"name": "__reversed__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242592608"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481886720"}], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481886720"}]}], "protocolMembers": ["__iter__", "__reversed__"]}}, ".1.139805481886720": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481886720", "variance": "COVARIANT"}}, "139805242592608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805481886720"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481886720"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805201331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805251573504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251573504": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805201331840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805251573616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251573616": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805201332064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805277011488"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201332960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201333184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201333408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406957792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805406958240": {"type": "Function", "content": {"typeVars": [".0.139805406958240"], "argTypes": [{"nodeId": ".0.139805406958240"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805406958240": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276670080"}, "def": "139805406958240", "variance": "INVARIANT"}}, "139805406958688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805251573840"}, {"nodeId": "139805251573952"}, {"nodeId": "139805251574064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805251573840": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805251573952": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805276675712": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BaseException", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__cause__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271902128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271901904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__suppress_context__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__traceback__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276566048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397949728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397950176"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397950624"}, "name": "with_traceback"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805271902128": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805271901904": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805276566048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272037280": {"type": "Concrete", "content": {"module": "types", "simpleName": "TracebackType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414790464"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "tb_next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238668288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238668512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238668736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805414790464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}, {"nodeId": "139805264190080"}, {"nodeId": "139805272037632"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "tb_next", "tb_frame", "tb_lasti", "tb_lineno"]}}, "139805264190080": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272037632": {"type": "Concrete", "content": {"module": "types", "simpleName": "FrameType", "members": [{"kind": "Variable", "content": {"name": "f_back", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238670304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_builtins", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238670752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238670976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_globals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lasti", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_lineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_locals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238671872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_trace_opcodes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414795392"}, "name": "clear"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238670304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805264190192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264190192": {"type": "Union", "content": {"items": [{"nodeId": "139805272037632"}, {"nodeId": "N"}]}}, "139805238670752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238670976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272032000": {"type": "Concrete", "content": {"module": "types", "simpleName": "CodeType", "members": [{"kind": "Variable", "content": {"name": "co_argcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238302240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238303360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238302912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238303584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238303808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238304928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_lnotab", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238305824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238306048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238306272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238306944"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410522304"}, "name": "co_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__codestring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__constants", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410524544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_argcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_posonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_kwonlyargcount", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_nlocals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_stacksize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_firstlineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_consts", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_varnames", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_freevars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_cellvars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "co_linetable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410985344"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238302240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238303360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238302912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238303584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238303808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276669376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251297776"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406447200"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406447648"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406448096"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406448544"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406448992"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406449440"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406450336"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406450784"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406451680"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406452128"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406452576"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406453024"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406453472"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406453920"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406454368"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406454816"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406455264"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406455712"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406456160"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406456608"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406457056"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406457504"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406457952"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406458400"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406458848"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406459296"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406459744"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406460192"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406460640"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406461088"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406461536"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406544160"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406544608"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406545056"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406545504"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406545952"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406546400"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406546848"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406547296"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406547744"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201112128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201111232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406549088"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406549536"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251300688"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406550880"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406551328"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406551776"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406552224"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406552672"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406553120"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406553568"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406554016"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406554464"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406554912"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406555360"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406555808"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406556704"}, "name": "__buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805251297776": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406445856"}, {"nodeId": "139805406446304"}, {"nodeId": "139805406446752"}]}}, "139805406445856": {"type": "Function", "content": {"typeVars": [".0.139805406445856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251301808"}], "returnType": {"nodeId": ".0.139805406445856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805251301808": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805277009376"}, {"nodeId": "139805276997056"}, {"nodeId": "139805277011488"}]}}, "139805276997056": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsBytes", "members": [{"kind": "Variable", "content": {"name": "__bytes__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242508896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__bytes__"]}}, "139805242508896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276997056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805406445856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805406445856", "variance": "INVARIANT"}}, "139805406446304": {"type": "Function", "content": {"typeVars": [".0.139805406446304"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805406446304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "encoding", "errors"]}}, ".0.139805406446304": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805406446304", "variance": "INVARIANT"}}, "139805406446752": {"type": "Function", "content": {"typeVars": [".0.139805406446752"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805406446752"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805406446752": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805406446752", "variance": "INVARIANT"}}, "139805406447200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406447648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406448096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251301920"}, {"nodeId": "139805251302032"}, {"nodeId": "139805251302144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251301920": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251302032": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251302144": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406448544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805406448992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251302256"}, {"nodeId": "139805251302368"}, {"nodeId": "139805251302480"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251302256": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251302368": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251302480": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406449440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805406450336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251302592"}, {"nodeId": "139805251302704"}, {"nodeId": "139805251302816"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251302592": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251302704": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251302816": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406450784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251302928"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139805251302928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805406451680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251303040"}, {"nodeId": "139805251303152"}, {"nodeId": "139805251303264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251303040": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251303152": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251303264": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406452128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406452576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406453024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406453472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406453920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406454368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406454816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406455264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406455712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406456160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251303376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251303376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805276669728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "bytearray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251301696"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406558496"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406558944"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406559392"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406559840"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406740768"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406741216"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406741664"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406742112"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_ints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406743008"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406743456"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes_per_sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406743904"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406744800"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406745248"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406745696"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406746144"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406746592"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406747040"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406747488"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406747936"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406748384"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406748832"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable_of_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406749280"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406749728"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406750176"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406750624"}, "name": "lstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406751072"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406751520"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406751968"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406752416"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406752864"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406753312"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406753760"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406754208"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fillchar", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406754656"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406755104"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406755552"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406756000"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406756448"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406839072"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406839520"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406839968"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406840416"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406840864"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__table", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delete", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406841312"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406841760"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406842208"}, "name": "zfill"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201120640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201318624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406843552"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406844000"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251568016"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251572608"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406846240"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406846688"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406847136"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406847584"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406848032"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406848480"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406848928"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406849376"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406849824"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406850272"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406850720"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406851168"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406851616"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406852064"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406852512"}, "name": "__alloc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406852960"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406853408"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805251301696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406557152"}, {"nodeId": "139805406557600"}, {"nodeId": "139805406558048"}]}}, "139805406557152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406557600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251568688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251568688": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805277009376"}, {"nodeId": "139805277011488"}]}}, "139805406558048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "encoding", "errors"]}}, "139805406558496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406558944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406559392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406559840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251568800"}, {"nodeId": "139805251568912"}, {"nodeId": "139805251569024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251568800": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251568912": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251569024": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406740768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406741216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805406741664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569136"}, {"nodeId": "139805251569248"}, {"nodeId": "139805251569360"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251569136": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251569248": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251569360": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406742112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805406743008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406743456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569472"}, {"nodeId": "139805251569584"}, {"nodeId": "139805251569696"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251569472": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251569584": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251569696": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406743904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569808"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139805251569808": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805406744800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251569920"}, {"nodeId": "139805251570032"}, {"nodeId": "139805251570144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251569920": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251570032": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251570144": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406745248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805406745696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406746144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406746592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406747040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406747488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406747936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406748384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406748832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406749280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406749728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251570256"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251570256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805406750176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406750624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251570368"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251570368": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406751072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251570592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251570592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}]}}, "139805406751520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805406751968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406752416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406752864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406753312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805406753760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251570704"}, {"nodeId": "139805251570816"}, {"nodeId": "139805251570928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251570704": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251570816": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251570928": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406754208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571040"}, {"nodeId": "139805251571152"}, {"nodeId": "139805251571264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251571040": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251571152": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251571264": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406754656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251571376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251571376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805406755104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251571600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251571600": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669728"}]}}, "139805406755552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571712"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669728"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251571712": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406756000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571824"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251571824": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406756448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251571936"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669728"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251571936": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406839072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669728"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805406839520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251572048"}, {"nodeId": "139805251572160"}, {"nodeId": "139805251572272"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251572048": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251572160": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251572272": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406839968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251572384"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251572384": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406840416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406840864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406841312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251572496"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139805251572496": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406841760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406842208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805201120640": {"type": "Function", "content": {"typeVars": [".0.139805201120640"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805201120640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805201120640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669728"}, "def": "139805201120640", "variance": "INVARIANT"}}, "139805201318624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406843552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406844000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251568016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406844448"}, {"nodeId": "139805406844896"}]}}, "139805406844448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406844896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251572608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406845344"}, {"nodeId": "139805406845792"}]}}, "139805406845344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805406845792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276670432"}, {"nodeId": "139805251572944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805251572944": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805276669376"}]}}, "139805406846240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251573056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251573056": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805406846688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406847136": {"type": "Function", "content": {"typeVars": [".0.139805406847136"], "argTypes": [{"nodeId": ".0.139805406847136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": ".0.139805406847136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805406847136": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669728"}, "def": "139805406847136", "variance": "INVARIANT"}}, "139805406847584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406848032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406848480": {"type": "Function", "content": {"typeVars": [".0.139805406848480"], "argTypes": [{"nodeId": ".0.139805406848480"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805406848480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805406848480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669728"}, "def": "139805406848480", "variance": "INVARIANT"}}, "139805406848928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406849376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805251573280"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251573280": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805277011488"}]}}, "139805406849824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406850272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406850720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406851168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406851616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406852064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406852512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406852960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406853408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669728"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805481890240": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableSequence", "members": [{"kind": "Variable", "content": {"name": "insert", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242753088"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263691360"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263872288"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263872624"}, "items": [{"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452947008"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452947456"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452947904"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452948352"}, "name": "reverse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452948800"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452949248"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452949696"}, "name": "__iadd__"}}], "typeVars": [{"nodeId": ".1.139805481890240"}], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": ".1.139805481890240"}]}], "isAbstract": true}}, ".1.139805481890240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481890240", "variance": "INVARIANT"}}, "139805242753088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "value"]}}, "139805263691360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452944320"}, {"nodeId": "139805452944768"}]}}, "139805452944320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481890240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452944768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805263872288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452945216"}, {"nodeId": "139805452945664"}]}}, "139805452945216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805452945664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805263872624": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452946112"}, {"nodeId": "139805452946560"}]}}, "139805452946112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452946560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452947008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452947456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452947904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "values"]}}, "139805452948352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452948800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481890240"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "index"]}}, "139805452949248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, {"nodeId": ".1.139805481890240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805452949696": {"type": "Function", "content": {"typeVars": [".0.139805452949696"], "argTypes": [{"nodeId": ".0.139805452949696"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805481890240"}]}], "returnType": {"nodeId": ".0.139805452949696"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452949696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805481890240"}]}, "def": "139805452949696", "variance": "INVARIANT"}}, "139805406456608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406457056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251303488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251303488": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406457504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251303712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251303712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}}, "139805406457952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805406458400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406458848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406459296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251303824"}, {"nodeId": "139805251303936"}, {"nodeId": "139805251304048"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251303824": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251303936": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251304048": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406459744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251304160"}, {"nodeId": "139805251304272"}, {"nodeId": "139805251304384"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251304160": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805277009376"}]}}, "139805251304272": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251304384": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406460192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251304496"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251304496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805406460640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805251304720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251304720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}}, "139805406461088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251304832"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251304832": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406461536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251304944"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251304944": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406544160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251305056"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251305056": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406544608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805406545056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251305168"}, {"nodeId": "139805251305280"}, {"nodeId": "139805251567680"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251305168": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805277011488"}]}]}}, "139805251305280": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251567680": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406545504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251567792"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251567792": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406545952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406546400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406546848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251567904"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, "delete"]}}, "139805251567904": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "N"}]}}, "139805406547296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406547744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805201112128": {"type": "Function", "content": {"typeVars": [".0.139805201112128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805201112128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805201112128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669376"}, "def": "139805201112128", "variance": "INVARIANT"}}, "139805201111232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011488"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406549088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406549536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251300688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406549984"}, {"nodeId": "139805406550432"}]}}, "139805406549984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406550432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406550880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406551328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406551776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406552224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406552672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805251568240"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251568240": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805277011488"}]}}, "139805406553120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406553568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406554016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406554464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406554912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406555360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406555808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805251568464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251568464": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}]}}, "139805406556704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805238304480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238304928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238305824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238306048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238306272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238306944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410522304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805263886400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263886400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805263886176"}]}}, "139805263886176": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805410524544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null]}}, "139805410985344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032000"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "co_argcount", "co_posonlyargcount", "co_kwonlyargcount", "co_nlocals", "co_stacksize", "co_flags", "co_firstlineno", "co_code", "co_consts", "co_names", "co_varnames", "co_freevars", "co_cellvars", "co_filename", "co_name", "co_linetable"]}}, "139805238671200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238671424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238671648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805264190640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264190640": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}}, "139805238671872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805271908960": {"type": "Union", "content": {"items": [{"nodeId": "139805276230528"}, {"nodeId": "N"}]}}, "139805276230528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805414795392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805271908736": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805238668288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238668512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238668736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037280"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805397949728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805397950176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276675712"}, {"nodeId": "139805246958480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805246958480": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805397950624": {"type": "Function", "content": {"typeVars": [".0.139805397950624"], "argTypes": [{"nodeId": ".0.139805397950624"}, {"nodeId": "139805246958704"}], "returnType": {"nodeId": ".0.139805397950624"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805397950624": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805397950624", "variance": "INVARIANT"}}, "139805246958704": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805251574064": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805406959136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251574176"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format", "shape"]}}, "139805251574176": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805251572720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406959584"}, {"nodeId": "139805406960032"}]}}, "139805406959584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406960032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406960480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406960928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406961376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251573728": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406961824"}, {"nodeId": "139805406962272"}]}}, "139805406961824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276670432"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805406962272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805406962720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805251574960"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805251574960": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139805406964064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406964512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406964960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406965408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805251574848"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "bytes_per_sep"]}}, "139805251574848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805406966304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406966752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276670080"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276996000": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsInt", "members": [{"kind": "Variable", "content": {"name": "__int__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247664672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__int__"]}}, "139805247664672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276996000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267817600": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443968576"}, "name": "__trunc__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__trunc__"]}}, "139805443968576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817600"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805411137504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805411137504", "variance": "INVARIANT"}}, "139805411137952": {"type": "Function", "content": {"typeVars": [".0.139805411137952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251291728"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805411137952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, "base"]}}, "139805251291728": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, ".0.139805411137952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805411137952", "variance": "INVARIANT"}}, "139805411138400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251292064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251292064": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "0"}]}}, "139805200679200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805205609632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805205608960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805205608512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411140640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411141088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411141536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411142880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805277009376"}, {"nodeId": "139805251292624"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "length", "byteorder", "signed"]}}, "139805251292624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805209884736": {"type": "Function", "content": {"typeVars": [".0.139805209884736"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251292736"}, {"nodeId": "139805251293072"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".0.139805209884736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", "bytes", "byteorder", "signed"]}}, "139805251292736": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805277009376"}]}, {"nodeId": "139805276997056"}, {"nodeId": "139805277011488"}]}}, "139805251293072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, ".0.139805209884736": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805209884736", "variance": "INVARIANT"}}, "139805411144224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411144672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411145120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411145568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411146016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481893408": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "float", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415050144"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415050592"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415051040"}, "name": "hex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415051488"}, "name": "is_integer"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805200858048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200858496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200857152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415053280"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415053728"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415054176"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415054624"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415055072"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415055520"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415055968"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415056416"}, "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251291504"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415057760"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415058208"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415058656"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415059104"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415059552"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415060000"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415060448"}, "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251294976"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415062240"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415062688"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805415063136"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406085408"}, "name": "__floor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251295648"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406086752"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406087200"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406087648"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406088096"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406088544"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406088992"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406089440"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406089888"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406090336"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406090784"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406091232"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406091680"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805415050144": {"type": "Function", "content": {"typeVars": [".0.139805415050144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251295088"}], "returnType": {"nodeId": ".0.139805415050144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", null]}}, "139805251295088": {"type": "Union", "content": {"items": [{"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}]}}, "139805276996352": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsFloat", "members": [{"kind": "Variable", "content": {"name": "__float__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247665568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__float__"]}}, "139805247665568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276996352"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805415050144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893408"}, "def": "139805415050144", "variance": "INVARIANT"}}, "139805415050592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251295312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251295312": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805415051040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415051488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200858048": {"type": "Function", "content": {"typeVars": [".0.139805200858048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805200858048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805200858048": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481893408"}, "def": "139805200858048", "variance": "INVARIANT"}}, "139805200858496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200857152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415053280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415053728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415054176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415054624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415055072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415055520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415055968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415056416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251295536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251295536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805251291504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805415056864"}, {"nodeId": "139805415057312"}]}}, "139805415056864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805415057312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805415057760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415058208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415058656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415059104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415059552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415060000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415060448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251295984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251295984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805251294976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805415060896"}, {"nodeId": "139805415061344"}, {"nodeId": "139805415061792"}]}}, "139805415060896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805251296208"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251296208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268031776"}}}, "139805268031776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805415061344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805251296320"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251296320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268410880"}}}, "139805268410880": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805276667968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "complex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251296096"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200946496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805200947840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406094816"}, "name": "conjugate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406095264"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406095712"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406096160"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406096608"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406097056"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406097504"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406097952"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406098400"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406098848"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406099296"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406099744"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406100192"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406100640"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406101088"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406232864"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406233312"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251296096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406092128"}, {"nodeId": "139805406092576"}]}}, "139805406092128": {"type": "Function", "content": {"typeVars": [".0.139805406092128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251297104"}, {"nodeId": "139805251297216"}], "returnType": {"nodeId": ".0.139805406092128"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "real", "imag"]}}, "139805251297104": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805276996704"}, {"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}]}}, "139805276996704": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsComplex", "members": [{"kind": "Variable", "content": {"name": "__complex__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247667136"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__complex__"]}}, "139805247667136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276996704"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251297216": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}]}}, ".0.139805406092128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276667968"}, "def": "139805406092128", "variance": "INVARIANT"}}, "139805406092576": {"type": "Function", "content": {"typeVars": [".0.139805406092576"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805251297328"}], "returnType": {"nodeId": ".0.139805406092576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "real"]}}, "139805251297328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276996704"}, {"nodeId": "139805276996352"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276667968"}]}}, ".0.139805406092576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276667968"}, "def": "139805406092576", "variance": "INVARIANT"}}, "139805200946496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200947840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406094816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406095264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406095712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406096160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406096608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805406097056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406097504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406097952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406098400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406098848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805406099296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406099744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406100192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406100640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406101088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406232864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406233312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415061792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805415062240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805251296656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251296656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}]}}, "139805415062688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415063136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406085408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251295648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406085856"}, {"nodeId": "139805406086304"}]}}, "139805406085856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805406086304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406086752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406087200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406087648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406088096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406088544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406088992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406089440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406089888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406090336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406090784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406091232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406091680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805411146464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805411146912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251293296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251293296": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805411147360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414146336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414146784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414147232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414147680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414148128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414148576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251293520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251293520": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805251290944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414149024"}, {"nodeId": "139805414149472"}, {"nodeId": "139805414149920"}, {"nodeId": "139805414150368"}, {"nodeId": "139805414150816"}, {"nodeId": "139805414151264"}]}}, "139805414149024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414149472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805414149920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805251294192"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251294192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268031776"}}}, "139805414150368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805251294304"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251294304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268410880"}}}, "139805414150816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805414151264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805414151712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805251294528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805251294528": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805414152160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414152608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414153056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414153504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414153952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414154400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414154848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414155296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414155744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414156192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414156640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805414157088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805414157536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805414157984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414158432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414158880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414159328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805414159776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251294864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251294864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805414160224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414160672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414161120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414161568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414162016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415047456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805415047904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805415048352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805415048800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805415049248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805415049696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401975264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805401975712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805401976160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805401976608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251577424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401977056"}, {"nodeId": "139805401977504"}]}}, "139805401977056": {"type": "Function", "content": {"typeVars": [".-1.139805401977056"], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805401977056"}]}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139805401977056": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139805263465376"}, "def": "139805401977056", "variance": "INVARIANT"}}, "139805263465376": {"type": "Union", "content": {"items": [{"nodeId": "139805267812672", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813024", "args": [{"nodeId": "A"}]}]}}, "139805267812672": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398660288"}, "name": "__lt__"}}], "typeVars": [{"nodeId": ".1.139805267812672"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__lt__"]}}, ".1.139805267812672": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267812672", "variance": "CONTRAVARIANT"}}, "139805398660288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267812672", "args": [{"nodeId": ".1.139805267812672"}]}, {"nodeId": ".1.139805267812672"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267813024": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398660736"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139805267813024"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__gt__"]}}, ".1.139805267813024": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267813024", "variance": "CONTRAVARIANT"}}, "139805398660736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267813024", "args": [{"nodeId": ".1.139805267813024"}]}, {"nodeId": ".1.139805267813024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401977504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805251654528"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139805251654528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "139805251578992"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251578992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825872"}}}, "139805267825872": {"type": "Union", "content": {"items": [{"nodeId": "139805267812672", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813024", "args": [{"nodeId": "A"}]}]}}, "139805401977952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401978400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251578544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401978848"}, {"nodeId": "139805401979296"}]}}, "139805401978848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805276671136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401979296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251578656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401979744"}, {"nodeId": "139805401980192"}]}}, "139805401979744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805276671136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805401980192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805401980640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805251579216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251579216": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805251578880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805401981088"}, {"nodeId": "139805401981536"}]}}, "139805401981088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401981536": {"type": "Function", "content": {"typeVars": [".-1.139805401981536"], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805401981536"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805251579440"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805401981536": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805401981536", "variance": "INVARIANT"}}, "139805251579440": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805401981536"}, {"nodeId": ".1.139805276671136"}]}}, "139805401981984": {"type": "Function", "content": {"typeVars": [".0.139805401981984"], "argTypes": [{"nodeId": ".0.139805401981984"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": ".0.139805401981984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805401981984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "def": "139805401981984", "variance": "INVARIANT"}}, "139805401982432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401982880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401983328": {"type": "Function", "content": {"typeVars": [".0.139805401983328"], "argTypes": [{"nodeId": ".0.139805401983328"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805401983328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805401983328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, "def": "139805401983328", "variance": "INVARIANT"}}, "139805401983776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401984224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671136"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805401984672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401985120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401985568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401986016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805276671136"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805401986464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805402104992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402105440": {"type": "Function", "content": {"typeVars": [".0.139805402105440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805402105440"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, ".0.139805402105440": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "def": "139805402105440", "variance": "INVARIANT"}}, "139805402105888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402106336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805277001984", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277001984": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_keys", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209513088"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277001984"}, {"nodeId": ".2.139805277001984"}], "bases": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805277001984"}]}], "isAbstract": false}}, ".1.139805277001984": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277001984", "variance": "COVARIANT"}}, ".2.139805277001984": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277001984", "variance": "COVARIANT"}}, "139805209513088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001984", "args": [{"nodeId": ".1.139805277001984"}, {"nodeId": ".2.139805277001984"}]}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805277001984"}, {"nodeId": ".2.139805277001984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402106784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805277002336", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277002336": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_values", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209331744"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277002336"}, {"nodeId": ".2.139805277002336"}], "bases": [{"nodeId": "139805276999872", "args": [{"nodeId": ".2.139805277002336"}]}], "isAbstract": false}}, ".1.139805277002336": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002336", "variance": "COVARIANT"}}, ".2.139805277002336": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002336", "variance": "COVARIANT"}}, "139805209331744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277002336", "args": [{"nodeId": ".1.139805277002336"}, {"nodeId": ".2.139805277002336"}]}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805277002336"}, {"nodeId": ".2.139805277002336"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402107232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805277002688", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277002688": {"type": "Concrete", "content": {"module": "_collections_abc", "simpleName": "dict_items", "members": [{"kind": "Variable", "content": {"name": "mapping", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209232768"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}], "bases": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}]}], "isAbstract": false}}, ".1.139805277002688": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002688", "variance": "COVARIANT"}}, ".2.139805277002688": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277002688", "variance": "COVARIANT"}}, "139805209232768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277002688", "args": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}]}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": ".1.139805277002688"}, {"nodeId": ".2.139805277002688"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251579552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402107680"}, {"nodeId": "139805402108128"}]}}, "139805402107680": {"type": "Function", "content": {"typeVars": [".-1.139805402107680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402107680"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805402107680"}, {"nodeId": "139805251580896"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, null]}}, ".-1.139805402107680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402107680", "variance": "INVARIANT"}}, "139805251580896": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805402108128": {"type": "Function", "content": {"typeVars": [".-1.139805402108128", ".-2.139805402108128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402108128"}]}, {"nodeId": ".-2.139805402108128"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805402108128"}, {"nodeId": ".-2.139805402108128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139805402108128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402108128", "variance": "INVARIANT"}}, ".-2.139805402108128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402108128", "variance": "INVARIANT"}}, "139805251580336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402108576"}, {"nodeId": "139805402109024"}]}}, "139805402108576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": "139805251581120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251581120": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": "N"}]}}, "139805402109024": {"type": "Function", "content": {"typeVars": [".-1.139805402109024"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}, {"nodeId": "139805251581232"}], "returnType": {"nodeId": "139805251581344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251581232": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109024"}]}}, ".-1.139805402109024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402109024", "variance": "INVARIANT"}}, "139805251581344": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109024"}]}}, "139805251580672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402109472"}, {"nodeId": "139805402109920"}]}}, "139805402109472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": ".2.139805276671488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402109920": {"type": "Function", "content": {"typeVars": [".-1.139805402109920"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}, {"nodeId": "139805251581568"}], "returnType": {"nodeId": "139805251581680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251581568": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109920"}]}}, ".-1.139805402109920": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402109920", "variance": "INVARIANT"}}, "139805251581680": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-1.139805402109920"}]}}, "139805402110368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402110816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": ".2.139805276671488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402111264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805402111712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": ".1.139805276671488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402112160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402112608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276671488"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402113056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805402113504": {"type": "Function", "content": {"typeVars": [".-1.139805402113504", ".-2.139805402113504"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805402113504"}, {"nodeId": ".-2.139805402113504"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805251581904"}, {"nodeId": "139805251582016"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402113504": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113504", "variance": "INVARIANT"}}, ".-2.139805402113504": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113504", "variance": "INVARIANT"}}, "139805251581904": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".-1.139805402113504"}]}}, "139805251582016": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-2.139805402113504"}]}}, "139805402113952": {"type": "Function", "content": {"typeVars": [".-1.139805402113952", ".-2.139805402113952"], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805402113952"}, {"nodeId": ".-2.139805402113952"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805251582128"}, {"nodeId": "139805251582240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402113952": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113952", "variance": "INVARIANT"}}, ".-2.139805402113952": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402113952", "variance": "INVARIANT"}}, "139805251582128": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".-1.139805402113952"}]}}, "139805251582240": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805276671488"}, {"nodeId": ".-2.139805402113952"}]}}, "139805251581008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402114400"}, {"nodeId": "139805402114848"}]}}, "139805402114400": {"type": "Function", "content": {"typeVars": [".0.139805402114400"], "argTypes": [{"nodeId": ".0.139805402114400"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}], "returnType": {"nodeId": ".0.139805402114400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402114400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "def": "139805402114400", "variance": "INVARIANT"}}, "139805402114848": {"type": "Function", "content": {"typeVars": [".0.139805402114848"], "argTypes": [{"nodeId": ".0.139805402114848"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805251582576"}]}], "returnType": {"nodeId": ".0.139805402114848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805402114848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}, "def": "139805402114848", "variance": "INVARIANT"}}, "139805251582576": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276671488"}, {"nodeId": ".2.139805276671488"}]}}, "139805481891648": {"type": "Concrete", "content": {"module": "typing", "simpleName": "MutableMapping", "members": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242957984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__delitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242958432"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452404096"}, "name": "clear"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263874080"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452405440"}, "name": "popitem"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263878000"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263878448"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}], "typeVars": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}], "isAbstract": true}}, ".1.139805481891648": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891648", "variance": "INVARIANT"}}, ".2.139805481891648": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481891648", "variance": "INVARIANT"}}, "139805242957984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805242958432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452404096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263874080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452404544"}, {"nodeId": "139805452404992"}]}}, "139805452404544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}], "returnType": {"nodeId": ".2.139805481891648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805452404992": {"type": "Function", "content": {"typeVars": [".-1.139805452404992"], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": "139805263878560"}], "returnType": {"nodeId": "139805263878672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, "default"]}}, "139805263878560": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891648"}, {"nodeId": ".-1.139805452404992"}]}}, ".-1.139805452404992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452404992", "variance": "INVARIANT"}}, "139805263878672": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805481891648"}, {"nodeId": ".-1.139805452404992"}]}}, "139805452405440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}], "returnType": {"nodeId": "139805263878896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263878896": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}}, "139805263878000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452405888"}, {"nodeId": "139805452406336"}]}}, "139805452405888": {"type": "Function", "content": {"typeVars": [".-1.139805452405888"], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": "139805263879120"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805263879232"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805263879120": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805452405888"}, {"nodeId": "N"}]}}, ".-1.139805452405888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452405888", "variance": "INVARIANT"}}, "139805263879232": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805452405888"}, {"nodeId": "N"}]}}, "139805452406336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": ".2.139805481891648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805263878448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452406784"}, {"nodeId": "139805452407232"}, {"nodeId": "139805452407680"}]}}, "139805452406784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805452407232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805263879568"}]}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805263879568": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}}, "139805452407680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805481891648"}, {"nodeId": ".2.139805481891648"}]}, {"nodeId": ".2.139805481891648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805255958336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452858336"}]}}, "139805452858336": {"type": "Function", "content": {"typeVars": [".0.139805452858336"], "argTypes": [{"nodeId": ".0.139805452858336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805452858336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452858336", "variance": "INVARIANT"}}, "139805200690176": {"type": "Function", "content": {"typeVars": [".0.139805200690176"], "argTypes": [{"nodeId": ".0.139805200690176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805200690176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805200690176", "variance": "INVARIANT"}}, "139805452859232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452859680": {"type": "Function", "content": {"typeVars": [".0.139805452859680"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805452859680"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805452859680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452859680", "variance": "INVARIANT"}}, "139805452860128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805452860576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452861024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444161824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444162272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805444162720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805444163168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444163616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805444164064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444164512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444164960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805251073552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251073552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}}, "139805444165408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805251073776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251073776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}}, "139805444166752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444167200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805200687488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805406235104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805406235104", "variance": "INVARIANT"}}, "139805406235552": {"type": "Function", "content": {"typeVars": [".0.139805406235552"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805406235552"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "object", "encoding", "errors"]}}, ".0.139805406235552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805406235552", "variance": "INVARIANT"}}, "139805406236000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406236448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406236896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406237344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251297888"}, {"nodeId": "139805251298000"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "x", null, null]}}, "139805251297888": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298000": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406237792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805406238240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251298112"}, {"nodeId": "139805251298224"}, {"nodeId": "139805251298336"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251298112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805251298224": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298336": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406238688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805406239584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251298448"}, {"nodeId": "139805251298560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251298448": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298560": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406240032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805406240480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276668320"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "map"]}}, "139805276668320": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_FormatMapMapping", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406234208"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, "139805406234208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276668320"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406240928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251298672"}, {"nodeId": "139805251298784"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251298672": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251298784": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406241376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406241824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406242272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406242720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406243168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406243616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406244064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406244512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406244960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406245408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406245856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406246304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406246752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406247200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406247648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406248096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251298896"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251298896": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406248544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805251299120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251299120": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805406331168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805406331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406332064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805406332512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251299232"}, {"nodeId": "139805251299344"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251299232": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251299344": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406332960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805251299456"}, {"nodeId": "139805251299568"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251299456": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251299568": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406333408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805406333856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805251299792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251299792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805406334304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251299904"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251299904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406334752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300016"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251300016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406335200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300128"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805251300128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406335648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805406336096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300240"}, {"nodeId": "139805251300352"}, {"nodeId": "139805251300464"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805251300240": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805251300352": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805251300464": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "N"}]}}, "139805406336544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251300576"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805251300576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805406336992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406337440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406337888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276668672"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276668672": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_TranslateTable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805406234656"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, "139805406234656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276668672"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805251297552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251297552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805406338336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805406338784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251296992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805406339232"}, {"nodeId": "139805406339680"}, {"nodeId": "139805406340128"}]}}, "139805406339232": {"type": "Function", "content": {"typeVars": [".-1.139805406339232"], "argTypes": [{"nodeId": "139805251300912"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805406339232"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805251300912": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805406339232"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805406339232"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805251300800"}, {"nodeId": ".-1.139805406339232"}]}]}}, ".-1.139805406339232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805406339232", "variance": "INVARIANT"}}, "139805251300800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805406339680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406340128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805251301024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805251301024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805406340576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406341024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406341472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406341920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406342368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805251301136"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805251301136": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805406342816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406343264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406343712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406344160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805406344608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406345056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406345504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406345952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406346400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805406346848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805251301472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251301472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805104095296": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "P", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477546112"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805477546112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104095296"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805104095648": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "S", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477550368"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805477550368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104095648"}, {"nodeId": "139805095524304"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805095524304": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805276880064": {"type": "Concrete", "content": {"module": "collections", "simpleName": "Counter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255607552"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469746432"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469746880"}, "name": "elements"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469747328"}, "name": "most_common"}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213273760"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255611920"}, "items": [{"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtract", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subtract"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255612704"}, "items": [{"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "update", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469750912"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "elem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469751360"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469751808"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469752256"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469752704"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469900864"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469901312"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469901760"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469902208"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469902656"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469903104"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469903552"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469904000"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469904448"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469904896"}, "name": "total"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469905344"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469905792"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469906240"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469906688"}, "name": "__gt__"}}], "typeVars": [{"nodeId": ".1.139805276880064"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "isAbstract": false}}, ".1.139805276880064": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276880064", "variance": "INVARIANT"}}, "139805255607552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469744640"}, {"nodeId": "139805469745088"}, {"nodeId": "139805469745536"}, {"nodeId": "139805469745984"}]}}, "139805469744640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805469745088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469745536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469745984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469746432": {"type": "Function", "content": {"typeVars": [".0.139805469746432"], "argTypes": [{"nodeId": ".0.139805469746432"}], "returnType": {"nodeId": ".0.139805469746432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469746432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469746432", "variance": "INVARIANT"}}, "139805469746880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469747328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805255612816"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255613040"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805255612816": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255613040": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}}, "139805213273760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "139805255613264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "v"]}}, "139805255613264": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255611920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469748224"}, {"nodeId": "139805469748672"}, {"nodeId": "139805469749120"}]}}, "139805469748224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805469748672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469749120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805255612704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469749568"}, {"nodeId": "139805469750016"}, {"nodeId": "139805469750464"}]}}, "139805469749568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805469750912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": ".1.139805276880064"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139805469751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469752256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469752704": {"type": "Function", "content": {"typeVars": [".-1.139805469752704"], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".-1.139805469752704"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805255613600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805469752704": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469752704", "variance": "INVARIANT"}}, "139805255613600": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276880064"}, {"nodeId": ".-1.139805469752704"}]}}, "139805469900864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469901312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469901760": {"type": "Function", "content": {"typeVars": [".-1.139805469901760"], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": ".-1.139805469901760"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805255613712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805469901760": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469901760", "variance": "INVARIANT"}}, "139805255613712": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805276880064"}, {"nodeId": ".-1.139805469901760"}]}}, "139805469902208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469902656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469903104": {"type": "Function", "content": {"typeVars": [".0.139805469903104"], "argTypes": [{"nodeId": ".0.139805469903104"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469903104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469903104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469903104", "variance": "INVARIANT"}}, "139805267817952": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItems", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443969024"}, "name": "items"}}], "typeVars": [{"nodeId": ".1.139805267817952"}, {"nodeId": ".2.139805267817952"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["items"]}}, ".1.139805267817952": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267817952", "variance": "COVARIANT"}}, ".2.139805267817952": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267817952", "variance": "COVARIANT"}}, "139805443969024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805267817952"}, {"nodeId": ".2.139805267817952"}]}], "returnType": {"nodeId": "139805481890592", "args": [{"nodeId": "139805255957328"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255957328": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805267817952"}, {"nodeId": ".2.139805267817952"}]}}, "139805469903552": {"type": "Function", "content": {"typeVars": [".0.139805469903552"], "argTypes": [{"nodeId": ".0.139805469903552"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469903552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469903552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469903552", "variance": "INVARIANT"}}, "139805469904000": {"type": "Function", "content": {"typeVars": [".0.139805469904000"], "argTypes": [{"nodeId": ".0.139805469904000"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469904000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469904000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469904000", "variance": "INVARIANT"}}, "139805469904448": {"type": "Function", "content": {"typeVars": [".0.139805469904448"], "argTypes": [{"nodeId": ".0.139805469904448"}, {"nodeId": "139805267817952", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": ".0.139805469904448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469904448": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "def": "139805469904448", "variance": "INVARIANT"}}, "139805469904896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469905344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469905792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469906240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469906688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, {"nodeId": "139805276880064", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805104096000": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "S1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477550816"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805477550816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096000"}, {"nodeId": "139805095525648"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805095525648": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805099822880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104095296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "139805104096352": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "R", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805477551712"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805477551712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096352"}], "returnType": {"nodeId": "139805104096352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805104096704": {"type": "Concrete", "content": {"module": "subtypes", "simpleName": "RImpl", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473603872"}, "name": "f"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805473603872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096704"}], "returnType": {"nodeId": "139805104096704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805104898784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104096352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "139805193098784": {"type": "Function", "content": {"typeVars": [".-1.139805193098784"], "argTypes": [{"nodeId": "139805481885312", "args": [{"nodeId": ".-1.139805193098784"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["x"]}}, "139805481885312": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsAbs", "members": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242512256"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481885312"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__abs__"]}}, ".1.139805481885312": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481885312", "variance": "COVARIANT"}}, "139805242512256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481885312", "args": [{"nodeId": ".1.139805481885312"}]}], "returnType": {"nodeId": ".1.139805481885312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805193098784": {"type": "TypeVar", "content": {"varName": "T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193098784", "variance": "INVARIANT"}}, "139805104097056": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "SupportsCall", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473588352"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805473588352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104097056"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805104097408": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "HasF", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805104097056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805104097760": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "SupportsSpecificCall", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473605216"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805473605216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805104097760"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805104097408"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805104098112": {"type": "Protocol", "content": {"module": "subtypes", "simpleName": "HasSpecificF", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805104097760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["f"]}}, "139805277005504": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserDict", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255602736"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473610816"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473611264"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473611712"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473612160"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473612608"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473613056"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473613504"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473613952"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255602848"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473615296"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473615744"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255604080"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "isAbstract": false}}, ".1.139805277005504": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005504", "variance": "INVARIANT"}}, ".2.139805277005504": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005504", "variance": "INVARIANT"}}, "139805255602736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473607232"}, {"nodeId": "139805347883808"}, {"nodeId": "139805473608128"}, {"nodeId": "139805473607680"}, {"nodeId": "139805473609024"}, {"nodeId": "139805473608576"}, {"nodeId": "139805473609472"}, {"nodeId": "139805473609920"}]}}, "139805473607232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805347883808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "N"}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805473608128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805473607680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805267818304", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805473609024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255603744"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805255603744": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}}, "139805473608576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255603968"}]}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805255603968": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805277005504"}]}}, "139805473609472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805473609920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669376"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805473610816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805473611264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".1.139805277005504"}], "returnType": {"nodeId": ".2.139805277005504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805473611712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805473612160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": ".1.139805277005504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805473612608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277005504"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805473613056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805473613504": {"type": "Function", "content": {"typeVars": [".0.139805473613504"], "argTypes": [{"nodeId": ".0.139805473613504"}], "returnType": {"nodeId": ".0.139805473613504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805473613504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473613504", "variance": "INVARIANT"}}, "139805473613952": {"type": "Function", "content": {"typeVars": [".0.139805473613952"], "argTypes": [{"nodeId": ".0.139805473613952"}], "returnType": {"nodeId": ".0.139805473613952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805473613952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473613952", "variance": "INVARIANT"}}, "139805255602848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473614400"}, {"nodeId": "139805473614848"}]}}, "139805473614400": {"type": "Function", "content": {"typeVars": [".-1.139805473614400"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805473614400"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473614400"}, {"nodeId": "139805255604416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805473614400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473614400", "variance": "INVARIANT"}}, "139805255604416": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805473614848": {"type": "Function", "content": {"typeVars": [".-1.139805473614848", ".-2.139805473614848"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805473614848"}]}, {"nodeId": ".-2.139805473614848"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473614848"}, {"nodeId": ".-2.139805473614848"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805473614848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473614848", "variance": "INVARIANT"}}, ".-2.139805473614848": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473614848", "variance": "INVARIANT"}}, "139805473615296": {"type": "Function", "content": {"typeVars": [".-1.139805473615296", ".-2.139805473615296"], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805255604528"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": "139805255604640"}, {"nodeId": "139805255604752"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255604528": {"type": "Union", "content": {"items": [{"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473615296"}, {"nodeId": ".-2.139805473615296"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805473615296"}, {"nodeId": ".-2.139805473615296"}]}]}}, ".-1.139805473615296": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615296", "variance": "INVARIANT"}}, ".-2.139805473615296": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615296", "variance": "INVARIANT"}}, "139805255604640": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".-1.139805473615296"}]}}, "139805255604752": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277005504"}, {"nodeId": ".-2.139805473615296"}]}}, "139805473615744": {"type": "Function", "content": {"typeVars": [".-1.139805473615744", ".-2.139805473615744"], "argTypes": [{"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, {"nodeId": "139805255604864"}], "returnType": {"nodeId": "139805277005504", "args": [{"nodeId": "139805255604976"}, {"nodeId": "139805255605088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255604864": {"type": "Union", "content": {"items": [{"nodeId": "139805277005504", "args": [{"nodeId": ".-1.139805473615744"}, {"nodeId": ".-2.139805473615744"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": ".-1.139805473615744"}, {"nodeId": ".-2.139805473615744"}]}]}}, ".-1.139805473615744": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615744", "variance": "INVARIANT"}}, ".-2.139805473615744": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805473615744", "variance": "INVARIANT"}}, "139805255604976": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".-1.139805473615744"}]}}, "139805255605088": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277005504"}, {"nodeId": ".-2.139805473615744"}]}}, "139805255604080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473616192"}, {"nodeId": "139805473616640"}]}}, "139805473616192": {"type": "Function", "content": {"typeVars": [".0.139805473616192"], "argTypes": [{"nodeId": ".0.139805473616192"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}], "returnType": {"nodeId": ".0.139805473616192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805473616192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473616192", "variance": "INVARIANT"}}, "139805473616640": {"type": "Function", "content": {"typeVars": [".0.139805473616640"], "argTypes": [{"nodeId": ".0.139805473616640"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255605424"}]}], "returnType": {"nodeId": ".0.139805473616640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805473616640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005504", "args": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}, "def": "139805473616640", "variance": "INVARIANT"}}, "139805255605424": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277005504"}, {"nodeId": ".2.139805277005504"}]}}, "139805277005856": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserList", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255604192"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473617984"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473618432"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473618880"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473619328"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469360192"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469360640"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469361088"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255605200"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255605536"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469363328"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469363776"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469364224"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469364672"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469365120"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469365568"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469366016"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469366464"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469366912"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469367360"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469367808"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469368256"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469368704"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469369152"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469369600"}, "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255606208"}, "items": [{"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469370944"}, "name": "extend"}}], "typeVars": [{"nodeId": ".1.139805277005856"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805277005856"}]}], "isAbstract": false}}, ".1.139805277005856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005856", "variance": "INVARIANT"}}, "139805255604192": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473617088"}, {"nodeId": "139805473617536"}]}}, "139805473617088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initlist"]}}, "139805473617536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "initlist"]}}, "139805473617984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605648": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805473618432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605760"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605760": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805473618880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605872"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605872": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805473619328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255605984"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255605984": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}]}}, "139805469360192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469360640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469361088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255605200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469361536"}, {"nodeId": "139805469361984"}]}}, "139805469361536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805277005856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469361984": {"type": "Function", "content": {"typeVars": [".0.139805469361984"], "argTypes": [{"nodeId": ".0.139805469361984"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": ".0.139805469361984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469361984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469361984", "variance": "INVARIANT"}}, "139805255605536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469362432"}, {"nodeId": "139805469362880"}]}}, "139805469362432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805469362880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805469363328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255606432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255606432": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805469363776": {"type": "Function", "content": {"typeVars": [".0.139805469363776"], "argTypes": [{"nodeId": ".0.139805469363776"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": ".0.139805469363776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469363776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469363776", "variance": "INVARIANT"}}, "139805469364224": {"type": "Function", "content": {"typeVars": [".0.139805469364224"], "argTypes": [{"nodeId": ".0.139805469364224"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": ".0.139805469364224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469364224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469364224", "variance": "INVARIANT"}}, "139805469364672": {"type": "Function", "content": {"typeVars": [".0.139805469364672"], "argTypes": [{"nodeId": ".0.139805469364672"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": ".0.139805469364672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469364672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469364672", "variance": "INVARIANT"}}, "139805469365120": {"type": "Function", "content": {"typeVars": [".0.139805469365120"], "argTypes": [{"nodeId": ".0.139805469365120"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469365120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469365120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469365120", "variance": "INVARIANT"}}, "139805469365568": {"type": "Function", "content": {"typeVars": [".0.139805469365568"], "argTypes": [{"nodeId": ".0.139805469365568"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469365568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469365568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469365568", "variance": "INVARIANT"}}, "139805469366016": {"type": "Function", "content": {"typeVars": [".0.139805469366016"], "argTypes": [{"nodeId": ".0.139805469366016"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469366016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469366016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469366016", "variance": "INVARIANT"}}, "139805469366464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805469366912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "i", "item"]}}, "139805469367360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805277005856"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "i"]}}, "139805469367808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805469368256": {"type": "Function", "content": {"typeVars": [".0.139805469368256"], "argTypes": [{"nodeId": ".0.139805469368256"}], "returnType": {"nodeId": ".0.139805469368256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469368256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469368256", "variance": "INVARIANT"}}, "139805469368704": {"type": "Function", "content": {"typeVars": [".0.139805469368704"], "argTypes": [{"nodeId": ".0.139805469368704"}], "returnType": {"nodeId": ".0.139805469368704"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469368704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, "def": "139805469368704", "variance": "INVARIANT"}}, "139805469369152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805469369600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": ".1.139805277005856"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "item", null, null]}}, "139805255606208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473610368"}, {"nodeId": "139805469370496"}]}}, "139805473610368": {"type": "Function", "content": {"typeVars": [".-1.139805473610368"], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".-1.139805473610368"}]}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, ".-1.139805473610368": {"type": "TypeVar", "content": {"varName": "SupportsRichComparisonT", "values": [], "upperBound": {"nodeId": "139805263465376"}, "def": "139805473610368", "variance": "INVARIANT"}}, "139805469370496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805255283232"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "key", "reverse"]}}, "139805255283232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139805277005856"}], "returnType": {"nodeId": "139805255606880"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255606880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825872"}}}, "139805469370944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005856", "args": [{"nodeId": ".1.139805277005856"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277005856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805277006208": {"type": "Concrete", "content": {"module": "collections", "simpleName": "UserString", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469371392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469371840"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469372288"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469372736"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469373184"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469373632"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469374080"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469374528"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469374976"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469375424"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469375872"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469474880"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469475328"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469475776"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469476224"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469476672"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469477120"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469477568"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469478016"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469478464"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469478912"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469479808"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469480256"}, "name": "casefold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469480704"}, "name": "center"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469481152"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469481600"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469482496"}, "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469482944"}, "name": "expandtabs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469483392"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469483840"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469484288"}, "name": "format_map"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469484736"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469485184"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469485632"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469486080"}, "name": "isdecimal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469486528"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469486976"}, "name": "isidentifier"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469487424"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469487872"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469488320"}, "name": "isprintable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469488768"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469489216"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469489664"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469490112"}, "name": "isascii"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469490560"}, "name": "join"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469622336"}, "name": "ljust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469622784"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469623232"}, "name": "lstrip"}}, {"kind": "Variable", "content": {"name": "maketrans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805218300960"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469623680"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469624128"}, "name": "removeprefix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469624576"}, "name": "removesuffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469625024"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469625472"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469625920"}, "name": "rindex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469626368"}, "name": "rjust"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469626816"}, "name": "rpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469627264"}, "name": "rstrip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469627712"}, "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469628160"}, "name": "rsplit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469628608"}, "name": "splitlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469629056"}, "name": "startswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469629504"}, "name": "strip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469629952"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469630400"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469630848"}, "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469631296"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469631744"}, "name": "zfill"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805277006208"}]}], "isAbstract": false}}, "139805469371392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805469371840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469372288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469372736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469373184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805255606992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255606992": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805469373632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607104": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469374080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607216"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469374528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607328"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469374976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255607440"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255607440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469375424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469375872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469474880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469475328": {"type": "Function", "content": {"typeVars": [".0.139805469475328"], "argTypes": [{"nodeId": ".0.139805469475328"}, {"nodeId": "139805255607664"}], "returnType": {"nodeId": ".0.139805469475328"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469475328": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469475328", "variance": "INVARIANT"}}, "139805255607664": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805469475776": {"type": "Function", "content": {"typeVars": [".0.139805469475776"], "argTypes": [{"nodeId": ".0.139805469475776"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".0.139805469475776"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805469475776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469475776", "variance": "INVARIANT"}}, "139805469476224": {"type": "Function", "content": {"typeVars": [".0.139805469476224"], "argTypes": [{"nodeId": ".0.139805469476224"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".0.139805469476224"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805469476224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469476224", "variance": "INVARIANT"}}, "139805469476672": {"type": "Function", "content": {"typeVars": [".0.139805469476672"], "argTypes": [{"nodeId": ".0.139805469476672"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805469476672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469476672": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469476672", "variance": "INVARIANT"}}, "139805469477120": {"type": "Function", "content": {"typeVars": [".0.139805469477120"], "argTypes": [{"nodeId": ".0.139805469477120"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805469477120"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469477120": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469477120", "variance": "INVARIANT"}}, "139805469477568": {"type": "Function", "content": {"typeVars": [".0.139805469477568"], "argTypes": [{"nodeId": ".0.139805469477568"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469477568"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469477568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469477568", "variance": "INVARIANT"}}, "139805469478016": {"type": "Function", "content": {"typeVars": [".0.139805469478016"], "argTypes": [{"nodeId": ".0.139805469478016"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469478016"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469478016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469478016", "variance": "INVARIANT"}}, "139805469478464": {"type": "Function", "content": {"typeVars": [".0.139805469478464"], "argTypes": [{"nodeId": ".0.139805469478464"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469478464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469478464": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469478464", "variance": "INVARIANT"}}, "139805469478912": {"type": "Function", "content": {"typeVars": [".0.139805469478912"], "argTypes": [{"nodeId": ".0.139805469478912"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805469478912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469478912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469478912", "variance": "INVARIANT"}}, "139805469479808": {"type": "Function", "content": {"typeVars": [".0.139805469479808"], "argTypes": [{"nodeId": ".0.139805469479808"}], "returnType": {"nodeId": ".0.139805469479808"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469479808": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469479808", "variance": "INVARIANT"}}, "139805469480256": {"type": "Function", "content": {"typeVars": [".0.139805469480256"], "argTypes": [{"nodeId": ".0.139805469480256"}], "returnType": {"nodeId": ".0.139805469480256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469480256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469480256", "variance": "INVARIANT"}}, "139805469480704": {"type": "Function", "content": {"typeVars": [".0.139805469480704"], "argTypes": [{"nodeId": ".0.139805469480704"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469480704"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139805469480704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469480704", "variance": "INVARIANT"}}, "139805469481152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608000"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255608000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469481600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608112"}, {"nodeId": "139805255608224"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805255608112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255608224": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469482496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608336"}, {"nodeId": "139805255608448"}, {"nodeId": "139805255608560"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139805255608336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805255608448": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255608560": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469482944": {"type": "Function", "content": {"typeVars": [".0.139805469482944"], "argTypes": [{"nodeId": ".0.139805469482944"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469482944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, ".0.139805469482944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469482944", "variance": "INVARIANT"}}, "139805469483392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255608672"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255608672": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469483840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwds"]}}, "139805469484288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mapping"]}}, "139805469484736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805469485184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469485632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469486080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469486528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469486976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469487424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469487872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469488320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469488768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469489216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469489664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469490112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469490560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805469622336": {"type": "Function", "content": {"typeVars": [".0.139805469622336"], "argTypes": [{"nodeId": ".0.139805469622336"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469622336"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139805469622336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469622336", "variance": "INVARIANT"}}, "139805469622784": {"type": "Function", "content": {"typeVars": [".0.139805469622784"], "argTypes": [{"nodeId": ".0.139805469622784"}], "returnType": {"nodeId": ".0.139805469622784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469622784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469622784", "variance": "INVARIANT"}}, "139805469623232": {"type": "Function", "content": {"typeVars": [".0.139805469623232"], "argTypes": [{"nodeId": ".0.139805469623232"}, {"nodeId": "139805255609232"}], "returnType": {"nodeId": ".0.139805469623232"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139805469623232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469623232", "variance": "INVARIANT"}}, "139805255609232": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805218300960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805213122496"}, {"nodeId": "139805213122720"}, {"nodeId": "139805213122944"}]}}, "139805213122496": {"type": "Function", "content": {"typeVars": [".-1.139805213122496"], "argTypes": [{"nodeId": "139805218300624"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805213122496"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805218300624": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": ".-1.139805213122496"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805213122496"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805218300288"}, {"nodeId": ".-1.139805213122496"}]}]}}, ".-1.139805213122496": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805213122496", "variance": "INVARIANT"}}, "139805218300288": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805213122720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805213122944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805218300736"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805218300736": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469623680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255609456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805255609456": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805469624128": {"type": "Function", "content": {"typeVars": [".0.139805469624128"], "argTypes": [{"nodeId": ".0.139805469624128"}, {"nodeId": "139805255609568"}], "returnType": {"nodeId": ".0.139805469624128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805469624128": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469624128", "variance": "INVARIANT"}}, "139805255609568": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469624576": {"type": "Function", "content": {"typeVars": [".0.139805469624576"], "argTypes": [{"nodeId": ".0.139805469624576"}, {"nodeId": "139805255609680"}], "returnType": {"nodeId": ".0.139805469624576"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805469624576": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469624576", "variance": "INVARIANT"}}, "139805255609680": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469625024": {"type": "Function", "content": {"typeVars": [".0.139805469625024"], "argTypes": [{"nodeId": ".0.139805469625024"}, {"nodeId": "139805255609792"}, {"nodeId": "139805255609904"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469625024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "maxsplit"]}}, ".0.139805469625024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469625024", "variance": "INVARIANT"}}, "139805255609792": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805255609904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469625472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610016"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255610016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469625920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610128"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805255610128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277006208"}]}}, "139805469626368": {"type": "Function", "content": {"typeVars": [".0.139805469626368"], "argTypes": [{"nodeId": ".0.139805469626368"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469626368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "width", "args"]}}, ".0.139805469626368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469626368", "variance": "INVARIANT"}}, "139805469626816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255610464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805255610464": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805469627264": {"type": "Function", "content": {"typeVars": [".0.139805469627264"], "argTypes": [{"nodeId": ".0.139805469627264"}, {"nodeId": "139805255610576"}], "returnType": {"nodeId": ".0.139805469627264"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139805469627264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469627264", "variance": "INVARIANT"}}, "139805255610576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469627712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610688"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805255610688": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469628160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610800"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805255610800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469628608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805469629056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006208"}, {"nodeId": "139805255610912"}, {"nodeId": "139805255611024"}, {"nodeId": "139805255611136"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139805255610912": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805255611024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255611136": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469629504": {"type": "Function", "content": {"typeVars": [".0.139805469629504"], "argTypes": [{"nodeId": ".0.139805469629504"}, {"nodeId": "139805255611248"}], "returnType": {"nodeId": ".0.139805469629504"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, ".0.139805469629504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469629504", "variance": "INVARIANT"}}, "139805255611248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805469629952": {"type": "Function", "content": {"typeVars": [".0.139805469629952"], "argTypes": [{"nodeId": ".0.139805469629952"}], "returnType": {"nodeId": ".0.139805469629952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469629952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469629952", "variance": "INVARIANT"}}, "139805469630400": {"type": "Function", "content": {"typeVars": [".0.139805469630400"], "argTypes": [{"nodeId": ".0.139805469630400"}], "returnType": {"nodeId": ".0.139805469630400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469630400": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469630400", "variance": "INVARIANT"}}, "139805469630848": {"type": "Function", "content": {"typeVars": [".0.139805469630848"], "argTypes": [{"nodeId": ".0.139805469630848"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805469630848"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, ".0.139805469630848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469630848", "variance": "INVARIANT"}}, "139805469631296": {"type": "Function", "content": {"typeVars": [".0.139805469631296"], "argTypes": [{"nodeId": ".0.139805469631296"}], "returnType": {"nodeId": ".0.139805469631296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469631296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469631296", "variance": "INVARIANT"}}, "139805469631744": {"type": "Function", "content": {"typeVars": [".0.139805469631744"], "argTypes": [{"nodeId": ".0.139805469631744"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469631744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, ".0.139805469631744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006208"}, "def": "139805469631744", "variance": "INVARIANT"}}, "139805277006560": {"type": "Concrete", "content": {"module": "collections", "simpleName": "deque", "members": [{"kind": "Variable", "content": {"name": "maxlen", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213124064"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255606320"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469633536"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469633984"}, "name": "appendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469634432"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469634880"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469635328"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469635776"}, "name": "extendleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469636224"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469636672"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469637120"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469637568"}, "name": "popleft"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469638016"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469737024"}, "name": "rotate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469737472"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469737920"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469738368"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469738816"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469739264"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469739712"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469740160"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469740608"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469741056"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469741504"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469741952"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469742400"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469742848"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469743296"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469743744"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469744192"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277006560"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805277006560"}]}], "isAbstract": false}}, ".1.139805277006560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277006560", "variance": "INVARIANT"}}, "139805213124064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805255611472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255611472": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255606320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469632640"}, {"nodeId": "139805469633088"}]}}, "139805469632640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805255611696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "maxlen"]}}, "139805255611696": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469633088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805255611808"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "maxlen"]}}, "139805255611808": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805469633536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469633984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469634432": {"type": "Function", "content": {"typeVars": [".0.139805469634432"], "argTypes": [{"nodeId": ".0.139805469634432"}], "returnType": {"nodeId": ".0.139805469634432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469634432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469634432", "variance": "INVARIANT"}}, "139805469634880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469635328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469635776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469636224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805469636672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805469637120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": ".1.139805277006560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469637568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": ".1.139805277006560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469638016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805469737024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805469737472": {"type": "Function", "content": {"typeVars": [".0.139805469737472"], "argTypes": [{"nodeId": ".0.139805469737472"}], "returnType": {"nodeId": ".0.139805469737472"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469737472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469737472", "variance": "INVARIANT"}}, "139805469737920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469738368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805277006560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469738816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805277006560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805469739264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469739712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469740160": {"type": "Function", "content": {"typeVars": [".0.139805469740160"], "argTypes": [{"nodeId": ".0.139805469740160"}], "returnType": {"nodeId": "139805255612368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469740160": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469740160", "variance": "INVARIANT"}}, "139805255612368": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805255612144"}, {"nodeId": "N"}, {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277006560"}]}]}}, "139805255612144": {"type": "Tuple", "content": {"items": []}}, "139805469740608": {"type": "Function", "content": {"typeVars": [".0.139805469740608"], "argTypes": [{"nodeId": ".0.139805469740608"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": ".0.139805469740608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469740608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469740608", "variance": "INVARIANT"}}, "139805469741056": {"type": "Function", "content": {"typeVars": [".0.139805469741056"], "argTypes": [{"nodeId": ".0.139805469741056"}, {"nodeId": ".0.139805469741056"}], "returnType": {"nodeId": ".0.139805469741056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469741056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469741056", "variance": "INVARIANT"}}, "139805469741504": {"type": "Function", "content": {"typeVars": [".0.139805469741504"], "argTypes": [{"nodeId": ".0.139805469741504"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469741504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469741504", "variance": "INVARIANT"}}, "139805469741952": {"type": "Function", "content": {"typeVars": [".0.139805469741952"], "argTypes": [{"nodeId": ".0.139805469741952"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805469741952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805469741952": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, "def": "139805469741952", "variance": "INVARIANT"}}, "139805469742400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469742848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469743296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469743744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}, {"nodeId": "139805277006560", "args": [{"nodeId": ".1.139805277006560"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805469744192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805267806336": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictKeysView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469907136"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805267806336"}], "bases": [{"nodeId": "139805276999520", "args": [{"nodeId": ".1.139805267806336"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805267806336"}]}], "isAbstract": false}}, ".1.139805267806336": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267806336", "variance": "COVARIANT"}}, "139805469907136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267806336", "args": [{"nodeId": ".1.139805267806336"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805267806336"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267806688": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictItemsView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469907584"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}], "bases": [{"nodeId": "139805276999168", "args": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": "139805268573792"}]}], "isAbstract": false}}, ".1.139805267806688": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267806688", "variance": "COVARIANT"}}, ".2.139805267806688": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267806688", "variance": "COVARIANT"}}, "139805469907584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267806688", "args": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805255942208"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255942208": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}}, "139805268573792": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805267806688"}, {"nodeId": ".2.139805267806688"}]}}, "139805267807040": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_OrderedDictValuesView", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469908032"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805267807040"}], "bases": [{"nodeId": "139805276999872", "args": [{"nodeId": ".1.139805267807040"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805267807040"}]}], "isAbstract": false}}, ".1.139805267807040": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267807040", "variance": "COVARIANT"}}, "139805469908032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807040", "args": [{"nodeId": ".1.139805267807040"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805267807040"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277006912": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_keys", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469908480"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805277006912"}, {"nodeId": ".2.139805277006912"}], "bases": [{"nodeId": "139805277001984", "args": [{"nodeId": ".1.139805277006912"}, {"nodeId": ".2.139805277006912"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805277006912"}]}], "isAbstract": false}}, ".1.139805277006912": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277006912", "variance": "COVARIANT"}}, ".2.139805277006912": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277006912", "variance": "COVARIANT"}}, "139805469908480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277006912", "args": [{"nodeId": ".1.139805277006912"}, {"nodeId": ".2.139805277006912"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277006912"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277007264": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_items", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469908928"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}], "bases": [{"nodeId": "139805277002688", "args": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": "139805276561344"}]}], "isAbstract": false}}, ".1.139805277007264": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007264", "variance": "COVARIANT"}}, ".2.139805277007264": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007264", "variance": "COVARIANT"}}, "139805469908928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007264", "args": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805255942432"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255942432": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}}, "139805276561344": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277007264"}, {"nodeId": ".2.139805277007264"}]}}, "139805277007616": {"type": "Concrete", "content": {"module": "collections", "simpleName": "_odict_values", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469909376"}, "name": "__reversed__"}}], "typeVars": [{"nodeId": ".1.139805277007616"}, {"nodeId": ".2.139805277007616"}], "bases": [{"nodeId": "139805277002336", "args": [{"nodeId": ".1.139805277007616"}, {"nodeId": ".2.139805277007616"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".2.139805277007616"}]}], "isAbstract": false}}, ".1.139805277007616": {"type": "TypeVar", "content": {"varName": "_KT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007616", "variance": "COVARIANT"}}, ".2.139805277007616": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007616", "variance": "COVARIANT"}}, "139805469909376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007616", "args": [{"nodeId": ".1.139805277007616"}, {"nodeId": ".2.139805277007616"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".2.139805277007616"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277007968": {"type": "Concrete", "content": {"module": "collections", "simpleName": "OrderedDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469909824"}, "name": "popitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "last", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469910272"}, "name": "move_to_end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469910720"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469911168"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469911616"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469912064"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805469912512"}, "name": "values"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255613376"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255942768"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}], "typeVars": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805277007968"}]}], "isAbstract": false}}, ".1.139805277007968": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007968", "variance": "INVARIANT"}}, ".2.139805277007968": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277007968", "variance": "INVARIANT"}}, "139805469909824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255942656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "last"]}}, "139805255942656": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}}, "139805469910272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": ".1.139805277007968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "last"]}}, "139805469910720": {"type": "Function", "content": {"typeVars": [".0.139805469910720"], "argTypes": [{"nodeId": ".0.139805469910720"}], "returnType": {"nodeId": ".0.139805469910720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805469910720": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "def": "139805469910720", "variance": "INVARIANT"}}, "139805469911168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805469911616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805277006912", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469912064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805277007264", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469912512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}], "returnType": {"nodeId": "139805277007616", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255613376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469912960"}, {"nodeId": "139805469913408"}]}}, "139805469912960": {"type": "Function", "content": {"typeVars": [".-1.139805469912960"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805469912960"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277007968", "args": [{"nodeId": ".-1.139805469912960"}, {"nodeId": "139805255943104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805469912960": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469912960", "variance": "INVARIANT"}}, "139805255943104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805469913408": {"type": "Function", "content": {"typeVars": [".-1.139805469913408", ".-2.139805469913408"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805469913408"}]}, {"nodeId": ".-2.139805469913408"}], "returnType": {"nodeId": "139805277007968", "args": [{"nodeId": ".-1.139805469913408"}, {"nodeId": ".-2.139805469913408"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable", "value"]}}, ".-1.139805469913408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469913408", "variance": "INVARIANT"}}, ".-2.139805469913408": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469913408", "variance": "INVARIANT"}}, "139805255942768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469913856"}, {"nodeId": "139805469914304"}]}}, "139805469913856": {"type": "Function", "content": {"typeVars": [".-1.139805469913856"], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": "139805255943328"}]}, {"nodeId": ".1.139805277007968"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255943440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139805255943328": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805469913856"}, {"nodeId": "N"}]}}, ".-1.139805469913856": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805469913856", "variance": "INVARIANT"}}, "139805255943440": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805469913856"}, {"nodeId": "N"}]}}, "139805469914304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277007968", "args": [{"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}]}, {"nodeId": ".1.139805277007968"}, {"nodeId": ".2.139805277007968"}], "returnType": {"nodeId": ".2.139805277007968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139805276880416": {"type": "Concrete", "content": {"module": "collections", "simpleName": "defaultdict", "members": [{"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276557536"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255942880"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464823168"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464823616"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464824064"}, "name": "copy"}}], "typeVars": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}], "isAbstract": false}}, ".1.139805276880416": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276880416", "variance": "INVARIANT"}}, ".2.139805276880416": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276880416", "variance": "INVARIANT"}}, "139805276557536": {"type": "Union", "content": {"items": [{"nodeId": "139805276228736"}, {"nodeId": "N"}]}}, "139805276228736": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805255942880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805469914752"}, {"nodeId": "139805469915200"}, {"nodeId": "139805469915648"}, {"nodeId": "139805469916096"}, {"nodeId": "139805469916544"}, {"nodeId": "139805464821824"}, {"nodeId": "139805464822272"}, {"nodeId": "139805464822720"}]}}, "139805469914752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805469915200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805469915648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255943664"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805255943664": {"type": "Union", "content": {"items": [{"nodeId": "139805255283904"}, {"nodeId": "N"}]}}, "139805255283904": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805469916096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255943776"}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, "kwargs"]}}, "139805255943776": {"type": "Union", "content": {"items": [{"nodeId": "139805255284128"}, {"nodeId": "N"}]}}, "139805255284128": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805469916544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255943888"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805255943888": {"type": "Union", "content": {"items": [{"nodeId": "139805255283456"}, {"nodeId": "N"}]}}, "139805255283456": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805464821824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255944000"}, {"nodeId": "139805267818304", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139805255944000": {"type": "Union", "content": {"items": [{"nodeId": "139805255284352"}, {"nodeId": "N"}]}}, "139805255284352": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805464822272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255944112"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255944336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805255944112": {"type": "Union", "content": {"items": [{"nodeId": "139805255284576"}, {"nodeId": "N"}]}}, "139805255284576": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805255944336": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}}, "139805464822720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": "139805255944448"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255944672"}]}, {"nodeId": ".2.139805276880416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139805255944448": {"type": "Union", "content": {"items": [{"nodeId": "139805255284800"}, {"nodeId": "N"}]}}, "139805255284800": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": [], "argNames": []}}, "139805255944672": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".2.139805276880416"}]}}, "139805464823168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, {"nodeId": ".1.139805276880416"}], "returnType": {"nodeId": ".2.139805276880416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805464823616": {"type": "Function", "content": {"typeVars": [".0.139805464823616"], "argTypes": [{"nodeId": ".0.139805464823616"}], "returnType": {"nodeId": ".0.139805464823616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805464823616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, "def": "139805464823616", "variance": "INVARIANT"}}, "139805464824064": {"type": "Function", "content": {"typeVars": [".0.139805464824064"], "argTypes": [{"nodeId": ".0.139805464824064"}], "returnType": {"nodeId": ".0.139805464824064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805464824064": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805276880416", "args": [{"nodeId": ".1.139805276880416"}, {"nodeId": ".2.139805276880416"}]}, "def": "139805464824064", "variance": "INVARIANT"}}, "139805277008320": {"type": "Concrete", "content": {"module": "collections", "simpleName": "ChainMap", "members": [{"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464824512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464824960"}, "name": "new_child"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213615584"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464825856"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464826304"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464826752"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464827200"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464827648"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464828096"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464828544"}, "name": "__missing__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464828992"}, "name": "__bool__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255943216"}, "items": [{"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setdefault", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "setdefault"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255944896"}, "items": [{"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464831232"}, "name": "copy"}}, {"kind": "Variable", "content": {"name": "__copy__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213618272"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255945120"}, "items": [{"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fromkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fromkeys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464832576"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464833024"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255945456"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "isAbstract": false}}, ".1.139805277008320": {"type": "TypeVar", "content": {"varName": "_KT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277008320", "variance": "INVARIANT"}}, ".2.139805277008320": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277008320", "variance": "INVARIANT"}}, "139805464824512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "maps"]}}, "139805464824960": {"type": "Function", "content": {"typeVars": [".0.139805464824960"], "argTypes": [{"nodeId": ".0.139805464824960"}, {"nodeId": "139805255945008"}], "returnType": {"nodeId": ".0.139805464824960"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, ".0.139805464824960": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464824960", "variance": "INVARIANT"}}, "139805255945008": {"type": "Union", "content": {"items": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "N"}]}}, "139805213615584": {"type": "Function", "content": {"typeVars": [".0.139805213615584"], "argTypes": [{"nodeId": ".0.139805213615584"}], "returnType": {"nodeId": ".0.139805213615584"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805213615584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805213615584", "variance": "INVARIANT"}}, "139805464825856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805464826304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805464826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805464827200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277008320"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805464827648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805464828096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805464828544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139805464828992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255943216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464829440"}, {"nodeId": "139805464829888"}]}}, "139805464829440": {"type": "Function", "content": {"typeVars": [".-1.139805464829440"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": "139805255945232"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255945344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "key", "default"]}}, "139805255945232": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805464829440"}, {"nodeId": "N"}]}}, ".-1.139805464829440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464829440", "variance": "INVARIANT"}}, "139805255945344": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805464829440"}, {"nodeId": "N"}]}}, "139805464829888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139805255944896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464830336"}, {"nodeId": "139805464830784"}]}}, "139805464830336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}], "returnType": {"nodeId": ".2.139805277008320"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "key"]}}, "139805464830784": {"type": "Function", "content": {"typeVars": [".-1.139805464830784"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": ".1.139805277008320"}, {"nodeId": "139805255945568"}], "returnType": {"nodeId": "139805255945680"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "default"]}}, "139805255945568": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-1.139805464830784"}]}}, ".-1.139805464830784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464830784", "variance": "INVARIANT"}}, "139805255945680": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-1.139805464830784"}]}}, "139805464831232": {"type": "Function", "content": {"typeVars": [".0.139805464831232"], "argTypes": [{"nodeId": ".0.139805464831232"}], "returnType": {"nodeId": ".0.139805464831232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805464831232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464831232", "variance": "INVARIANT"}}, "139805213618272": {"type": "Function", "content": {"typeVars": [".0.139805213618272"], "argTypes": [{"nodeId": ".0.139805213618272"}], "returnType": {"nodeId": ".0.139805213618272"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805213618272": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805213618272", "variance": "INVARIANT"}}, "139805255945120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464831680"}, {"nodeId": "139805464832128"}]}}, "139805464831680": {"type": "Function", "content": {"typeVars": [".-1.139805464831680"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805464831680"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": ".-1.139805464831680"}, {"nodeId": "139805255946016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "iterable", null]}}, ".-1.139805464831680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464831680", "variance": "INVARIANT"}}, "139805255946016": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805464832128": {"type": "Function", "content": {"typeVars": [".-1.139805464832128", ".-2.139805464832128"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805464832128"}]}, {"nodeId": ".-2.139805464832128"}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": ".-1.139805464832128"}, {"nodeId": ".-2.139805464832128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".-1.139805464832128": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832128", "variance": "INVARIANT"}}, ".-2.139805464832128": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832128", "variance": "INVARIANT"}}, "139805464832576": {"type": "Function", "content": {"typeVars": [".-1.139805464832576", ".-2.139805464832576"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805464832576"}, {"nodeId": ".-2.139805464832576"}]}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": "139805255946128"}, {"nodeId": "139805255946240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805464832576": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832576", "variance": "INVARIANT"}}, ".-2.139805464832576": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464832576", "variance": "INVARIANT"}}, "139805255946128": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".-1.139805464832576"}]}}, "139805255946240": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-2.139805464832576"}]}}, "139805464833024": {"type": "Function", "content": {"typeVars": [".-1.139805464833024", ".-2.139805464833024"], "argTypes": [{"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805464833024"}, {"nodeId": ".-2.139805464833024"}]}], "returnType": {"nodeId": "139805277008320", "args": [{"nodeId": "139805255946352"}, {"nodeId": "139805255946464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805464833024": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464833024", "variance": "INVARIANT"}}, ".-2.139805464833024": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805464833024", "variance": "INVARIANT"}}, "139805255946352": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".-1.139805464833024"}]}}, "139805255946464": {"type": "Union", "content": {"items": [{"nodeId": ".2.139805277008320"}, {"nodeId": ".-2.139805464833024"}]}}, "139805255945456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805464833472"}, {"nodeId": "139805464833920"}]}}, "139805464833472": {"type": "Function", "content": {"typeVars": [".0.139805464833472"], "argTypes": [{"nodeId": ".0.139805464833472"}, {"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}], "returnType": {"nodeId": ".0.139805464833472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805464833472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464833472", "variance": "INVARIANT"}}, "139805464833920": {"type": "Function", "content": {"typeVars": [".0.139805464833920"], "argTypes": [{"nodeId": ".0.139805464833920"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805255946800"}]}], "returnType": {"nodeId": ".0.139805464833920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805464833920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277008320", "args": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}, "def": "139805464833920", "variance": "INVARIANT"}}, "139805255946800": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805277008320"}, {"nodeId": ".2.139805277008320"}]}}, "139805171901440": {"type": "Concrete", "content": {"module": "numpy._pytesttester", "simpleName": "PytestTester", "members": [{"kind": "Variable", "content": {"name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372772000"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "label", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra_argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doctests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "coverage", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "durations", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372772448"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805372772000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901440"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module_name"]}}, "139805372772448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901440"}, {"nodeId": "139805175561712"}, {"nodeId": "139805481893056"}, {"nodeId": "139805175561824"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805175562048"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "label", "verbose", "extra_argv", "doctests", "coverage", "durations", "tests"]}}, "139805175561712": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805175561824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}]}}, "139805175562048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}]}}, "139805155353952": {"type": "Concrete", "content": {"module": "numpy.core._internal", "simpleName": "_ctypes", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146247264"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "Variable", "content": {"name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116804320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116708256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116702656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_as_parameter_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805116704448"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414616512"}, "name": "data_as"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414616960"}, "name": "shape_as"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414617408"}, "name": "strides_as"}}], "typeVars": [{"nodeId": ".1.139805155353952"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805155353952": {"type": "TypeVar", "content": {"varName": "_PT", "values": [], "upperBound": {"nodeId": "139805155309632"}, "def": "139805155353952", "variance": "INVARIANT"}}, "139805155309632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805146247264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414613824"}, {"nodeId": "139805414614272"}]}}, "139805414613824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "array", "ptr"]}}, "139805155356768": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndarray", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117580672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117580448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146533104"}, "items": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "real"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146535680"}, "items": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "imag"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176095104"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440166592"}, "name": "__class_getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146536352"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440167936"}, "name": "__array_ufunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440168384"}, "name": "__array_function__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440168832"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440169280"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440169728"}, "name": "__array_prepare__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146536688"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117582016"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146536912"}, "items": [{"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117581792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "shape"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146541952"}, "items": [{"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117582912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "strides"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440174656"}, "name": "byteswap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440175104"}, "name": "fill"}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117583136"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146542288"}, "items": [{"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "item"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146542624"}, "items": [{"kind": "Variable", "content": {"name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "itemset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "itemset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146543072"}, "items": [{"kind": "Variable", "content": {"name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "align", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440178688"}, "name": "setflags"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440179136"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440179584"}, "name": "swapaxes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146543408"}, "items": [{"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "transpose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440345024"}, "name": "argpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440345472"}, "name": "diagonal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146543856"}, "items": [{"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "dot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440347264"}, "name": "nonzero"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440347712"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440348160"}, "name": "put"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146545536"}, "items": [{"kind": "Variable", "content": {"name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "searchsorted", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "searchsorted"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440349504"}, "name": "setfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440349952"}, "name": "sort"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146463392"}, "items": [{"kind": "Variable", "content": {"name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "trace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "trace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146647456"}, "items": [{"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "take"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440352640"}, "name": "repeat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440353088"}, "name": "flatten"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440353536"}, "name": "ravel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146649136"}, "items": [{"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "reshape"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146649696"}, "items": [{"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "astype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146650032"}, "items": [{"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "view"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146652944"}, "items": [{"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "getfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176147840"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176144480"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176144256"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176143808"}, "name": "__index__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440492032"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440415648"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440492480"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805440492928"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146654064"}, "items": [{"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146654288"}, "items": [{"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__le__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146654960"}, "items": [{"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146656864"}, "items": [{"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146658768"}, "items": [{"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__abs__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__abs__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146544416"}, "items": [{"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__invert__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__invert__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146694592"}, "items": [{"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pos__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pos__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146695824"}, "items": [{"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__neg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__neg__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146696608"}, "items": [{"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__matmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__matmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146697392"}, "items": [{"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmatmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmatmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146701200"}, "items": [{"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146704896"}, "items": [{"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146707584"}, "items": [{"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__divmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146660336"}, "items": [{"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rdivmod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146746992"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146750128"}, "items": [{"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146754832"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146709600"}, "items": [{"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rsub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146797152"}, "items": [{"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146801856"}, "items": [{"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146806896"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146758864"}, "items": [{"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rfloordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146831488"}, "items": [{"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__pow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146835184"}, "items": [{"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rpow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146838992"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146807568"}, "items": [{"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rtruediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146879632"}, "items": [{"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146883552"}, "items": [{"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rlshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146885792"}, "items": [{"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146888032"}, "items": [{"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rrshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146840672"}, "items": [{"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__and__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146909040"}, "items": [{"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146911168"}, "items": [{"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__xor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146913296"}, "items": [{"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rxor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146915424"}, "items": [{"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__or__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146917552"}, "items": [{"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146919680"}, "items": [{"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__iadd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146921808"}, "items": [{"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__isub__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146889712"}, "items": [{"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__imul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146960880"}, "items": [{"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__itruediv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146963568"}, "items": [{"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ifloordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146965248"}, "items": [{"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ipow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146967824"}, "items": [{"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__imod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__imod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146969952"}, "items": [{"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ilshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ilshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146922480"}, "items": [{"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__irshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__irshift__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141763344"}, "items": [{"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__iand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__iand__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141764688"}, "items": [{"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ixor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ixor__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141766368"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175530656"}, "name": "__dlpack__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431244032"}, "name": "__dlpack_device__"}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112873504"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}], "bases": [{"nodeId": "139805155355360"}], "isAbstract": false}}, ".1.139805155356768": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805155356768", "variance": "INVARIANT"}}, ".2.139805155356768": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805155356768", "variance": "COVARIANT"}}, "139805150983296": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "dtype", "members": [{"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805187924688"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146249056"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465454272"}, "name": "__class_getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146249616"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805155311200"}, "items": [{"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__mul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146361280"}, "items": [{"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465457856"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465458304"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465458752"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465459200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465459648"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805465460096"}, "name": "__ne__"}}, {"kind": "Variable", "content": {"name": "alignment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117104416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117143680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117143904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "char", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "descr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fields", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117144800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hasobject", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isbuiltin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isnative", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isalignedstruct", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117145920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117146816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subdtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176214944"}, "name": "newbyteorder"}}, {"kind": "Variable", "content": {"name": "str", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117147936"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805150983296"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150983296": {"type": "TypeVar", "content": {"varName": "_DTypeScalar_co", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805150983296", "variance": "COVARIANT"}}, "139805155357120": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "generic", "members": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805112873728"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141768048"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112874400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112872160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112872384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112873056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112861408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431248512"}, "name": "byteswap"}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112869024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141769728"}, "items": [{"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "astype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "astype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141770736"}, "items": [{"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "view", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "view"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141773984"}, "items": [{"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getfield", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "getfield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431400256"}, "name": "item"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141775104"}, "items": [{"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "take", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "take"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repeats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175644896"}, "name": "repeat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175647136"}, "name": "flatten"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805175648928"}, "name": "ravel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141775440"}, "items": [{"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "reshape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431404288"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431404736"}, "name": "transpose"}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112870368"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155355360"}], "isAbstract": true}}, "139805112873728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805141768048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175533568"}, {"nodeId": "139805431245824"}]}}, "139805175533568": {"type": "Function", "content": {"typeVars": [".-1.139805175533568"], "argTypes": [{"nodeId": ".-1.139805175533568"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175533568"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.139805175533568": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175533568", "variance": "INVARIANT"}}, "139805431245824": {"type": "Function", "content": {"typeVars": [".-1.139805431245824"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": ".-1.139805431245824"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805431245824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805431245824": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805431245824", "variance": "INVARIANT"}}, "139805112874400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112872160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112872384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112873056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "139805141771408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141771408": {"type": "Tuple", "content": {"items": []}}, "139805112861408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}], "returnType": {"nodeId": "139805141771632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141771632": {"type": "Tuple", "content": {"items": []}}, "139805431248512": {"type": "Function", "content": {"typeVars": [".-1.139805431248512"], "argTypes": [{"nodeId": ".-1.139805431248512"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805431248512"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}}, ".-1.139805431248512": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431248512", "variance": "INVARIANT"}}, "139805112869024": {"type": "Function", "content": {"typeVars": [".-1.139805112869024"], "argTypes": [{"nodeId": ".-1.139805112869024"}], "returnType": {"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805112869024"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112869024": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805112869024", "variance": "INVARIANT"}}, "139805150983648": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "flatiter", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117324128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coords", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117324800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117325024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461244928"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461245376"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461245824"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461246272"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146360384"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805461247616"}, "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146361840"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}], "typeVars": [{"nodeId": ".1.139805150983648"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150983648": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805150983648", "variance": "INVARIANT"}}, "139805117324128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": ".1.139805150983648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117324800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": "139805146364752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146364752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117325024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805461244928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": ".1.139805150983648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805461245376": {"type": "Function", "content": {"typeVars": [".-1.139805461245376"], "argTypes": [{"nodeId": ".-1.139805461245376"}], "returnType": {"nodeId": ".-1.139805461245376"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805461245376": {"type": "TypeVar", "content": {"varName": "_FlatIterSelf", "values": [], "upperBound": {"nodeId": "139805150983648", "args": [{"nodeId": "A"}]}, "def": "139805461245376", "variance": "INVARIANT"}}, "139805461245824": {"type": "Function", "content": {"typeVars": [".-1.139805461245824"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805461245824"}]}]}]}], "returnType": {"nodeId": ".-1.139805461245824"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805461245824": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805461245824", "variance": "INVARIANT"}}, "139805461246272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146360384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805461246720"}, {"nodeId": "139805461247168"}]}}, "139805461246720": {"type": "Function", "content": {"typeVars": [".-1.139805461246720"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805461246720"}]}]}]}, {"nodeId": "139805146365760"}], "returnType": {"nodeId": ".-1.139805461246720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805461246720": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805461246720", "variance": "INVARIANT"}}, "139805146365760": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, {"nodeId": "139805146365648"}]}}, "139805155359232": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "integer", "members": [{"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112978336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112990432"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141861984"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431587200"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431587648"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431588096"}, "name": "is_integer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431588544"}, "name": "bit_count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431588992"}, "name": "__index__"}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155359232"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155359232"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431589440"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431589888"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431590336"}, "name": "__invert__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431590784"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431591232"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431591680"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431592128"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431592576"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431593024"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431593472"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431593920"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431594368"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431709760"}, "name": "__rxor__"}}], "typeVars": [{"nodeId": ".1.139805155359232"}], "bases": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155359232"}]}], "isAbstract": true}}, ".1.139805155359232": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155359232", "variance": "INVARIANT"}}, "139805154855744": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "NBitBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372773792"}, "name": "__init_subclass__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805372773792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805112978336": {"type": "Function", "content": {"typeVars": [".-1.139805112978336"], "argTypes": [{"nodeId": ".-1.139805112978336"}], "returnType": {"nodeId": ".-1.139805112978336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112978336": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805112978336", "variance": "INVARIANT"}}, "139805112990432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141861984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431586304"}, {"nodeId": "139805431586752"}]}}, "139805431586304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}}, "139805431586752": {"type": "Function", "content": {"typeVars": [".-1.139805431586752"], "argTypes": [{"nodeId": ".-1.139805431586752"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805431586752"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}}, ".-1.139805431586752": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431586752", "variance": "INVARIANT"}}, "139805276997408": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsIndex", "members": [{"kind": "Variable", "content": {"name": "__index__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242510240"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__index__"]}}, "139805242510240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431587200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865008"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141865008": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141864560"}, {"nodeId": "139805141864896"}]}}, "139805141864560": {"type": "Tuple", "content": {"items": []}}, "139805141864896": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431587648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431588096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431588544": {"type": "Function", "content": {"typeVars": [".-1.139805431588544"], "argTypes": [{"nodeId": ".-1.139805431588544"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805431588544": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431588544", "variance": "INVARIANT"}}, "139805431588992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155347968": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_IntTrueDiv", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146180048"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155347968"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155347968": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155347968", "variance": "INVARIANT"}}, "139805146180048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410634304"}, {"nodeId": "139805410634752"}, {"nodeId": "139805410635200"}, {"nodeId": "139805410635648"}, {"nodeId": "139805410636096"}]}}, "139805410634304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805155347968"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150577056": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "floating", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431720960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431721408"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431721856"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431722304"}, "name": "is_integer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171793056"}, "name": "hex"}}, {"kind": "Variable", "content": {"name": "fromhex", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805108234144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431723648"}, "name": "as_integer_ratio"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171827424"}, "name": "__ceil__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171827200"}, "name": "__floor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171840416"}, "name": "__trunc__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171841312"}, "name": "__getnewargs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typestr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171841088"}, "name": "__getformat__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141864112"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805150577056"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805150577056"}], "bases": [{"nodeId": "139805150576704", "args": [{"nodeId": ".1.139805150577056"}]}], "isAbstract": false}}, ".1.139805150577056": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150577056", "variance": "INVARIANT"}}, "139805431720960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}, {"nodeId": "139805141870720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141870720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150259888"}}}, "139805150259888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150258768"}, {"nodeId": "139805276996352"}, {"nodeId": "139805276997408"}]}}, "139805150258768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805159546928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}]}}, "139805431721408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}, {"nodeId": "139805141871504"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141871504": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141871056"}, {"nodeId": "139805141871392"}]}}, "139805141871056": {"type": "Tuple", "content": {"items": []}}, "139805141871392": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431721856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431722304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171793056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141871616"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141871616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805154857504": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_64Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154857152"}], "isAbstract": false}}, "139805154857152": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_80Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154856800"}], "isAbstract": false}}, "139805154856800": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_96Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154856448"}], "isAbstract": false}}, "139805154856448": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_128Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154856096"}], "isAbstract": false}}, "139805154856096": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_256Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154855744"}], "isAbstract": false}}, "139805108234144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805141871728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141871728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805431723648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}], "returnType": {"nodeId": "139805141871952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141871952": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805171827424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872064"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805171827200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872176"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805171840416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872288"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805171841312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872400"}], "returnType": {"nodeId": "139805141872624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141872400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805141872624": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}]}}, "139805171841088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141872736"}, {"nodeId": "139805141873072"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141872736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805141873072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805141864112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431906816"}, {"nodeId": "139805431907264"}]}}, "139805431906816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577056"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "ndigits"]}}, "139805431907264": {"type": "Function", "content": {"typeVars": [".-1.139805431907264"], "argTypes": [{"nodeId": ".-1.139805431907264"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805431907264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ndigits"]}}, ".-1.139805431907264": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431907264", "variance": "INVARIANT"}}, "139805155351136": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146243568"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155351136"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155351136": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155351136", "variance": "INVARIANT"}}, "139805146243568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414600128"}, {"nodeId": "139805414600576"}, {"nodeId": "139805414601024"}, {"nodeId": "139805414601472"}, {"nodeId": "139805414601920"}]}}, "139805414600128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805155351136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414600576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146244240"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146244240": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244128"}]}}, "139805146244128": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414601024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146244464"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146244464": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244352"}]}}, "139805146244352": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414601472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146244688"}, {"nodeId": "139805146244912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150577408": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "complexfloating", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431907712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431908160"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431908608"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108238400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108239520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431909952"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171840864"}, "name": "__getnewargs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805150577408"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}], "bases": [{"nodeId": "139805150576704", "args": [{"nodeId": ".1.139805150577408"}]}], "isAbstract": false}}, ".1.139805150577408": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150577408", "variance": "INVARIANT"}}, ".2.139805150577408": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150577408", "variance": "INVARIANT"}}, "139805431907712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}, {"nodeId": "139805141873296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141873296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150260112"}}}, "139805150260112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150259552"}, {"nodeId": "139805276996352"}, {"nodeId": "139805276996704"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276667968"}]}}, "139805150259552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805431908160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}, {"nodeId": "139805141874080"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141874080": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141873632"}, {"nodeId": "139805141873968"}]}}, "139805141873632": {"type": "Tuple", "content": {"items": []}}, "139805141873968": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431908608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108238400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108239520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".2.139805150577408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431909952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805150577408"}, {"nodeId": ".2.139805150577408"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805150577408"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805171840864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805141874192"}], "returnType": {"nodeId": "139805141874416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141874192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805141874416": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805155352192": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_ComplexOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146245248"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155352192"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155352192": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155352192", "variance": "INVARIANT"}}, "139805146245248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414393216"}, {"nodeId": "139805414393664"}, {"nodeId": "139805414394112"}, {"nodeId": "139805414394560"}]}}, "139805414393216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": ".1.139805155352192"}, {"nodeId": ".1.139805155352192"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414393664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146247488"}, {"nodeId": "139805146247712"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146247488": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146247376"}]}}, "139805146247376": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146247712": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146247600"}]}}, "139805146247600": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414394112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146247936"}, {"nodeId": "139805146248160"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146247936": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146247824"}]}}, "139805146247824": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146248160": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": "139805146248048"}]}}, "139805146248048": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414394560": {"type": "Function", "content": {"typeVars": [".-1.139805414394560"], "argTypes": [{"nodeId": "139805155352192", "args": [{"nodeId": ".1.139805155352192"}]}, {"nodeId": "139805146248272"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146248384"}, {"nodeId": "139805146248496"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146248272": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414394560"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414394560"}]}, {"nodeId": "139805150577408", "args": [{"nodeId": ".-1.139805414394560"}, {"nodeId": ".-1.139805414394560"}]}]}}, ".-1.139805414394560": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414394560", "variance": "INVARIANT"}}, "139805146248384": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": ".-1.139805414394560"}]}}, "139805146248496": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155352192"}, {"nodeId": ".-1.139805414394560"}]}}, "139805150576704": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "inexact", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431720512"}, "name": "__getnewargs__"}}], "typeVars": [{"nodeId": ".1.139805150576704"}], "bases": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805150576704"}]}], "isAbstract": true}}, ".1.139805150576704": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805150576704", "variance": "INVARIANT"}}, "139805431720512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150576704", "args": [{"nodeId": "139805154857504"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893408"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155357472": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "number", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112873280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112874624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431406528"}, "name": "__class_getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431406976"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431407424"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431407872"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431408320"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431408768"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431409216"}, "name": "__abs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155352544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805196742528"}, {"nodeId": "139805196733008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163129872"}, {"nodeId": "139805163126848"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163127520"}, {"nodeId": "139805163139728"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163131328"}, {"nodeId": "139805163131440"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155357472"}], "bases": [{"nodeId": "139805155357120"}], "isAbstract": true}}, ".1.139805155357472": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155357472", "variance": "INVARIANT"}}, "139805112873280": {"type": "Function", "content": {"typeVars": [".-1.139805112873280"], "argTypes": [{"nodeId": ".-1.139805112873280"}], "returnType": {"nodeId": ".-1.139805112873280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112873280": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112873280", "variance": "INVARIANT"}}, "139805155355360": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "_ArrayOrScalarCommon", "members": [{"kind": "Variable", "content": {"name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117325920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "data", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117327264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117327712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117327936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nbytes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117328160"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439739264"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439739712"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439740160"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439740608"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439741056"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439741504"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439741952"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439742400"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176212704"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439743296"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439743744"}, "name": "dumps"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439744192"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439744640"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439745088"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "__array_interface__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117328384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117329952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_struct__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117330176"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439746880"}, "name": "__setstate__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146364976"}, "items": [{"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "all"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146449392"}, "items": [{"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "any"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146452976"}, "items": [{"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmax"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146454096"}, "items": [{"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmin"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439752704"}, "name": "argsort"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146451856"}, "items": [{"kind": "Variable", "content": {"name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choose"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146454656"}, "items": [{"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "clip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "clip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146456560"}, "items": [{"kind": "Variable", "content": {"name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "compress"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439937216"}, "name": "conj"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439937664"}, "name": "conjugate"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146458240"}, "items": [{"kind": "Variable", "content": {"name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cumprod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "cumprod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146458912"}, "items": [{"kind": "Variable", "content": {"name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cumsum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "cumsum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146459360"}, "items": [{"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "max"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146460592"}, "items": [{"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mean"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146461376"}, "items": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "min"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new_order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805176098464"}, "name": "newbyteorder"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146463056"}, "items": [{"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "prod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146463616"}, "items": [{"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ptp"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146250176"}, "items": [{"kind": "Variable", "content": {"name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "round", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "round"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146530304"}, "items": [{"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "std"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146530528"}, "items": [{"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146533216"}, "items": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "var"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805117325920": {"type": "Function", "content": {"typeVars": [".-1.139805117325920"], "argTypes": [{"nodeId": ".-1.139805117325920"}], "returnType": {"nodeId": ".-1.139805117325920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117325920": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805117325920", "variance": "INVARIANT"}}, "139805117327264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117327712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805154868768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154868768": {"type": "Concrete", "content": {"module": "numpy.core.multiarray", "simpleName": "flagsobj", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writeable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writebackifcopy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "behaved", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120965632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120855424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "carray", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_contiguous", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "farray", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120984256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fnc", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120983584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "forc", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120983360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fortran", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120983136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "num", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120982912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "owndata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805120982688"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385785408"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385785856"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805120965632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120855424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120984256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120983584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120983360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120983136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120982912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805120982688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805385785408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}, {"nodeId": "139805213441632"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805213441632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155297984"}}}, "139805155297984": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805385785856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868768"}, {"nodeId": "139805213441856"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805213441856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155146912"}}}, "139805155146912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805117327936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117328160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439739264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439739712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439740160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805439740608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805439741056": {"type": "Function", "content": {"typeVars": [".-1.139805439741056"], "argTypes": [{"nodeId": ".-1.139805439741056"}], "returnType": {"nodeId": ".-1.139805439741056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805439741056": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439741056", "variance": "INVARIANT"}}, "139805439741504": {"type": "Function", "content": {"typeVars": [".-1.139805439741504"], "argTypes": [{"nodeId": ".-1.139805439741504"}, {"nodeId": "139805146449952"}], "returnType": {"nodeId": ".-1.139805439741504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805439741504": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439741504", "variance": "INVARIANT"}}, "139805146449952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}]}}, "139805439741952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805439742400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805176212704": {"type": "Function", "content": {"typeVars": [".-1.139805176212704"], "argTypes": [{"nodeId": ".-1.139805176212704"}, {"nodeId": "139805146450512"}], "returnType": {"nodeId": ".-1.139805176212704"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.139805176212704": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176212704", "variance": "INVARIANT"}}, "139805146450512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805150252832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805439743296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146450624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "file"]}}, "139805146450624": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155355008", "args": [{"nodeId": "139805276669376"}]}]}}, "139805268510496": {"type": "Protocol", "content": {"module": "os", "simpleName": "PathLike", "members": [{"kind": "Variable", "content": {"name": "__fspath__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242761600"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805268510496"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__fspath__"]}}, ".1.139805268510496": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268510496", "variance": "COVARIANT"}}, "139805242761600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268510496", "args": [{"nodeId": ".1.139805268510496"}]}], "returnType": {"nodeId": ".1.139805268510496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155355008": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473933568"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805155355008"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805155355008": {"type": "TypeVar", "content": {"varName": "_AnyStr_contra", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155355008", "variance": "CONTRAVARIANT"}}, "139805473933568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355008", "args": [{"nodeId": ".1.139805155355008"}]}, {"nodeId": ".1.139805155355008"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805439743744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439744192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146450736"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805146450736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805439744640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146450848"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}}, "139805146450848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354304"}]}}, "139805155354304": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_IOProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464835712"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464836160"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464836608"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464837056"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["fileno", "flush", "seek", "tell"]}}, "139805464835712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805464836160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805464836608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}], "returnType": {"nodeId": "139805276997408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805464837056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805439745088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117328384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117329952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117330176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805439746880": {"type": "Function", "content": {"typeVars": [".-1.139805439746880"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146451744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146451744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805146451296"}, {"nodeId": ".-1.139805439746880"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146451520"}]}}, "139805146451296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805184453184": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276997408"}]}]}}, ".-1.139805439746880": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805439746880", "variance": "COVARIANT"}}, "139805146451520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}]}}, "139805146364976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439747328"}, {"nodeId": "139805439747776"}, {"nodeId": "139805439748224"}]}}, "139805439747328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805146452080"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146452080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805155357824": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "bool_", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431409664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431410112"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431410560"}, "name": "tolist"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112875744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112876640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431411904"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431412352"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431412800"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431413248"}, "name": "__abs__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196531552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196532112"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196531888"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345504", "args": [{"nodeId": "139805196532000"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rtruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346560"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431413696"}, "name": "__invert__"}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196531776"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196530656"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196531440"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805196531328"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155345856", "args": [{"nodeId": "139805155357824"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155346912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163131888"}, {"nodeId": "139805163127184"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163137824"}, {"nodeId": "139805163128192"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163131776"}, {"nodeId": "139805163131216"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163132000"}, {"nodeId": "139805163134240"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805431409664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805431410112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}, {"nodeId": "139805141861872"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141861872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141861424"}, {"nodeId": "139805141861760"}]}}, "139805141861424": {"type": "Tuple", "content": {"items": []}}, "139805141861760": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431410560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112875744": {"type": "Function", "content": {"typeVars": [".-1.139805112875744"], "argTypes": [{"nodeId": ".-1.139805112875744"}], "returnType": {"nodeId": ".-1.139805112875744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112875744": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112875744", "variance": "INVARIANT"}}, "139805112876640": {"type": "Function", "content": {"typeVars": [".-1.139805112876640"], "argTypes": [{"nodeId": ".-1.139805112876640"}], "returnType": {"nodeId": ".-1.139805112876640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112876640": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112876640", "variance": "INVARIANT"}}, "139805431411904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431412352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431412800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431413248": {"type": "Function", "content": {"typeVars": [".-1.139805431413248"], "argTypes": [{"nodeId": ".-1.139805431413248"}], "returnType": {"nodeId": ".-1.139805431413248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431413248": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431413248", "variance": "INVARIANT"}}, "139805155345504": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146177136"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155345504"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155345504": {"type": "TypeVar", "content": {"varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805155345504", "variance": "COVARIANT"}}, "139805146177136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414618752"}, {"nodeId": "139805414619200"}, {"nodeId": "139805414619648"}, {"nodeId": "139805414620096"}, {"nodeId": "139805414620544"}]}}, "139805414618752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805146177584"}], "returnType": {"nodeId": ".1.139805155345504"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146177584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805159542784": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805155357824"}]}}, "139805414619200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146178256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805155359584": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "signedinteger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431710208"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155359584"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155359584"}], "bases": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359584"}]}], "isAbstract": false}}, ".1.139805155359584": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155359584", "variance": "INVARIANT"}}, "139805431710208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155359584"}]}, {"nodeId": "139805141867920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141867920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150259664"}}}, "139805150259664": {"type": "Union", "content": {"items": [{"nodeId": "139805276996000"}, {"nodeId": "139805150258656"}, {"nodeId": "139805276997408"}]}}, "139805150258656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805155349728": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146238640"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155349728"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155349728": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155349728", "variance": "INVARIANT"}}, "139805146238640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414592960"}, {"nodeId": "139805414593408"}, {"nodeId": "139805414593856"}, {"nodeId": "139805414594304"}, {"nodeId": "139805414594752"}]}}, "139805414592960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155349728"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414593408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146239312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146239312": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239200"}]}}, "139805146239200": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414593856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146239536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146239536": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239424"}]}}, "139805146239424": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414594304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146239760"}, {"nodeId": "139805146239984"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146239760": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239648"}]}}, "139805146239648": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146239984": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": "139805146239872"}]}}, "139805146239872": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414594752": {"type": "Function", "content": {"typeVars": [".-1.139805414594752"], "argTypes": [{"nodeId": "139805155349728", "args": [{"nodeId": ".1.139805155349728"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414594752"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146240096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414594752": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414594752", "variance": "INVARIANT"}}, "139805146240096": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349728"}, {"nodeId": ".-1.139805414594752"}]}}, "139805155350080": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805184450608"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155350080"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155350080": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155350080", "variance": "INVARIANT"}}, "139805184450608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414595200"}, {"nodeId": "139805414595648"}, {"nodeId": "139805414596096"}]}}, "139805414595200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155350080"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155350080"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414595648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155350080"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146240880"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146240880": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350080"}, {"nodeId": "139805146240768"}]}}, "139805146240768": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414596096": {"type": "Function", "content": {"typeVars": [".-1.139805414596096"], "argTypes": [{"nodeId": "139805155350080", "args": [{"nodeId": ".1.139805155350080"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414596096"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146241216"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414596096": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414596096", "variance": "INVARIANT"}}, "139805146241216": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350080"}, {"nodeId": ".-1.139805414596096"}]}}, "139805155350432": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146240992"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155350432"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155350432": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155350432", "variance": "INVARIANT"}}, "139805146240992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414596544"}, {"nodeId": "139805414596992"}, {"nodeId": "139805414597440"}, {"nodeId": "139805414597888"}]}}, "139805414596544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": ".1.139805155350432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414596992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146241552"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146241552": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350432"}, {"nodeId": "139805146241440"}]}}, "139805146241440": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414597440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146241776"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146241776": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350432"}, {"nodeId": "139805146241664"}]}}, "139805146241664": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414597888": {"type": "Function", "content": {"typeVars": [".-1.139805414597888"], "argTypes": [{"nodeId": "139805155350432", "args": [{"nodeId": ".1.139805155350432"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414597888"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "139805146241888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414597888": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414597888", "variance": "INVARIANT"}}, "139805146241888": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155350432"}, {"nodeId": ".-1.139805414597888"}]}}, "139805155350784": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805155310976"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155350784"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155350784": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155350784", "variance": "INVARIANT"}}, "139805155310976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414598336"}, {"nodeId": "139805414598784"}, {"nodeId": "139805414599232"}, {"nodeId": "139805414599680"}]}}, "139805414598336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414598784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414599232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414599680": {"type": "Function", "content": {"typeVars": [".-1.139805414599680"], "argTypes": [{"nodeId": "139805155350784", "args": [{"nodeId": ".1.139805155350784"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": ".-1.139805414599680"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414599680": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414599680", "variance": "INVARIANT"}}, "139805150261008": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414619648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805146178480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805414620096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805146178592"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805414620544": {"type": "Function", "content": {"typeVars": [".-1.139805414620544"], "argTypes": [{"nodeId": "139805155345504", "args": [{"nodeId": ".1.139805155345504"}]}, {"nodeId": ".-1.139805414620544"}], "returnType": {"nodeId": ".-1.139805414620544"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414620544": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805414620544", "variance": "INVARIANT"}}, "139805155346208": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolSub", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146176688"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146176688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410624896"}, {"nodeId": "139805410625344"}, {"nodeId": "139805410625792"}, {"nodeId": "139805410626240"}, {"nodeId": "139805410626688"}]}}, "139805410624896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410625344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146179152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805410625792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805146179264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805410626240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805146179376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805410626688": {"type": "Function", "content": {"typeVars": [".-1.139805410626688"], "argTypes": [{"nodeId": "139805155346208"}, {"nodeId": ".-1.139805410626688"}], "returnType": {"nodeId": ".-1.139805410626688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410626688": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805410626688", "variance": "INVARIANT"}}, "139805196531552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805154858560": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_8Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154858208"}], "isAbstract": false}}, "139805154858208": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_16Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154857856"}], "isAbstract": false}}, "139805154857856": {"type": "Concrete", "content": {"module": "numpy._typing", "simpleName": "_32Bit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805154857504"}], "isAbstract": false}}, "139805196532112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196531888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196532000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805155346560": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolTrueDiv", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146178032"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146178032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410627136"}, {"nodeId": "139805410627584"}, {"nodeId": "139805410628032"}]}}, "139805410627136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346560"}, {"nodeId": "139805146179712"}], "returnType": {"nodeId": "139805146179824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179712": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805146179600"}]}}, "139805146179600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805159389136": {"type": "Union", "content": {"items": [{"nodeId": "139805159542896"}, {"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}]}}, "139805159542896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805146179824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805410627584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346560"}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805146179936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146179936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805410628032": {"type": "Function", "content": {"typeVars": [".-1.139805410628032"], "argTypes": [{"nodeId": "139805155346560"}, {"nodeId": ".-1.139805410628032"}], "returnType": {"nodeId": ".-1.139805410628032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410628032": {"type": "TypeVar", "content": {"varName": "_NumberType", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805410628032", "variance": "INVARIANT"}}, "139805431413696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357824"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805155345856": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146177472"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155345856"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155345856": {"type": "TypeVar", "content": {"varName": "_GenericType_co", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805155345856", "variance": "COVARIANT"}}, "139805146177472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410623552"}, {"nodeId": "139805410624000"}, {"nodeId": "139805410624448"}]}}, "139805410623552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345856", "args": [{"nodeId": ".1.139805155345856"}]}, {"nodeId": "139805146178816"}], "returnType": {"nodeId": ".1.139805155345856"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805410624000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155345856", "args": [{"nodeId": ".1.139805155345856"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146178928"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146178928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805410624448": {"type": "Function", "content": {"typeVars": [".-1.139805410624448"], "argTypes": [{"nodeId": "139805155345856", "args": [{"nodeId": ".1.139805155345856"}]}, {"nodeId": ".-1.139805410624448"}], "returnType": {"nodeId": ".-1.139805410624448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410624448": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805410624448", "variance": "INVARIANT"}}, "139805196531776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196530656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196531440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805196531328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805155346912": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146178704"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146178704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410628480"}, {"nodeId": "139805410628928"}, {"nodeId": "139805410629376"}, {"nodeId": "139805410629824"}, {"nodeId": "139805410630272"}]}}, "139805410628480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": "139805146180160"}], "returnType": {"nodeId": "139805146180272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805146180272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805410628928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805146180384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805410629376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805146180496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805410629824": {"type": "Function", "content": {"typeVars": [".-1.139805410629824"], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": ".-1.139805410629824"}], "returnType": {"nodeId": ".-1.139805410629824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410629824": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805410629824", "variance": "INVARIANT"}}, "139805410630272": {"type": "Function", "content": {"typeVars": [".-1.139805410630272"], "argTypes": [{"nodeId": "139805155346912"}, {"nodeId": ".-1.139805410630272"}], "returnType": {"nodeId": ".-1.139805410630272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410630272": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}, "def": "139805410630272", "variance": "INVARIANT"}}, "139805155347264": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_BoolDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146179040"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805146179040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410630720"}, {"nodeId": "139805410631168"}, {"nodeId": "139805410631616"}, {"nodeId": "139805410632064"}, {"nodeId": "139805410632512"}]}}, "139805410630720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": "139805146180720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146180720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805410631168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410631616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410632064": {"type": "Function", "content": {"typeVars": [".-1.139805410632064"], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": ".-1.139805410632064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410632064": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805410632064", "variance": "INVARIANT"}}, "139805410632512": {"type": "Function", "content": {"typeVars": [".-1.139805410632512"], "argTypes": [{"nodeId": "139805155347264"}, {"nodeId": ".-1.139805410632512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410632512": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}, "def": "139805410632512", "variance": "INVARIANT"}}, "139805155353600": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_ComparisonOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146246032"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155353600": {"type": "TypeVar", "content": {"varName": "_T1_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155353600", "variance": "CONTRAVARIANT"}}, ".2.139805155353600": {"type": "TypeVar", "content": {"varName": "_T2_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155353600", "variance": "CONTRAVARIANT"}}, "139805146246032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414396352"}, {"nodeId": "139805414396800"}, {"nodeId": "139805414397248"}]}}, "139805414396352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353600", "args": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}]}, {"nodeId": ".1.139805155353600"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414396800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353600", "args": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}]}, {"nodeId": ".2.139805155353600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414397248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353600", "args": [{"nodeId": ".1.139805155353600"}, {"nodeId": ".2.139805155353600"}]}, {"nodeId": "139805146249392"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146249392": {"type": "Union", "content": {"items": [{"nodeId": "139805155352896"}, {"nodeId": "139805155353248"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805146249280"}]}]}}, "139805155352896": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SupportsLT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414395456"}, "name": "__lt__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__lt__"]}}, "139805414395456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352896"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805155353248": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_SupportsGT", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414395904"}, "name": "__gt__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__gt__"]}}, "139805414395904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353248"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167797344": {"type": "Protocol", "content": {"module": "numpy._typing._nested_sequence", "simpleName": "_NestedSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339467360"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167975360"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339206816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339207264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339207712"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339208160"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339208608"}, "name": "index"}}], "typeVars": [{"nodeId": ".1.139805167797344"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "__reversed__", "count", "index"]}}, ".1.139805167797344": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805167797344", "variance": "COVARIANT"}}, "139805339467360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167975360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805339205920"}, {"nodeId": "139805339206368"}]}}, "139805339205920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805167975248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167975248": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805167797344"}, {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}]}}, "139805339206368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339206816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339207264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805167975696"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167975696": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805167797344"}, {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}]}}, "139805339207712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805167975808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167975808": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805167797344"}, {"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}]}}, "139805339208160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339208608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797344", "args": [{"nodeId": ".1.139805167797344"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146249280": {"type": "Union", "content": {"items": [{"nodeId": "139805155352896"}, {"nodeId": "139805155353248"}]}}, "139805163131888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805159385216": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}, {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, {"nodeId": "139805155357824"}]}}, "139805163127184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163137824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163128192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163131776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163131216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163132000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163134240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439747776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146452304"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146452416"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146452304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146452192"}]}}, "139805146452192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146452416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439748224": {"type": "Function", "content": {"typeVars": [".-1.139805439748224"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146452752"}, {"nodeId": ".-1.139805439748224"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146452864"}], "returnType": {"nodeId": ".-1.139805439748224"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146452752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146452640"}]}}, "139805146452640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439748224": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439748224", "variance": "INVARIANT"}}, "139805146452864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146449392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439748672"}, {"nodeId": "139805439749120"}, {"nodeId": "139805439749568"}]}}, "139805439748672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805146453200"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146453200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439749120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146453424"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146453536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146453424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146453312"}]}}, "139805146453312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146453536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439749568": {"type": "Function", "content": {"typeVars": [".-1.139805439749568"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146453872"}, {"nodeId": ".-1.139805439749568"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146453984"}], "returnType": {"nodeId": ".-1.139805439749568"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims", "where"]}}, "139805146453872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146453760"}]}}, "139805146453760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439749568": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439749568", "variance": "INVARIANT"}}, "139805146453984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146452976": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439750016"}, {"nodeId": "139805439750464"}, {"nodeId": "139805439750912"}]}}, "139805439750016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805146454320"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146454320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805150260896": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805439750464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805439750912": {"type": "Function", "content": {"typeVars": [".-1.139805439750912"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146454544"}, {"nodeId": ".-1.139805439750912"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805439750912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146454544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805439750912": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439750912", "variance": "INVARIANT"}}, "139805146454096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439751360"}, {"nodeId": "139805439751808"}, {"nodeId": "139805439752256"}]}}, "139805439751360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805146454880"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146454880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805439751808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805439752256": {"type": "Function", "content": {"typeVars": [".-1.139805439752256"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146455104"}, {"nodeId": ".-1.139805439752256"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805439752256"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146455104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805439752256": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439752256", "variance": "INVARIANT"}}, "139805439752704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146455216"}, {"nodeId": "139805146455440"}, {"nodeId": "139805146455552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}}, "139805146455216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146455440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146455328"}]}}, "139805146455328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255520"}}}, "139805150255520": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146455552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146451856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439753152"}, {"nodeId": "139805439753600"}]}}, "139805439753152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146455888"}, {"nodeId": "N"}, {"nodeId": "139805146456000"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}}, "139805146455888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146456000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805150254736": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805439753600": {"type": "Function", "content": {"typeVars": [".-1.139805439753600"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146456336"}, {"nodeId": ".-1.139805439753600"}, {"nodeId": "139805146455776"}], "returnType": {"nodeId": ".-1.139805439753600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "choices", "out", "mode"]}}, "139805146456336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805439753600": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439753600", "variance": "INVARIANT"}}, "139805146455776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805146454656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439934528"}, {"nodeId": "139805439934976"}, {"nodeId": "139805439935424"}, {"nodeId": "139805439935872"}]}}, "139805439934528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146456448"}, {"nodeId": "139805146456784"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146456448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146456784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146456672"}]}}, "139805146456672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439934976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "139805146457232"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146457232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439935424": {"type": "Function", "content": {"typeVars": [".-1.139805439935424"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146457568"}, {"nodeId": "139805146457680"}, {"nodeId": ".-1.139805439935424"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805439935424"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146457568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146457680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146457120"}]}}, "139805146457120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805439935424": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439935424", "variance": "INVARIANT"}}, "139805439935872": {"type": "Function", "content": {"typeVars": [".-1.139805439935872"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "N"}, {"nodeId": "139805146457456"}, {"nodeId": ".-1.139805439935872"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805439935872"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "min", "max", "out", "kwargs"]}}, "139805146457456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805439935872": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439935872", "variance": "INVARIANT"}}, "139805146456560": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439936320"}, {"nodeId": "139805439936768"}]}}, "139805439936320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458128"}, {"nodeId": "139805146458352"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}}, "139805146458128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146458352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805439936768": {"type": "Function", "content": {"typeVars": [".-1.139805439936768"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458688"}, {"nodeId": "139805146458016"}, {"nodeId": ".-1.139805439936768"}], "returnType": {"nodeId": ".-1.139805439936768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "axis", "out"]}}, "139805146458688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146458016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805439936768": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439936768", "variance": "INVARIANT"}}, "139805439937216": {"type": "Function", "content": {"typeVars": [".-1.139805439937216"], "argTypes": [{"nodeId": ".-1.139805439937216"}], "returnType": {"nodeId": ".-1.139805439937216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805439937216": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439937216", "variance": "INVARIANT"}}, "139805439937664": {"type": "Function", "content": {"typeVars": [".-1.139805439937664"], "argTypes": [{"nodeId": ".-1.139805439937664"}], "returnType": {"nodeId": ".-1.139805439937664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805439937664": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439937664", "variance": "INVARIANT"}}, "139805146458240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439938112"}, {"nodeId": "139805439938560"}]}}, "139805439938112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458800"}, {"nodeId": "139805146459024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146458800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146459024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805159384768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805159384096"}]}}, "139805167807552": {"type": "Protocol", "content": {"module": "numpy._typing._dtype_like", "simpleName": "_SupportsDType", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196718528"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805167807552"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["dtype"]}}, ".1.139805167807552": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805167807552", "variance": "COVARIANT"}}, "139805196718528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167807552", "args": [{"nodeId": ".1.139805167807552"}]}], "returnType": {"nodeId": ".1.139805167807552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805159384096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554208"}}}, "139805159554208": {"type": "Union", "content": {"items": [{"nodeId": "139805159553200"}, {"nodeId": "139805159553536"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805159553760"}, {"nodeId": "139805159554096"}]}}, "139805159553200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805159551744"}, {"nodeId": "139805481893056"}]}}, "139805159551744": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805159553536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805159553312"}, {"nodeId": "139805159553424"}]}}, "139805159553312": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805159553424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805159553760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805159554096": {"type": "Tuple", "content": {"items": [{"nodeId": "139805159553872"}, {"nodeId": "139805159553984"}]}}, "139805159553872": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805159553984": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805439938560": {"type": "Function", "content": {"typeVars": [".-1.139805439938560"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146458576"}, {"nodeId": "139805146460032"}, {"nodeId": ".-1.139805439938560"}], "returnType": {"nodeId": ".-1.139805439938560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146458576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146460032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439938560": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439938560", "variance": "INVARIANT"}}, "139805146458912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439939008"}, {"nodeId": "139805439939456"}]}}, "139805439939008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146460256"}, {"nodeId": "139805146459696"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146460256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146459696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805439939456": {"type": "Function", "content": {"typeVars": [".-1.139805439939456"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146459584"}, {"nodeId": "139805146459808"}, {"nodeId": ".-1.139805439939456"}], "returnType": {"nodeId": ".-1.139805439939456"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805146459584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146459808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439939456": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439939456", "variance": "INVARIANT"}}, "139805146459360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439939904"}, {"nodeId": "139805439940352"}]}}, "139805439939904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146459248"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146460480"}, {"nodeId": "139805146460704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146459248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146461040"}]}}, "139805146461040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146460480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146460704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439940352": {"type": "Function", "content": {"typeVars": [".-1.139805439940352"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146460928"}, {"nodeId": ".-1.139805439940352"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146459920"}, {"nodeId": "139805146460816"}], "returnType": {"nodeId": ".-1.139805439940352"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146460928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146461488"}]}}, "139805146461488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439940352": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439940352", "variance": "INVARIANT"}}, "139805146459920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146460816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146460592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439940800"}, {"nodeId": "139805439941248"}]}}, "139805439940800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146461152"}, {"nodeId": "139805146461712"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146461600"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}}, "139805146461152": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146459472"}]}}, "139805146459472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146461712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146461600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439941248": {"type": "Function", "content": {"typeVars": [".-1.139805439941248"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146462496"}, {"nodeId": "139805146462048"}, {"nodeId": ".-1.139805439941248"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146462272"}], "returnType": {"nodeId": ".-1.139805439941248"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "where"]}}, "139805146462496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146461936"}]}}, "139805146461936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146462048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439941248": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439941248", "variance": "INVARIANT"}}, "139805146462272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146461376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439941696"}, {"nodeId": "139805439942144"}]}}, "139805439941696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146462832"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146460368"}, {"nodeId": "139805146462160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146462832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146463168"}]}}, "139805146463168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146460368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146462160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439942144": {"type": "Function", "content": {"typeVars": [".-1.139805439942144"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146462608"}, {"nodeId": ".-1.139805439942144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146462384"}, {"nodeId": "139805146462944"}], "returnType": {"nodeId": ".-1.139805439942144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims", "initial", "where"]}}, "139805146462608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146463280"}]}}, "139805146463280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439942144": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439942144", "variance": "INVARIANT"}}, "139805146462384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146462944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176098464": {"type": "Function", "content": {"typeVars": [".-1.139805176098464"], "argTypes": [{"nodeId": ".-1.139805176098464"}, {"nodeId": "139805146462720"}], "returnType": {"nodeId": ".-1.139805176098464"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, ".-1.139805176098464": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176098464", "variance": "INVARIANT"}}, "139805146462720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805150253616": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146463056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439943040"}, {"nodeId": "139805439943488"}]}}, "139805439943040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146463952"}, {"nodeId": "139805146463840"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146464064"}, {"nodeId": "139805146529856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146463952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146463504"}]}}, "139805146463504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146463840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146464064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146529856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439943488": {"type": "Function", "content": {"typeVars": [".-1.139805439943488"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146530080"}, {"nodeId": "139805146530640"}, {"nodeId": ".-1.139805439943488"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146530192"}, {"nodeId": "139805146530976"}], "returnType": {"nodeId": ".-1.139805439943488"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146530080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146530416"}]}}, "139805146530416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146530640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439943488": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439943488", "variance": "INVARIANT"}}, "139805146530192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146530976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146463616": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439943936"}, {"nodeId": "139805439944384"}]}}, "139805439943936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146531536"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146531536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146531424"}]}}, "139805146531424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805439944384": {"type": "Function", "content": {"typeVars": [".-1.139805439944384"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146531984"}, {"nodeId": ".-1.139805439944384"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805439944384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805146531984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146530864"}]}}, "139805146530864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805439944384": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439944384", "variance": "INVARIANT"}}, "139805146250176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439944832"}, {"nodeId": "139805439945280"}]}}, "139805439944832": {"type": "Function", "content": {"typeVars": [".-1.139805439944832"], "argTypes": [{"nodeId": ".-1.139805439944832"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805439944832"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, ".-1.139805439944832": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805439944832", "variance": "INVARIANT"}}, "139805439945280": {"type": "Function", "content": {"typeVars": [".-1.139805439945280"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805276997408"}, {"nodeId": ".-1.139805439945280"}], "returnType": {"nodeId": ".-1.139805439945280"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, ".-1.139805439945280": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439945280", "variance": "INVARIANT"}}, "139805146530304": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439945728"}, {"nodeId": "139805439946176"}]}}, "139805439945728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146530752"}, {"nodeId": "139805146531872"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146531648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146530752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146531088"}]}}, "139805146531088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146531872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146531648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439946176": {"type": "Function", "content": {"typeVars": [".-1.139805439946176"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146532656"}, {"nodeId": "139805146532096"}, {"nodeId": ".-1.139805439946176"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146532432"}], "returnType": {"nodeId": ".-1.139805439946176"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146532656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146532208"}]}}, "139805146532208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146532096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439946176": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439946176", "variance": "INVARIANT"}}, "139805146532432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146530528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439946624"}, {"nodeId": "139805439947072"}]}}, "139805439946624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146532992"}, {"nodeId": "139805146531312"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146532320"}, {"nodeId": "139805146533888"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146532992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146533328"}]}}, "139805146533328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146531312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146532320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146533888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439947072": {"type": "Function", "content": {"typeVars": [".-1.139805439947072"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146533664"}, {"nodeId": "139805146532544"}, {"nodeId": ".-1.139805439947072"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146533776"}, {"nodeId": "139805146532880"}], "returnType": {"nodeId": ".-1.139805439947072"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805146533664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146532768"}]}}, "139805146532768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146532544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439947072": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439947072", "variance": "INVARIANT"}}, "139805146533776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805146532880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146533216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805439947520"}, {"nodeId": "139805439947968"}]}}, "139805439947520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146534224"}, {"nodeId": "139805146534448"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146534000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146534224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146534784"}]}}, "139805146534784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146534448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146534000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805439947968": {"type": "Function", "content": {"typeVars": [".-1.139805439947968"], "argTypes": [{"nodeId": "139805155355360"}, {"nodeId": "139805146534896"}, {"nodeId": "139805146534560"}, {"nodeId": ".-1.139805439947968"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146534112"}], "returnType": {"nodeId": ".-1.139805439947968"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims", "where"]}}, "139805146534896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146533552"}]}}, "139805146533552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146534560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805439947968": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805439947968", "variance": "INVARIANT"}}, "139805146534112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805112874624": {"type": "Function", "content": {"typeVars": [".-1.139805112874624"], "argTypes": [{"nodeId": ".-1.139805112874624"}], "returnType": {"nodeId": ".-1.139805112874624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112874624": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112874624", "variance": "INVARIANT"}}, "139805431406528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805431406976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155357472"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431407424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155357472"}]}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431407872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357472", "args": [{"nodeId": ".1.139805155357472"}]}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431408320": {"type": "Function", "content": {"typeVars": [".-1.139805431408320"], "argTypes": [{"nodeId": ".-1.139805431408320"}], "returnType": {"nodeId": ".-1.139805431408320"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431408320": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431408320", "variance": "INVARIANT"}}, "139805431408768": {"type": "Function", "content": {"typeVars": [".-1.139805431408768"], "argTypes": [{"nodeId": ".-1.139805431408768"}], "returnType": {"nodeId": ".-1.139805431408768"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431408768": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431408768", "variance": "INVARIANT"}}, "139805431409216": {"type": "Function", "content": {"typeVars": [".-1.139805431409216"], "argTypes": [{"nodeId": ".-1.139805431409216"}], "returnType": {"nodeId": ".-1.139805431409216"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431409216": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431409216", "variance": "INVARIANT"}}, "139805155352544": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_NumberOp", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414395008"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805414395008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155352544"}, {"nodeId": "139805146248608"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146248608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805196742528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805196733008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163129872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163126848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163127520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163139728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163131328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159385216"}}}, "139805163131440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146244688": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244576"}]}}, "139805146244576": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146244912": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": "139805146244800"}]}}, "139805146244800": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414601920": {"type": "Function", "content": {"typeVars": [".-1.139805414601920"], "argTypes": [{"nodeId": "139805155351136", "args": [{"nodeId": ".1.139805155351136"}]}, {"nodeId": "139805146245024"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245024": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414601920"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414601920"}]}]}}, ".-1.139805414601920": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414601920", "variance": "INVARIANT"}}, "139805146245136": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351136"}, {"nodeId": ".-1.139805414601920"}]}}, "139805155351488": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146243680"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155351488"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155351488": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155351488", "variance": "INVARIANT"}}, "139805146243680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414602368"}, {"nodeId": "139805414602816"}, {"nodeId": "139805414603264"}, {"nodeId": "139805414603712"}]}}, "139805414602368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": ".1.139805155351488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414602816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245472"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245472": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351488"}, {"nodeId": "139805146245360"}]}}, "139805146245360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414603264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245696"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245696": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351488"}, {"nodeId": "139805146245584"}]}}, "139805146245584": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414603712": {"type": "Function", "content": {"typeVars": [".-1.139805414603712"], "argTypes": [{"nodeId": "139805155351488", "args": [{"nodeId": ".1.139805155351488"}]}, {"nodeId": "139805146245808"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146245920"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146245808": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414603712"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414603712"}]}]}}, ".-1.139805414603712": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414603712", "variance": "INVARIANT"}}, "139805146245920": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155351488"}, {"nodeId": ".-1.139805414603712"}]}}, "139805155351840": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_FloatDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146244016"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155351840"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155351840": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155351840", "variance": "INVARIANT"}}, "139805146244016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414604160"}, {"nodeId": "139805414391872"}, {"nodeId": "139805414392320"}, {"nodeId": "139805414392768"}]}}, "139805414604160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414391872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414392320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414392768": {"type": "Function", "content": {"typeVars": [".-1.139805414392768"], "argTypes": [{"nodeId": "139805155351840", "args": [{"nodeId": ".1.139805155351840"}]}, {"nodeId": "139805146246928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146246928": {"type": "Union", "content": {"items": [{"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805414392768"}]}, {"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805414392768"}]}]}}, ".-1.139805414392768": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414392768", "variance": "INVARIANT"}}, "139805410634752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146182400"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182400": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182288"}]}}, "139805146182288": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410635200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146182624"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182624": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182512"}]}}, "139805146182512": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410635648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146182848"}, {"nodeId": "139805146183072"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182848": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182736"}]}}, "139805146182736": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146183072": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": "139805146182960"}]}}, "139805146182960": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410636096": {"type": "Function", "content": {"typeVars": [".-1.139805410636096"], "argTypes": [{"nodeId": "139805155347968", "args": [{"nodeId": ".1.139805155347968"}]}, {"nodeId": "139805155359232", "args": [{"nodeId": ".-1.139805410636096"}]}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146183184"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410636096": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805410636096", "variance": "INVARIANT"}}, "139805146183184": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155347968"}, {"nodeId": ".-1.139805410636096"}]}}, "139805431589440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865232"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431589888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865456"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431590336": {"type": "Function", "content": {"typeVars": [".-1.139805431590336"], "argTypes": [{"nodeId": ".-1.139805431590336"}], "returnType": {"nodeId": ".-1.139805431590336"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431590336": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805431590336", "variance": "INVARIANT"}}, "139805431590784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865680"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431591232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141865904"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141865904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431591680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866128"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431592128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866352"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431592576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866576"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431593024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141866800"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141866800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431593472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867024"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431593920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867248"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431594368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867472"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431709760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155359232"}]}, {"nodeId": "139805141867696"}], "returnType": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141867696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805146365648": {"type": "Tuple", "content": {"items": [{"nodeId": "139805146365424"}]}}, "139805146365424": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}]}}, "139805461247168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}, {"nodeId": "139805146448496"}], "returnType": {"nodeId": ".1.139805150983648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146448496": {"type": "Union", "content": {"items": [{"nodeId": "139805146447936"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805146448384"}]}}, "139805146447936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805188446512": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805187919536"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}]}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "139805187919536": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}]}}, "139805276675360": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805146448384": {"type": "Tuple", "content": {"items": [{"nodeId": "139805146448160"}]}}, "139805146448160": {"type": "Union", "content": {"items": [{"nodeId": "139805146448048"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}]}}, "139805146448048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805461247616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}, {"nodeId": "139805146449168"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805146449168": {"type": "Union", "content": {"items": [{"nodeId": "139805146448608"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805146449056"}]}}, "139805146448608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805146449056": {"type": "Tuple", "content": {"items": [{"nodeId": "139805146448832"}]}}, "139805146448832": {"type": "Union", "content": {"items": [{"nodeId": "139805146448720"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}]}}, "139805146448720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805188446512"}}}, "139805146361840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805461248064"}, {"nodeId": "139805461248512"}]}}, "139805461248064": {"type": "Function", "content": {"typeVars": [".-1.139805461248064"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805461248064"}]}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805461248064"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.139805461248064": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805461248064", "variance": "INVARIANT"}}, "139805461248512": {"type": "Function", "content": {"typeVars": [".-1.139805461248512"], "argTypes": [{"nodeId": "139805150983648", "args": [{"nodeId": ".1.139805150983648"}]}, {"nodeId": ".-1.139805461248512"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805461248512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805461248512": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805461248512", "variance": "INVARIANT"}}, "139805141769728": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431249408"}, {"nodeId": "139805431249856"}]}}, "139805431249408": {"type": "Function", "content": {"typeVars": [".-1.139805431249408"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "0"}, {"nodeId": "139805141772192"}, {"nodeId": "139805141772304"}, {"nodeId": "139805481882144"}, {"nodeId": "139805141772416"}], "returnType": {"nodeId": ".-1.139805431249408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805141772192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805141772304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805150258432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805141772416": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805150579872": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "_CopyMode", "members": [{"kind": "Variable", "content": {"name": "ALWAYS", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IF_NEEDED", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "NEVER", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272617056"}], "isAbstract": false}}, "139805272617056": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Enum", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222080512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222081184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ignore_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272706848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_order_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__order__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_missing_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222081408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_generate_next_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222081632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347395872"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347396320"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347396768"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347397216"}, "name": "__reduce_ex__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805222080512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805222081184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272706848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805222081408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, "139805222081632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["name", "start", "count", "last_values"]}}, "139805347395872": {"type": "Function", "content": {"typeVars": [".0.139805347395872"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": ".0.139805347395872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139805347395872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617056"}, "def": "139805347395872", "variance": "INVARIANT"}}, "139805347396320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347396768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "139805347397216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617056"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "proto"]}}, ".-1.139805431249408": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431249408", "variance": "INVARIANT"}}, "139805431249856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141772528"}, {"nodeId": "139805141772640"}, {"nodeId": "139805141772752"}, {"nodeId": "139805481882144"}, {"nodeId": "139805141772864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805141772528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805141772640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805141772752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805141772864": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805141770736": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175532000"}, {"nodeId": "139805431398464"}, {"nodeId": "139805431398912"}]}}, "139805175532000": {"type": "Function", "content": {"typeVars": [".-1.139805175532000"], "argTypes": [{"nodeId": ".-1.139805175532000"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805175532000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "type"]}}, ".-1.139805175532000": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175532000", "variance": "INVARIANT"}}, "139805431398464": {"type": "Function", "content": {"typeVars": [".-1.139805431398464"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805431398464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, ".-1.139805431398464": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431398464", "variance": "INVARIANT"}}, "139805431398912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141774208"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, "139805141774208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805141773984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431399360"}, {"nodeId": "139805431399808"}]}}, "139805431399360": {"type": "Function", "content": {"typeVars": [".-1.139805431399360"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "0"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805431399360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, ".-1.139805431399360": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431399360", "variance": "INVARIANT"}}, "139805431399808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141775552"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "139805141775552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805431400256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141775776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141775776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141776000"}, {"nodeId": "139805141774320"}]}}, "139805141776000": {"type": "Tuple", "content": {"items": []}}, "139805141774320": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805141775104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175645344"}, {"nodeId": "139805431401152"}, {"nodeId": "139805431401600"}]}}, "139805175645344": {"type": "Function", "content": {"typeVars": [".-1.139805175645344"], "argTypes": [{"nodeId": ".-1.139805175645344"}, {"nodeId": "139805141774880"}, {"nodeId": "139805141775664"}, {"nodeId": "N"}, {"nodeId": "139805141774096"}], "returnType": {"nodeId": ".-1.139805175645344"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.139805175645344": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175645344", "variance": "INVARIANT"}}, "139805141774880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805141775664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805141774096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805431401152": {"type": "Function", "content": {"typeVars": [".-1.139805431401152"], "argTypes": [{"nodeId": ".-1.139805431401152"}, {"nodeId": "139805141775888"}, {"nodeId": "139805141776112"}, {"nodeId": "N"}, {"nodeId": "139805141776224"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805431401152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.139805431401152": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431401152", "variance": "INVARIANT"}}, "139805141775888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141776112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805141776224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805431401600": {"type": "Function", "content": {"typeVars": [".-1.139805431401600"], "argTypes": [{"nodeId": "139805155357120"}, {"nodeId": "139805141774656"}, {"nodeId": "139805141776448"}, {"nodeId": ".-1.139805431401600"}, {"nodeId": "139805141776560"}], "returnType": {"nodeId": ".-1.139805431401600"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805141774656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141776448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805431401600": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805431401600", "variance": "INVARIANT"}}, "139805141776560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805175644896": {"type": "Function", "content": {"typeVars": [".-1.139805175644896"], "argTypes": [{"nodeId": ".-1.139805175644896"}, {"nodeId": "139805141776672"}, {"nodeId": "139805141776784"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175644896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}}, ".-1.139805175644896": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175644896", "variance": "INVARIANT"}}, "139805141776672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141776784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805175647136": {"type": "Function", "content": {"typeVars": [".-1.139805175647136"], "argTypes": [{"nodeId": ".-1.139805175647136"}, {"nodeId": "139805141777008"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175647136"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.139805175647136": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175647136", "variance": "INVARIANT"}}, "139805141777008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805175648928": {"type": "Function", "content": {"typeVars": [".-1.139805175648928"], "argTypes": [{"nodeId": ".-1.139805175648928"}, {"nodeId": "139805141777232"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175648928"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, ".-1.139805175648928": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175648928", "variance": "INVARIANT"}}, "139805141777232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805141775440": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175651616"}, {"nodeId": "139805431403840"}]}}, "139805175651616": {"type": "Function", "content": {"typeVars": [".-1.139805175651616"], "argTypes": [{"nodeId": ".-1.139805175651616"}, {"nodeId": "139805141777680"}, {"nodeId": "139805141777792"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805175651616"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}}, ".-1.139805175651616": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805175651616", "variance": "INVARIANT"}}, "139805141777680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805141777792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805150253952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805431403840": {"type": "Function", "content": {"typeVars": [".-1.139805431403840"], "argTypes": [{"nodeId": ".-1.139805431403840"}, {"nodeId": "139805276997408"}, {"nodeId": "139805141778016"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805431403840"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}}, ".-1.139805431403840": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431403840", "variance": "INVARIANT"}}, "139805141778016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805431404288": {"type": "Function", "content": {"typeVars": [".-1.139805431404288"], "argTypes": [{"nodeId": ".-1.139805431404288"}, {"nodeId": "139805141860640"}], "returnType": {"nodeId": ".-1.139805431404288"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, ".-1.139805431404288": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431404288", "variance": "INVARIANT"}}, "139805141860640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805141860528"}]}}, "139805141860528": {"type": "Tuple", "content": {"items": []}}, "139805431404736": {"type": "Function", "content": {"typeVars": [".-1.139805431404736"], "argTypes": [{"nodeId": ".-1.139805431404736"}, {"nodeId": "139805141860976"}], "returnType": {"nodeId": ".-1.139805431404736"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, ".-1.139805431404736": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805431404736", "variance": "INVARIANT"}}, "139805141860976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805141860864"}]}}, "139805141860864": {"type": "Tuple", "content": {"items": []}}, "139805112870368": {"type": "Function", "content": {"typeVars": [".-1.139805112870368"], "argTypes": [{"nodeId": ".-1.139805112870368"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805112870368"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112870368": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805112870368", "variance": "INVARIANT"}}, "139805187924688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146249056": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805473934464"}, {"nodeId": "139805473934912"}, {"nodeId": "139805473935360"}, {"nodeId": "139805473935808"}, {"nodeId": "139805473936256"}, {"nodeId": "139805473936704"}, {"nodeId": "139805473937152"}, {"nodeId": "139805473937600"}, {"nodeId": "139805473938048"}, {"nodeId": "139805473938496"}, {"nodeId": "139805473938944"}, {"nodeId": "139805473939392"}, {"nodeId": "139805473939840"}, {"nodeId": "139805473940288"}, {"nodeId": "139805473940736"}, {"nodeId": "139805473941184"}, {"nodeId": "139805473941632"}, {"nodeId": "139805473942080"}, {"nodeId": "139805473942528"}, {"nodeId": "139805473942976"}, {"nodeId": "139805473943424"}, {"nodeId": "139805473943872"}, {"nodeId": "139805473944320"}, {"nodeId": "139805473944768"}, {"nodeId": "139805473945216"}, {"nodeId": "139805473945664"}, {"nodeId": "139805473946112"}, {"nodeId": "139805473946560"}, {"nodeId": "139805473947008"}, {"nodeId": "139805465444416"}, {"nodeId": "139805465444864"}, {"nodeId": "139805465445312"}, {"nodeId": "139805465445760"}, {"nodeId": "139805465446208"}, {"nodeId": "139805465446656"}, {"nodeId": "139805465447104"}, {"nodeId": "139805465447552"}, {"nodeId": "139805465448000"}, {"nodeId": "139805465448448"}, {"nodeId": "139805465448896"}, {"nodeId": "139805465449344"}, {"nodeId": "139805465449792"}, {"nodeId": "139805465450240"}, {"nodeId": "139805465450688"}, {"nodeId": "139805465451136"}, {"nodeId": "139805465451584"}, {"nodeId": "139805465452032"}, {"nodeId": "139805465452480"}, {"nodeId": "139805465452928"}, {"nodeId": "139805465453376"}, {"nodeId": "139805465453824"}]}}, "139805473934464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805473934912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805473935360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250288"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805473935808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146250400"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250512"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805146250512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263360"}]}}}, "139805150263360": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473936256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250624"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264368"}, {"nodeId": "139805150265152"}]}}}, "139805150264368": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150265152": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473936704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805150579168": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "str_", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141875872"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431918016"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431918464"}, "name": "tolist"}}], "typeVars": [], "bases": [{"nodeId": "139805150578464"}, {"nodeId": "139805276669024"}], "isAbstract": false}}, "139805141875872": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431917120"}, {"nodeId": "139805431917568"}]}}, "139805431917120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805431917568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}}, "139805431918016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}, {"nodeId": "139805142008768"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805142008768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805142008320"}, {"nodeId": "139805142008656"}]}}, "139805142008320": {"type": "Tuple", "content": {"items": []}}, "139805142008656": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431918464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579168"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150578464": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "character", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431914432"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431914880"}, "name": "__float__"}}], "typeVars": [], "bases": [{"nodeId": "139805150577760"}], "isAbstract": true}}, "139805431914432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578464"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431914880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578464"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805150577760": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "flexible", "members": [], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": true}}, "139805473937152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805150578816": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "bytes_", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141876096"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431916224"}, "name": "item"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431916672"}, "name": "tolist"}}], "typeVars": [], "bases": [{"nodeId": "139805150578464"}, {"nodeId": "139805276669376"}], "isAbstract": false}}, "139805141876096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431915328"}, {"nodeId": "139805431915776"}]}}, "139805431915328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805431915776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, "encoding", "errors"]}}, "139805431916224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}, {"nodeId": "139805142007872"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805142007872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805141874528"}, {"nodeId": "139805141876208"}]}}, "139805141874528": {"type": "Tuple", "content": {"items": []}}, "139805141876208": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805431916672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578816"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473937600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146250848"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146250960"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146250848": {"type": "Union", "content": {"items": [{"nodeId": "139805146250736"}, {"nodeId": "0"}]}}, "139805146250736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805184458000": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146250960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805155360288": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "unsignedinteger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431720064"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rsub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rfloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__pow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rpow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__lshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rlshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rrshift__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__and__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__xor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__or__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__mod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__divmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rdivmod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155360288"}]}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155360288"}], "bases": [{"nodeId": "139805155359232", "args": [{"nodeId": ".1.139805155360288"}]}], "isAbstract": false}}, ".1.139805155360288": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155360288", "variance": "INVARIANT"}}, "139805431720064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155360288"}]}, {"nodeId": "139805141870608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805141870608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150259664"}}}, "139805155348320": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146180608"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155348320"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155348320": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155348320", "variance": "INVARIANT"}}, "139805146180608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410636544"}, {"nodeId": "139805410636992"}, {"nodeId": "139805410637440"}, {"nodeId": "139805410637888"}, {"nodeId": "139805410638336"}]}}, "139805410636544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155348320"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410636992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805146183520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146183520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}]}}, "139805410637440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146183856"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146183856": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": "139805146183744"}]}}, "139805146183744": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410637888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805276667968"}], "returnType": {"nodeId": "139805150577408", "args": [{"nodeId": "139805146184080"}, {"nodeId": "139805146184304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146184080": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": "139805146183968"}]}}, "139805146183968": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805146184304": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": "139805146184192"}]}}, "139805146184192": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805410638336": {"type": "Function", "content": {"typeVars": [".-1.139805410638336"], "argTypes": [{"nodeId": "139805155348320", "args": [{"nodeId": ".1.139805155348320"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805410638336"}]}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": "139805146184416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805410638336": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805410638336", "variance": "INVARIANT"}}, "139805146184416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348320"}, {"nodeId": ".-1.139805410638336"}]}}, "139805155348672": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntBitOp", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146182176"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155348672"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155348672": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155348672", "variance": "INVARIANT"}}, "139805146182176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410638784"}, {"nodeId": "139805410639232"}, {"nodeId": "139805414588480"}, {"nodeId": "139805414588928"}]}}, "139805410638784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155348672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410639232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414588480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414588928": {"type": "Function", "content": {"typeVars": [".-1.139805414588928"], "argTypes": [{"nodeId": "139805155348672", "args": [{"nodeId": ".1.139805155348672"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805414588928"}]}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": "139805146235168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414588928": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414588928", "variance": "INVARIANT"}}, "139805146235168": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155348672"}, {"nodeId": ".-1.139805414588928"}]}}, "139805155349024": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805184448928"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155349024"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155349024": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155349024", "variance": "INVARIANT"}}, "139805184448928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414589376"}, {"nodeId": "139805414589824"}, {"nodeId": "139805414590272"}, {"nodeId": "139805414590720"}]}}, "139805414589376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": ".1.139805155349024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414589824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805146235952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146235952": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}]}}, "139805414590272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150577056", "args": [{"nodeId": "139805146236512"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146236512": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349024"}, {"nodeId": "139805146236400"}]}}, "139805146236400": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805414590720": {"type": "Function", "content": {"typeVars": [".-1.139805414590720"], "argTypes": [{"nodeId": "139805155349024", "args": [{"nodeId": ".1.139805155349024"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805414590720"}]}], "returnType": {"nodeId": "139805155360288", "args": [{"nodeId": "139805146236848"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414590720": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414590720", "variance": "INVARIANT"}}, "139805146236848": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805155349024"}, {"nodeId": ".-1.139805414590720"}]}}, "139805155349376": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_UnsignedIntDivMod", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805184449152"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155349376"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155349376": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805155349376", "variance": "INVARIANT"}}, "139805184449152": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414591168"}, {"nodeId": "139805414591616"}, {"nodeId": "139805414592064"}, {"nodeId": "139805414592512"}]}}, "139805414591168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414591616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805146237744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146237744": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805155359584", "args": [{"nodeId": "A"}]}]}}, "139805414592064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414592512": {"type": "Function", "content": {"typeVars": [".-1.139805414592512"], "argTypes": [{"nodeId": "139805155349376", "args": [{"nodeId": ".1.139805155349376"}]}, {"nodeId": "139805155360288", "args": [{"nodeId": ".-1.139805414592512"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805414592512": {"type": "TypeVar", "content": {"varName": "_NBit2", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805414592512", "variance": "INVARIANT"}}, "139805473938048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146349632"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146349744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146349632": {"type": "Union", "content": {"items": [{"nodeId": "139805146251072"}, {"nodeId": "0"}]}}, "139805146251072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805184589888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146349744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805473938496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146349968"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146350080"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146349968": {"type": "Union", "content": {"items": [{"nodeId": "139805146349856"}, {"nodeId": "0"}]}}, "139805146349856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805184590560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146350080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805473938944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146350304"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146350416"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146350304": {"type": "Union", "content": {"items": [{"nodeId": "139805146350192"}, {"nodeId": "0"}]}}, "139805146350192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805184591232": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146350416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805473939392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146350640"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146350752"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146350640": {"type": "Union", "content": {"items": [{"nodeId": "139805146350528"}, {"nodeId": "0"}]}}, "139805146350528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602320"}}}, "139805184602320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146350752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150261232"}]}}}, "139805150261232": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473939840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146350976"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146351088"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146350976": {"type": "Union", "content": {"items": [{"nodeId": "139805146350864"}, {"nodeId": "0"}]}}, "139805146350864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602992"}}}, "139805184602992": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150261792"}]}}}, "139805150261792": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473940288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146351312"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146351424"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146351312": {"type": "Union", "content": {"items": [{"nodeId": "139805146351200"}, {"nodeId": "0"}]}}, "139805146351200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184603664"}}}, "139805184603664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150261904"}]}}}, "139805150261904": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473940736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146351648"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146351760"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146351648": {"type": "Union", "content": {"items": [{"nodeId": "139805146351536"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184604560"}}}, "139805184604560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146351760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262016"}]}}}, "139805150262016": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473941184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146351984"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146352096"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146351984": {"type": "Union", "content": {"items": [{"nodeId": "139805146351872"}, {"nodeId": "0"}]}}, "139805146351872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805184605344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146352096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805150262128": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473941632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146352320"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146352432"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146352320": {"type": "Union", "content": {"items": [{"nodeId": "139805146352208"}, {"nodeId": "0"}]}}, "139805146352208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605904"}}}, "139805184605904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146352432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262240"}]}}}, "139805150262240": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473942080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146352656"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146352768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146352656": {"type": "Union", "content": {"items": [{"nodeId": "139805146352544"}, {"nodeId": "0"}]}}, "139805146352544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805184591904": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146352768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805473942528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146352992"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146353104"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146352992": {"type": "Union", "content": {"items": [{"nodeId": "139805146352880"}, {"nodeId": "0"}]}}, "139805146352880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805184592576": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146353104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805473942976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146353328"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146353440"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146353328": {"type": "Union", "content": {"items": [{"nodeId": "139805146353216"}, {"nodeId": "0"}]}}, "139805146353216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805184593248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146353440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805473943424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146353664"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146353776"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146353664": {"type": "Union", "content": {"items": [{"nodeId": "139805146353552"}, {"nodeId": "0"}]}}, "139805146353552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805184593920": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146353776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805473943872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146354000"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146354112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146354000": {"type": "Union", "content": {"items": [{"nodeId": "139805146353888"}, {"nodeId": "0"}]}}, "139805146353888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184597952"}}}, "139805184597952": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146354112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150259776"}]}}}, "139805150259776": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473944320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146354336"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146354448"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146354336": {"type": "Union", "content": {"items": [{"nodeId": "139805146354224"}, {"nodeId": "0"}]}}, "139805146354224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184598624"}}}, "139805184598624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146354448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260672"}]}}}, "139805150260672": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473944768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146354672"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146354784"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146354672": {"type": "Union", "content": {"items": [{"nodeId": "139805146354560"}, {"nodeId": "0"}]}}, "139805146354560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184599296"}}}, "139805184599296": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146354784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260784"}]}}}, "139805150260784": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473945216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355008"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146355120"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355008": {"type": "Union", "content": {"items": [{"nodeId": "139805146354896"}, {"nodeId": "0"}]}}, "139805146354896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184600192"}}}, "139805184600192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146355120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805473945664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355344"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146355456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355344": {"type": "Union", "content": {"items": [{"nodeId": "139805146355232"}, {"nodeId": "0"}]}}, "139805146355232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805184601200": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146355456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805473946112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355680"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146355792"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355680": {"type": "Union", "content": {"items": [{"nodeId": "139805146355568"}, {"nodeId": "0"}]}}, "139805146355568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601648"}}}, "139805184601648": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146355792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261120"}]}}}, "139805150261120": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805473946560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146355904"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356016"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146355904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184594592"}}}, "139805184594592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154858208"}]}}}, "139805473947008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356128"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356240"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595264"}}}, "139805184595264": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805465444416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356352"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356464"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595936"}}}, "139805184595936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805465444864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356576"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146356688"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184655872"}}}, "139805184655872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146356688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150262800"}]}}}, "139805150262800": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465445312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146356912"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146356912": {"type": "Union", "content": {"items": [{"nodeId": "139805146356800"}, {"nodeId": "0"}]}}, "139805146356800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184656544"}}}, "139805184656544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263136"}]}}}, "139805150263136": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465445760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146357248"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357360"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146357248": {"type": "Union", "content": {"items": [{"nodeId": "139805146357136"}, {"nodeId": "0"}]}}, "139805146357136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184657664"}}}, "139805184657664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263248"}]}}}, "139805150263248": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465446208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146357584"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357696"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146357584": {"type": "Union", "content": {"items": [{"nodeId": "139805146357472"}, {"nodeId": "0"}]}}, "139805146357472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184658336"}}}, "139805184658336": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263472"}]}}}, "139805150263472": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465446656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146357808"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146357920"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146357808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184596608"}}}, "139805184596608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146357920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857856"}, {"nodeId": "139805154857856"}]}}}, "139805465447104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358032"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358144"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184597280"}}}, "139805184597280": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805154857504"}, {"nodeId": "139805154857504"}]}}}, "139805465447552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358256"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358368"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184659120"}}}, "139805184659120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150263696"}, {"nodeId": "139805150264480"}]}}}, "139805150263696": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150264480": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465448000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358480"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358592"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184660352"}}}, "139805184660352": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264256"}, {"nodeId": "139805150264928"}]}}}, "139805150264256": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150264928": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465448448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146358704"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805146358816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146358704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184661136"}}}, "139805184661136": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146358816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264816"}, {"nodeId": "139805150642576"}]}}}, "139805150264816": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805150642576": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805465448896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359040"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359040": {"type": "Union", "content": {"items": [{"nodeId": "139805146358928"}, {"nodeId": "0"}]}}, "139805146358928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184457552"}}}, "139805184457552": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805465449344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359152"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184736192"}}}, "139805184736192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805155359936": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "timedelta64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431710656"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "numerator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805113261120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "denominator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805113261568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431712000"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431712448"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431712896"}, "name": "__complex__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431713344"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431713792"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431714240"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431714688"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431715136"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431715584"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431716032"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431716480"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431716928"}, "name": "__rmul__"}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347616", "args": [{"nodeId": "139805196528416"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155347616", "args": [{"nodeId": "139805150261456"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431717376"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431717824"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431718272"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431718720"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431719168"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431719616"}, "name": "__rdivmod__"}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805196528864"}, {"nodeId": "139805196530096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163132560"}, {"nodeId": "139805163132784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163133120"}, {"nodeId": "139805163133344"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805163127744"}, {"nodeId": "139805163139392"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805431710656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141868144"}, {"nodeId": "139805141868816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "139805141868144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805141868032"}, {"nodeId": "139805167799456"}, {"nodeId": "139805155359936"}]}}, "139805141868032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805167799456": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timedelta", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "days", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "milliseconds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minutes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hours", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weeks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360738976"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "days", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163202464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163203584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microseconds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163204480"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360740768"}, "name": "total_seconds"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360741216"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360741664"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360742112"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360742560"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360743008"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360743456"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360743904"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360744352"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360744800"}, "name": "__rmul__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162873216"}, "items": [{"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__floordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__floordiv__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162874896"}, "items": [{"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360747040"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360747488"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360747936"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360748384"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360748832"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360749280"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360749728"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360738976": {"type": "Function", "content": {"typeVars": [".0.139805360738976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".0.139805360738976"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "days", "seconds", "microseconds", "milliseconds", "minutes", "hours", "weeks"]}}, ".0.139805360738976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799456"}, "def": "139805360738976", "variance": "INVARIANT"}}, "139805163202464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163203584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163204480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360740768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360741216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360741664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360742112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360742560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360743008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805360743456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805360743904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805360744352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360744800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162873216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360745248"}, {"nodeId": "139805360745696"}]}}, "139805360745248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360745696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162874896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360746144"}, {"nodeId": "139805360746592"}]}}, "139805360746144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360746592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360747040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360747488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805162876128"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162876128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805167799456"}]}}, "139805360747936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360748384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360748832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360749280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360749728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799456"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141868816": {"type": "Union", "content": {"items": [{"nodeId": "139805141868256"}, {"nodeId": "139805141868704"}]}}, "139805141868256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141868704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141868368"}, {"nodeId": "139805141868480"}]}}, "139805141868368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141868480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805113261120": {"type": "Function", "content": {"typeVars": [".-1.139805113261120"], "argTypes": [{"nodeId": ".-1.139805113261120"}], "returnType": {"nodeId": ".-1.139805113261120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805113261120": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805113261120", "variance": "INVARIANT"}}, "139805113261568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805431712000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431712448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431712896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431713344": {"type": "Function", "content": {"typeVars": [".-1.139805431713344"], "argTypes": [{"nodeId": ".-1.139805431713344"}], "returnType": {"nodeId": ".-1.139805431713344"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431713344": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431713344", "variance": "INVARIANT"}}, "139805431713792": {"type": "Function", "content": {"typeVars": [".-1.139805431713792"], "argTypes": [{"nodeId": ".-1.139805431713792"}], "returnType": {"nodeId": ".-1.139805431713792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431713792": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431713792", "variance": "INVARIANT"}}, "139805431714240": {"type": "Function", "content": {"typeVars": [".-1.139805431714240"], "argTypes": [{"nodeId": ".-1.139805431714240"}], "returnType": {"nodeId": ".-1.139805431714240"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805431714240": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805431714240", "variance": "INVARIANT"}}, "139805431714688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869040"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805159384992": {"type": "Union", "content": {"items": [{"nodeId": "139805159386672"}, {"nodeId": "139805155359936"}]}}, "139805159386672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431715136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869264"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431715584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869376"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431716032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869488"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431716480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869600"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805159387008": {"type": "Union", "content": {"items": [{"nodeId": "139805159389248"}, {"nodeId": "139805481893408"}, {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}]}}, "139805159389248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431716928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805141869152"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805155347616": {"type": "Protocol", "content": {"module": "numpy._typing._callable", "simpleName": "_TD64Div", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146179488"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805155347616"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805155347616": {"type": "TypeVar", "content": {"varName": "_NumberType_co", "values": [], "upperBound": {"nodeId": "139805155357472", "args": [{"nodeId": "A"}]}, "def": "139805155347616", "variance": "COVARIANT"}}, "139805146179488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410632960"}, {"nodeId": "139805410633408"}, {"nodeId": "139805410633856"}]}}, "139805410632960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347616", "args": [{"nodeId": ".1.139805155347616"}]}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": ".1.139805155347616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410633408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347616", "args": [{"nodeId": ".1.139805155347616"}]}, {"nodeId": "139805146181952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146181952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159542784"}}}, "139805410633856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155347616", "args": [{"nodeId": ".1.139805155347616"}]}, {"nodeId": "139805146182064"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146182064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805196528416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805150261456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805431717376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141869712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805431717824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141869824"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141869824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805431718272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431718720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431719168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141870160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141870160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141869936"}, {"nodeId": "139805155359936"}]}}, "139805141869936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805431719616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155359936"}, {"nodeId": "139805155359936"}], "returnType": {"nodeId": "139805141870496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805141870496": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141870272"}, {"nodeId": "139805155359936"}]}}, "139805141870272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805196528864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805196530096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163132560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805163132784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163133120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805163133344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805163127744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805163139392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805465449792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359264"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155358880"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184723088"}}}, "139805184723088": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805155358880": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "datetime64", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141777344"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431583168"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431583616"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805146971632"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431584960"}, "name": "__rsub__"}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163132448"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163131552"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163136144"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155353600", "args": [{"nodeId": "139805155358880"}, {"nodeId": "139805163132224"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805141777344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431582272"}, {"nodeId": "139805431582720"}]}}, "139805431582272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141862208"}, {"nodeId": "139805141862880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "139805141862208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155358880"}, {"nodeId": "139805141862096"}, {"nodeId": "139805155358528"}]}}, "139805141862096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805155358528": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_DatetimeScalar", "members": [{"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112976992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112977440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112977664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["day", "month", "year"]}}, "139805112976992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358528"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112977440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358528"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805112977664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358528"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141862880": {"type": "Union", "content": {"items": [{"nodeId": "139805141862320"}, {"nodeId": "139805141862768"}]}}, "139805141862320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141862768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141862432"}, {"nodeId": "139805141862544"}]}}, "139805141862432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141862544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431582720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805481893056"}, {"nodeId": "139805141863552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805141863552": {"type": "Union", "content": {"items": [{"nodeId": "139805141862992"}, {"nodeId": "139805141863440"}]}}, "139805141862992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141863440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805141863104"}, {"nodeId": "139805141863216"}]}}, "139805141863104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159546928"}}}, "139805141863216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431583168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141863664"}], "returnType": {"nodeId": "139805155358880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141863664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431583616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141863888"}], "returnType": {"nodeId": "139805155358880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141863888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805146971632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431584064"}, {"nodeId": "139805431584512"}]}}, "139805431584064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805155358880"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431584512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805141863776"}], "returnType": {"nodeId": "139805155358880"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141863776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384992"}}}, "139805431584960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358880"}, {"nodeId": "139805155358880"}], "returnType": {"nodeId": "139805155359936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805163132448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805175561376": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358880"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358880"}]}]}]}]}}, "139805154853984": {"type": "Protocol", "content": {"module": "numpy._typing._array_like", "simpleName": "_SupportsArray", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335725984"}, "name": "__array__"}}], "typeVars": [{"nodeId": ".1.139805154853984"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array__"]}}, ".1.139805154853984": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805154853984", "variance": "COVARIANT"}}, "139805335725984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154853984", "args": [{"nodeId": ".1.139805154853984"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".1.139805154853984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163131552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805163136144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805163132224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805465450240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359376"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184662480"}}}, "139805184662480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805465450688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359600"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359600": {"type": "Union", "content": {"items": [{"nodeId": "139805146359488"}, {"nodeId": "0"}]}}, "139805146359488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184663152"}}}, "139805184663152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805465451136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146359712"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146359712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184663824"}}}, "139805184663824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805150578112": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "void", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141864000"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108410560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108411008"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431912640"}, "name": "setfield"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141873184"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431913984"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805150577760"}], "isAbstract": false}}, "139805141864000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431910848"}, {"nodeId": "139805431911296"}]}}, "139805431910848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141874752"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, "dtype"]}}, "139805141874752": {"type": "Union", "content": {"items": [{"nodeId": "139805141874640"}, {"nodeId": "139805276669376"}]}}, "139805141874640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431911296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "A"}, {"nodeId": "139805141874976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, "dtype"]}}, "139805141874976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200897568"}}}, "139805200897568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805200897680"}, {"nodeId": "139805200897344"}]}}, "139805200897680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184663824"}}}, "139805200897344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554208"}}}, "139805108410560": {"type": "Function", "content": {"typeVars": [".-1.139805108410560"], "argTypes": [{"nodeId": ".-1.139805108410560"}], "returnType": {"nodeId": ".-1.139805108410560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805108410560": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805108410560", "variance": "INVARIANT"}}, "139805108411008": {"type": "Function", "content": {"typeVars": [".-1.139805108411008"], "argTypes": [{"nodeId": ".-1.139805108411008"}], "returnType": {"nodeId": ".-1.139805108411008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805108411008": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805108411008", "variance": "INVARIANT"}}, "139805431912640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141875536"}, {"nodeId": "139805141875200"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}}, "139805141875536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141875200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805141873184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805431913088"}, {"nodeId": "139805431913536"}]}}, "139805431913088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141876320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141876320": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276997408"}]}}, "139805431913536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150578112"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805431913984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150578112"}, {"nodeId": "139805141875088"}, {"nodeId": "139805141875424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805141875088": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276997408"}]}}, "139805141875424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805465451584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146360048"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146360048": {"type": "Union", "content": {"items": [{"nodeId": "139805146359824"}, {"nodeId": "0"}]}}, "139805146359824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184664608"}}}, "139805184664608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805155358176": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "object_", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431414144"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112975872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805112976320"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431579584"}, "name": "__int__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431580032"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805431580480"}, "name": "__complex__"}}], "typeVars": [], "bases": [{"nodeId": "139805155357120"}], "isAbstract": false}}, "139805431414144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805112975872": {"type": "Function", "content": {"typeVars": [".-1.139805112975872"], "argTypes": [{"nodeId": ".-1.139805112975872"}], "returnType": {"nodeId": ".-1.139805112975872"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112975872": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112975872", "variance": "INVARIANT"}}, "139805112976320": {"type": "Function", "content": {"typeVars": [".-1.139805112976320"], "argTypes": [{"nodeId": ".-1.139805112976320"}], "returnType": {"nodeId": ".-1.139805112976320"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805112976320": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805112976320", "variance": "INVARIANT"}}, "139805431579584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431580032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805431580480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155358176"}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805465452032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465452480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465452928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465453376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146360272"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805146360272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554208"}}}, "139805465453824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "dtype", "align", "copy"]}}, "139805465454272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805146249616": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805167422592"}, {"nodeId": "139805465454720"}]}}, "139805167422592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805465454720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, {"nodeId": "139805146361056"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276997408"}]}}, "139805155311200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805465455168"}, {"nodeId": "139805465455616"}, {"nodeId": "139805465456512"}]}}, "139805465455168": {"type": "Function", "content": {"typeVars": [".-1.139805465455168"], "argTypes": [{"nodeId": ".-1.139805465455168"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805465455168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805465455168": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805465455168", "variance": "INVARIANT"}}, "139805465455616": {"type": "Function", "content": {"typeVars": [".-1.139805465455616"], "argTypes": [{"nodeId": ".-1.139805465455616"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805465455616"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805465455616": {"type": "TypeVar", "content": {"varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150577760"}]}, "def": "139805465455616", "variance": "INVARIANT"}}, "139805465456512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805465456064"}, {"nodeId": "139805465457408"}]}}, "139805465456064": {"type": "Function", "content": {"typeVars": [".-1.139805465456064"], "argTypes": [{"nodeId": ".-1.139805465456064"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805465456064"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805465456064": {"type": "TypeVar", "content": {"varName": "_FlexDType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150577760"}]}, "def": "139805465456064", "variance": "INVARIANT"}}, "139805465457408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805465457856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146361168"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465458304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146360944"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146360944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465458752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146362288"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146362288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465459200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "139805146361392"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146361392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805465459648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805465460096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805117104416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117143680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117143904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117144128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117144352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805146361616"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146361616": {"type": "Union", "content": {"items": [{"nodeId": "139805146362736"}, {"nodeId": "139805146362848"}]}}, "139805146362736": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805146362848": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805146361504"}]}}, "139805146361504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117144576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146363632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146363632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805146363520"}]}]}}, "139805146363520": {"type": "Union", "content": {"items": [{"nodeId": "139805146362512"}, {"nodeId": "139805146363408"}]}}, "139805146362512": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805146363408": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}, {"nodeId": "A"}]}}, "139805117144800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117145920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117146144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117146368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146363856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146363856": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805117146592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117146816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117147040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146363968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146363968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117147264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117147488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805146364528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146364528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146364416"}]}}, "139805146364416": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, {"nodeId": "139805146364192"}]}}, "139805146364192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805176214944": {"type": "Function", "content": {"typeVars": [".-1.139805176214944"], "argTypes": [{"nodeId": ".-1.139805176214944"}, {"nodeId": "139805146364640"}], "returnType": {"nodeId": ".-1.139805176214944"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, ".-1.139805176214944": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805176214944", "variance": "INVARIANT"}}, "139805146364640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805117147712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117147936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150983296"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117580672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146535344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146535344": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "139805117580448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805117581120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146533104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176096224"}]}}, "139805176096224": {"type": "Function", "content": {"typeVars": [".-1.139805176096224"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356064", "args": [{"nodeId": ".-1.139805176096224"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805176096224"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155356064": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117430272"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155356064"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["real"]}}, ".1.139805155356064": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155356064", "variance": "COVARIANT"}}, "139805117430272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356064", "args": [{"nodeId": ".1.139805155356064"}]}], "returnType": {"nodeId": ".1.139805155356064"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805176096224": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805176096224", "variance": "INVARIANT"}}, "139805117581344": {"type": "Function", "content": {"typeVars": [".-1.139805117581344"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356064", "args": [{"nodeId": ".-1.139805117581344"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805117581344"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117581344": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805117581344", "variance": "INVARIANT"}}, "139805146535680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176093088"}]}}, "139805176093088": {"type": "Function", "content": {"typeVars": [".-1.139805176093088"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356416", "args": [{"nodeId": ".-1.139805176093088"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805176093088"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805155356416": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117431392"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805155356416"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["imag"]}}, ".1.139805155356416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155356416", "variance": "COVARIANT"}}, "139805117431392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356416", "args": [{"nodeId": ".1.139805155356416"}]}], "returnType": {"nodeId": ".1.139805155356416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805176093088": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805176093088", "variance": "INVARIANT"}}, "139805117581568": {"type": "Function", "content": {"typeVars": [".-1.139805117581568"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155356416", "args": [{"nodeId": ".-1.139805117581568"}]}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805117581568"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117581568": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805117581568", "variance": "INVARIANT"}}, "139805176095104": {"type": "Function", "content": {"typeVars": [".-1.139805176095104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146535120"}, {"nodeId": "139805146535904"}, {"nodeId": "139805146536240"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146536128"}, {"nodeId": "139805146536576"}], "returnType": {"nodeId": ".-1.139805176095104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "shape", "dtype", "buffer", "offset", "strides", "order"]}}, "139805146535120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146535904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146536240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146535568"}]}}, "139805146535568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805196974928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276670080"}, {"nodeId": "139805184481536", "args": [{"nodeId": "A"}]}, {"nodeId": "139805171901088"}, {"nodeId": "0"}, {"nodeId": "139805155357120"}]}}, "139805184481536": {"type": "Concrete", "content": {"module": "array", "simpleName": "array", "members": [{"kind": "Variable", "content": {"name": "typecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805180390848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itemsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805180392864"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805180141392"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355841504"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355841952"}, "name": "buffer_info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355842400"}, "name": "byteswap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355842848"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__bb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355843296"}, "name": "extend"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355843744"}, "name": "frombytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805201321760"}, "name": "fromfile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355844640"}, "name": "fromlist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ustr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355845088"}, "name": "fromunicode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355845536"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355846432"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355846880"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355847328"}, "name": "remove"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355847776"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355848224"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355848672"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355849120"}, "name": "tounicode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355850464"}, "name": "__len__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805180141504"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805180141728"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356000416"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356000864"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356001312"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356001760"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356002208"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356002656"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356003104"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356003552"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356004000"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356004448"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356004896"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__unused", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356005344"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356005792"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356006240"}, "name": "__release_buffer__"}}], "typeVars": [{"nodeId": ".1.139805184481536"}], "bases": [{"nodeId": "139805481890240", "args": [{"nodeId": ".1.139805184481536"}]}], "isAbstract": false}}, ".1.139805184481536": {"type": "TypeVar", "content": {"varName": "_T", "values": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276669024"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805184481536", "variance": "INVARIANT"}}, "139805180390848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805180141616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180141616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180141168"}}}, "139805180141168": {"type": "Union", "content": {"items": [{"nodeId": "139805180138928"}, {"nodeId": "139805180139936"}, {"nodeId": "139805180139712"}]}}, "139805180138928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180141056"}}}, "139805180141056": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805180139936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180139152"}}}, "139805180139152": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805180139712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180392864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180141392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180433504"}, {"nodeId": "139805183768864"}, {"nodeId": "139805180431936"}, {"nodeId": "139805355840608"}, {"nodeId": "139805180433280"}]}}, "139805180433504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805180141840"}, {"nodeId": "139805180141952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180141840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180141056"}}}, "139805180141952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481893056"}]}]}}, "139805183768864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805180139600"}, {"nodeId": "139805180142176"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180139600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180139152"}}}, "139805180142176": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481893408"}]}]}}, "139805180431936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805180142288"}, {"nodeId": "139805180142400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180142288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180142400": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}]}}, "139805355840608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805180433280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805180142512"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805180142512": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805355841504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355841952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805180142736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180142736": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805355842400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355842848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355843296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355843744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805201321760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805267819712", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805267819712": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443972608"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.139805267819712"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read"]}}, ".1.139805267819712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267819712", "variance": "COVARIANT"}}, "139805443972608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819712", "args": [{"nodeId": ".1.139805267819712"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805267819712"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805355844640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355845088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355845536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805355846432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805355846880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805184481536"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805355847328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355847776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355848224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805268033952", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805268033952": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443973952"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805268033952"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805268033952": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268033952", "variance": "CONTRAVARIANT"}}, "139805443973952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268033952", "args": [{"nodeId": ".1.139805268033952"}]}, {"nodeId": ".1.139805268033952"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805355848672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355849120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805355850464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805180141504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355850912"}, {"nodeId": "139805355851360"}]}}, "139805355850912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".1.139805184481536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805355851360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805180141728": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355999520"}, {"nodeId": "139805355999968"}]}}, "139805355999520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805277009376"}, {"nodeId": ".1.139805184481536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805355999968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805356000416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805180143072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805180143072": {"type": "Union", "content": {"items": [{"nodeId": "139805277009376"}, {"nodeId": "139805276670432"}]}}, "139805356000864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356001312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356001760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356002208": {"type": "Function", "content": {"typeVars": [".0.139805356002208"], "argTypes": [{"nodeId": ".0.139805356002208"}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": ".0.139805356002208"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805356002208": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "def": "139805356002208", "variance": "INVARIANT"}}, "139805356002656": {"type": "Function", "content": {"typeVars": [".0.139805356002656"], "argTypes": [{"nodeId": ".0.139805356002656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805356002656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805356002656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "def": "139805356002656", "variance": "INVARIANT"}}, "139805356003104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356003552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356004000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356004448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805356004896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356005344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805356005792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805356006240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481536", "args": [{"nodeId": ".1.139805184481536"}]}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805171901088": {"type": "Concrete", "content": {"module": "mmap", "simpleName": "mmap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "access", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352157344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352157792"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352158240"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "src", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352159136"}, "name": "move"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352159584"}, "name": "read_byte"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352160032"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352160480"}, "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352160928"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352161376"}, "name": "size"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352161824"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byte", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352162272"}, "name": "write_byte"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352162720"}, "name": "__len__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "option", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352163168"}, "name": "madvise"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352163616"}, "name": "find"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352164064"}, "name": "rfind"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352164512"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352164960"}, "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805175553536"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352412320"}, "name": "__delitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805175553648"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352413664"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352414112"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352414560"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352415008"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352415456"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352415904"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276997760"}], "isAbstract": false}}, "139805352157344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fileno", "length", "flags", "prot", "access", "offset"]}}, "139805352157792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352158240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "size"]}}, "139805352159136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dest", "src", "count"]}}, "139805352159584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352160032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352160480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "newsize"]}}, "139805352160928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "pos", "whence"]}}, "139805352161376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352161824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805352162272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "byte"]}}, "139805352162720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805352163168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "option", "start", "length"]}}, "139805352163616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}}, "139805352164064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "stop"]}}, "139805352164512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805175553872"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805175553872": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805352164960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bytes"]}}, "139805175553536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805352411424"}, {"nodeId": "139805352411872"}]}}, "139805352411424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352411872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352412320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805175554208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805175554208": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805175553648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805352412768"}, {"nodeId": "139805352413216"}]}}, "139805352412768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805352413216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805276670432"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805352413664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352414112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805352414560": {"type": "Function", "content": {"typeVars": [".0.139805352414560"], "argTypes": [{"nodeId": ".0.139805352414560"}], "returnType": {"nodeId": ".0.139805352414560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805352414560": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805171901088"}, "def": "139805352414560", "variance": "INVARIANT"}}, "139805352415008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805352415456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805352415904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901088"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805146536128": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146536016"}]}}, "139805146536016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146536576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, ".-1.139805176095104": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176095104", "variance": "INVARIANT"}}, "139805440166592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "item"]}}, "139805146536352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440167040"}, {"nodeId": "139805440167488"}]}}, "139805440167040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": [null, null]}}, "139805440167488": {"type": "Function", "content": {"typeVars": [".-1.139805440167488"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": ".-1.139805440167488"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805440167488"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805440167488": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805440167488", "variance": "INVARIANT"}}, "139805440167936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805150579520"}, {"nodeId": "139805146537808"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "139805150579520": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ufunc", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108416160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163617440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108417952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "types", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108418176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108418400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108418624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805108416160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163617440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805108417280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108417952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108418176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108418400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108418624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150579520"}], "returnType": {"nodeId": "139805142008992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142008992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805146537808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805440168384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805176094880"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}}, "139805176094880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805440168832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146538928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146538928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805440169280": {"type": "Function", "content": {"typeVars": [".-1.139805440169280", ".-2.139805440169280"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169280"}, {"nodeId": ".-2.139805440169280"}]}, {"nodeId": "139805146539376"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169280"}, {"nodeId": ".-2.139805440169280"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, ".-1.139805440169280": {"type": "TypeVar", "content": {"varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805440169280", "variance": "INVARIANT"}}, ".-2.139805440169280": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805440169280", "variance": "INVARIANT"}}, "139805146539376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146539264"}]}}, "139805146539264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805440169728": {"type": "Function", "content": {"typeVars": [".-1.139805440169728", ".-2.139805440169728"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169728"}, {"nodeId": ".-2.139805440169728"}]}, {"nodeId": "139805146539824"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".-1.139805440169728"}, {"nodeId": ".-2.139805440169728"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, ".-1.139805440169728": {"type": "TypeVar", "content": {"varName": "_ShapeType2", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805440169728", "variance": "INVARIANT"}}, ".-2.139805440169728": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805440169728", "variance": "INVARIANT"}}, "139805146539824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146539712"}]}}, "139805146539712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805146536688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440170176"}, {"nodeId": "139805440170624"}, {"nodeId": "139805440171072"}, {"nodeId": "139805440171520"}, {"nodeId": "139805440171968"}]}}, "139805440170176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146540832"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146540832": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805146540720"}]}]}}, "139805146540720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805440170624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146541056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146541056": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}]}}, "139805440171072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146541616"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146541616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146541280"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805146541504"}]}]}}, "139805146541280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146541504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805146541392"}, {"nodeId": "139805276997408"}]}}, "139805146541392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440171520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440171968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805117582016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146536912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440172864"}]}}, "139805440172864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146542400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117581792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146541952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440173760"}]}}, "139805440173760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146542736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805117582912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805146542736"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805440174656": {"type": "Function", "content": {"typeVars": [".-1.139805440174656"], "argTypes": [{"nodeId": ".-1.139805440174656"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".-1.139805440174656"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "inplace"]}}, ".-1.139805440174656": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805440174656", "variance": "INVARIANT"}}, "139805440175104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "value"]}}, "139805117583136": {"type": "Function", "content": {"typeVars": [".-1.139805117583136"], "argTypes": [{"nodeId": ".-1.139805117583136"}], "returnType": {"nodeId": "139805150983648", "args": [{"nodeId": ".-1.139805117583136"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805117583136": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805117583136", "variance": "INVARIANT"}}, "139805146542288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176091968"}, {"nodeId": "139805440176448"}]}}, "139805176091968": {"type": "Function", "content": {"typeVars": [".-1.139805176091968"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155355712", "args": [{"nodeId": ".-1.139805176091968"}]}]}]}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805176091968"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805155355712": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805439948416"}, "name": "item"}}], "typeVars": [{"nodeId": ".1.139805155355712"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["item"]}}, ".1.139805155355712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805155355712", "variance": "COVARIANT"}}, "139805439948416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155355712", "args": [{"nodeId": ".1.139805155355712"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805155355712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805176091968": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805176091968", "variance": "INVARIANT"}}, "139805440176448": {"type": "Function", "content": {"typeVars": [".-1.139805440176448"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155355712", "args": [{"nodeId": ".-1.139805440176448"}]}]}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}], "returnType": {"nodeId": ".-1.139805440176448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805440176448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805440176448", "variance": "INVARIANT"}}, "139805146542624": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440176896"}, {"nodeId": "139805440177344"}]}}, "139805440176896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440177344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146543632"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805146543632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146543072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440177792"}, {"nodeId": "139805440178240"}]}}, "139805440177792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146543968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "refcheck"]}}, "139805146543968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805440178240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "new_shape", "refcheck"]}}, "139805440178688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "write", "align", "uic"]}}, "139805440179136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146544080"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, "139805146544080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}]}}, "139805440179584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "axis1", "axis2"]}}, "139805146543408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176091296"}, {"nodeId": "139805440344576"}]}}, "139805176091296": {"type": "Function", "content": {"typeVars": [".-1.139805176091296"], "argTypes": [{"nodeId": ".-1.139805176091296"}, {"nodeId": "139805146544640"}], "returnType": {"nodeId": ".-1.139805176091296"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805176091296": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805176091296", "variance": "INVARIANT"}}, "139805146544640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146544528"}]}}, "139805146544528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805440344576": {"type": "Function", "content": {"typeVars": [".-1.139805440344576"], "argTypes": [{"nodeId": ".-1.139805440344576"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": ".-1.139805440344576"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "axes"]}}, ".-1.139805440344576": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805440344576", "variance": "INVARIANT"}}, "139805440345024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146544752"}, {"nodeId": "139805146544864"}, {"nodeId": "139805146544976"}, {"nodeId": "139805146545088"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805146545312"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}}, "139805146544752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146544864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146544976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146545088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146545312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440345472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2"]}}, "139805146543856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440345920"}, {"nodeId": "139805440346368"}, {"nodeId": "139805440346816"}]}}, "139805440345920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146545424"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}}, "139805146545424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805159387120": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805155357120"}]}}, "139805440346368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146545872"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "b", "out"]}}, "139805146545872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440346816": {"type": "Function", "content": {"typeVars": [".-1.139805440346816"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146644544"}, {"nodeId": ".-1.139805440346816"}], "returnType": {"nodeId": ".-1.139805440346816"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "b", "out"]}}, "139805146644544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805440346816": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440346816", "variance": "INVARIANT"}}, "139805440347264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805146644656"}]}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805146644656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440347712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146644880"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146644992"}, {"nodeId": "139805146645104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "kth", "axis", "kind", "order"]}}, "139805146644880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146644992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805440348160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146645328"}, {"nodeId": "139805146645440"}, {"nodeId": "139805146645216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ind", "v", "mode"]}}, "139805146645328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805146545536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440348608"}, {"nodeId": "139805440349056"}]}}, "139805440348608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146645664"}, {"nodeId": "139805146645776"}, {"nodeId": "139805146646000"}], "returnType": {"nodeId": "139805146646112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}}, "139805146645664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805146645776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255632"}}}, "139805150255632": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146646000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146645888"}]}}, "139805146645888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146646112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440349056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146646448"}, {"nodeId": "139805146645552"}, {"nodeId": "139805146646560"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805146646784"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "v", "side", "sorter"]}}, "139805146646448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146645552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255632"}}}, "139805146646560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146646224"}]}}, "139805146646224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146646784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805440349504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146646336"}, {"nodeId": "139805146647120"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "val", "dtype", "offset"]}}, "139805146646336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146647120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805440349952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805146647904"}, {"nodeId": "139805146648464"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order"]}}, "139805146647904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805146647232"}]}}, "139805146647232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150255520"}}}, "139805146648464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805146463392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440350400"}, {"nodeId": "139805440350848"}]}}, "139805440350400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146647792"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "139805146647792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805440350848": {"type": "Function", "content": {"typeVars": [".-1.139805440350848"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805276997408"}, {"nodeId": "139805146648016"}, {"nodeId": ".-1.139805440350848"}], "returnType": {"nodeId": ".-1.139805440350848"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "139805146648016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805440350848": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440350848", "variance": "INVARIANT"}}, "139805146647456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176087488"}, {"nodeId": "139805440351744"}, {"nodeId": "139805440352192"}]}}, "139805176087488": {"type": "Function", "content": {"typeVars": [".-1.139805176087488"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805176087488"}]}]}, {"nodeId": "139805146647568"}, {"nodeId": "139805146648688"}, {"nodeId": "N"}, {"nodeId": "139805146647344"}], "returnType": {"nodeId": ".-1.139805176087488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, ".-1.139805176087488": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805176087488", "variance": "INVARIANT"}}, "139805146647568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805146648688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146647344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805440351744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146648576"}, {"nodeId": "139805146649248"}, {"nodeId": "N"}, {"nodeId": "139805146646896"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805146648576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146649248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805146646896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805440352192": {"type": "Function", "content": {"typeVars": [".-1.139805440352192"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146648800"}, {"nodeId": "139805146648352"}, {"nodeId": ".-1.139805440352192"}, {"nodeId": "139805146648912"}], "returnType": {"nodeId": ".-1.139805440352192"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805146648800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146648352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, ".-1.139805440352192": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440352192", "variance": "INVARIANT"}}, "139805146648912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150254736"}}}, "139805440352640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146649024"}, {"nodeId": "139805146647680"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repeats", "axis"]}}, "139805146649024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146647680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276997408"}]}}, "139805440353088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146649808"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805146649808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805440353536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146649584"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805146649584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805146649136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440353984"}, {"nodeId": "139805440354432"}]}}, "139805440353984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146650144"}, {"nodeId": "139805146650256"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": [null, null, "order"]}}, "139805146650144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805146650256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805440354432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805276997408"}, {"nodeId": "139805146650480"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805155356768"}]}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "order"]}}, "139805146650480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253952"}}}, "139805146649696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440354880"}, {"nodeId": "139805440355328"}]}}, "139805440354880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}, {"nodeId": "139805146650928"}, {"nodeId": "139805146651040"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146651152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805146650928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805146651040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805146651152": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805440355328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146651376"}, {"nodeId": "139805146651488"}, {"nodeId": "139805146651600"}, {"nodeId": "139805481882144"}, {"nodeId": "139805146651712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "order", "casting", "subok", "copy"]}}, "139805146651376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805146651488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805146651600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805146651712": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805150579872"}]}}, "139805146650032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440355776"}, {"nodeId": "139805440356224"}, {"nodeId": "139805440356672"}, {"nodeId": "139805440357120"}, {"nodeId": "139805440357568"}]}}, "139805440355776": {"type": "Function", "content": {"typeVars": [".-1.139805440355776"], "argTypes": [{"nodeId": ".-1.139805440355776"}], "returnType": {"nodeId": ".-1.139805440355776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805440355776": {"type": "TypeVar", "content": {"varName": "_ArraySelf", "values": [], "upperBound": {"nodeId": "139805155355360"}, "def": "139805440355776", "variance": "INVARIANT"}}, "139805440356224": {"type": "Function", "content": {"typeVars": [".-1.139805440356224"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805440356224"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, ".-1.139805440356224": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440356224", "variance": "INVARIANT"}}, "139805440356672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "139805440357120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146652160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "139805146652160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805440357568": {"type": "Function", "content": {"typeVars": [".-1.139805440357568"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146650704"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805440357568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "dtype", "type"]}}, "139805146650704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805440357568": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805440357568", "variance": "INVARIANT"}}, "139805146652944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805440358016"}, {"nodeId": "139805440358464"}]}}, "139805440358016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "0"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "139805440358464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "139805146653616"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype", "offset"]}}, "139805146653616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805176147840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276996000"}]}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176144480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276996352"}]}]}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176144256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276996704"}]}]}], "returnType": {"nodeId": "139805276667968"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176143808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805276997408"}]}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805440492032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440415648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805440492480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440492928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146654064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176143584"}, {"nodeId": "139805440493824"}, {"nodeId": "139805440494272"}, {"nodeId": "139805440494720"}, {"nodeId": "139805440495168"}]}}, "139805176143584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146654624"}, {"nodeId": "139805146653056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146654624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146653056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440493824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146653728"}, {"nodeId": "139805146653840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146653728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146653840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440494272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146654512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146654512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440494720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440495168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146655744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146655744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805175559920": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155358176"}]}]}]}]}}, "139805146654288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176144032"}, {"nodeId": "139805440496064"}, {"nodeId": "139805440496512"}, {"nodeId": "139805440496960"}, {"nodeId": "139805440497408"}]}}, "139805176144032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146656080"}, {"nodeId": "139805146656192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146656080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146656192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440496064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146656640"}, {"nodeId": "139805146655968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146656640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146655968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440496512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146656528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146656528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440496960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440497408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146657648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146657648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146654960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176142688"}, {"nodeId": "139805440498304"}, {"nodeId": "139805440498752"}, {"nodeId": "139805440499200"}, {"nodeId": "139805440499648"}]}}, "139805176142688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146657984"}, {"nodeId": "139805146658096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146657984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146658096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440498304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146658544"}, {"nodeId": "139805146657872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146658544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146657872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440498752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146658432"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146658432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440499200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440499648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146659552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146659552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146656864": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176142912"}, {"nodeId": "139805440500544"}, {"nodeId": "139805440500992"}, {"nodeId": "139805440501440"}, {"nodeId": "139805440501888"}]}}, "139805176142912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146659888"}, {"nodeId": "139805146660000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146659888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146660000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440500544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146660448"}, {"nodeId": "139805146659776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146660448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146659776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805440500992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146660672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146660672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805440501440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805440501888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146694368"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146694368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146658768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176142016"}, {"nodeId": "139805440502784"}, {"nodeId": "139805440503232"}, {"nodeId": "139805440503680"}, {"nodeId": "139805440504128"}]}}, "139805176142016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440502784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440503232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440503680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440504128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146544416": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176141568"}, {"nodeId": "139805440505024"}, {"nodeId": "139805440505472"}]}}, "139805176141568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440505024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440505472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146694592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176144928"}, {"nodeId": "139805440506368"}, {"nodeId": "139805440506816"}]}}, "139805176144928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440506368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805440506816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146695824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176139776"}, {"nodeId": "139805435363392"}, {"nodeId": "139805435363840"}]}}, "139805176139776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805435363392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805435363840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805146696608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176140672"}, {"nodeId": "139805435364736"}, {"nodeId": "139805435365184"}, {"nodeId": "139805435365632"}, {"nodeId": "139805435366080"}, {"nodeId": "139805435366528"}, {"nodeId": "139805435366976"}, {"nodeId": "139805435367424"}]}}, "139805176140672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146698400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146698400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435364736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146698624"}, {"nodeId": "139805146698736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146698624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146698736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435365184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146699184"}, {"nodeId": "139805146698176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146699184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146698176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435365632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146699744"}, {"nodeId": "139805146699072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146699744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146699072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435366080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146700192"}, {"nodeId": "139805146699632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146700192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146699632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435366528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146700528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146700528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435366976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435367424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146701648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146701648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146697392": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176138880"}, {"nodeId": "139805435368320"}, {"nodeId": "139805435368768"}, {"nodeId": "139805435369216"}, {"nodeId": "139805435369664"}, {"nodeId": "139805435370112"}, {"nodeId": "139805435370560"}, {"nodeId": "139805435371008"}]}}, "139805176138880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146702096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146702096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435368320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146702320"}, {"nodeId": "139805146702432"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146702320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146702432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435368768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146702880"}, {"nodeId": "139805146701872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146702880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146701872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435369216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146703440"}, {"nodeId": "139805146702768"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146703440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146702768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435369664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146703888"}, {"nodeId": "139805146703328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146703888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146703328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435370112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146704224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146704224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435370560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435371008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146705344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146705344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146701200": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176140000"}, {"nodeId": "139805435371904"}, {"nodeId": "139805435372352"}, {"nodeId": "139805435372800"}, {"nodeId": "139805435373248"}, {"nodeId": "139805435373696"}, {"nodeId": "139805435374144"}]}}, "139805176140000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146705792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146705792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435371904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146706128"}, {"nodeId": "139805146706240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146706128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146706240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435372352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146706688"}, {"nodeId": "139805146705568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146706688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146705568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435372800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146707248"}, {"nodeId": "139805146706576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146707248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146706576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435373248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146707696"}, {"nodeId": "139805146707136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146707696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146707136": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435373696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435374144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146708368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146708368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146704896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176139328"}, {"nodeId": "139805435375040"}, {"nodeId": "139805435375488"}, {"nodeId": "139805435375936"}, {"nodeId": "139805435376384"}, {"nodeId": "139805435376832"}, {"nodeId": "139805435377280"}]}}, "139805176139328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146708816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146708816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435375040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146709152"}, {"nodeId": "139805146709264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146709152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146709264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435375488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146709712"}, {"nodeId": "139805146708592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146709712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146708592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435375936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146743072"}, {"nodeId": "139805146743184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146743072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146743184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435376384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146743520"}, {"nodeId": "139805146743632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146743520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146743632": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435376832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435377280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146744304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146744304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146707584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176138656"}, {"nodeId": "139805435378176"}, {"nodeId": "139805435378624"}, {"nodeId": "139805435379072"}, {"nodeId": "139805435560000"}]}}, "139805176138656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146744752"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146744752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435378176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146745200"}, {"nodeId": "139805146745312"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146745200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146745312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435378624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146745872"}, {"nodeId": "139805146744528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146745872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146744528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435379072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146746544"}, {"nodeId": "139805146745760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146746544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146745760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435560000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146747104"}, {"nodeId": "139805146746432"}], "returnType": {"nodeId": "139805146747552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146747104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146746432": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805146747552": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146660336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176139552"}, {"nodeId": "139805435560896"}, {"nodeId": "139805435561344"}, {"nodeId": "139805435561792"}, {"nodeId": "139805435562240"}]}}, "139805176139552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146747888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146747888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435560896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146748336"}, {"nodeId": "139805146748448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146748336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146748448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435561344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146749008"}, {"nodeId": "139805146747664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146749008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146747664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435561792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146749680"}, {"nodeId": "139805146748896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146749680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146748896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435562240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146750240"}, {"nodeId": "139805146749568"}], "returnType": {"nodeId": "139805146750688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805146750240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146749568": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805146750688": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805146746992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176137312"}, {"nodeId": "139805435563136"}, {"nodeId": "139805435563584"}, {"nodeId": "139805435564032"}, {"nodeId": "139805435564480"}, {"nodeId": "139805435564928"}, {"nodeId": "139805435565376"}, {"nodeId": "139805435565824"}, {"nodeId": "139805435566272"}, {"nodeId": "139805435566720"}, {"nodeId": "139805435567168"}]}}, "139805176137312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146751024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146751024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435563136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146751248"}, {"nodeId": "139805146751360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146751248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146751360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435563584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146751808"}, {"nodeId": "139805146750800"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146751808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146750800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435564032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146752368"}, {"nodeId": "139805146751696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146752368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146751696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435564480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146752816"}, {"nodeId": "139805146752256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146752816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146752256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435564928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146753152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146753152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435565376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146753936"}, {"nodeId": "139805146753264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146753936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146753264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435565824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146754272"}, {"nodeId": "139805146753824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146754272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146753824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435566272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146754496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146754496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435566720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435567168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146755280"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146755280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146750128": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176136864"}, {"nodeId": "139805435568064"}, {"nodeId": "139805435568512"}, {"nodeId": "139805435568960"}, {"nodeId": "139805435569408"}, {"nodeId": "139805435569856"}, {"nodeId": "139805435570304"}, {"nodeId": "139805435570752"}, {"nodeId": "139805435571200"}, {"nodeId": "139805435571648"}, {"nodeId": "139805435572096"}]}}, "139805176136864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146755728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146755728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435568064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146755952"}, {"nodeId": "139805146756064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146755952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146756064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435568512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146756512"}, {"nodeId": "139805146755504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146756512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146755504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435568960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146757072"}, {"nodeId": "139805146756400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146757072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146756400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435569408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146757520"}, {"nodeId": "139805146756960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146757520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146756960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435569856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146757856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146757856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435570304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146758640"}, {"nodeId": "139805146757968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146758640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146757968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435570752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146758976"}, {"nodeId": "139805146758528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146758976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146758528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435571200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146792112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146792112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435571648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435572096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146792896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146792896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146754832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176150976"}, {"nodeId": "139805435572992"}, {"nodeId": "139805435573440"}, {"nodeId": "139805435573888"}, {"nodeId": "139805435574336"}, {"nodeId": "139805435574784"}, {"nodeId": "139805435575232"}, {"nodeId": "139805435575680"}, {"nodeId": "139805435740224"}, {"nodeId": "139805435740672"}, {"nodeId": "139805435741120"}, {"nodeId": "139805435741568"}]}}, "139805176150976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146793344"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146793344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435572992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146793792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146793792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435573440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146793904"}, {"nodeId": "139805146794016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146793904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146794016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435573888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146794464"}, {"nodeId": "139805146793120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146794464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146793120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435574336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146795024"}, {"nodeId": "139805146794352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146795024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146794352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435574784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146795472"}, {"nodeId": "139805146794912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146795472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146794912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435575232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146795808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146795808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435575680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146796592"}, {"nodeId": "139805146795920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146796592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146795920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435740224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146796480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146796480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435740672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146796816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146796816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435741120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435741568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146797936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146797936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146709600": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176140224"}, {"nodeId": "139805435742464"}, {"nodeId": "139805435742912"}, {"nodeId": "139805435743360"}, {"nodeId": "139805435743808"}, {"nodeId": "139805435744256"}, {"nodeId": "139805435744704"}, {"nodeId": "139805435745152"}, {"nodeId": "139805435745600"}, {"nodeId": "139805435746048"}, {"nodeId": "139805435746496"}, {"nodeId": "139805435746944"}]}}, "139805176140224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146798384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146798384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435742464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146798832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146798832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435742912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146798944"}, {"nodeId": "139805146799056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146798944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146799056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435743360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146799504"}, {"nodeId": "139805146798160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146799504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146798160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435743808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146800064"}, {"nodeId": "139805146799392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146800064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146799392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435744256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146800512"}, {"nodeId": "139805146799952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146800512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146799952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435744704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146800848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146800848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435745152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146801632"}, {"nodeId": "139805146800960"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146801632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146800960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435745600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146801968"}, {"nodeId": "139805146801520"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146801968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146801520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435746048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146802192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146802192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175561376"}}}, "139805435746496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435746944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146802976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146802976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146797152": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176144704"}, {"nodeId": "139805176140448"}, {"nodeId": "139805435747840"}, {"nodeId": "139805435748288"}, {"nodeId": "139805435748736"}, {"nodeId": "139805435749184"}, {"nodeId": "139805435749632"}, {"nodeId": "139805435750080"}, {"nodeId": "139805435750528"}, {"nodeId": "139805435750976"}]}}, "139805176144704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146803424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146803424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176140448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146803648"}, {"nodeId": "139805146803760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146803648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146803760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435747840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146804208"}, {"nodeId": "139805146803200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146804208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146803200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435748288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146804768"}, {"nodeId": "139805146804096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146804768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146804096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435748736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146805216"}, {"nodeId": "139805146804656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146805216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146804656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435749184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146805552"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146805552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435749632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146806336"}, {"nodeId": "139805146805664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146806336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146805664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435750080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146806672"}, {"nodeId": "139805146806224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146806672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146806224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435750528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435750976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146807344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146807344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146801856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805435751424"}, {"nodeId": "139805176148288"}, {"nodeId": "139805435752320"}, {"nodeId": "139805435752768"}, {"nodeId": "139805435753216"}, {"nodeId": "139805435753664"}, {"nodeId": "139805435754112"}, {"nodeId": "139805435754560"}, {"nodeId": "139805435755008"}, {"nodeId": "139805435755456"}]}}, "139805435751424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146807792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146807792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176148288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146808016"}, {"nodeId": "139805146808128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146808016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146808128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435752320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146824992"}, {"nodeId": "139805146825104"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146824992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146825104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435752768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146825552"}, {"nodeId": "139805146825664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146825552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146825664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435753216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146826000"}, {"nodeId": "139805146826112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146826000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146826112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435753664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146826448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146826448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435754112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146827120"}, {"nodeId": "139805146827232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146827120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146827232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435754560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146827456"}, {"nodeId": "139805146827568"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146827456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146827568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435755008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435755456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146828240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146828240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146806896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805435755904"}, {"nodeId": "139805435838976"}, {"nodeId": "139805435839424"}, {"nodeId": "139805435839872"}, {"nodeId": "139805435840320"}, {"nodeId": "139805435840768"}, {"nodeId": "139805435841216"}, {"nodeId": "139805435841664"}, {"nodeId": "139805435842112"}]}}, "139805435755904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146828688"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146828688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435838976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146829024"}, {"nodeId": "139805146829136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146829024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146829136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435839424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146829584"}, {"nodeId": "139805146828464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146829584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146828464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435839872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146830144"}, {"nodeId": "139805146829472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146830144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146829472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435840320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146830032"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146830032": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435840768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146830928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146830928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435841216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146831152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146831152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435841664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435842112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146831936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146831936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146758864": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724320"}, {"nodeId": "139805435843008"}, {"nodeId": "139805435843456"}, {"nodeId": "139805435843904"}, {"nodeId": "139805435844352"}, {"nodeId": "139805435844800"}, {"nodeId": "139805435845248"}, {"nodeId": "139805435845696"}, {"nodeId": "139805435846144"}]}}, "139805175724320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146832384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146832384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435843008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146832720"}, {"nodeId": "139805146832832"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146832720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146832832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435843456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146833280"}, {"nodeId": "139805146832160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146833280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146832160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435843904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146833840"}, {"nodeId": "139805146833168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146833840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146833168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435844352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146833728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146833728": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805435844800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146834624"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146834624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435845248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146834960"}, {"nodeId": "139805146834176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146834960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146834176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435845696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435846144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146835632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146835632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146831488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723200"}, {"nodeId": "139805435847040"}, {"nodeId": "139805435847488"}, {"nodeId": "139805435847936"}, {"nodeId": "139805435848384"}, {"nodeId": "139805435848832"}, {"nodeId": "139805435849280"}, {"nodeId": "139805435849728"}]}}, "139805175723200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146836080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146836080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435847040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146836416"}, {"nodeId": "139805146836528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146836416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146836528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435847488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146836976"}, {"nodeId": "139805146835856"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146836976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146835856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435847936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146837536"}, {"nodeId": "139805146836864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146837536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146836864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435848384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146837984"}, {"nodeId": "139805146837424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146837984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146837424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435848832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146838320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146838320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435849280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435849728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146839440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146839440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146835184": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175722752"}, {"nodeId": "139805435850624"}, {"nodeId": "139805435851072"}, {"nodeId": "139805435851520"}, {"nodeId": "139805435851968"}, {"nodeId": "139805435852416"}, {"nodeId": "139805435852864"}, {"nodeId": "139805435853312"}]}}, "139805175722752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146839888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146839888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435850624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146840224"}, {"nodeId": "139805146840336"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146840224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146840336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435851072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146840784"}, {"nodeId": "139805146839664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146840784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146839664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435851520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146874144"}, {"nodeId": "139805146874256"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146874144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146874256": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435851968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146874592"}, {"nodeId": "139805146874704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146874592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146874704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435852416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146875040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146875040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435852864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805435853312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146876160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146876160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146838992": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724544"}, {"nodeId": "139805435854208"}, {"nodeId": "139805436002368"}, {"nodeId": "139805436002816"}, {"nodeId": "139805436003264"}, {"nodeId": "139805436003712"}, {"nodeId": "139805436004160"}, {"nodeId": "139805436004608"}, {"nodeId": "139805436005056"}]}}, "139805175724544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146876496"}, {"nodeId": "139805146876608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146876496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146876608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805435854208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146876944"}, {"nodeId": "139805146877056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146876944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146877056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436002368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146877616"}, {"nodeId": "139805146876384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146877616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146876384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436002816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146877952"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146877952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436003264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146878064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146878064": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805436003712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146879072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146879072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436004160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146879296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146879296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436004608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436005056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146880080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146880080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146807568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175725216"}, {"nodeId": "139805436005952"}, {"nodeId": "139805436006400"}, {"nodeId": "139805436006848"}, {"nodeId": "139805436007296"}, {"nodeId": "139805436007744"}, {"nodeId": "139805436008192"}, {"nodeId": "139805436008640"}, {"nodeId": "139805436009088"}]}}, "139805175725216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146880416"}, {"nodeId": "139805146880528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146880416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146880528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436005952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146880864"}, {"nodeId": "139805146880976"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146880864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146880976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436006400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146881536"}, {"nodeId": "139805146880304"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146881536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146880304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436006848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146881872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146881872": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436007296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146881984"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146881984": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805436007744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146882992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146882992": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436008192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146883328"}, {"nodeId": "139805146882544"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146883328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146882544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436008640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436009088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146884000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146884000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146879632": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724992"}, {"nodeId": "139805436009984"}, {"nodeId": "139805436010432"}, {"nodeId": "139805436010880"}, {"nodeId": "139805436011328"}]}}, "139805175724992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146884448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146884448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436009984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146884784"}, {"nodeId": "139805146884896"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146884784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146884896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436010432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146885344"}, {"nodeId": "139805146884224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146885344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146884224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436010880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436011328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146886240"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146886240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146883552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175725440"}, {"nodeId": "139805436012224"}, {"nodeId": "139805436012672"}, {"nodeId": "139805436013120"}, {"nodeId": "139805436013568"}]}}, "139805175725440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146886688"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146886688": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436012224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146887024"}, {"nodeId": "139805146887136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146887024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146887136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436012672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146887584"}, {"nodeId": "139805146886464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146887584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146886464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436013120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436013568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146888480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146888480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146885792": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723872"}, {"nodeId": "139805436014464"}, {"nodeId": "139805436014912"}, {"nodeId": "139805436015360"}, {"nodeId": "139805436015808"}]}}, "139805175723872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146888928"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146888928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436014464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146889264"}, {"nodeId": "139805146889376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146889264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146889376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436014912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146889824"}, {"nodeId": "139805146888704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146889824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146888704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436015360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436015808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146907248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146907248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146888032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175724096"}, {"nodeId": "139805436016704"}, {"nodeId": "139805436017152"}, {"nodeId": "139805436017600"}, {"nodeId": "139805436018048"}]}}, "139805175724096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146907696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146907696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436016704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146908032"}, {"nodeId": "139805146908144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146908032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146908144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436017152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146908592"}, {"nodeId": "139805146907472"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146908592": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146907472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436017600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436018048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146909488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146909488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146840672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723648"}, {"nodeId": "139805436150272"}, {"nodeId": "139805436150720"}, {"nodeId": "139805436151168"}, {"nodeId": "139805436151616"}]}}, "139805175723648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146909936"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146909936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436150272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146910160"}, {"nodeId": "139805146910272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146910160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146910272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436150720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146910720"}, {"nodeId": "139805146909712"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146910720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146909712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436151168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436151616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146911616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146911616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146909040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175723424"}, {"nodeId": "139805436152512"}, {"nodeId": "139805436152960"}, {"nodeId": "139805436153408"}, {"nodeId": "139805436153856"}]}}, "139805175723424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146912064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146912064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436152512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146912288"}, {"nodeId": "139805146912400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146912288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146912400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436152960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146912848"}, {"nodeId": "139805146911840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146912848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146911840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436153408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436153856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146913744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146913744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146911168": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175722976"}, {"nodeId": "139805175724768"}, {"nodeId": "139805436154752"}, {"nodeId": "139805436155200"}, {"nodeId": "139805436155648"}]}}, "139805175722976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146914192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146914192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146914416"}, {"nodeId": "139805146914528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146914416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146914528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436154752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146914976"}, {"nodeId": "139805146913968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146914976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146913968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436155200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436155648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146915872"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146915872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146913296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436156096"}, {"nodeId": "139805175721856"}, {"nodeId": "139805436156992"}, {"nodeId": "139805436157440"}, {"nodeId": "139805436157888"}]}}, "139805436156096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146916320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146916320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175721856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146916544"}, {"nodeId": "139805146916656"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146916544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146916656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436156992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146917104"}, {"nodeId": "139805146916096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146917104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146916096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436157440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436157888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146918000"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146918000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146915424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436158336"}, {"nodeId": "139805436159232"}, {"nodeId": "139805436159680"}, {"nodeId": "139805436160128"}, {"nodeId": "139805436160576"}]}}, "139805436158336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146918448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146918448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436159232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146918672"}, {"nodeId": "139805146918784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146918672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146918784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436159680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146919232"}, {"nodeId": "139805146918224"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146919232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146918224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436160128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436160576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146920128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146920128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146917552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805176200800"}, {"nodeId": "139805176199904"}, {"nodeId": "139805436161472"}, {"nodeId": "139805436161920"}, {"nodeId": "139805436162368"}]}}, "139805176200800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146920576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146920576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805176199904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146920800"}, {"nodeId": "139805146920912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146920800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146920912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436161472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805146921360"}, {"nodeId": "139805146920352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146921360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146920352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436161920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805436162368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146922256"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146922256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805146919680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436162816"}, {"nodeId": "139805175398688"}, {"nodeId": "139805176200576"}, {"nodeId": "139805175398464"}, {"nodeId": "139805436163712"}, {"nodeId": "139805436164160"}, {"nodeId": "139805436280896"}, {"nodeId": "139805436281344"}]}}, "139805436162816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146922704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146922704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175398688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146956176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146956176": {"type": "Union", "content": {"items": [{"nodeId": "139805146955952"}, {"nodeId": "139805146956064"}]}}, "139805146955952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146956064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805176200576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146956400"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146956400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805175398464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146956736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146956736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436163712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146957072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146957072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436164160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146957408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146957408": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436280896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146957968"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146957968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436281344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146921808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436165504"}, {"nodeId": "139805436164608"}, {"nodeId": "139805436282240"}, {"nodeId": "139805436282688"}, {"nodeId": "139805436283136"}, {"nodeId": "139805436283584"}, {"nodeId": "139805436284032"}]}}, "139805436165504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146958864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146958864": {"type": "Union", "content": {"items": [{"nodeId": "139805146958640"}, {"nodeId": "139805146958752"}]}}, "139805146958640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146958752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436164608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146959088"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146959088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436282240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146959424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146959424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436282688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146959760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146959760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436283136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146960096"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146960096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436283584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146960320"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146960320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436284032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146889712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436284480"}, {"nodeId": "139805436165056"}, {"nodeId": "139805436285376"}, {"nodeId": "139805436285824"}, {"nodeId": "139805436286272"}, {"nodeId": "139805436286720"}, {"nodeId": "139805436287168"}]}}, "139805436284480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146961328"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146961328": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436165056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146961888"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146961888": {"type": "Union", "content": {"items": [{"nodeId": "139805146961664"}, {"nodeId": "139805146961776"}]}}, "139805146961664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146961776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436285376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146962112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146962112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436285824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146962448"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146962448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436286272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146962784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146962784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436286720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146963120"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146963120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436287168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146960880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805436287616"}, {"nodeId": "139805436288512"}, {"nodeId": "139805436288960"}, {"nodeId": "139805436289408"}, {"nodeId": "139805436289856"}]}}, "139805436287616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436288512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964240"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436288960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964576"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436289408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146964912"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146964912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436289856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146963568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175535808"}, {"nodeId": "139805436290752"}, {"nodeId": "139805436291200"}, {"nodeId": "139805436291648"}, {"nodeId": "139805436292096"}, {"nodeId": "139805436292544"}, {"nodeId": "139805436292992"}]}}, "139805175535808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146965920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146965920": {"type": "Union", "content": {"items": [{"nodeId": "139805146965696"}, {"nodeId": "139805146965808"}]}}, "139805146965696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146965808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436290752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146966144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146966144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436291200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146966480"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146966480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436291648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146966816"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146966816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436292096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146967152"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146967152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436292544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146967488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146967488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436292992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146965248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175538720"}, {"nodeId": "139805436293888"}, {"nodeId": "139805436294336"}, {"nodeId": "139805436294784"}, {"nodeId": "139805436295232"}]}}, "139805175538720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146968496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146968496": {"type": "Union", "content": {"items": [{"nodeId": "139805146968272"}, {"nodeId": "139805146968384"}]}}, "139805146968272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146968384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436293888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146968720"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146968720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436294336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146969056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146969056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436294784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146969392"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146969392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436295232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146967824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175538272"}, {"nodeId": "139805436296128"}, {"nodeId": "139805436296576"}, {"nodeId": "139805431234624"}, {"nodeId": "139805431235072"}]}}, "139805175538272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146970512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146970512": {"type": "Union", "content": {"items": [{"nodeId": "139805146970288"}, {"nodeId": "139805146970400"}]}}, "139805146970288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805146970400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805436296128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146970736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146970736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805436296576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146971072"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146971072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431234624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805146971408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146971408": {"type": "Union", "content": {"items": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805154853984", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805155359936"}]}]}]}]}}, "139805431235072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146969952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175537376"}, {"nodeId": "139805431235968"}, {"nodeId": "139805431236416"}]}}, "139805175537376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141762560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141762560": {"type": "Union", "content": {"items": [{"nodeId": "139805141762336"}, {"nodeId": "139805141762448"}]}}, "139805141762336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141762448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431235968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141762784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141762784": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431236416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805146922480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175538496"}, {"nodeId": "139805431237312"}, {"nodeId": "139805431237760"}]}}, "139805175538496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141763904"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141763904": {"type": "Union", "content": {"items": [{"nodeId": "139805141763680"}, {"nodeId": "139805141763792"}]}}, "139805141763680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141763792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431237312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141764128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141764128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431237760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141763344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175532672"}, {"nodeId": "139805431238656"}, {"nodeId": "139805431239104"}, {"nodeId": "139805431239552"}]}}, "139805175532672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141765024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141765024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431238656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141765584"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141765584": {"type": "Union", "content": {"items": [{"nodeId": "139805141765360"}, {"nodeId": "139805141765472"}]}}, "139805141765360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141765472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431239104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141765808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141765808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431239552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141764688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175530880"}, {"nodeId": "139805431240448"}, {"nodeId": "139805431240896"}, {"nodeId": "139805431241344"}]}}, "139805175530880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141766704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141766704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431240448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141767264"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141767264": {"type": "Union", "content": {"items": [{"nodeId": "139805141767040"}, {"nodeId": "139805141767152"}]}}, "139805141767040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141767152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431240896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141767488"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141767488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431241344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141766368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805175530432"}, {"nodeId": "139805431242240"}, {"nodeId": "139805431242688"}, {"nodeId": "139805431243136"}]}}, "139805175530432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141768384"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141768384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431242240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141768944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141768944": {"type": "Union", "content": {"items": [{"nodeId": "139805141768720"}, {"nodeId": "139805141768832"}]}}, "139805141768720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805141768832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159389136"}}}, "139805431242688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805141769168"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805141769168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805431243136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805175530656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805141770064"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}}, "139805141770064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805431244032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": "139805141770400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805141770400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "0"}]}}, "139805112873504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805155356768"}, {"nodeId": ".2.139805155356768"}]}], "returnType": {"nodeId": ".2.139805155356768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414614272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": ".1.139805155353952"}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "array", "ptr"]}}, "139805116804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": ".1.139805155353952"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805116708256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": "139805171892288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171900384": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Array", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172056128"}, "items": [{"kind": "Variable", "content": {"name": "_length_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805171841536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_length_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "_length_"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172059488"}, "items": [{"kind": "Variable", "content": {"name": "_type_", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805171841984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "_type_"}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314721696"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172060048"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805172060160"}, "items": [{"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__setitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314723936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314724384"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314724832"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805171900384"}], "bases": [{"nodeId": "139805184482240"}], "isAbstract": true}}, ".1.139805171900384": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171900384", "variance": "INVARIANT"}}, "139805184482240": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CData", "members": [{"kind": "Variable", "content": {"name": "_b_base_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_b_needsfree_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_objects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171774656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171834368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_buffer_copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171835488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_address", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171836608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171837056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "in_dll", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171837280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292788448"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292788896"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805171774656": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}, {"nodeId": "N"}]}}, "139805171834368": {"type": "Function", "content": {"typeVars": [".0.139805171834368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805171834368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}}, ".0.139805171834368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171834368", "variance": "INVARIANT"}}, "139805171835488": {"type": "Function", "content": {"typeVars": [".0.139805171835488"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805171835488"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "source", "offset"]}}, ".0.139805171835488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171835488", "variance": "INVARIANT"}}, "139805171836608": {"type": "Function", "content": {"typeVars": [".0.139805171836608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805171836608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "address"]}}, ".0.139805171836608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171836608", "variance": "INVARIANT"}}, "139805171837056": {"type": "Function", "content": {"typeVars": [".0.139805171837056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805171774992"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, "139805171774992": {"type": "Union", "content": {"items": [{"nodeId": ".0.139805171837056"}, {"nodeId": "139805184483648"}]}}, ".0.139805171837056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171837056", "variance": "INVARIANT"}}, "139805184483648": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CArgObject", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805171837280": {"type": "Function", "content": {"typeVars": [".0.139805171837280"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805184486464"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805171837280"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "library", "name"]}}, "139805184486464": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "CDLL", "members": [{"kind": "Variable", "content": {"name": "_func_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_func_restype_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184482240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_FuncPtr", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "use_errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "use_last_error", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "winmode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352417248"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352418144"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name_or_ordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352418592"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805352417248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184486464"}, {"nodeId": "139805172061504"}, {"nodeId": "139805481893056"}, {"nodeId": "139805172061616"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805172061728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "mode", "handle", "use_errno", "use_last_error", "winmode"]}}, "139805172061504": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805172061616": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805172061728": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805352418144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184486464"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184487520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184487520": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "_NamedFuncPointer", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805184487168"}], "isAbstract": false}}, "139805184487168": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "_FuncPointer", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184484000"}], "isAbstract": false}}, "139805184484000": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "CFuncPtr", "members": [{"kind": "Variable", "content": {"name": "restype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171776112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481889888", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171764240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805171773984"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314717664"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482240"}], "isAbstract": false}}, "139805171776112": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805171791936"}, {"nodeId": "N"}]}}, "139805171791936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805171764240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805183984128"}}}, "139805183984128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171775888"}, {"nodeId": "139805184484000"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805184482240"}]}], "returnType": {"nodeId": "139805184482240"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805171775888": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805171773984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314715424"}, {"nodeId": "139805314715872"}, {"nodeId": "139805314716320"}, {"nodeId": "139805314716768"}]}}, "139805314715424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314715872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805314716320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "139805171792160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805171792160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805314716768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "139805172058928"}, {"nodeId": "139805172059152"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805172058928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805172057920"}, {"nodeId": "139805184486464"}]}}, "139805172057920": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805172059152": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805172059040"}]}, {"nodeId": "N"}]}}, "139805172059040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805171765472"}}}, "139805171765472": {"type": "Union", "content": {"items": [{"nodeId": "139805171763792"}, {"nodeId": "139805171762112"}, {"nodeId": "139805171765360"}]}}, "139805171763792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805171762112": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805171764016"}]}}, "139805171764016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171765360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805171763904"}, {"nodeId": "A"}]}}, "139805171763904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805314717664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484000"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805184483296": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_PointerLike", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482944"}], "isAbstract": false}}, "139805184482944": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CanCastTo", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482240"}], "isAbstract": false}}, "139805352418592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184486464"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184487520"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805171837280": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171837280", "variance": "INVARIANT"}}, "139805292788448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184482240"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805292788896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184482240"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805172056128": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314719904"}]}}, "139805314719904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171841536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805172059488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314720800"}]}}, "139805314720800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171841984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314721696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805172060048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314722144"}, {"nodeId": "139805314722592"}]}}, "139805314722144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314722592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805172060160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314723040"}, {"nodeId": "139805314723488"}]}}, "139805314723040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805314723488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}, {"nodeId": "139805276670432"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805314723936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805314724384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900384", "args": [{"nodeId": ".1.139805171900384"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805314724832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805171892288": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int64", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184482592": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_SimpleCData", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805184482592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292789344"}, "name": "__init__"}}], "typeVars": [{"nodeId": ".1.139805184482592"}], "bases": [{"nodeId": "139805184482240"}], "isAbstract": false}}, ".1.139805184482592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805184482592", "variance": "INVARIANT"}}, "139805292789344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184482592", "args": [{"nodeId": ".1.139805184482592"}]}, {"nodeId": ".1.139805184482592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805116702656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": "139805171892288"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805116704448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}], "returnType": {"nodeId": "139805171897568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171897568": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_void_p", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482592", "args": [{"nodeId": "139805171768272"}]}], "isAbstract": false}}, "139805171768272": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805414616512": {"type": "Function", "content": {"typeVars": [".-1.139805414616512"], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".-1.139805414616512"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.139805414616512": {"type": "TypeVar", "content": {"varName": "_CastT", "values": [], "upperBound": {"nodeId": "139805184482944"}, "def": "139805414616512", "variance": "INVARIANT"}}, "139805414616960": {"type": "Function", "content": {"typeVars": [".-1.139805414616960"], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": ".-1.139805414616960"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.139805414616960": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805414616960", "variance": "INVARIANT"}}, "139805414617408": {"type": "Function", "content": {"typeVars": [".-1.139805414617408"], "argTypes": [{"nodeId": "139805155353952", "args": [{"nodeId": ".1.139805155353952"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "139805171900384", "args": [{"nodeId": ".-1.139805414617408"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, ".-1.139805414617408": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805414617408", "variance": "INVARIANT"}}, "139805154854688": {"type": "Concrete", "content": {"module": "numpy._typing._array_like", "simpleName": "_UnknownType", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805150978368": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100323136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100322464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100321344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100320224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100321120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100320896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100273088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100273536"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138444112"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330819552"}, "name": "at"}}], "typeVars": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150978368": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150978368", "variance": "INVARIANT"}}, ".2.139805150978368": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150978368", "variance": "INVARIANT"}}, ".3.139805150978368": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150978368", "variance": "INVARIANT"}}, "139805100323136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": ".1.139805150978368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100322464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": ".2.139805150978368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100321344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": ".3.139805150978368"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100320224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100321120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100320896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100273088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100273536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138444112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330818208"}, {"nodeId": "139805330818656"}, {"nodeId": "139805330819104"}]}}, "139805330818208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805138446128"}, {"nodeId": "N"}, {"nodeId": "139805138446352"}, {"nodeId": "139805138446464"}, {"nodeId": "139805138446576"}, {"nodeId": "139805138446688"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138447024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138446128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138446352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138446240"}]}}, "139805138446240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138446464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138446576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138446688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138447024": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330818656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805138447360"}, {"nodeId": "139805138447584"}, {"nodeId": "139805138446016"}, {"nodeId": "139805138448368"}, {"nodeId": "139805138447920"}, {"nodeId": "139805138448592"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138449040"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138447360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138447584": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138448480"}]}}, "139805138448480": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138446016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138447808"}]}}, "139805138447808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138448368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138447920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138448592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138449040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330819104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805150978016"}, {"nodeId": "139805138450608"}, {"nodeId": "139805138449936"}, {"nodeId": "139805138449600"}, {"nodeId": "139805138450496"}, {"nodeId": "139805138450048"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138451056"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805150978016": {"type": "Protocol", "content": {"module": "numpy._typing._ufunc", "simpleName": "_SupportsArrayUFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "inputs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335727776"}, "name": "__array_ufunc__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_ufunc__"]}}, "139805335727776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978016"}, {"nodeId": "139805150579520"}, {"nodeId": "139805138445232"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "139805138445232": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138450608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138450384"}]}}, "139805138450384": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138449936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138449712"}]}}, "139805138449712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138449600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138450496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138450048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138451056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330819552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978368", "args": [{"nodeId": ".1.139805150978368"}, {"nodeId": ".2.139805150978368"}, {"nodeId": ".3.139805150978368"}]}, {"nodeId": "139805150978016"}, {"nodeId": "139805138451392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805138451392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150978720": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100274208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100272416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100274880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100267712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100267936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100268160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100267488"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138444448"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330824032"}, "name": "at"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "where", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330824480"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330824928"}, "name": "accumulate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330825376"}, "name": "reduceat"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138451840"}, "items": [{"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "outer"}}], "typeVars": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150978720": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150978720", "variance": "INVARIANT"}}, ".2.139805150978720": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150978720", "variance": "INVARIANT"}}, ".3.139805150978720": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150978720", "variance": "INVARIANT"}}, "139805100274208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": ".1.139805150978720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100272416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": ".2.139805150978720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100274880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": ".3.139805150978720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100267712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100267936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100268160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100267488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138444448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330823136"}, {"nodeId": "139805330823584"}]}}, "139805330823136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138451504"}, {"nodeId": "139805138451616"}, {"nodeId": "N"}, {"nodeId": "139805138449824"}, {"nodeId": "139805138534464"}, {"nodeId": "139805138534576"}, {"nodeId": "139805138534688"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138535024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138451504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138451616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138449824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138452176"}]}}, "139805138452176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138534464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138534576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138534688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138535024": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330823584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138535696"}, {"nodeId": "139805138536032"}, {"nodeId": "139805138535808"}, {"nodeId": "139805138536368"}, {"nodeId": "139805138535920"}, {"nodeId": "139805138536592"}, {"nodeId": "139805138536816"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138537152"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138535696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138536032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138535808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138535584"}]}}, "139805138535584": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138536368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138535360"}]}}, "139805138535360": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138535920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138536592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138536816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138537152": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330824032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "0"}, {"nodeId": "139805138538384"}, {"nodeId": "139805138538944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805138538384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138538944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805330824480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138538496"}, {"nodeId": "139805138538720"}, {"nodeId": "139805138537824"}, {"nodeId": "139805138538608"}, {"nodeId": "139805481882144"}, {"nodeId": "A"}, {"nodeId": "139805138538832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out", "keepdims", "initial", "where"]}}, "139805138538496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138538720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138537936"}]}}, "139805138537936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138537824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138538608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138538832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805330824928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138539168"}, {"nodeId": "139805276997408"}, {"nodeId": "139805138539280"}, {"nodeId": "139805138540064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "axis", "dtype", "out"]}}, "139805138539168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138539280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138540064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805330825376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138539952"}, {"nodeId": "139805138540624"}, {"nodeId": "139805276997408"}, {"nodeId": "139805138540736"}, {"nodeId": "139805138540176"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "array", "indices", "axis", "dtype", "out"]}}, "139805138539952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138540624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138540736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138540176": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138451840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330825824"}, {"nodeId": "139805330826272"}]}}, "139805330825824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138541520"}, {"nodeId": "139805138541632"}, {"nodeId": "N"}, {"nodeId": "139805138540512"}, {"nodeId": "139805138541744"}, {"nodeId": "139805138541968"}, {"nodeId": "139805138539840"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138541856"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": [null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138541520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138541632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138540512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138542192"}]}}, "139805138542192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138541744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138541968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138539840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138541856": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330826272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150978720", "args": [{"nodeId": ".1.139805150978720"}, {"nodeId": ".2.139805150978720"}, {"nodeId": ".3.139805150978720"}]}, {"nodeId": "139805138542304"}, {"nodeId": "139805138543088"}, {"nodeId": "139805138542752"}, {"nodeId": "139805138543312"}, {"nodeId": "139805138542864"}, {"nodeId": "139805138543536"}, {"nodeId": "139805138543760"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138544096"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": [null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138542304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138543088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138542752": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805138542528"}]}}, "139805138542528": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138543312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138540400"}]}}, "139805138540400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138542864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138543536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138543760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138544096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150979072": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin1_Nout2", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100266816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100266368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100266144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100264800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100264352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100264576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100265024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201008000"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150979072": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150979072", "variance": "INVARIANT"}}, ".2.139805150979072": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150979072", "variance": "INVARIANT"}}, ".3.139805150979072": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150979072", "variance": "INVARIANT"}}, "139805100266816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": ".1.139805150979072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100266368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": ".2.139805150979072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100266144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": ".3.139805150979072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100264800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100264352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100263232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100264576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100265024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201008000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805330832096"}, {"nodeId": "139805330832544"}, {"nodeId": "139805330832992"}]}}, "139805330832096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}, {"nodeId": "139805138545216"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139805138545664"}, {"nodeId": "139805138544768"}, {"nodeId": "139805138544992"}, {"nodeId": "139805138544656"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138545776"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138545216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138545664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138545440"}]}}, "139805138545440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138544768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138544992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138544656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138545776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330832544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}, {"nodeId": "139805138546336"}, {"nodeId": "139805138546672"}, {"nodeId": "139805138547456"}, {"nodeId": "0"}, {"nodeId": "139805138546896"}, {"nodeId": "139805138547568"}, {"nodeId": "139805138547792"}, {"nodeId": "139805138547904"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138548240"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138546336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138546672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138547456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138546896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138547344"}]}}, "139805138547344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138547568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138547792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138547904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138548240": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805330832992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979072", "args": [{"nodeId": ".1.139805150979072"}, {"nodeId": ".2.139805150979072"}, {"nodeId": ".3.139805150979072"}]}, {"nodeId": "139805150978016"}, {"nodeId": "139805138550144"}, {"nodeId": "139805138549696"}, {"nodeId": "0"}, {"nodeId": "139805138549808"}, {"nodeId": "139805138549360"}, {"nodeId": "139805138550032"}, {"nodeId": "139805138550256"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138550592"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138550144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138549696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138549808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138548912"}]}}, "139805138548912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138549360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138550032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138550256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138550592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150979424": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_UFunc_Nin2_Nout2", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100262560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100263008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100262336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100262112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100261888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100261664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100261440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100276000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100276224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100276448"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138544880"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150979424": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150979424", "variance": "INVARIANT"}}, ".2.139805150979424": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150979424", "variance": "INVARIANT"}}, ".3.139805150979424": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150979424", "variance": "INVARIANT"}}, "139805100263680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": ".1.139805150979424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100263456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": ".2.139805150979424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100262560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": ".3.139805150979424"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100263008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100262336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100262112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100261888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100261664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100261440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100276000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100276224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805100276448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138544880": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805331084832"}, {"nodeId": "139805331085280"}]}}, "139805331084832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}, {"nodeId": "139805138584848"}, {"nodeId": "139805138584064"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139805138584176"}, {"nodeId": "139805138584400"}, {"nodeId": "139805138583952"}, {"nodeId": "139805138584960"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138585408"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, null, "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138584848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138584064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805138584176": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138585072"}]}}, "139805138585072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138584400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138583952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138584960": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138585408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805331085280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979424", "args": [{"nodeId": ".1.139805150979424"}, {"nodeId": ".2.139805150979424"}, {"nodeId": ".3.139805150979424"}]}, {"nodeId": "139805138549136"}, {"nodeId": "139805138586640"}, {"nodeId": "139805138586528"}, {"nodeId": "139805138586080"}, {"nodeId": "0"}, {"nodeId": "139805138587088"}, {"nodeId": "139805138587312"}, {"nodeId": "139805138587424"}, {"nodeId": "139805138587536"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138587872"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, null, null, "out", "where", "casting", "order", "dtype", "subok", "signature", "extobj"]}}, "139805138549136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138586640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138586528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138586080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805138587088": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138586416"}]}}, "139805138586416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138587312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138587424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138587536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138587872": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150979776": {"type": "Concrete", "content": {"module": "numpy._typing._ufunc", "simpleName": "_GUFunc_Nin2_Nout1", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100277120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ntypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099917376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099917600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099917824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nout", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduce", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "accumulate", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099918944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reduceat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099919168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "outer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099919392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "at", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805099919616"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805200907424"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}], "bases": [{"nodeId": "139805150579520"}], "isAbstract": false}}, ".1.139805150979776": {"type": "TypeVar", "content": {"varName": "_NameType", "values": [], "upperBound": {"nodeId": "139805276669024"}, "def": "139805150979776", "variance": "INVARIANT"}}, ".2.139805150979776": {"type": "TypeVar", "content": {"varName": "_NTypes", "values": [], "upperBound": {"nodeId": "139805481893056"}, "def": "139805150979776", "variance": "INVARIANT"}}, ".3.139805150979776": {"type": "TypeVar", "content": {"varName": "_IDType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150979776", "variance": "INVARIANT"}}, "139805100277120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": ".1.139805150979776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099917376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": ".2.139805150979776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099917600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": ".3.139805150979776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099917824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099918944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099919168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099919392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805099919616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805200907424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805331091104"}, {"nodeId": "139805331091552"}]}}, "139805331091104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}, {"nodeId": "139805138589664"}, {"nodeId": "139805138588880"}, {"nodeId": "N"}, {"nodeId": "139805138589440"}, {"nodeId": "139805138589328"}, {"nodeId": "139805138589216"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138589776"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "casting", "order", "dtype", "subok", "signature", "extobj", "axes"]}}, "139805138589664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138588880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138589440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138589328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138589216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138589776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805331091552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150979776", "args": [{"nodeId": ".1.139805150979776"}, {"nodeId": ".2.139805150979776"}, {"nodeId": ".3.139805150979776"}]}, {"nodeId": "139805138591904"}, {"nodeId": "139805138591456"}, {"nodeId": "139805138591568"}, {"nodeId": "139805138591120"}, {"nodeId": "139805138591792"}, {"nodeId": "139805138592016"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138592352"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", null, null, "out", "casting", "order", "dtype", "subok", "signature", "extobj", "axes"]}}, "139805138591904": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138591456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138591568": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805138590000"}]}}, "139805138590000": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805138591120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805138591792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805138592016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805138592352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805150981888": {"type": "Concrete", "content": {"module": "numpy.lib.arrayterator", "simpleName": "Arrayterator", "members": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171183824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805125129184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805125128288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buf_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380920480"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805209034336"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380921824"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380922272"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}], "isAbstract": false}}, ".1.139805150981888": {"type": "TypeVar", "content": {"varName": "_Shape", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150981888", "variance": "INVARIANT"}}, ".2.139805150981888": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150981888", "variance": "INVARIANT"}}, "139805171183824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805125129184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805125128288": {"type": "Function", "content": {"typeVars": [".-1.139805125128288"], "argTypes": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805125128288"}]}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".-1.139805125128288"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805125128288": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805125128288", "variance": "INVARIANT"}}, "139805481887072": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444405760"}, "name": "__next__"}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242595744"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263677024"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444686336"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444686784"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "gi_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242595968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242596416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242597088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242597312"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805481887072"}]}], "isAbstract": true}}, ".1.139805481887072": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887072", "variance": "COVARIANT"}}, ".2.139805481887072": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887072", "variance": "CONTRAVARIANT"}}, ".3.139805481887072": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887072", "variance": "COVARIANT"}}, "139805444405760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242595744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, {"nodeId": ".2.139805481887072"}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263677024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444406656"}, {"nodeId": "139805444685888"}]}}, "139805444406656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, {"nodeId": "0"}, {"nodeId": "139805263689792"}, {"nodeId": "139805263689904"}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263689792": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805263689904": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444685888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805263690016"}], "returnType": {"nodeId": ".1.139805481887072"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263690016": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444686336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444686784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805242595968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242596416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242597088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242597312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805481887072"}, {"nodeId": ".2.139805481887072"}, {"nodeId": ".3.139805481887072"}]}], "returnType": {"nodeId": "139805263690464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263690464": {"type": "Union", "content": {"items": [{"nodeId": "139805481887072", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805380920480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805205693488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "var", "buf_size"]}}, "139805205693488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805209034336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805380920928"}, {"nodeId": "139805380921376"}]}}, "139805380920928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150981888"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "dtype"]}}, "139805380921376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805205694832"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dtype"]}}, "139805205694832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805380921824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "139805205694160"}], "returnType": {"nodeId": "139805150981888", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150981888"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805205694160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805154604224"}}}, "139805154604224": {"type": "Union", "content": {"items": [{"nodeId": "139805276675360"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805154603888"}]}]}}, "139805154603888": {"type": "Union", "content": {"items": [{"nodeId": "139805276675360"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805380922272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981888", "args": [{"nodeId": ".1.139805150981888"}, {"nodeId": ".2.139805150981888"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150981888"}]}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805155354656": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_MemMapIOProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805464837504"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473931328"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473931776"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473932224"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805473932672"}, "name": "write"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805117110464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["fileno", "flush", "read", "seek", "tell", "write"]}}, "139805464837504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473931328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805276997408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473931776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805473932224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805473932672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805117110464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805155354656"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150580224": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ModuleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875488"}], "isAbstract": false}}, "139805276875488": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "DeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276874784": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Warning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276677120": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "Exception", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805150580576": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "VisibleDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875136"}], "isAbstract": false}}, "139805276875136": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UserWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805150580928": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ComplexWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276876192"}], "isAbstract": false}}, "139805276876192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805150581280": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875136"}], "isAbstract": false}}, "139805150581632": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "TooHardError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805276681696": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RuntimeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150581984": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "AxisError", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805196524720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201278096"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141876544"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276683456"}, {"nodeId": "139805276865632"}], "isAbstract": false}}, "139805196524720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805201278096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805141876544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805432103424"}, {"nodeId": "139805432103872"}]}}, "139805432103424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150581984"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}}, "139805432103872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150581984"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142009216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "ndim", "msg_prefix"]}}, "139805142009216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805276683456": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ValueError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276865632": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndexError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276680288"}], "isAbstract": false}}, "139805276680288": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "LookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150582336": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "errstate", "members": [{"kind": "Variable", "content": {"name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150582336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150648400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "call", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "divide", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "over", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "under", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "invalid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432104320"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432104768"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432105216"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805150582336"}], "bases": [{"nodeId": "139805267653408"}], "isAbstract": false}}, ".1.139805150582336": {"type": "TypeVar", "content": {"varName": "_CallType", "values": [], "upperBound": {"nodeId": "139805196522816"}, "def": "139805150582336", "variance": "INVARIANT"}}, "139805196522816": {"type": "Union", "content": {"items": [{"nodeId": "139805196525280"}, {"nodeId": "139805155355008", "args": [{"nodeId": "139805276669024"}]}]}}, "139805196525280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805213377248"}}}, "139805213377248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150648400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805432104320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582336", "args": [{"nodeId": ".1.139805150582336"}]}, {"nodeId": ".1.139805150582336"}, {"nodeId": "139805142009440"}, {"nodeId": "139805142009664"}, {"nodeId": "139805142009888"}, {"nodeId": "139805142010112"}, {"nodeId": "139805142010336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "call", "all", "divide", "over", "under", "invalid"]}}, "139805142009440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142009328"}]}}, "139805142009328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805155301792": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142009664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142009552"}]}}, "139805142009552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805142009888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142009776"}]}}, "139805142009776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805142010112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142010000"}]}}, "139805142010000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805142010336": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142010224"}]}}, "139805142010224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155301792"}}}, "139805432104768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582336", "args": [{"nodeId": ".1.139805150582336"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805432105216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582336", "args": [{"nodeId": ".1.139805150582336"}]}, {"nodeId": "139805142010448"}, {"nodeId": "139805142010560"}, {"nodeId": "139805142010672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805142010448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142010560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142010672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805267653408": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360512736"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360512736": {"type": "Function", "content": {"typeVars": [".-1.139805360512736"], "argTypes": [{"nodeId": "139805267653408"}, {"nodeId": ".-1.139805360512736"}], "returnType": {"nodeId": ".-1.139805360512736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805360512736": {"type": "TypeVar", "content": {"varName": "_F", "values": [], "upperBound": {"nodeId": "139805276239040"}, "def": "139805360512736", "variance": "INVARIANT"}}, "139805276239040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805150984000": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndenumerate", "members": [{"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983648", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142007984"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805171835264"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432110592"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805150984000"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150984000": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805150984000", "variance": "INVARIANT"}}, "139805142007984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805432107008"}, {"nodeId": "139805432107456"}, {"nodeId": "139805432107904"}, {"nodeId": "139805432108352"}, {"nodeId": "139805432108800"}, {"nodeId": "139805432109248"}, {"nodeId": "139805432109696"}]}}, "139805432107008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": ".1.139805150984000"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805432107456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011008"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805150579168"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011008": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805276669024"}]}]}}, "139805432107904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011120"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805150578816"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011120": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805276669376"}]}]}}, "139805432108352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011232"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805155357824"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011232": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805481882144"}]}]}}, "139805432108800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011344"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805142011456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011344": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142011456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805432109248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011568"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805142011680"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011568": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805481893408"}]}]}}, "139805142011680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263360"}]}}}, "139805432109696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142011792"}], "returnType": {"nodeId": "139805150984000", "args": [{"nodeId": "139805142011904"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805142011792": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805276667968"}]}]}}, "139805142011904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577408", "args": [{"nodeId": "139805150264368"}, {"nodeId": "139805150265152"}]}}}, "139805171835264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984000", "args": [{"nodeId": ".1.139805150984000"}]}], "returnType": {"nodeId": "139805142012240"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142012240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805142012016"}, {"nodeId": ".1.139805150984000"}]}}, "139805142012016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805432110592": {"type": "Function", "content": {"typeVars": [".-1.139805432110592"], "argTypes": [{"nodeId": ".-1.139805432110592"}], "returnType": {"nodeId": ".-1.139805432110592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805432110592": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805432110592", "variance": "INVARIANT"}}, "139805150582688": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "ndindex", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142009104"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432111936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432112384"}, "name": "__next__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805142009104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805432111040"}, {"nodeId": "139805432111488"}]}}, "139805432111040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582688"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276997408"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805432111488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582688"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "shape"]}}, "139805432111936": {"type": "Function", "content": {"typeVars": [".-1.139805432111936"], "argTypes": [{"nodeId": ".-1.139805432111936"}], "returnType": {"nodeId": ".-1.139805432111936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805432111936": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805432111936", "variance": "INVARIANT"}}, "139805432112384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150582688"}], "returnType": {"nodeId": "139805142012464"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142012464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805150583040": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "DataSource", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "destpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432112832"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432113280"}, "name": "__del__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432113728"}, "name": "abspath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432114176"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432114624"}, "name": "open"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805432112832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805142012576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "destpath"]}}, "139805142012576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}]}}, "139805432113280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805432113728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805432114176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805432114624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583040"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142012688"}, {"nodeId": "139805142012800"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "mode", "encoding", "newline"]}}, "139805142012688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142012800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805277000224": {"type": "Concrete", "content": {"module": "typing", "simpleName": "IO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242960448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242961568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242962464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242963136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fileno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242963808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flush", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242964480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isatty", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242965152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243080768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243081440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readline", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243082336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "readlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243083008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seek", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243083904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seekable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243084800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tell", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243085472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "truncate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243086144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "writable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243086816"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263879008"}, "items": [{"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "write"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263879344"}, "items": [{"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "writelines"}}, {"kind": "Variable", "content": {"name": "__next__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243090176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__iter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243090848"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243091744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243092864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805277000224"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277000224"}]}], "isAbstract": true}}, ".1.139805277000224": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277000224", "variance": "INVARIANT"}}, "139805242960448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242961568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242962464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242963136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242963808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242964480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242965152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243080768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805277000224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805243081440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243082336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805277000224"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805243083008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805277000224"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805243083904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805243084800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243085472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243086144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805263879680"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805263879680": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805243086816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263879008": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452415296"}, {"nodeId": "139805276232992"}, {"nodeId": "139805452416192"}]}}, "139805452415296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276232992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805452416192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": ".1.139805277000224"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263879344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452416640"}, {"nodeId": "139805276231648"}, {"nodeId": "139805452417536"}]}}, "139805452416640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276231648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805452417536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805243090176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": ".1.139805277000224"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243090848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277000224"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805243091744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805243092864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805277000224"}]}, {"nodeId": "139805263880016"}, {"nodeId": "139805263880128"}, {"nodeId": "139805263880240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805263880016": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805263880128": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805263880240": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805150583392": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "broadcast", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432115072"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108525696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iters", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108526368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108526592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108526816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "numiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108527040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108527264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108527488"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805432118656"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427171392"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427171840"}, "name": "reset"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805432115072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142013024"}], "returnType": {"nodeId": "139805150583392"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139805142013024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805108525696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108526368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805150983648", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108526592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108526816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108527040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108527264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805142012352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142012352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}}}, "139805108527488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805432118656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427171392": {"type": "Function", "content": {"typeVars": [".-1.139805427171392"], "argTypes": [{"nodeId": ".-1.139805427171392"}], "returnType": {"nodeId": ".-1.139805427171392"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805427171392": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805427171392", "variance": "INVARIANT"}}, "139805427171840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150583744": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "busdaycalendar", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weekmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "holidays", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427172288"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "weekmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108528160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "holidays", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108525024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805427172288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142013472"}, {"nodeId": "139805142013696"}], "returnType": {"nodeId": "139805150583744"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "weekmask", "holidays"]}}, "139805142013472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142013696": {"type": "Union", "content": {"items": [{"nodeId": "139805142013584"}, {"nodeId": "139805167798752"}, {"nodeId": "139805167797344", "args": [{"nodeId": "139805167798752"}]}]}}, "139805142013584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805167798752": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "date", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356011616"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162990144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "today", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162991488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromordinal", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162991712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162991936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromisocalendar", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162992608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805162992160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "month", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805162992832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "day", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805162993056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360210208"}, "name": "ctime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360211104"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360211552"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360212000"}, "name": "isoformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360212448"}, "name": "timetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360212896"}, "name": "toordinal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360213344"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360213792"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360214240"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360214688"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360215136"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360215584"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360216032"}, "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162873104"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360220064"}, "name": "weekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360220512"}, "name": "isoweekday"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360220960"}, "name": "isocalendar"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805356011616": {"type": "Function", "content": {"typeVars": [".0.139805356011616"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805356011616"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "month", "day"]}}, ".0.139805356011616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805356011616", "variance": "INVARIANT"}}, "139805162990144": {"type": "Function", "content": {"typeVars": [".0.139805162990144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".0.139805162990144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805162990144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162990144", "variance": "INVARIANT"}}, "139805162991488": {"type": "Function", "content": {"typeVars": [".0.139805162991488"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805162991488"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805162991488": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162991488", "variance": "INVARIANT"}}, "139805162991712": {"type": "Function", "content": {"typeVars": [".0.139805162991712"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805162991712"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805162991712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162991712", "variance": "INVARIANT"}}, "139805162991936": {"type": "Function", "content": {"typeVars": [".0.139805162991936"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805162991936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805162991936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162991936", "variance": "INVARIANT"}}, "139805162992608": {"type": "Function", "content": {"typeVars": [".0.139805162992608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805162992608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "year", "week", "day"]}}, ".0.139805162992608": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805162992608", "variance": "INVARIANT"}}, "139805162992160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162992832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162993056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360210208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360211104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360211552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360212000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360212448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805162874784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162874784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184099712"}}}, "139805184099712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805360212896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360213344": {"type": "Function", "content": {"typeVars": [".0.139805360213344"], "argTypes": [{"nodeId": ".0.139805360213344"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": ".0.139805360213344"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "year", "month", "day"]}}, ".0.139805360213344": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360213344", "variance": "INVARIANT"}}, "139805360213792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360214240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360214688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360215136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360215584": {"type": "Function", "content": {"typeVars": [".0.139805360215584"], "argTypes": [{"nodeId": ".0.139805360215584"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360215584"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360215584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360215584", "variance": "INVARIANT"}}, "139805360216032": {"type": "Function", "content": {"typeVars": [".0.139805360216032"], "argTypes": [{"nodeId": ".0.139805360216032"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360216032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360216032": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360216032", "variance": "INVARIANT"}}, "139805162873104": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360216480"}, {"nodeId": "139805360216928"}, {"nodeId": "139805360217376"}]}}, "139805360216480": {"type": "Function", "content": {"typeVars": [".0.139805360216480"], "argTypes": [{"nodeId": ".0.139805360216480"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360216480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360216480": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360216480", "variance": "INVARIANT"}}, "139805360216928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167799808": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "datetime", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360750176"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163307520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163308416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163308640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163308864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163309088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163309312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163309984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcfromtimestamp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163310432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "now", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163312000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcnow", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163311552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "combine", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163312224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360609696"}, "name": "timestamp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360610144"}, "name": "utctimetuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360610592"}, "name": "date"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360611040"}, "name": "time"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360611488"}, "name": "timetz"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "year", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "month", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "day", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360611936"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tz", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360612384"}, "name": "astimezone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360613280"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "strptime", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163314016"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360614176"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360614624"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360615072"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360615520"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360615968"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360616416"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360616864"}, "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805162875792"}, "items": [{"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__sub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__sub__"}}], "typeVars": [], "bases": [{"nodeId": "139805167798752"}], "isAbstract": false}}, "139805360750176": {"type": "Function", "content": {"typeVars": [".0.139805360750176"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162876240"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360750176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "139805162876240": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805167797696": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "tzinfo", "members": [{"kind": "Variable", "content": {"name": "tzname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162985664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utcoffset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162986112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dst", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805162986336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356009376"}, "name": "fromutc"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805162985664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805162873328"}], "returnType": {"nodeId": "139805162873440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162873328": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805162873440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805162986112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805162873552"}], "returnType": {"nodeId": "139805162873664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162873552": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805162873664": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805162986336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805162873776"}], "returnType": {"nodeId": "139805162873888"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162873776": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805162873888": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805356009376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167797696"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167799808"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".0.139805360750176": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360750176", "variance": "INVARIANT"}}, "139805163307520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163308416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163308640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163308864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163309088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162876352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162876352": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805163309312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163309984": {"type": "Function", "content": {"typeVars": [".0.139805163309984"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}, {"nodeId": "139805162876464"}], "returnType": {"nodeId": ".0.139805163309984"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", null, "tz"]}}, "139805162876464": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805163309984": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163309984", "variance": "INVARIANT"}}, "139805163310432": {"type": "Function", "content": {"typeVars": [".0.139805163310432"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".0.139805163310432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805163310432": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163310432", "variance": "INVARIANT"}}, "139805163312000": {"type": "Function", "content": {"typeVars": [".0.139805163312000"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805162876576"}], "returnType": {"nodeId": ".0.139805163312000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "tz"]}}, "139805162876576": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805163312000": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163312000", "variance": "INVARIANT"}}, "139805163311552": {"type": "Function", "content": {"typeVars": [".0.139805163311552"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805163311552"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805163311552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163311552", "variance": "INVARIANT"}}, "139805163312224": {"type": "Function", "content": {"typeVars": [".0.139805163312224"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805167798752"}, {"nodeId": "139805167799104"}, {"nodeId": "139805162876688"}], "returnType": {"nodeId": ".0.139805163312224"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "date", "time", "tzinfo"]}}, "139805167799104": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "time", "members": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167799456"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360221856"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163193056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163198432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "second", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163198880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163199104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163199328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163199552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360224992"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360225440"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360225888"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360734496"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timespec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360734944"}, "name": "isoformat"}}, {"kind": "Variable", "content": {"name": "fromisoformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163199776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360736288"}, "name": "strftime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360736736"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360737184"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360737632"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360738080"}, "name": "dst"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "minute", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "microsecond", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tzinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360738528"}, "name": "replace"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360221856": {"type": "Function", "content": {"typeVars": [".0.139805360221856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162875120"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360221856"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, "139805162875120": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805360221856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799104"}, "def": "139805360221856", "variance": "INVARIANT"}}, "139805163193056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163198432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163198880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163199104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163199328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875232"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875232": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805163199552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360224992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360225440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360225888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360734496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360734944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timespec"]}}, "139805163199776": {"type": "Function", "content": {"typeVars": [".0.139805163199776"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805163199776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805163199776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799104"}, "def": "139805163199776", "variance": "INVARIANT"}}, "139805360736288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360736736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805360737184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875344"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875344": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360737632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875456"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875456": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805360738080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799104"}], "returnType": {"nodeId": "139805162875568"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875568": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360738528": {"type": "Function", "content": {"typeVars": [".0.139805360738528"], "argTypes": [{"nodeId": ".0.139805360738528"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162875680"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360738528"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.139805360738528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799104"}, "def": "139805360738528", "variance": "INVARIANT"}}, "139805162875680": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805162876688": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, ".0.139805163312224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163312224", "variance": "INVARIANT"}}, "139805360609696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360610144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162876800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162876800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184099712"}}}, "139805360610592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167798752"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360611040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167799104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360611488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805167799104"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360611936": {"type": "Function", "content": {"typeVars": [".0.139805360611936"], "argTypes": [{"nodeId": ".0.139805360611936"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805162876912"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805360611936"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "year", "month", "day", "hour", "minute", "second", "microsecond", "tzinfo", "fold"]}}, ".0.139805360611936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360611936", "variance": "INVARIANT"}}, "139805162876912": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805360612384": {"type": "Function", "content": {"typeVars": [".0.139805360612384"], "argTypes": [{"nodeId": ".0.139805360612384"}, {"nodeId": "139805162877024"}], "returnType": {"nodeId": ".0.139805360612384"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tz"]}}, ".0.139805360612384": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360612384", "variance": "INVARIANT"}}, "139805162877024": {"type": "Union", "content": {"items": [{"nodeId": "139805167797696"}, {"nodeId": "N"}]}}, "139805360613280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "timespec"]}}, "139805163314016": {"type": "Function", "content": {"typeVars": [".0.139805163314016"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805163314016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", null, null]}}, ".0.139805163314016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805163314016", "variance": "INVARIANT"}}, "139805360614176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162877136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162877136": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360614624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162877248"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162877248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805360615072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805162877360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162877360": {"type": "Union", "content": {"items": [{"nodeId": "139805167799456"}, {"nodeId": "N"}]}}, "139805360615520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360615968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360616416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805360616864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167799808"}, {"nodeId": "139805167799808"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805162875792": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805360617312"}, {"nodeId": "139805360617760"}]}}, "139805360617312": {"type": "Function", "content": {"typeVars": [".0.139805360617312"], "argTypes": [{"nodeId": ".0.139805360617312"}, {"nodeId": "139805167799456"}], "returnType": {"nodeId": ".0.139805360617312"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805360617312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167799808"}, "def": "139805360617312", "variance": "INVARIANT"}}, "139805360617760": {"type": "Function", "content": {"typeVars": [".-1.139805360617760"], "argTypes": [{"nodeId": ".-1.139805360617760"}, {"nodeId": ".-1.139805360617760"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805360617760": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360617760", "variance": "INVARIANT"}}, "139805360217376": {"type": "Function", "content": {"typeVars": [".-1.139805360217376"], "argTypes": [{"nodeId": ".-1.139805360217376"}, {"nodeId": ".-1.139805360217376"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805360217376": {"type": "TypeVar", "content": {"varName": "_D", "values": [], "upperBound": {"nodeId": "139805167798752"}, "def": "139805360217376", "variance": "INVARIANT"}}, "139805360220064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360220512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805360220960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798752"}], "returnType": {"nodeId": "139805162875008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805162875008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805162871536"}}}, "139805162871536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805108528160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108525024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150583744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150984352": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "finfo", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150984352"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "eps", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsneg", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "negep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nmant", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "precision", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "smallest_subnormal", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805150984352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "smallest_normal", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108529952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tiny", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108531072"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142010784"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139805150984352"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150984352": {"type": "TypeVar", "content": {"varName": "_FloatType", "values": [], "upperBound": {"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}, "def": "139805150984352", "variance": "INVARIANT"}}, "139805108529952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984352", "args": [{"nodeId": ".1.139805150984352"}]}], "returnType": {"nodeId": ".1.139805150984352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108531072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984352", "args": [{"nodeId": ".1.139805150984352"}]}], "returnType": {"nodeId": ".1.139805150984352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142010784": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427174528"}, {"nodeId": "139805427174976"}, {"nodeId": "139805427175424"}]}}, "139805427174528": {"type": "Function", "content": {"typeVars": [".-1.139805427174528"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142014256"}], "returnType": {"nodeId": "139805150984352", "args": [{"nodeId": "139805150577056", "args": [{"nodeId": ".-1.139805427174528"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142014256": {"type": "Union", "content": {"items": [{"nodeId": "139805150576704", "args": [{"nodeId": ".-1.139805427174528"}]}, {"nodeId": "0"}]}}, ".-1.139805427174528": {"type": "TypeVar", "content": {"varName": "_NBit1", "values": [], "upperBound": {"nodeId": "139805154855744"}, "def": "139805427174528", "variance": "INVARIANT"}}, "139805427174976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142014368"}], "returnType": {"nodeId": "139805150984352", "args": [{"nodeId": "139805142014480"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142014368": {"type": "Union", "content": {"items": [{"nodeId": "139805276667968"}, {"nodeId": "139805481893408"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142014480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805150263360"}]}}}, "139805427175424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150984352", "args": [{"nodeId": "139805150577056", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805150584096": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "iinfo", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983296", "args": [{"nodeId": ".1.139805150584096"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108531744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108532192"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142013808"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139805150584096"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805150584096": {"type": "TypeVar", "content": {"varName": "_IntType", "values": [], "upperBound": {"nodeId": "139805155359232", "args": [{"nodeId": "A"}]}, "def": "139805150584096", "variance": "INVARIANT"}}, "139805108531744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584096", "args": [{"nodeId": ".1.139805150584096"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108532192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584096", "args": [{"nodeId": ".1.139805150584096"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142013808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427176768"}, {"nodeId": "139805427177216"}, {"nodeId": "139805427177664"}]}}, "139805427176768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142014928"}], "returnType": {"nodeId": "139805150584096", "args": [{"nodeId": ".1.139805150584096"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142014928": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805150584096"}, {"nodeId": "0"}]}}, "139805427177216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142015040"}], "returnType": {"nodeId": "139805150584096", "args": [{"nodeId": "139805142015152"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805142015040": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "0"}]}}, "139805142015152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805427177664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150584096", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "dtype"]}}, "139805150584448": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "format_parser", "members": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427178112"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805427178112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584448"}, {"nodeId": "139805142015376"}, {"nodeId": "139805142015488"}, {"nodeId": "139805142015600"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142015824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "formats", "names", "titles", "aligned", "byteorder"]}}, "139805142015376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142015488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142015600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142015824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142015712"}]}}, "139805142015712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805150584800": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "recarray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142014032"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427179456"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427179904"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427180352"}, "name": "__setattr__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142016832"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142019072"}, "items": [{"kind": "Variable", "content": {"name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "field", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "field"}}], "typeVars": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}], "isAbstract": false}}, ".1.139805150584800": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150584800", "variance": "INVARIANT"}}, ".2.139805150584800": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150584800", "variance": "COVARIANT"}}, "139805142014032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427178560"}, {"nodeId": "139805427179008"}]}}, "139805427178560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142016720"}, {"nodeId": "N"}, {"nodeId": "139805142016048"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142016272"}, {"nodeId": "139805142017056"}, {"nodeId": "139805142016160"}, {"nodeId": "139805142016384"}, {"nodeId": "139805142016944"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142016496"}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150585152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["subtype", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "order"]}}, "139805142016720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142016048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142017280"}]}}, "139805142017280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142016272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142016608"}]}}, "139805142016608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142017056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142016160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142016384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805142016944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142015936"}]}}, "139805142015936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150253616"}}}, "139805142016496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805150585152": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "record", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427183936"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427184384"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427184832"}, "name": "pprint"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142020752"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805150578112"}], "isAbstract": false}}, "139805427183936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427184384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142020640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805142020640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427184832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142020752": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427185280"}, {"nodeId": "139805427185728"}]}}, "139805427185280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805142021424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142021424": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276997408"}]}}, "139805427185728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585152"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150585152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427179008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142017616"}, {"nodeId": "139805142017728"}, {"nodeId": "139805142014704"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142017840"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805142017504"}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "order"]}}, "139805142017616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142017728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142014704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142018064"}]}}, "139805142018064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142017840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142017392"}]}}, "139805142017392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142017504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427179456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805427179904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427180352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805142018400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805142018400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142016832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427180800"}, {"nodeId": "139805171826976"}, {"nodeId": "139805427181696"}, {"nodeId": "139805427182144"}, {"nodeId": "139805427182592"}]}}, "139805427180800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142017952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142017952": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142018736"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142019632"}]}]}}, "139805142018736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142019632": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142018176"}]}}, "139805142018176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805171826976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}]}, {"nodeId": "139805142019744"}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150584800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142019744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142018512"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142019184"}]}]}}, "139805142018512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142019184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805142019856"}, {"nodeId": "139805276997408"}]}}, "139805142019856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427181696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142020416"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150584800"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142020416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142020304"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142020080"}]}]}}, "139805142020304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142020080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805142018960"}, {"nodeId": "139805276997408"}]}}, "139805142018960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427182144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427182592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150585152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142019072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427183040"}, {"nodeId": "139805427183488"}]}}, "139805427183040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142020976"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "attr", "val"]}}, "139805142020976": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805427183488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150584800", "args": [{"nodeId": ".1.139805150584800"}, {"nodeId": ".2.139805150584800"}]}, {"nodeId": "139805142021200"}, {"nodeId": "139805142021312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805142021200": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805142021312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150585504": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "nditer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_dtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "casting", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "op_axes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "itershape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffersize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427186176"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427186624"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427187072"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427368000"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427368448"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427368896"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427369344"}, "name": "__copy__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142021648"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427370688"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427371136"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427371584"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427372032"}, "name": "debug_print"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427372480"}, "name": "enable_external_loop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427372928"}, "name": "iternext"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427373376"}, "name": "remove_axis"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427373824"}, "name": "remove_multi_index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427374272"}, "name": "reset"}}, {"kind": "Variable", "content": {"name": "dtypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finished", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_delayed_bufalloc", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108718944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterationneedsapi", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108719840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterrange", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itersize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "itviews", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "multi_index", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndim", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108720960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operands", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108721856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805427186176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142022208"}, {"nodeId": "139805142022432"}, {"nodeId": "139805142022656"}, {"nodeId": "139805142022992"}, {"nodeId": "139805142023104"}, {"nodeId": "139805142023216"}, {"nodeId": "139805142023328"}, {"nodeId": "139805142023552"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "op", "flags", "op_flags", "op_dtypes", "order", "casting", "op_axes", "itershape", "buffersize"]}}, "139805142022208": {"type": "Union", "content": {"items": [{"nodeId": "139805142021984"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805142022096"}]}]}}, "139805142021984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142022096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142022432": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805142022320"}]}]}}, "139805142022320": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150652544"}}}, "139805150652544": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142022656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805142022544"}]}]}]}}, "139805142022544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654448"}}}, "139805150654448": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142022992": {"type": "Union", "content": {"items": [{"nodeId": "139805142022768"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805142022880"}]}]}}, "139805142022768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142022880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142023104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805142023216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150258432"}}}, "139805142023328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276997408"}]}]}]}}, "139805142023552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142023440"}]}}, "139805142023440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427186624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427187072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805142021760"}, {"nodeId": "139805142023776"}, {"nodeId": "139805142023888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805142021760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142023776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142023888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805427368000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427368448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427368896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427369344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142021648": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427369792"}, {"nodeId": "139805427370240"}]}}, "139805427369792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427370240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427370688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805142139616"}, {"nodeId": "139805142139728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805142139616": {"type": "Union", "content": {"items": [{"nodeId": "139805276670432"}, {"nodeId": "139805276997408"}]}}, "139805142139728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427371136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427371584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805150585504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427372032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427372480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427372928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427373376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}, {"nodeId": "139805276997408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427373824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427374272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108718944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108719840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108720960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108721856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585504"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150585856": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "memmap", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201135680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805141777568"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427383680"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427499072"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427499520"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}], "isAbstract": false}}, ".1.139805150585856": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150585856", "variance": "INVARIANT"}}, ".2.139805150585856": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150585856", "variance": "COVARIANT"}}, "139805201135680": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805141777568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427382336"}, {"nodeId": "139805427382784"}, {"nodeId": "139805427383232"}]}}, "139805427382336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142140736"}, {"nodeId": "0"}, {"nodeId": "139805142140848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142140960"}, {"nodeId": "139805142141072"}], "returnType": {"nodeId": "139805150585856", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142141296"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "139805142140736": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354656"}]}}, "139805142140848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654784"}}}, "139805150654784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805142140960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142141072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805142141296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805427382784": {"type": "Function", "content": {"typeVars": [".-1.139805427382784"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142141408"}, {"nodeId": "0"}, {"nodeId": "139805142141632"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142141744"}, {"nodeId": "139805142141856"}], "returnType": {"nodeId": "139805150585856", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": ".-1.139805427382784"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "139805142141408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354656"}]}}, "139805142141632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654784"}}}, "139805142141744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142141856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, ".-1.139805427382784": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805427382784", "variance": "INVARIANT"}}, "139805427383232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142142080"}, {"nodeId": "139805142142192"}, {"nodeId": "139805142142304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142142416"}, {"nodeId": "139805142142528"}], "returnType": {"nodeId": "139805150585856", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "filename", "dtype", "mode", "offset", "shape", "order"]}}, "139805142142080": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805155354656"}]}}, "139805142142192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142142304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150654784"}}}, "139805142142416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}]}}, "139805142142528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427383680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805427499072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}, {"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}, {"nodeId": "139805142142976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "array", "context"]}}, "139805142142976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142144208"}]}}, "139805142144208": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805427499520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150585856", "args": [{"nodeId": ".1.139805150585856"}, {"nodeId": ".2.139805150585856"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150586208": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "vectorize", "members": [{"kind": "Variable", "content": {"name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163617664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201132992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805201133216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003040", "args": [{"nodeId": "139805150655008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150650080"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pyfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "otypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excluded", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cache", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "signature", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427499968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427500416"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163617664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805201132992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805201133216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805150655008": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805150650080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805427499968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586208"}, {"nodeId": "139805171717216"}, {"nodeId": "139805142143312"}, {"nodeId": "139805142142864"}, {"nodeId": "139805142143424"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142144096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pyfunc", "otypes", "doc", "excluded", "cache", "signature"]}}, "139805171717216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805142143312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805142143984"}]}]}}, "139805142143984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805142142864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142143424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805142143872"}]}]}}, "139805142143872": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805142144096": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805427500416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586208"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805150586560": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "poly1d", "members": [{"kind": "Variable", "content": {"name": "variable", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108726336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "order", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108726784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "o", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "roots", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "r", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727456"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142139840"}, "items": [{"kind": "Variable", "content": {"name": "coeffs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coeffs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coeffs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142145216"}, "items": [{"kind": "Variable", "content": {"name": "c", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108727904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "c", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "c"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142144544"}, "items": [{"kind": "Variable", "content": {"name": "coef", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108728128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coef"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142145552"}, "items": [{"kind": "Variable", "content": {"name": "coefficients", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805108728352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coefficients", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "coefficients"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142146224"}, "items": [{"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__array__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__array__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142146784"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "c_or_r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "r", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "variable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427508928"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427509376"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427509824"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427510272"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427510720"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427511168"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427511616"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427512064"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427512512"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427512960"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427513408"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427513856"}, "name": "__div__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427514304"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427514752"}, "name": "__rdiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427646528"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427646976"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427647424"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427647872"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427648320"}, "name": "deriv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427648768"}, "name": "integ"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805108726336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108726784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142139840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427503104"}]}}, "139805427503104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142145216": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427504000"}]}}, "139805427504000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108727904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142144544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427504896"}]}}, "139805427504896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108728128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142145552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427505792"}]}}, "139805427505792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805108728352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142146224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427506688"}, {"nodeId": "139805427507136"}]}}, "139805427506688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "t"]}}, "139805427507136": {"type": "Function", "content": {"typeVars": [".-1.139805427507136"], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": ".-1.139805427507136"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805427507136"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "t"]}}, ".-1.139805427507136": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805427507136", "variance": "INVARIANT"}}, "139805142146784": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427507584"}, {"nodeId": "139805427508032"}, {"nodeId": "139805427508480"}]}}, "139805427507584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142147904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "139805142147904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387120"}}}, "139805427508032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "139805427508480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148128"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "val"]}}, "139805142148128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427508928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148576"}, {"nodeId": "139805481882144"}, {"nodeId": "139805142147792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "c_or_r", "r", "variable"]}}, "139805142148576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142147792": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805427509376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427509824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427510272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427510720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148800"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142148800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427511168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148912"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142148912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427511616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149024"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427512064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149136"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427512512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149248"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159387008"}}}, "139805427512960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142148464"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142148464": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427513408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149472"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427513856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149584"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805142149584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427514304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149696"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427514752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149808"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427646528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142149920"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142149920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427646976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427647424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805427647872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805427648320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142150256"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, "139805142150256": {"type": "Union", "content": {"items": [{"nodeId": "139805276996000"}, {"nodeId": "139805276997408"}]}}, "139805427648768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586560"}, {"nodeId": "139805142150368"}, {"nodeId": "139805142150704"}], "returnType": {"nodeId": "139805150586560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k"]}}, "139805142150368": {"type": "Union", "content": {"items": [{"nodeId": "139805276996000"}, {"nodeId": "139805276997408"}]}}, "139805142150704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142150480"}, {"nodeId": "139805142150592"}]}}, "139805142150480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142150592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805175559920"}}}, "139805150586912": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "matrix", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "subtype", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427649216"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427649664"}, "name": "__array_finalize__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142147344"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427651904"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427652352"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427652800"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427653248"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427653696"}, "name": "__ipow__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142151600"}, "items": [{"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sum", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sum"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142153280"}, "items": [{"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mean"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142024000"}, "items": [{"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "std", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "std"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142255088"}, "items": [{"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "var", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "var"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142256208"}, "items": [{"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "prod", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "prod"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142257328"}, "items": [{"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "any", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "any"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142258448"}, "items": [{"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "all"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142256656"}, "items": [{"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "max"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142259568"}, "items": [{"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "min"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142259456"}, "items": [{"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmax", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmax"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142260016"}, "items": [{"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "argmin"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142260688"}, "items": [{"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ptp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ptp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427834368"}, "name": "squeeze"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427834816"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427835264"}, "name": "ravel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427835712"}, "name": "flatten"}}, {"kind": "Variable", "content": {"name": "T", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096357312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096357536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "A", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096358656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "A1", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096358208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "H", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096359104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427838400"}, "name": "getT"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427838848"}, "name": "getI"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427839296"}, "name": "getA"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427839744"}, "name": "getA1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427840192"}, "name": "getH"}}], "typeVars": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "isAbstract": false}}, ".1.139805150586912": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150586912", "variance": "INVARIANT"}}, ".2.139805150586912": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150586912", "variance": "COVARIANT"}}, "139805427649216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142151040"}, {"nodeId": "139805142148688"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "data", "dtype", "copy"]}}, "139805142151040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142148688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427649664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805142147344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427650112"}, {"nodeId": "139805427650560"}, {"nodeId": "139805427651008"}, {"nodeId": "139805427651456"}]}}, "139805427650112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142151936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142151936": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142152048"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142152160"}]}]}}, "139805142152048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142152160": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805142152608"}]}}, "139805142152608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427650560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142150928"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142150928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142151712"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805142152384"}]}]}}, "139805142151712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142152384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276670432"}, {"nodeId": "139805276675360"}, {"nodeId": "139805142151376"}, {"nodeId": "139805276997408"}]}}, "139805142151376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427651008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427651456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578112"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805427651904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142152944"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142152944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427652352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142153392"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142153392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427652800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142153728"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142153728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427653248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142153840"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142153840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427653696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142154176"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142154176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142151600": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427654144"}, {"nodeId": "139805427654592"}, {"nodeId": "139805427655040"}]}}, "139805427654144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142154064"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142154064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427654592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142154512"}, {"nodeId": "139805142154624"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142154512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142154624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427655040": {"type": "Function", "content": {"typeVars": [".-1.139805427655040"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142154288"}, {"nodeId": "139805142254192"}, {"nodeId": ".-1.139805427655040"}], "returnType": {"nodeId": ".-1.139805427655040"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142154288": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142155072"}]}}, "139805142155072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142254192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427655040": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427655040", "variance": "INVARIANT"}}, "139805142153280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427655488"}, {"nodeId": "139805427655936"}, {"nodeId": "139805427656384"}]}}, "139805427655488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142254304"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142254304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427655936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142253856"}, {"nodeId": "139805142254976"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142253856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142254976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427656384": {"type": "Function", "content": {"typeVars": [".-1.139805427656384"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142254528"}, {"nodeId": "139805142253744"}, {"nodeId": ".-1.139805427656384"}], "returnType": {"nodeId": ".-1.139805427656384"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142254528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142255312"}]}}, "139805142255312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142253744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427656384": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427656384", "variance": "INVARIANT"}}, "139805142024000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427656832"}, {"nodeId": "139805427657280"}, {"nodeId": "139805427657728"}]}}, "139805427656832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142254864"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142254864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427657280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142254080"}, {"nodeId": "139805142256096"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142254080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142256096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427657728": {"type": "Function", "content": {"typeVars": [".-1.139805427657728"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142255648"}, {"nodeId": "139805142254752"}, {"nodeId": ".-1.139805427657728"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".-1.139805427657728"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142255648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142256432"}]}}, "139805142256432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142254752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427657728": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427657728", "variance": "INVARIANT"}}, "139805142255088": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427658176"}, {"nodeId": "139805427658624"}, {"nodeId": "139805427659072"}]}}, "139805427658176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142255984"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142255984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427658624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142254416"}, {"nodeId": "139805142257216"}, {"nodeId": "N"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142254416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142257216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427659072": {"type": "Function", "content": {"typeVars": [".-1.139805427659072"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142256768"}, {"nodeId": "139805142255872"}, {"nodeId": ".-1.139805427659072"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": ".-1.139805427659072"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof"]}}, "139805142256768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142257552"}]}}, "139805142257552": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142255872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427659072": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427659072", "variance": "INVARIANT"}}, "139805142256208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427659520"}, {"nodeId": "139805427659968"}, {"nodeId": "139805427660416"}]}}, "139805427659520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "139805142257104"}, {"nodeId": "N"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142257104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427659968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142255536"}, {"nodeId": "139805142258336"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142255536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142258336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805427660416": {"type": "Function", "content": {"typeVars": [".-1.139805427660416"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142257888"}, {"nodeId": "139805142256992"}, {"nodeId": ".-1.139805427660416"}], "returnType": {"nodeId": ".-1.139805427660416"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805142257888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142258672"}]}}, "139805142258672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142256992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, ".-1.139805427660416": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427660416", "variance": "INVARIANT"}}, "139805142257328": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427660864"}, {"nodeId": "139805427661312"}, {"nodeId": "139805427661760"}]}}, "139805427660864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805427661312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142258224"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142258224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427661760": {"type": "Function", "content": {"typeVars": [".-1.139805427661760"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142258000"}, {"nodeId": ".-1.139805427661760"}], "returnType": {"nodeId": ".-1.139805427661760"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142258000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142259008"}]}}, "139805142259008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427661760": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427661760", "variance": "INVARIANT"}}, "139805142258448": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427662208"}, {"nodeId": "139805427826752"}, {"nodeId": "139805427827200"}]}}, "139805427662208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155357824"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805427826752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142258112"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142258112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427827200": {"type": "Function", "content": {"typeVars": [".-1.139805427827200"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142257776"}, {"nodeId": ".-1.139805427827200"}], "returnType": {"nodeId": ".-1.139805427827200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142257776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142259232"}]}}, "139805142259232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427827200": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427827200", "variance": "INVARIANT"}}, "139805142256656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171523520"}, {"nodeId": "139805427828096"}, {"nodeId": "139805427828544"}]}}, "139805171523520": {"type": "Function", "content": {"typeVars": [".-1.139805171523520"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805171523520"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.139805171523520": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805171523520", "variance": "INVARIANT"}}, "139805427828096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142259344"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142259344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427828544": {"type": "Function", "content": {"typeVars": [".-1.139805427828544"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142259904"}, {"nodeId": ".-1.139805427828544"}], "returnType": {"nodeId": ".-1.139805427828544"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142259904": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142259680"}]}}, "139805142259680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427828544": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427828544", "variance": "INVARIANT"}}, "139805142259568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171521952"}, {"nodeId": "139805427829440"}, {"nodeId": "139805427829888"}]}}, "139805171521952": {"type": "Function", "content": {"typeVars": [".-1.139805171521952"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805171521952"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.139805171521952": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805171521952", "variance": "INVARIANT"}}, "139805427829440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142260240"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142260240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427829888": {"type": "Function", "content": {"typeVars": [".-1.139805427829888"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142260576"}, {"nodeId": ".-1.139805427829888"}], "returnType": {"nodeId": ".-1.139805427829888"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142260576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142260464"}]}}, "139805142260464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427829888": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427829888", "variance": "INVARIANT"}}, "139805142259456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171521280"}, {"nodeId": "139805427830784"}, {"nodeId": "139805427831232"}]}}, "139805171521280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805142260912"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142260912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427830784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142261024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142261248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142261248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427831232": {"type": "Function", "content": {"typeVars": [".-1.139805427831232"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142261472"}, {"nodeId": ".-1.139805427831232"}], "returnType": {"nodeId": ".-1.139805427831232"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261472": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142261360"}]}}, "139805142261360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427831232": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427831232", "variance": "INVARIANT"}}, "139805142260016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171519488"}, {"nodeId": "139805427832128"}, {"nodeId": "139805427832576"}]}}, "139805171519488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805142261808"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427832128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142261920"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142262144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142261920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142262144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150260896"}]}}}, "139805427832576": {"type": "Function", "content": {"typeVars": [".-1.139805427832576"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142262368"}, {"nodeId": ".-1.139805427832576"}], "returnType": {"nodeId": ".-1.139805427832576"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142262368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142262256"}]}}, "139805142262256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427832576": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427832576", "variance": "INVARIANT"}}, "139805142260688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171519264"}, {"nodeId": "139805427833472"}, {"nodeId": "139805427833920"}]}}, "139805171519264": {"type": "Function", "content": {"typeVars": [".-1.139805171519264"], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805171519264"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, ".-1.139805171519264": {"type": "TypeVar", "content": {"varName": "_ScalarType", "values": [], "upperBound": {"nodeId": "139805155357120"}, "def": "139805171519264", "variance": "INVARIANT"}}, "139805427833472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142262704"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142262704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427833920": {"type": "Function", "content": {"typeVars": [".-1.139805427833920"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263040"}, {"nodeId": ".-1.139805427833920"}], "returnType": {"nodeId": ".-1.139805427833920"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out"]}}, "139805142263040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142262928"}]}}, "139805142262928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, ".-1.139805427833920": {"type": "TypeVar", "content": {"varName": "_NdArraySubClass", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805427833920", "variance": "INVARIANT"}}, "139805427834368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263264"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "axis"]}}, "139805142263264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142263152"}]}}, "139805142263152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805427834816": {"type": "Function", "content": {"typeVars": [".-1.139805427834816"], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155355712", "args": [{"nodeId": ".-1.139805427834816"}]}]}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805427834816"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805427834816": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805427834816", "variance": "INVARIANT"}}, "139805427835264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263600"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805142263600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427835712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, {"nodeId": "139805142263824"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805142263824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805096357312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096357536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096358656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096358208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096359104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427838400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427838848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427839296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427839744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805427840192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150586912", "args": [{"nodeId": ".1.139805150586912"}, {"nodeId": ".2.139805150586912"}]}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150586912"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150587264": {"type": "Concrete", "content": {"module": "numpy", "simpleName": "chararray", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142261584"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427841536"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427841984"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805427842432"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805428006976"}, "name": "__mod__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142262480"}, "items": [{"kind": "Variable", "content": {"name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__eq__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__eq__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142267408"}, "items": [{"kind": "Variable", "content": {"name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ne__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ne__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142267072"}, "items": [{"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ge__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ge__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142268304"}, "items": [{"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__le__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__le__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142154960"}, "items": [{"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__gt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__gt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142351936"}, "items": [{"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lt__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__lt__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142352720"}, "items": [{"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__add__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__add__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142353504"}, "items": [{"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__radd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__radd__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142354288"}, "items": [{"kind": "Variable", "content": {"name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "center", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "center"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142355072"}, "items": [{"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "count", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805179981696"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805179980800"}, "name": "encode"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142355856"}, "items": [{"kind": "Variable", "content": {"name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "endswith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805428018176"}, "name": "expandtabs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142358656"}, "items": [{"kind": "Variable", "content": {"name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "find", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "find"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142361232"}, "items": [{"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "index"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142362912"}, "items": [{"kind": "Variable", "content": {"name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "join", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "join"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142364592"}, "items": [{"kind": "Variable", "content": {"name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ljust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "ljust"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142364480"}, "items": [{"kind": "Variable", "content": {"name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lstrip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142365264"}, "items": [{"kind": "Variable", "content": {"name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "partition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "partition"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142366384"}, "items": [{"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "replace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142367280"}, "items": [{"kind": "Variable", "content": {"name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rfind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rfind"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142269088"}, "items": [{"kind": "Variable", "content": {"name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rindex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rindex"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142420608"}, "items": [{"kind": "Variable", "content": {"name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rjust", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rjust"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142422288"}, "items": [{"kind": "Variable", "content": {"name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rpartition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rpartition"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142422176"}, "items": [{"kind": "Variable", "content": {"name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rsplit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rsplit"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142423296"}, "items": [{"kind": "Variable", "content": {"name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rstrip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rstrip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142425536"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422936000"}, "name": "splitlines"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142425424"}, "items": [{"kind": "Variable", "content": {"name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "startswith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "startswith"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142428000"}, "items": [{"kind": "Variable", "content": {"name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strip", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "strip"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142429792"}, "items": [{"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "translate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422939136"}, "name": "zfill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422939584"}, "name": "capitalize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422940032"}, "name": "title"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422940480"}, "name": "swapcase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422940928"}, "name": "lower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422941376"}, "name": "upper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422941824"}, "name": "isalnum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422942272"}, "name": "isalpha"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422942720"}, "name": "isdigit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422943168"}, "name": "islower"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805422943616"}, "name": "isspace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423075392"}, "name": "istitle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423075840"}, "name": "isupper"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423076288"}, "name": "isnumeric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423076736"}, "name": "isdecimal"}}], "typeVars": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "isAbstract": false}}, ".1.139805150587264": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150587264", "variance": "INVARIANT"}}, ".2.139805150587264": {"type": "TypeVar", "content": {"varName": "_CharDType", "values": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805150587264", "variance": "INVARIANT"}}, "139805142261584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805427840640"}, {"nodeId": "139805427841088"}]}}, "139805427840640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142265280"}, {"nodeId": "139805142265392"}, {"nodeId": "0"}, {"nodeId": "139805142265616"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142265728"}, {"nodeId": "139805142265840"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150578816"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "itemsize", "unicode", "buffer", "offset", "strides", "order"]}}, "139805142265280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142265392": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805276996000"}]}}, "139805142265616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142265728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142265840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427841088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142266064"}, {"nodeId": "139805142266176"}, {"nodeId": "0"}, {"nodeId": "139805142266400"}, {"nodeId": "139805276997408"}, {"nodeId": "139805142266512"}, {"nodeId": "139805142266624"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150579168"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["subtype", "shape", "itemsize", "unicode", "buffer", "offset", "strides", "order"]}}, "139805142266064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142266176": {"type": "Union", "content": {"items": [{"nodeId": "139805276997408"}, {"nodeId": "139805276996000"}]}}, "139805142266400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805196974928"}}}, "139805142266512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142266624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150252832"}}}, "139805427841536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805427841984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142266848"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142266848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805427842432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142267296"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142267296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428006976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142262480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171517248"}, {"nodeId": "139805428007872"}]}}, "139805171517248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142267744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142267744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428007872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142268080"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142268080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142267408": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171515456"}, {"nodeId": "139805428008768"}]}}, "139805171515456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142268528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142268528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428008768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142268864"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142268864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142267072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171515680"}, {"nodeId": "139805428009664"}]}}, "139805171515680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142269312"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142269312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428009664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142269648"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142269648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142268304": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516128"}, {"nodeId": "139805428010560"}]}}, "139805171516128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142352160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142352160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428010560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142352496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142352496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142154960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516576"}, {"nodeId": "139805428011456"}]}}, "139805171516576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142352944"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142352944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428011456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142353280"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142353280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142351936": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516352"}, {"nodeId": "139805180066976"}]}}, "139805171516352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142353728"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142353728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180066976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142354064"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142354064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142352720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805171516800"}, {"nodeId": "139805428012352"}]}}, "139805171516800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142354512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142354512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428012352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142354848"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142354848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142353504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805428013248"}, {"nodeId": "139805171517024"}]}}, "139805428013248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142355296"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142355296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805171517024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142355632"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805142355632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142354288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805428014144"}, {"nodeId": "139805428015040"}]}}, "139805428014144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142356080"}, {"nodeId": "139805142356192"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142356080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142356192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428015040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142356640"}, {"nodeId": "139805142356416"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142356640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142356416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142355072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805179979680"}, {"nodeId": "139805428015936"}]}}, "139805179979680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142356864"}, {"nodeId": "139805142357200"}, {"nodeId": "139805142357424"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142356864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142357200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142357424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142357312"}]}}, "139805142357312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428015936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142357984"}, {"nodeId": "139805142356976"}, {"nodeId": "139805142358208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142357984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142356976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142358208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142358096"}]}}, "139805142358096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805179981696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142358768"}, {"nodeId": "139805142357872"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805142358768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142357872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805179980800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142359104"}, {"nodeId": "139805142359216"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805142359104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142359216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805142355856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355840160"}, {"nodeId": "139805179982592"}]}}, "139805355840160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142359664"}, {"nodeId": "139805142359776"}, {"nodeId": "139805142360000"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139805142359664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142359776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142360000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142359888"}]}}, "139805142359888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805179982592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142360448"}, {"nodeId": "139805142359440"}, {"nodeId": "139805142360672"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "suffix", "start", "end"]}}, "139805142360448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142359440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142360672": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142360560"}]}}, "139805142360560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428018176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142360896"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tabsize"]}}, "139805142360896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142358656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805355839712"}, {"nodeId": "139805428019072"}]}}, "139805355839712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142360336"}, {"nodeId": "139805142361456"}, {"nodeId": "139805142361680"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142360336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142361568"}]}}, "139805142361568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428019072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142362240"}, {"nodeId": "139805142361344"}, {"nodeId": "139805142362464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142362240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142362464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142362352"}]}}, "139805142362352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142361232": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180457504"}, {"nodeId": "139805428019968"}]}}, "139805180457504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142362128"}, {"nodeId": "139805142363136"}, {"nodeId": "139805142363360"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142362128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142363136": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142363360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142363248"}]}}, "139805142363248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428019968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142363920"}, {"nodeId": "139805142362800"}, {"nodeId": "139805142364144"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142363920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142362800": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142364144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142364032"}]}}, "139805142364032": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142362912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180459520"}, {"nodeId": "139805428020864"}]}}, "139805180459520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142363808"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805142363808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428020864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142365040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seq"]}}, "139805142365040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142364592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180459296"}, {"nodeId": "139805428021760"}]}}, "139805180459296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142365488"}, {"nodeId": "139805142365600"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142365488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142365600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428021760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142366048"}, {"nodeId": "139805142365824"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142366048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142365824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142364480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180460192"}, {"nodeId": "139805428022656"}]}}, "139805180460192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142366608"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142366608": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142366272"}]}}, "139805142366272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805428022656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142367056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142367056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142366944"}]}}, "139805142366944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142365264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180457280"}, {"nodeId": "139805422928384"}]}}, "139805180457280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142367504"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142367504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422928384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142367840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142367840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142366384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180457056"}, {"nodeId": "139805422929280"}]}}, "139805180457056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142417584"}, {"nodeId": "139805142417696"}, {"nodeId": "139805142417920"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}}, "139805142417584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142417696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142417920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142417808"}]}}, "139805142417808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422929280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142418368"}, {"nodeId": "139805142418144"}, {"nodeId": "139805142418592"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "old", "new", "count"]}}, "139805142418368": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142418144": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142418592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142418480"}]}}, "139805142418480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142367280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180456160"}, {"nodeId": "139805422930176"}]}}, "139805180456160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142418816"}, {"nodeId": "139805142419152"}, {"nodeId": "139805142419376"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142418816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142419152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142419376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142419264"}]}}, "139805142419264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422930176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142419936"}, {"nodeId": "139805142418928"}, {"nodeId": "139805142420160"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142419936": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142418928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420160": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142420048"}]}}, "139805142420048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142269088": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180455936"}, {"nodeId": "139805180456832"}]}}, "139805180455936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142419824"}, {"nodeId": "139805142420832"}, {"nodeId": "139805142421056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142419824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142421056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142420944"}]}}, "139805142420944": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180456832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142421616"}, {"nodeId": "139805142420496"}, {"nodeId": "139805142421840"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sub", "start", "end"]}}, "139805142421616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142421840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142421728"}]}}, "139805142421728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142420608": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422931072"}, {"nodeId": "139805180459744"}]}}, "139805422931072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142421504"}, {"nodeId": "139805142422512"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142421504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180459744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142422960"}, {"nodeId": "139805142422736"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "width", "fillchar"]}}, "139805142422960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422931968"}, {"nodeId": "139805422932864"}]}}, "139805422931968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142423184"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142423184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422932864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142423744"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sep"]}}, "139805142423744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142422176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180380096"}, {"nodeId": "139805422933760"}]}}, "139805180380096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142424304"}, {"nodeId": "139805142424528"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142424304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424192"}]}}, "139805142424192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142424528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424416"}]}}, "139805142424416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422933760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142423968"}, {"nodeId": "139805142425200"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142423968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424976"}]}}, "139805142424976": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142425200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142425088"}]}}, "139805142425088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142423296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180383232"}, {"nodeId": "139805422934656"}]}}, "139805180383232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142425760"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142425760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142424864"}]}}, "139805142424864": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422934656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142426208"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142426208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142426096"}]}}, "139805142426096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142425536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180391296"}, {"nodeId": "139805422935552"}]}}, "139805180391296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142426768"}, {"nodeId": "139805142426992"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142426768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142426656"}]}}, "139805142426656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142426992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142426880"}]}}, "139805142426880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422935552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142426432"}, {"nodeId": "139805142427664"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sep", "maxsplit"]}}, "139805142426432": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142427440"}]}}, "139805142427440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142427664": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142427552"}]}}, "139805142427552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422936000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142428112"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "keepends"]}}, "139805142428112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142427888"}]}}, "139805142427888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142425424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805180390176"}, {"nodeId": "139805180392416"}]}}, "139805180390176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142428448"}, {"nodeId": "139805142428560"}, {"nodeId": "139805142428784"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139805142428448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428560": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142428672"}]}}, "139805142428672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180392416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142429232"}, {"nodeId": "139805142428224"}, {"nodeId": "139805142429456"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "prefix", "start", "end"]}}, "139805142429232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142429456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142429344"}]}}, "139805142429344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142428000": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422936896"}, {"nodeId": "139805180380992"}]}}, "139805422936896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142430016"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142430016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142429120"}]}}, "139805142429120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805180380992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142430464"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "chars"]}}, "139805142430464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142430352"}]}}, "139805142430352": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142429792": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805422937792"}, {"nodeId": "139805422938688"}]}}, "139805422937792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142430912"}, {"nodeId": "139805142431136"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}}, "139805142430912": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142431136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142431024"}]}}, "139805142431024": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422938688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805142431472"}, {"nodeId": "139805142431696"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "table", "deletechars"]}}, "139805142431472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805142431696": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142431584"}]}}, "139805142431584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422939136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, {"nodeId": "139805142431920"}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": "A"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "width"]}}, "139805142431920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805422939584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422940032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422940480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422940928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422941376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422941824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422942272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422942720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422943168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805422943616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423075392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423075840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423076288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423076736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587264", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": ".2.139805150587264"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150587264"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150587616": {"type": "Protocol", "content": {"module": "numpy", "simpleName": "_SupportsDLPack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423077184"}, "name": "__dlpack__"}}], "typeVars": [{"nodeId": ".1.139805150587616"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__dlpack__"]}}, ".1.139805150587616": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805150587616", "variance": "CONTRAVARIANT"}}, "139805423077184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150587616", "args": [{"nodeId": ".1.139805150587616"}]}, {"nodeId": "139805142432368"}], "returnType": {"nodeId": "139805142430688"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "stream"]}}, "139805142432368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": ".1.139805150587616"}]}}, "139805142430688": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805277010432": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247282912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284256"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284480"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247284928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247285152"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410418176"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247285376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247285600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247282912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247284256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805263683744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263683744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247284480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247284704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247284928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247285152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805263683968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263683968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410418176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263684192"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805263684416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant", "default"]}}, "139805263684192": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}]}}, "139805263684416": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805247285376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481883552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481883552": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecArgs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247655712"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423088832"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247655712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883552"}], "returnType": {"nodeId": "139805481884256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481884256": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpec", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247658624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247659744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247659968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247660192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444392320"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247660864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247660416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444394560"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444395008"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247658624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247659744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805263688000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263688000": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247659968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247660192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444392320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263688224"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "bound", "contravariant", "covariant"]}}, "139805263688224": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247660864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481883552"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247660416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}], "returnType": {"nodeId": "139805481883904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481883904": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ParamSpecKwargs", "members": [{"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247656832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423089728"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247656832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883904"}], "returnType": {"nodeId": "139805481884256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423089728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883904"}, {"nodeId": "139805481884256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139805444394560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481883200": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423083904"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423084352"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423084800"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805423083904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883200"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423084352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883200"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423084800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883200"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444395008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884256"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423088832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481883552"}, {"nodeId": "139805481884256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "origin"]}}, "139805247285600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010432"}], "returnType": {"nodeId": "139805481883904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481882848": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247534496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247534944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247535168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247535392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247535616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423082112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423082560"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805423083008"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247534496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247534944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805263686768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263686768": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247535168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247535392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247535616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805423082112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "139805263687216"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant"]}}, "139805263687216": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805423082560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805423083008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882848"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481884608": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NewType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444395456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444395904"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444396352"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444396800"}, "name": "__ror__"}}, {"kind": "Variable", "content": {"name": "__supertype__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481892352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805444395456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "tp"]}}, "139805444395904": {"type": "Function", "content": {"typeVars": [".-1.139805444395904"], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": ".-1.139805444395904"}], "returnType": {"nodeId": ".-1.139805444395904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805444395904": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805444395904", "variance": "INVARIANT"}}, "139805444396352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805444396800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884608"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481883200"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481884960": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_Alias", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444398592"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805444398592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481884960"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805276995648": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_ProtocolMeta", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276879008"}], "isAbstract": false}}, "139805276879008": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABCMeta", "members": [{"kind": "Variable", "content": {"name": "__abstractmethods__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "mcls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "namespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255286368"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360505568"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360506016"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360506464"}, "name": "_dump_registry"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360506912"}, "name": "register"}}], "typeVars": [], "bases": [{"nodeId": "139805481892352"}], "isAbstract": false}}, "139805277003392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "frozenset", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251582352"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402245920"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402246368"}, "name": "difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402246816"}, "name": "intersection"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402247264"}, "name": "isdisjoint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402247712"}, "name": "issubset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402248160"}, "name": "issuperset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402248608"}, "name": "symmetric_difference"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402249056"}, "name": "union"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402249504"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402249952"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402250400"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402250848"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402349856"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402350304"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402350752"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402351200"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402351648"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402352096"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402352544"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402352992"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277003392"}], "bases": [{"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003392"}]}], "isAbstract": false}}, ".1.139805277003392": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277003392", "variance": "COVARIANT"}}, "139805251582352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402245024"}, {"nodeId": "139805402245472"}]}}, "139805402245024": {"type": "Function", "content": {"typeVars": [".0.139805402245024"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805402245024"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805402245024": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "def": "139805402245024", "variance": "INVARIANT"}}, "139805402245472": {"type": "Function", "content": {"typeVars": [".0.139805402245472"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": ".0.139805402245472"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, ".0.139805402245472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "def": "139805402245472", "variance": "INVARIANT"}}, "139805402245920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805402246368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402246816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, "139805402247264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402247712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402248160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402248608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402249056": {"type": "Function", "content": {"typeVars": [".-1.139805402249056"], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402249056"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": "139805246702192"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "s"]}}, ".-1.139805402249056": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402249056", "variance": "INVARIANT"}}, "139805246702192": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003392"}, {"nodeId": ".-1.139805402249056"}]}}, "139805402249504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402249952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402250400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402250848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402349856": {"type": "Function", "content": {"typeVars": [".-1.139805402349856"], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402349856"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": "139805246702304"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402349856": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402349856", "variance": "INVARIANT"}}, "139805246702304": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003392"}, {"nodeId": ".-1.139805402349856"}]}}, "139805402350304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".1.139805277003392"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402350752": {"type": "Function", "content": {"typeVars": [".-1.139805402350752"], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": ".-1.139805402350752"}]}], "returnType": {"nodeId": "139805277003392", "args": [{"nodeId": "139805246702416"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805402350752": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402350752", "variance": "INVARIANT"}}, "139805246702416": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277003392"}, {"nodeId": ".-1.139805402350752"}]}}, "139805402351200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402351648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402352096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402352544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003392", "args": [{"nodeId": ".1.139805277003392"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402352992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805255286368": {"type": "Function", "content": {"typeVars": [".-1.139805255286368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805255286368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["mcls", "name", "bases", "namespace", "kwargs"]}}, ".-1.139805255286368": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255286368", "variance": "INVARIANT"}}, "139805360505568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "instance"]}}, "139805360506016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139805360506464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "139805255956656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "file"]}}, "139805255956656": {"type": "Union", "content": {"items": [{"nodeId": "139805268033952", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805360506912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276879008"}, {"nodeId": "0"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "subclass"]}}, "139805481885664": {"type": "Protocol", "content": {"module": "typing", "simpleName": "SupportsRound", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263466384"}, "items": [{"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__round__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139805481885664"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__round__"]}}, ".1.139805481885664": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481885664", "variance": "COVARIANT"}}, "139805263466384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444402176"}, {"nodeId": "139805444402624"}]}}, "139805444402176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481885664", "args": [{"nodeId": ".1.139805481885664"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444402624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481885664", "args": [{"nodeId": ".1.139805481885664"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805481885664"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276998112": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Hashable", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242518752"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__hash__"]}}, "139805242518752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276998112"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481887424": {"type": "Protocol", "content": {"module": "typing", "simpleName": "Awaitable", "members": [{"kind": "Variable", "content": {"name": "__await__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242597984"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481887424"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__await__"]}}, ".1.139805481887424": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887424", "variance": "COVARIANT"}}, "139805242597984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481887424"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".1.139805481887424"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481887776": {"type": "Concrete", "content": {"module": "typing", "simpleName": "Coroutine", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242600896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242601120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242601344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242601568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "send", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242601792"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263689568"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}, {"kind": "Variable", "content": {"name": "close", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242602016"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}], "bases": [{"nodeId": "139805481887424", "args": [{"nodeId": ".3.139805481887776"}]}], "isAbstract": true}}, ".1.139805481887776": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887776", "variance": "COVARIANT"}}, ".2.139805481887776": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887776", "variance": "CONTRAVARIANT"}}, ".3.139805481887776": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481887776", "variance": "COVARIANT"}}, "139805242600896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805263690800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263690800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805242601120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242601344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242601568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242601792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}, {"nodeId": ".2.139805481887776"}], "returnType": {"nodeId": ".1.139805481887776"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263689568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444691712"}, {"nodeId": "139805444692160"}]}}, "139805444691712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}, {"nodeId": "0"}, {"nodeId": "139805263691024"}, {"nodeId": "139805263691136"}], "returnType": {"nodeId": ".1.139805481887776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263691024": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805263691136": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444692160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805263691248"}], "returnType": {"nodeId": ".1.139805481887776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263691248": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805242602016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805481887776"}, {"nodeId": ".2.139805481887776"}, {"nodeId": ".3.139805481887776"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276998464": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AwaitableGenerator", "members": [], "typeVars": [{"nodeId": ".1.139805276998464"}, {"nodeId": ".2.139805276998464"}, {"nodeId": ".3.139805276998464"}, {"nodeId": ".4.139805276998464"}], "bases": [{"nodeId": "139805481887424", "args": [{"nodeId": ".3.139805276998464"}]}, {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805276998464"}, {"nodeId": ".2.139805276998464"}, {"nodeId": ".3.139805276998464"}]}], "isAbstract": true}}, ".1.139805276998464": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "COVARIANT"}}, ".2.139805276998464": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "CONTRAVARIANT"}}, ".3.139805276998464": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "COVARIANT"}}, ".4.139805276998464": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276998464", "variance": "INVARIANT"}}, "139805481888128": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterable", "members": [{"kind": "Variable", "content": {"name": "__aiter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242603360"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481888128"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__aiter__"]}}, ".1.139805481888128": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888128", "variance": "COVARIANT"}}, "139805242603360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888128", "args": [{"nodeId": ".1.139805481888128"}]}], "returnType": {"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481888480": {"type": "Protocol", "content": {"module": "typing", "simpleName": "AsyncIterator", "members": [{"kind": "Variable", "content": {"name": "__anext__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242658592"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444693952"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139805481888480"}], "bases": [{"nodeId": "139805481888128", "args": [{"nodeId": ".1.139805481888480"}]}], "protocolMembers": ["__aiter__", "__anext__"]}}, ".1.139805481888480": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888480", "variance": "COVARIANT"}}, "139805242658592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888480"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805444693952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888480"}]}], "returnType": {"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805481888832": {"type": "Concrete", "content": {"module": "typing", "simpleName": "AsyncGenerator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444694400"}, "name": "__anext__"}}, {"kind": "Variable", "content": {"name": "asend", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242661280"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263689680"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805444696192"}, "name": "aclose"}}, {"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242660384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242662176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_frame", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242662400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ag_running", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242662624"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}], "bases": [{"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805481888832"}]}], "isAbstract": true}}, ".1.139805481888832": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888832", "variance": "COVARIANT"}}, ".2.139805481888832": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805481888832", "variance": "CONTRAVARIANT"}}, "139805444694400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242661280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}, {"nodeId": ".2.139805481888832"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263689680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805444695296"}, {"nodeId": "139805444695744"}]}}, "139805444695296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}, {"nodeId": "0"}, {"nodeId": "139805263691472"}, {"nodeId": "139805263691584"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263691472": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805263691584": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444695744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805263872064"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805481888832"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263872064": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805444696192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242660384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242662176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242662400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805272037632"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242662624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805481888832"}, {"nodeId": ".2.139805481888832"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277000576": {"type": "Concrete", "content": {"module": "typing", "simpleName": "BinaryIO", "members": [{"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243093760"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}], "isAbstract": true}}, "139805243093760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000576"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277000928": {"type": "Concrete", "content": {"module": "typing", "simpleName": "TextIO", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243095328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243095776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243096000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243096224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243096448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243096672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": true}}, "139805243095328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243095776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243096000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805263880352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263880352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805243096224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243096448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805243096672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}], "returnType": {"nodeId": "139805277000928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277001280": {"type": "Concrete", "content": {"module": "typing", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263881472"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805243279840"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452628736"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452629632"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139805263881472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805452627392"}, {"nodeId": "139805452627840"}]}}, "139805452627392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001280"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805263883040"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805263883040": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805452627840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001280"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, null, "kwargs"]}}, "139805243279840": {"type": "Function", "content": {"typeVars": [".0.139805243279840"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805243279840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139805243279840": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001280"}, "def": "139805243279840", "variance": "INVARIANT"}}, "139805452628736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001280"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452629632": {"type": "Function", "content": {"typeVars": [".0.139805452629632"], "argTypes": [{"nodeId": ".0.139805452629632"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805452629632"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139805452629632": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001280"}, "def": "139805452629632", "variance": "INVARIANT"}}, "139805277001632": {"type": "Concrete", "content": {"module": "typing", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452630080"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452630528"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452630976"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452631424"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452845120"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452845568"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452846016"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452846464"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452846912"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452847360"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}], "isAbstract": true}}, "139805452630080": {"type": "Function", "content": {"typeVars": [".0.139805452630080"], "argTypes": [{"nodeId": ".0.139805452630080"}], "returnType": {"nodeId": ".0.139805452630080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805452630080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001632"}, "def": "139805452630080", "variance": "INVARIANT"}}, "139805452630528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}, {"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139805452630976": {"type": "Function", "content": {"typeVars": [".-1.139805452630976"], "argTypes": [{"nodeId": "139805277001632"}, {"nodeId": "0"}, {"nodeId": ".-1.139805452630976"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139805452630976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452630976", "variance": "INVARIANT"}}, "139805452631424": {"type": "Function", "content": {"typeVars": [".-1.139805452631424"], "argTypes": [{"nodeId": ".-1.139805452631424"}, {"nodeId": ".-1.139805452631424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805452631424": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805452631424", "variance": "INVARIANT"}}, "139805452845120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805452845568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}], "returnType": {"nodeId": "139805277002688", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452846016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}], "returnType": {"nodeId": "139805277001984", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452846464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277001632"}], "returnType": {"nodeId": "139805277002336", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805452846912": {"type": "Function", "content": {"typeVars": [".0.139805452846912"], "argTypes": [{"nodeId": ".0.139805452846912"}, {"nodeId": ".0.139805452846912"}], "returnType": {"nodeId": ".0.139805452846912"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452846912": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001632"}, "def": "139805452846912", "variance": "INVARIANT"}}, "139805452847360": {"type": "Function", "content": {"typeVars": [".0.139805452847360"], "argTypes": [{"nodeId": ".0.139805452847360"}, {"nodeId": ".0.139805452847360"}], "returnType": {"nodeId": ".0.139805452847360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805452847360": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277001632"}, "def": "139805452847360", "variance": "INVARIANT"}}, "139805481892000": {"type": "Concrete", "content": {"module": "typing", "simpleName": "ForwardRef", "members": [{"kind": "Variable", "content": {"name": "__forward_arg__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_evaluated__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_value__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271906048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_argument__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_is_class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__forward_module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276564144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_argument", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_class", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452847808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globalns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "localns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursive_guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452848704"}, "name": "_evaluate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805452849600"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805271906048": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805276564144": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805452847808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892000"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805263883936"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "arg", "is_argument", "module", "is_class"]}}, "139805263883936": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805452848704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892000"}, {"nodeId": "139805263884160"}, {"nodeId": "139805263884384"}, {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805263884608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "globalns", "localns", "recursive_guard"]}}, "139805263884160": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805263884384": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805263884608": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805452849600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892000"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805481882496": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "function", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201519040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268423648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201519712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201520384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805401840800"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805201519040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}], "returnType": {"nodeId": "139805251577984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251577984": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805272031296": {"type": "Concrete", "content": {"module": "types", "simpleName": "_Cell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410511104"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cell_contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805410511104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031296"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805268423648": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805201519712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201520384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805401840800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481882496"}, {"nodeId": "139805481881792"}, {"nodeId": "139805251578320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805251578320": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805481892704": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "super", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251289488"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251289488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805411136160"}, {"nodeId": "139805411136608"}, {"nodeId": "139805411137056"}]}}, "139805411136160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805411136608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892704"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805411137056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481892704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277003744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "enumerate", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iterable", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402353440"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402353888"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402354336"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402354784"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805277003744"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": "139805271903696"}]}], "isAbstract": false}}, ".1.139805277003744": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277003744", "variance": "INVARIANT"}}, "139805402353440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003744", "args": [{"nodeId": ".1.139805277003744"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277003744"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "iterable", "start"]}}, "139805402353888": {"type": "Function", "content": {"typeVars": [".0.139805402353888"], "argTypes": [{"nodeId": ".0.139805402353888"}], "returnType": {"nodeId": ".0.139805402353888"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805402353888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277003744", "args": [{"nodeId": ".1.139805277003744"}]}, "def": "139805402353888", "variance": "INVARIANT"}}, "139805402354336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277003744", "args": [{"nodeId": ".1.139805277003744"}]}], "returnType": {"nodeId": "139805246702864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805246702864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": ".1.139805277003744"}]}}, "139805402354784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805271903696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": ".1.139805277003744"}]}}, "139805276671840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "range", "members": [{"kind": "Variable", "content": {"name": "start", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196716288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stop", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196716736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196716960"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805251583696"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402357472"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402357920"}, "name": "index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402358368"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402358816"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402359264"}, "name": "__iter__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246702640"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402360608"}, "name": "__reversed__"}}], "typeVars": [], "bases": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805196716288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196716736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196716960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805251583696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402356576"}, {"nodeId": "139805402357024"}]}}, "139805402356576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402357024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805402357472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402357920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805402358368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402358816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402359264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805246702640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402359712"}, {"nodeId": "139805402360160"}]}}, "139805402359712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805277009376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402360160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402360608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671840"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276672192": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "property", "members": [{"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268419728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268419952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268422080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402361056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fget", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402361504"}, "name": "getter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402361952"}, "name": "setter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__fdel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402362400"}, "name": "deleter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402362848"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402363296"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402363744"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805268419728": {"type": "Union", "content": {"items": [{"nodeId": "139805276236576"}, {"nodeId": "N"}]}}, "139805276236576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805268419952": {"type": "Union", "content": {"items": [{"nodeId": "139805276238592"}, {"nodeId": "N"}]}}, "139805276238592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268422080": {"type": "Union", "content": {"items": [{"nodeId": "139805276226944"}, {"nodeId": "N"}]}}, "139805276226944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402361056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805246703312"}, {"nodeId": "139805246703648"}, {"nodeId": "139805246703984"}, {"nodeId": "139805246704208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fget", "fset", "fdel", "doc"]}}, "139805246703312": {"type": "Union", "content": {"items": [{"nodeId": "139805251655424"}, {"nodeId": "N"}]}}, "139805251655424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805246703648": {"type": "Union", "content": {"items": [{"nodeId": "139805251655648"}, {"nodeId": "N"}]}}, "139805251655648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805246703984": {"type": "Union", "content": {"items": [{"nodeId": "139805251655872"}, {"nodeId": "N"}]}}, "139805251655872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805246704208": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805402361504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805251654752"}], "returnType": {"nodeId": "139805276672192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251654752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402361952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805251655200"}], "returnType": {"nodeId": "139805276672192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251655200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805402362400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "139805251656096"}], "returnType": {"nodeId": "139805276672192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805251656096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402362848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "A"}, {"nodeId": "139805246704992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805246704992": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805402363296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805402363744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672192"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276672544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "_NotImplementedType", "members": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805268308768": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_PathLike", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402482720"}, "name": "__fspath__"}}], "typeVars": [{"nodeId": ".1.139805268308768"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__fspath__"]}}, ".1.139805268308768": {"type": "TypeVar", "content": {"varName": "AnyStr_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268308768", "variance": "COVARIANT"}}, "139805402482720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268308768", "args": [{"nodeId": ".1.139805268308768"}]}], "returnType": {"nodeId": ".1.139805268308768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276672896": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSynchronousAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402483616"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139805276672896"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__anext__"]}}, ".1.139805276672896": {"type": "TypeVar", "content": {"varName": "_AwaitableT_co", "values": [], "upperBound": {"nodeId": "139805481887424", "args": [{"nodeId": "A"}]}, "def": "139805276672896", "variance": "COVARIANT"}}, "139805402483616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276672896", "args": [{"nodeId": ".1.139805276672896"}]}], "returnType": {"nodeId": ".1.139805276672896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805277004096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "filter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246706336"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402494368"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402494816"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805277004096"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277004096"}]}], "isAbstract": false}}, ".1.139805277004096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277004096", "variance": "INVARIANT"}}, "139805246706336": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402493024"}, {"nodeId": "139805402493472"}, {"nodeId": "139805402493920"}]}}, "139805402493024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, {"nodeId": "N"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805246709472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805246709472": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805277004096"}, {"nodeId": "N"}]}}, "139805402493472": {"type": "Function", "content": {"typeVars": [".-1.139805402493472"], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, {"nodeId": "139805251656992"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402493472"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251656992": {"type": "Function", "content": {"typeVars": [".-1.139805251656992"], "argTypes": [{"nodeId": ".-1.139805251656992"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805251656992": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251656992", "variance": "INVARIANT"}}, ".-1.139805402493472": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402493472", "variance": "INVARIANT"}}, "139805402493920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, {"nodeId": "139805251656768"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805277004096"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251656768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": ".1.139805277004096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805402494368": {"type": "Function", "content": {"typeVars": [".0.139805402494368"], "argTypes": [{"nodeId": ".0.139805402494368"}], "returnType": {"nodeId": ".0.139805402494368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805402494368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}, "def": "139805402494368", "variance": "INVARIANT"}}, "139805402494816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004096", "args": [{"nodeId": ".1.139805277004096"}]}], "returnType": {"nodeId": ".1.139805277004096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276673248": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_GetItemIterable", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402665632"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805276673248"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, ".1.139805276673248": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673248", "variance": "COVARIANT"}}, "139805402665632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276673248", "args": [{"nodeId": ".1.139805276673248"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805276673248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277004448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "map", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246709808"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402672800"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402673248"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805277004448"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277004448"}]}], "isAbstract": false}}, ".1.139805277004448": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277004448", "variance": "INVARIANT"}}, "139805246709808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805402670112"}, {"nodeId": "139805402670560"}, {"nodeId": "139805402671008"}, {"nodeId": "139805402671456"}, {"nodeId": "139805402671904"}, {"nodeId": "139805402672352"}]}}, "139805402670112": {"type": "Function", "content": {"typeVars": [".-1.139805402670112"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659232"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402670112"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805251659232": {"type": "Function", "content": {"typeVars": [".-1.139805251659232"], "argTypes": [{"nodeId": ".-1.139805251659232"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805251659232": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659232", "variance": "INVARIANT"}}, ".-1.139805402670112": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402670112", "variance": "INVARIANT"}}, "139805402670560": {"type": "Function", "content": {"typeVars": [".-1.139805402670560", ".-2.139805402670560"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251658560"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402670560"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402670560"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139805251658560": {"type": "Function", "content": {"typeVars": [".-1.139805251658560", ".-2.139805251658560"], "argTypes": [{"nodeId": ".-1.139805251658560"}, {"nodeId": ".-2.139805251658560"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805251658560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658560", "variance": "INVARIANT"}}, ".-2.139805251658560": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658560", "variance": "INVARIANT"}}, ".-1.139805402670560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402670560", "variance": "INVARIANT"}}, ".-2.139805402670560": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402670560", "variance": "INVARIANT"}}, "139805402671008": {"type": "Function", "content": {"typeVars": [".-1.139805402671008", ".-2.139805402671008", ".-3.139805402671008"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251658784"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402671008"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402671008"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805402671008"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139805251658784": {"type": "Function", "content": {"typeVars": [".-1.139805251658784", ".-2.139805251658784", ".-3.139805251658784"], "argTypes": [{"nodeId": ".-1.139805251658784"}, {"nodeId": ".-2.139805251658784"}, {"nodeId": ".-3.139805251658784"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, ".-1.139805251658784": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658784", "variance": "INVARIANT"}}, ".-2.139805251658784": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658784", "variance": "INVARIANT"}}, ".-3.139805251658784": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251658784", "variance": "INVARIANT"}}, ".-1.139805402671008": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671008", "variance": "INVARIANT"}}, ".-2.139805402671008": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671008", "variance": "INVARIANT"}}, ".-3.139805402671008": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671008", "variance": "INVARIANT"}}, "139805402671456": {"type": "Function", "content": {"typeVars": [".-1.139805402671456", ".-2.139805402671456", ".-3.139805402671456", ".-4.139805402671456"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659456"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402671456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402671456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805402671456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805402671456"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139805251659456": {"type": "Function", "content": {"typeVars": [".-1.139805251659456", ".-2.139805251659456", ".-3.139805251659456", ".-4.139805251659456"], "argTypes": [{"nodeId": ".-1.139805251659456"}, {"nodeId": ".-2.139805251659456"}, {"nodeId": ".-3.139805251659456"}, {"nodeId": ".-4.139805251659456"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, ".-1.139805251659456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-2.139805251659456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-3.139805251659456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-4.139805251659456": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659456", "variance": "INVARIANT"}}, ".-1.139805402671456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, ".-2.139805402671456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, ".-3.139805402671456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, ".-4.139805402671456": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671456", "variance": "INVARIANT"}}, "139805402671904": {"type": "Function", "content": {"typeVars": [".-1.139805402671904", ".-2.139805402671904", ".-3.139805402671904", ".-4.139805402671904", ".-5.139805402671904"], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659680"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805402671904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-5.139805402671904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null, null]}}, "139805251659680": {"type": "Function", "content": {"typeVars": [".-1.139805251659680", ".-2.139805251659680", ".-3.139805251659680", ".-4.139805251659680", ".-5.139805251659680"], "argTypes": [{"nodeId": ".-1.139805251659680"}, {"nodeId": ".-2.139805251659680"}, {"nodeId": ".-3.139805251659680"}, {"nodeId": ".-4.139805251659680"}, {"nodeId": ".-5.139805251659680"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, ".-1.139805251659680": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-2.139805251659680": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-3.139805251659680": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-4.139805251659680": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-5.139805251659680": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805251659680", "variance": "INVARIANT"}}, ".-1.139805402671904": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-2.139805402671904": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-3.139805402671904": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-4.139805402671904": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, ".-5.139805402671904": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805402671904", "variance": "INVARIANT"}}, "139805402672352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, {"nodeId": "139805251659904"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, null, null, null, null, null, "iterables"]}}, "139805251659904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805402672800": {"type": "Function", "content": {"typeVars": [".0.139805402672800"], "argTypes": [{"nodeId": ".0.139805402672800"}], "returnType": {"nodeId": ".0.139805402672800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805402672800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}, "def": "139805402672800", "variance": "INVARIANT"}}, "139805402673248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004448", "args": [{"nodeId": ".1.139805277004448"}]}], "returnType": {"nodeId": ".1.139805277004448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268309120": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsWriteAndFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402831712"}, "name": "flush"}}], "typeVars": [{"nodeId": ".1.139805268309120"}], "bases": [{"nodeId": "139805268033952", "args": [{"nodeId": ".1.139805268309120"}]}], "protocolMembers": ["flush", "write"]}}, ".1.139805268309120": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268309120", "variance": "CONTRAVARIANT"}}, "139805402831712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268309120", "args": [{"nodeId": ".1.139805268309120"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276673600": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402833056"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139805276673600"}, {"nodeId": ".2.139805276673600"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__pow__"]}}, ".1.139805276673600": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673600", "variance": "CONTRAVARIANT"}}, ".2.139805276673600": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673600", "variance": "COVARIANT"}}, "139805402833056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276673600", "args": [{"nodeId": ".1.139805276673600"}, {"nodeId": ".2.139805276673600"}]}, {"nodeId": ".1.139805276673600"}], "returnType": {"nodeId": ".2.139805276673600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805276673952": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3NoneOnly", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402833504"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139805276673952"}, {"nodeId": ".2.139805276673952"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__pow__"]}}, ".1.139805276673952": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673952", "variance": "CONTRAVARIANT"}}, ".2.139805276673952": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276673952", "variance": "COVARIANT"}}, "139805402833504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276673952", "args": [{"nodeId": ".1.139805276673952"}, {"nodeId": ".2.139805276673952"}]}, {"nodeId": ".1.139805276673952"}, {"nodeId": "N"}], "returnType": {"nodeId": ".2.139805276673952"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805276674304": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsPow3", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__modulo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805402833952"}, "name": "__pow__"}}], "typeVars": [{"nodeId": ".1.139805276674304"}, {"nodeId": ".2.139805276674304"}, {"nodeId": ".3.139805276674304"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__pow__"]}}, ".1.139805276674304": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674304", "variance": "CONTRAVARIANT"}}, ".2.139805276674304": {"type": "TypeVar", "content": {"varName": "_M", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674304", "variance": "CONTRAVARIANT"}}, ".3.139805276674304": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674304", "variance": "COVARIANT"}}, "139805402833952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276674304", "args": [{"nodeId": ".1.139805276674304"}, {"nodeId": ".2.139805276674304"}, {"nodeId": ".3.139805276674304"}]}, {"nodeId": ".1.139805276674304"}, {"nodeId": ".2.139805276674304"}], "returnType": {"nodeId": ".3.139805276674304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805277004800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "reversed", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246950752"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397803168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397803616"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397804064"}, "name": "__length_hint__"}}], "typeVars": [{"nodeId": ".1.139805277004800"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277004800"}]}], "isAbstract": false}}, ".1.139805277004800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277004800", "variance": "INVARIANT"}}, "139805246950752": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805397802272"}, {"nodeId": "139805397802720"}]}}, "139805397802272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}, {"nodeId": "139805481886720", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805397802720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}, {"nodeId": "139805267817248", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805267817248": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443967680"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443968128"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805267817248"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.139805267817248": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267817248", "variance": "COVARIANT"}}, "139805443967680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817248", "args": [{"nodeId": ".1.139805267817248"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805443968128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267817248", "args": [{"nodeId": ".1.139805267817248"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805267817248"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805397803168": {"type": "Function", "content": {"typeVars": [".0.139805397803168"], "argTypes": [{"nodeId": ".0.139805397803168"}], "returnType": {"nodeId": ".0.139805397803168"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805397803168": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}, "def": "139805397803168", "variance": "INVARIANT"}}, "139805397803616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": ".1.139805277004800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805397804064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277004800", "args": [{"nodeId": ".1.139805277004800"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276674656": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound1", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397804960"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139805276674656"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__round__"]}}, ".1.139805276674656": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276674656", "variance": "COVARIANT"}}, "139805397804960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276674656", "args": [{"nodeId": ".1.139805276674656"}]}], "returnType": {"nodeId": ".1.139805276674656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276675008": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsRound2", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ndigits", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397805408"}, "name": "__round__"}}], "typeVars": [{"nodeId": ".1.139805276675008"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__round__"]}}, ".1.139805276675008": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805276675008", "variance": "COVARIANT"}}, "139805397805408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276675008", "args": [{"nodeId": ".1.139805276675008"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805276675008"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805268309472": {"type": "Protocol", "content": {"module": "builtins", "simpleName": "_SupportsSumWithNoDefaultGiven", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267814432", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805267814784", "args": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}], "protocolMembers": ["__add__", "__radd__"]}}, "139805267814432": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398662080"}, "name": "__add__"}}], "typeVars": [{"nodeId": ".1.139805267814432"}, {"nodeId": ".2.139805267814432"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__add__"]}}, ".1.139805267814432": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814432", "variance": "CONTRAVARIANT"}}, ".2.139805267814432": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814432", "variance": "COVARIANT"}}, "139805398662080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267814432", "args": [{"nodeId": ".1.139805267814432"}, {"nodeId": ".2.139805267814432"}]}, {"nodeId": ".1.139805267814432"}], "returnType": {"nodeId": ".2.139805267814432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267814784": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRAdd", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398662528"}, "name": "__radd__"}}], "typeVars": [{"nodeId": ".1.139805267814784"}, {"nodeId": ".2.139805267814784"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__radd__"]}}, ".1.139805267814784": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814784", "variance": "CONTRAVARIANT"}}, ".2.139805267814784": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267814784", "variance": "COVARIANT"}}, "139805398662528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267814784", "args": [{"nodeId": ".1.139805267814784"}, {"nodeId": ".2.139805267814784"}]}, {"nodeId": ".1.139805267814784"}], "returnType": {"nodeId": ".2.139805267814784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277005152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "zip", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805246954224"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397947936"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397948384"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805277005152"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805277005152"}]}], "isAbstract": false}}, ".1.139805277005152": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805277005152", "variance": "COVARIANT"}}, "139805246954224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805397942560"}, {"nodeId": "139805397943008"}, {"nodeId": "139805397943456"}, {"nodeId": "139805397943904"}, {"nodeId": "139805397944352"}, {"nodeId": "139805397944800"}]}}, "139805397942560": {"type": "Function", "content": {"typeVars": [".-1.139805397942560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397942560"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246955456"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, "strict"]}}, ".-1.139805397942560": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397942560", "variance": "INVARIANT"}}, "139805246955456": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397942560"}]}}, "139805397943008": {"type": "Function", "content": {"typeVars": [".-1.139805397943008", ".-2.139805397943008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397943008"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397943008"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246955680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, "strict"]}}, ".-1.139805397943008": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943008", "variance": "INVARIANT"}}, ".-2.139805397943008": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943008", "variance": "INVARIANT"}}, "139805246955680": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397943008"}, {"nodeId": ".-2.139805397943008"}]}}, "139805397943456": {"type": "Function", "content": {"typeVars": [".-1.139805397943456", ".-2.139805397943456", ".-3.139805397943456"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397943456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397943456"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805397943456"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246955904"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, "strict"]}}, ".-1.139805397943456": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943456", "variance": "INVARIANT"}}, ".-2.139805397943456": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943456", "variance": "INVARIANT"}}, ".-3.139805397943456": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943456", "variance": "INVARIANT"}}, "139805246955904": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397943456"}, {"nodeId": ".-2.139805397943456"}, {"nodeId": ".-3.139805397943456"}]}}, "139805397943904": {"type": "Function", "content": {"typeVars": [".-1.139805397943904", ".-2.139805397943904", ".-3.139805397943904", ".-4.139805397943904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397943904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397943904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805397943904"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805397943904"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246956128"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, "strict"]}}, ".-1.139805397943904": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, ".-2.139805397943904": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, ".-3.139805397943904": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, ".-4.139805397943904": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397943904", "variance": "INVARIANT"}}, "139805246956128": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397943904"}, {"nodeId": ".-2.139805397943904"}, {"nodeId": ".-3.139805397943904"}, {"nodeId": ".-4.139805397943904"}]}}, "139805397944352": {"type": "Function", "content": {"typeVars": [".-1.139805397944352", ".-2.139805397944352", ".-3.139805397944352", ".-4.139805397944352", ".-5.139805397944352"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-1.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-2.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-3.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-4.139805397944352"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": ".-5.139805397944352"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805246956352"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, "strict"]}}, ".-1.139805397944352": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-2.139805397944352": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-3.139805397944352": {"type": "TypeVar", "content": {"varName": "_T3", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-4.139805397944352": {"type": "TypeVar", "content": {"varName": "_T4", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, ".-5.139805397944352": {"type": "TypeVar", "content": {"varName": "_T5", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805397944352", "variance": "INVARIANT"}}, "139805246956352": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805397944352"}, {"nodeId": ".-2.139805397944352"}, {"nodeId": ".-3.139805397944352"}, {"nodeId": ".-4.139805397944352"}, {"nodeId": ".-5.139805397944352"}]}}, "139805397944800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277005152", "args": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["cls", null, null, null, null, null, null, "iterables", "strict"]}}, "139805397947936": {"type": "Function", "content": {"typeVars": [".0.139805397947936"], "argTypes": [{"nodeId": ".0.139805397947936"}], "returnType": {"nodeId": ".0.139805397947936"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805397947936": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277005152", "args": [{"nodeId": ".1.139805277005152"}]}, "def": "139805397947936", "variance": "INVARIANT"}}, "139805397948384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277005152", "args": [{"nodeId": ".1.139805277005152"}]}], "returnType": {"nodeId": ".1.139805277005152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276676064": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "GeneratorExit", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805276676416": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyboardInterrupt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805276676768": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemExit", "members": [{"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276558096"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276675712"}], "isAbstract": false}}, "139805276558096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271910192"}}}, "139805271910192": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276677472": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276677824": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OSError", "members": [{"kind": "Variable", "content": {"name": "errno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strerror", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276678176": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ArithmeticError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276678528": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AssertionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276678880": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "AttributeError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397951520"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481881792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805397951520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276678880"}, {"nodeId": "139805481881792"}, {"nodeId": "139805246958816"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "obj"]}}, "139805246958816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276679232": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BufferError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276679584": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EOFError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276679936": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportError", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397951968"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276556864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276567728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805397951968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276679936"}, {"nodeId": "139805481881792"}, {"nodeId": "139805246958928"}, {"nodeId": "139805246959040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "name", "path"]}}, "139805246958928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805246959040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276556864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276567728": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276680640": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "MemoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276680992": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NameError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276681344": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ReferenceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276682048": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "StopAsyncIteration", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276682400": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276566608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276557984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276560112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276558432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276560224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276560672"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276566608": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276557984": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276560112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276558432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805276560224": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276560672": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805276682752": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SystemError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276683104": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TypeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805276683808": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FloatingPointError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678176"}], "isAbstract": false}}, "139805276864576": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "OverflowError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678176"}], "isAbstract": false}}, "139805276864928": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ZeroDivisionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678176"}], "isAbstract": false}}, "139805276865280": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ModuleNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276679936"}], "isAbstract": false}}, "139805276865984": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "KeyError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276680288"}], "isAbstract": false}}, "139805276866336": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnboundLocalError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276680992"}], "isAbstract": false}}, "139805276866688": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BlockingIOError", "members": [{"kind": "Variable", "content": {"name": "characters_written", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276867040": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ChildProcessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276867392": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276867744": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BrokenPipeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276868096": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionAbortedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276868448": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionRefusedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276868800": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ConnectionResetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276867392"}], "isAbstract": false}}, "139805276869152": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileExistsError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276869504": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FileNotFoundError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276869856": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "InterruptedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276870208": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IsADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276870560": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotADirectoryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276870912": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PermissionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276871264": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ProcessLookupError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276871616": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TimeoutError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}], "isAbstract": false}}, "139805276871968": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "NotImplementedError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805276872320": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "RecursionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805276872672": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "IndentationError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276682400"}], "isAbstract": false}}, "139805276873024": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "TabError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276872672"}], "isAbstract": false}}, "139805276873376": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276683456"}], "isAbstract": false}}, "139805276873728": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeDecodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397952416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276873376"}], "isAbstract": false}}, "139805397952416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276873728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139805276874080": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeEncodeError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397952864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276873376"}], "isAbstract": false}}, "139805397952864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276874080"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null, null]}}, "139805276874432": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeTranslateError", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__start", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__end", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805397953312"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276873376"}], "isAbstract": false}}, "139805397953312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276874432"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null, null]}}, "139805276875840": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "SyntaxWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276876544": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "FutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276876896": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "PendingDeprecationWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276877248": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ImportWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276877600": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "UnicodeWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276877952": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "BytesWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276878304": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "ResourceWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805276878656": {"type": "Concrete", "content": {"module": "builtins", "simpleName": "EncodingWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276874784"}], "isAbstract": false}}, "139805272039744": {"type": "Protocol", "content": {"module": "sys", "simpleName": "_MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398275840"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["find_spec"]}}, "139805398275840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039744"}, {"nodeId": "139805276669024"}, {"nodeId": "139805264195232"}, {"nodeId": "139805264195344"}], "returnType": {"nodeId": "139805264195456"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139805264195232": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805264195344": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805272033408": {"type": "Concrete", "content": {"module": "types", "simpleName": "ModuleType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276386496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238435552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__loader__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__path__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481890240", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__spec__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805271908512"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410994752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410995200"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805276386496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805238435552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805271908176": {"type": "Union", "content": {"items": [{"nodeId": "139805272033056"}, {"nodeId": "N"}]}}, "139805272033056": {"type": "Protocol", "content": {"module": "types", "simpleName": "_LoaderProtocol", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410993856"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["load_module"]}}, "139805410993856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805271908400": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805271908512": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272611424": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ModuleSpec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344119968"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268568640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268568864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "submodule_search_locations", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272703824"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loader_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cached", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272703936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221534656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "has_location", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339009312"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805344119968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260227840"}, {"nodeId": "139805260227952"}, {"nodeId": "139805260228176"}, {"nodeId": "139805260228288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "loader", "origin", "loader_state", "is_package"]}}, "139805260227840": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805272612480": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Loader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343997216"}, "name": "load_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343997664"}, "name": "module_repr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343998112"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343998560"}, "name": "exec_module"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805343997216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805343997664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805343998112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260231760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139805260231760": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805343998560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612480"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805260227952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260228176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805260228288": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805268568640": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805268568864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272703824": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805272703936": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805221534656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260228400"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260228400": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805339009312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410994752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263887520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "doc"]}}, "139805263887520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805410995200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805264195456": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805268310880": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_flags", "members": [{"kind": "Variable", "content": {"name": "debug", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238951072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inspect", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239034816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interactive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dont_write_bytecode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_user_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "no_site", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239035936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ignore_environment", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbose", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bytes_warning", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "quiet", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239036832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_randomization", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "isolated", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dev_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "utf8_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warn_default_encoding", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239038400"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805238951072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264195680"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264195680": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239034816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264195792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264195792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264195904"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264195904": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196016"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196016": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196128"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196240"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239035936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196352"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196352": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196464"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196464": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196576"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196576": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196688"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196688": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239036832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196800"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196800": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264196912"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264196912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197024": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197136"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239037728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197248"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197248": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239038400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268035712": {"type": "Concrete", "content": {"module": "_typeshed", "simpleName": "structseq", "members": [{"kind": "Variable", "content": {"name": "n_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_unnamed_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_sequence_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sequence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255286144"}, "name": "__new__"}}], "typeVars": [{"nodeId": ".1.139805268035712"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805268035712": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268035712", "variance": "COVARIANT"}}, "139805255286144": {"type": "Function", "content": {"typeVars": [".-1.139805255286144"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805268035712"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139805255286144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "sequence", "dict"]}}, ".-1.139805255286144": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255286144", "variance": "INVARIANT"}}, "139805268311232": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_float_info", "members": [{"kind": "Variable", "content": {"name": "max", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239037952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239040640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239040864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min_10_exp", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mant_dig", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239041984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epsilon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239042208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "radix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239042432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rounds", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239042656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805239037952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197472"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239040640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197584"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197584": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239040864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197696"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197808"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264197920"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264197920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198032"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239041984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198256"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198256": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239042208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198368"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198368": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239042432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198480"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198480": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239042656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198592"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268311584": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_hash_info", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239044672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modulus", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239044896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "inf", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nan", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "algorithm", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239045792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239046016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "seed_bits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239046240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cutoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239046464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805268421632"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805239044672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198704"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239044896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198816"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198816": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264198928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264198928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199040"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199040": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199152"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239045792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199264"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239046016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199376": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239046240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264199488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264199488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239046464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264363584"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264363584": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268421632": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}}, "139805272040096": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_implementation", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268421520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hexversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cache_tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398424192"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805268421520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263531136"}}}, "139805263531136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805398424192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272040096"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268508736": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_int_info", "members": [{"kind": "Variable", "content": {"name": "bits_per_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239048928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sizeof_digit", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239049152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_max_str_digits", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239049376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "str_digits_check_threshold", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239049600"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805239048928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264363808"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264363808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239049152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264363920"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264363920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239049376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364032"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805239049600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268509088": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_thread_info", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239116064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239117184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239117408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805239116064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364368"}], "returnType": {"nodeId": "139805264364480"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364368": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417264"}, {"nodeId": "139805268417152"}, {"nodeId": "139805264364256"}]}}, "139805268417264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913664"}}}, "139805271913664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805268417152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913216"}}}, "139805271913216": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139805264364256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805264364480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913664"}}}, "139805239117184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264364704"}], "returnType": {"nodeId": "139805264364816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264364704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417264"}, {"nodeId": "139805268417152"}, {"nodeId": "139805264364592"}]}}, "139805264364592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805264364816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271913216"}}}, "139805239117408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365040"}], "returnType": {"nodeId": "139805264365152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365040": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417264"}, {"nodeId": "139805268417152"}, {"nodeId": "139805264364928"}]}}, "139805264364928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805264365152": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268509440": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_version_info", "members": [{"kind": "Variable", "content": {"name": "major", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239116736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "micro", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "releaselevel", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "serial", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239119872"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805239116736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365376"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365376": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365600"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365600": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805239119872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264365712"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264365712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805272040448": {"type": "Protocol", "content": {"module": "sys", "simpleName": "UnraisableHookArgs", "members": [{"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263535056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268425888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "err_msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268426112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481881792"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["err_msg", "exc_traceback", "exc_type", "exc_value", "object"]}}, "139805263535056": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805268425888": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805268426112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268509792": {"type": "Concrete", "content": {"module": "sys", "simpleName": "_asyncgen_hooks", "members": [{"kind": "Variable", "content": {"name": "firstiter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239123680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalizer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805239124128"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805268426224"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805268563040"}]}], "isAbstract": false}}, "139805239123680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264368176"}], "returnType": {"nodeId": "139805264368288"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264368176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417040"}, {"nodeId": "139805263533152"}]}}, "139805268417040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805271915456": {"type": "Union", "content": {"items": [{"nodeId": "139805276471584"}, {"nodeId": "N"}]}}, "139805276471584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805263533152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805264368288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805239124128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805264368400"}], "returnType": {"nodeId": "139805264368512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264368400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805268417040"}, {"nodeId": "139805263533152"}]}}, "139805264368512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805268426224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271915456"}}}, "139805268563040": {"type": "Union", "content": {"items": [{"nodeId": "139805247096416"}, {"nodeId": "N"}]}}, "139805247096416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481888832", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267811616": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IdentityFunction", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398658944"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805398658944": {"type": "Function", "content": {"typeVars": [".-1.139805398658944"], "argTypes": [{"nodeId": "139805267811616"}, {"nodeId": ".-1.139805398658944"}], "returnType": {"nodeId": ".-1.139805398658944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805398658944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805398658944", "variance": "INVARIANT"}}, "139805267811968": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398659392"}, "name": "__next__"}}], "typeVars": [{"nodeId": ".1.139805267811968"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__next__"]}}, ".1.139805267811968": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267811968", "variance": "COVARIANT"}}, "139805398659392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811968", "args": [{"nodeId": ".1.139805267811968"}]}], "returnType": {"nodeId": ".1.139805267811968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267812320": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAnext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398659840"}, "name": "__anext__"}}], "typeVars": [{"nodeId": ".1.139805267812320"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__anext__"]}}, ".1.139805267812320": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267812320", "variance": "COVARIANT"}}, "139805398659840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267812320", "args": [{"nodeId": ".1.139805267812320"}]}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".1.139805267812320"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267813376": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderLE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398661184"}, "name": "__le__"}}], "typeVars": [{"nodeId": ".1.139805267813376"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__le__"]}}, ".1.139805267813376": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267813376", "variance": "CONTRAVARIANT"}}, "139805398661184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267813376", "args": [{"nodeId": ".1.139805267813376"}]}, {"nodeId": ".1.139805267813376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267813728": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDunderGE", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805398661632"}, "name": "__ge__"}}], "typeVars": [{"nodeId": ".1.139805267813728"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__ge__"]}}, ".1.139805267813728": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267813728", "variance": "CONTRAVARIANT"}}, "139805398661632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267813728", "args": [{"nodeId": ".1.139805267813728"}]}, {"nodeId": ".1.139805267813728"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267814080": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAllComparisons", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267812672", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813024", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813376", "args": [{"nodeId": "A"}]}, {"nodeId": "139805267813728", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__ge__", "__gt__", "__le__", "__lt__"]}}, "139805267815136": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443964992"}, "name": "__sub__"}}], "typeVars": [{"nodeId": ".1.139805267815136"}, {"nodeId": ".2.139805267815136"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__sub__"]}}, ".1.139805267815136": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815136", "variance": "CONTRAVARIANT"}}, ".2.139805267815136": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815136", "variance": "COVARIANT"}}, "139805443964992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267815136", "args": [{"nodeId": ".1.139805267815136"}, {"nodeId": ".2.139805267815136"}]}, {"nodeId": ".1.139805267815136"}], "returnType": {"nodeId": ".2.139805267815136"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267815488": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRSub", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443965440"}, "name": "__rsub__"}}], "typeVars": [{"nodeId": ".1.139805267815488"}, {"nodeId": ".2.139805267815488"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__rsub__"]}}, ".1.139805267815488": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815488", "variance": "CONTRAVARIANT"}}, ".2.139805267815488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815488", "variance": "COVARIANT"}}, "139805443965440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267815488", "args": [{"nodeId": ".1.139805267815488"}, {"nodeId": ".2.139805267815488"}]}, {"nodeId": ".1.139805267815488"}], "returnType": {"nodeId": ".2.139805267815488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267815840": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443965888"}, "name": "__divmod__"}}], "typeVars": [{"nodeId": ".1.139805267815840"}, {"nodeId": ".2.139805267815840"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__divmod__"]}}, ".1.139805267815840": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815840", "variance": "CONTRAVARIANT"}}, ".2.139805267815840": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267815840", "variance": "COVARIANT"}}, "139805443965888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267815840", "args": [{"nodeId": ".1.139805267815840"}, {"nodeId": ".2.139805267815840"}]}, {"nodeId": ".1.139805267815840"}], "returnType": {"nodeId": ".2.139805267815840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267816192": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsRDivMod", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443966336"}, "name": "__rdivmod__"}}], "typeVars": [{"nodeId": ".1.139805267816192"}, {"nodeId": ".2.139805267816192"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__rdivmod__"]}}, ".1.139805267816192": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816192", "variance": "CONTRAVARIANT"}}, ".2.139805267816192": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816192", "variance": "COVARIANT"}}, "139805443966336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267816192", "args": [{"nodeId": ".1.139805267816192"}, {"nodeId": ".2.139805267816192"}]}, {"nodeId": ".1.139805267816192"}], "returnType": {"nodeId": ".2.139805267816192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805267816544": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsIter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443966784"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805267816544"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__iter__"]}}, ".1.139805267816544": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816544", "variance": "COVARIANT"}}, "139805443966784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267816544", "args": [{"nodeId": ".1.139805267816544"}]}], "returnType": {"nodeId": ".1.139805267816544"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267816896": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsAiter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443967232"}, "name": "__aiter__"}}], "typeVars": [{"nodeId": ".1.139805267816896"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__aiter__"]}}, ".1.139805267816896": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267816896", "variance": "COVARIANT"}}, "139805443967232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267816896", "args": [{"nodeId": ".1.139805267816896"}]}], "returnType": {"nodeId": ".1.139805267816896"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267818656": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443970368"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443970816"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805267818656"}, {"nodeId": ".2.139805267818656"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__", "__getitem__"]}}, ".1.139805267818656": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818656", "variance": "CONTRAVARIANT"}}, ".2.139805267818656": {"type": "TypeVar", "content": {"varName": "_VT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267818656", "variance": "COVARIANT"}}, "139805443970368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818656", "args": [{"nodeId": ".1.139805267818656"}, {"nodeId": ".2.139805267818656"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443970816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818656", "args": [{"nodeId": ".1.139805267818656"}, {"nodeId": ".2.139805267818656"}]}, {"nodeId": ".1.139805267818656"}], "returnType": {"nodeId": ".2.139805267818656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267819008": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsItemAccess", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443971264"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443971712"}, "name": "__delitem__"}}], "typeVars": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}], "bases": [{"nodeId": "139805267818656", "args": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}]}], "protocolMembers": ["__contains__", "__delitem__", "__getitem__", "__setitem__"]}}, ".1.139805267819008": {"type": "TypeVar", "content": {"varName": "_KT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267819008", "variance": "CONTRAVARIANT"}}, ".2.139805267819008": {"type": "TypeVar", "content": {"varName": "_VT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267819008", "variance": "INVARIANT"}}, "139805443971264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819008", "args": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}]}, {"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805443971712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819008", "args": [{"nodeId": ".1.139805267819008"}, {"nodeId": ".2.139805267819008"}]}, {"nodeId": ".1.139805267819008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267819360": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "HasFileno", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443972160"}, "name": "fileno"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["fileno"]}}, "139805443972160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267819360"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267820064": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443973056"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139805267820064"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["readline"]}}, ".1.139805267820064": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267820064", "variance": "COVARIANT"}}, "139805443973056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267820064", "args": [{"nodeId": ".1.139805267820064"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805267820064"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805268033600": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsNoArgReadline", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443973504"}, "name": "readline"}}], "typeVars": [{"nodeId": ".1.139805268033600"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["readline"]}}, ".1.139805268033600": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268033600", "variance": "COVARIANT"}}, "139805443973504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268033600", "args": [{"nodeId": ".1.139805268033600"}]}], "returnType": {"nodeId": ".1.139805268033600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268034304": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SliceableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443974400"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805277011488"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139805443974400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268034304"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268034656": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "IndexableBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443974848"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805277011488"}], "protocolMembers": ["__buffer__", "__getitem__"]}}, "139805443974848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268034656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268035008": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SupportsGetItemBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443975296"}, "name": "__contains__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255946912"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805268034304"}, {"nodeId": "139805268034656"}], "protocolMembers": ["__buffer__", "__contains__", "__getitem__"]}}, "139805443975296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268035008"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255946912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805443975744"}, {"nodeId": "139805443976192"}]}}, "139805443975744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268035008"}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443976192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268035008"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268035360": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "SizedBuffer", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276997760"}, {"nodeId": "139805277011488"}], "protocolMembers": ["__buffer__", "__len__"]}}, "139805268036064": {"type": "Protocol", "content": {"module": "_typeshed", "simpleName": "DataclassInstance", "members": [{"kind": "Variable", "content": {"name": "__dataclass_fields__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805267651648", "args": [{"nodeId": "A"}]}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__dataclass_fields__"]}}, "139805267651648": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "Field", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032352", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272712784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "init", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw_only", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339181664"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339182560"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339183008"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805267651648"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805267651648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267651648", "variance": "INVARIANT"}}, "139805272712000": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805267651648"}, {"nodeId": "0"}]}}, "139805272712448": {"type": "Union", "content": {"items": [{"nodeId": "139805267651296", "args": [{"nodeId": ".1.139805267651648"}]}, {"nodeId": "0"}]}}, "139805267651296": {"type": "Protocol", "content": {"module": "dataclasses", "simpleName": "_DefaultFactory", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339181216"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805267651296"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, ".1.139805267651296": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267651296", "variance": "COVARIANT"}}, "139805339181216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267651296", "args": [{"nodeId": ".1.139805267651296"}]}], "returnType": {"nodeId": ".1.139805267651296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272712672": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805272712784": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "0"}]}}, "139805339181664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267651648", "args": [{"nodeId": ".1.139805267651648"}]}, {"nodeId": ".1.139805267651648"}, {"nodeId": "139805255278752"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255442368"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "default", "default_factory", "init", "repr", "hash", "compare", "metadata", "kw_only"]}}, "139805255278752": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": ".1.139805267651648"}, "argKinds": [], "argNames": []}}, "139805255442368": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805339182560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267651648", "args": [{"nodeId": ".1.139805267651648"}]}, {"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "139805339183008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805277008672": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_SpecialForm", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443978432"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443978880"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805443979328"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805443978432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008672"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443978880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008672"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805443979328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277008672"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277009024": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "_TypedDict", "members": [{"kind": "Variable", "content": {"name": "__required_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__optional_keys__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__total__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410230336"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410230784"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410231232"}, "name": "pop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410231680"}, "name": "update"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410232128"}, "name": "items"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410232576"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410233024"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410233472"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410233920"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410234368"}, "name": "__ior__"}}], "typeVars": [], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}], "isAbstract": true}}, "139805410230336": {"type": "Function", "content": {"typeVars": [".0.139805410230336"], "argTypes": [{"nodeId": ".0.139805410230336"}], "returnType": {"nodeId": ".0.139805410230336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805410230336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009024"}, "def": "139805410230336", "variance": "INVARIANT"}}, "139805410230784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}, {"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "k", "default"]}}, "139805410231232": {"type": "Function", "content": {"typeVars": [".-1.139805410231232"], "argTypes": [{"nodeId": "139805277009024"}, {"nodeId": "0"}, {"nodeId": ".-1.139805410231232"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "k", "default"]}}, ".-1.139805410231232": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410231232", "variance": "INVARIANT"}}, "139805410231680": {"type": "Function", "content": {"typeVars": [".-1.139805410231680"], "argTypes": [{"nodeId": ".-1.139805410231680"}, {"nodeId": ".-1.139805410231680"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, ".-1.139805410231680": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805410231680", "variance": "INVARIANT"}}, "139805410232128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}], "returnType": {"nodeId": "139805277002688", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410232576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}], "returnType": {"nodeId": "139805277001984", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410233024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}], "returnType": {"nodeId": "139805277002336", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410233472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009024"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410233920": {"type": "Function", "content": {"typeVars": [".0.139805410233920"], "argTypes": [{"nodeId": ".0.139805410233920"}, {"nodeId": ".0.139805410233920"}], "returnType": {"nodeId": ".0.139805410233920"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805410233920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009024"}, "def": "139805410233920", "variance": "INVARIANT"}}, "139805410234368": {"type": "Function", "content": {"typeVars": [".0.139805410234368"], "argTypes": [{"nodeId": ".0.139805410234368"}, {"nodeId": ".0.139805410234368"}], "returnType": {"nodeId": ".0.139805410234368"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805410234368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009024"}, "def": "139805410234368", "variance": "INVARIANT"}}, "139805277009728": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "NamedTuple", "members": [{"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__orig_bases__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263472208"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247279104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410245120"}, "name": "_asdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410246016"}, "name": "_replace"}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139805263472208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410243776"}, {"nodeId": "139805410244224"}]}}, "139805410243776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009728"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805263681280"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "typename", "fields"]}}, "139805263681280": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805410244224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009728"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "typename", "fields", "kwargs"]}}, "139805247279104": {"type": "Function", "content": {"typeVars": [".0.139805247279104"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".0.139805247279104"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "iterable"]}}, ".0.139805247279104": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009728"}, "def": "139805247279104", "variance": "INVARIANT"}}, "139805410245120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277009728"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410246016": {"type": "Function", "content": {"typeVars": [".0.139805410246016"], "argTypes": [{"nodeId": ".0.139805410246016"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805410246016"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, ".0.139805410246016": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805277009728"}, "def": "139805410246016", "variance": "INVARIANT"}}, "139805277010080": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVar", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__bound__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__constraints__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__covariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247280896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__contravariant__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247281120"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__infer_variance__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247281344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247281568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "constraints", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bound", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "covariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "contravariant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "infer_variance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410413696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410414144"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410414592"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247280000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247280448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805263682176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263682176": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805247280672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247280896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247281120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247281344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247281568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}], "returnType": {"nodeId": "139805263682512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263682512": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410413696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "139805263682848"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805263683072"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "constraints", "bound", "covariant", "contravariant", "default", "infer_variance"]}}, "139805263682848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805263683072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410414144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410414592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010080"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805277010784": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeVarTuple", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247286272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__default__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247287392"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410420416"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410420864"}, "name": "__iter__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805247286272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247287392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}], "returnType": {"nodeId": "139805263684640"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263684640": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410420416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}, {"nodeId": "139805276669024"}, {"nodeId": "139805263684864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "default"]}}, "139805263684864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805410420864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277010784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805277011136": {"type": "Concrete", "content": {"module": "typing_extensions", "simpleName": "TypeAliasType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410422656"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__value__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247288736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__type_params__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247289632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247289856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247290080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805247290304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410425344"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410425792"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410426240"}, "name": "__ror__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805410422656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805263685648"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "type_params"]}}, "139805263685648": {"type": "Union", "content": {"items": [{"nodeId": "139805277010080"}, {"nodeId": "139805277010432"}, {"nodeId": "139805277010784"}]}}, "139805247288736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247289632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805263685872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263685872": {"type": "Union", "content": {"items": [{"nodeId": "139805277010080"}, {"nodeId": "139805277010432"}, {"nodeId": "139805277010784"}]}}, "139805247289856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247290080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805247290304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}], "returnType": {"nodeId": "139805263686096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263686096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805410425344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410425792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410426240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277011136"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277008672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272031648": {"type": "Concrete", "content": {"module": "types", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238299552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__code__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276386720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__dict__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__globals__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238300000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__kwdefaults__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__builtins__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238300672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__module__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "globals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argdefs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closure", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410512896"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410513344"}, "name": "__call__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263882032"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238299552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}], "returnType": {"nodeId": "139805263884720"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263884720": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805276386720": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805238300000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238300672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410512896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "139805272032000"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805263885168"}, {"nodeId": "139805263885280"}, {"nodeId": "139805263885392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "code", "globals", "name", "argdefs", "closure"]}}, "139805263885168": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805263885280": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805263885392": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805410513344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805263882032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410513792"}, {"nodeId": "139805410514240"}]}}, "139805410513792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "N"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "139805272031648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805410514240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272031648"}, {"nodeId": "139805481881792"}, {"nodeId": "139805263885952"}], "returnType": {"nodeId": "139805272035168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805263885952": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272035168": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodType", "members": [{"kind": "Variable", "content": {"name": "__closure__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__defaults__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__func__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238587936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238588160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238588384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414908736"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414909184"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238587040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805264186384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264186384": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805272031296"}]}, {"nodeId": "N"}]}}, "139805238587488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805264186608"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264186608": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805238587712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805272034816"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272034816": {"type": "Concrete", "content": {"module": "types", "simpleName": "_StaticFunctionType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414905600"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805414905600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034816"}, {"nodeId": "139805481881792"}, {"nodeId": "139805264186272"}], "returnType": {"nodeId": "139805272031648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "type"]}}, "139805264186272": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805238587936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238588160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238588384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414908736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}, {"nodeId": "139805276231200"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805276231200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805414909184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035168"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805272032704": {"type": "Concrete", "content": {"module": "types", "simpleName": "SimpleNamespace", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410992064"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410992512"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410992960"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410993408"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805410992064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kwargs"]}}, "139805410992512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805410992960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805410993408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272032704"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272033760": {"type": "Concrete", "content": {"module": "types", "simpleName": "GeneratorType", "members": [{"kind": "Variable", "content": {"name": "gi_yieldfrom", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238436672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410996544"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410996992"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410997440"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263883712"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}], "bases": [{"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}], "isAbstract": false}}, ".1.139805272033760": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272033760", "variance": "COVARIANT"}}, ".2.139805272033760": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272033760", "variance": "CONTRAVARIANT"}}, ".3.139805272033760": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272033760", "variance": "COVARIANT"}}, "139805238436672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}], "returnType": {"nodeId": "139805263887856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805263887856": {"type": "Union", "content": {"items": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805410996544": {"type": "Function", "content": {"typeVars": [".0.139805410996544"], "argTypes": [{"nodeId": ".0.139805410996544"}], "returnType": {"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805410996544": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, "def": "139805410996544", "variance": "INVARIANT"}}, "139805410996992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805410997440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, {"nodeId": ".2.139805272033760"}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263883712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805410997888"}, {"nodeId": "139805410998336"}]}}, "139805410997888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, {"nodeId": "0"}, {"nodeId": "139805263888192"}, {"nodeId": "139805264183360"}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805263888192": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805264183360": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805410998336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033760", "args": [{"nodeId": ".1.139805272033760"}, {"nodeId": ".2.139805272033760"}, {"nodeId": ".3.139805272033760"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805264183472"}], "returnType": {"nodeId": ".1.139805272033760"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264183472": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272034112": {"type": "Concrete", "content": {"module": "types", "simpleName": "AsyncGeneratorType", "members": [{"kind": "Variable", "content": {"name": "ag_await", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238442272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805410999680"}, "name": "__aiter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414899776"}, "name": "__anext__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414900224"}, "name": "asend"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805263887968"}, "items": [{"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "athrow", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "athrow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414901568"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414902016"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}], "bases": [{"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "isAbstract": false}}, ".1.139805272034112": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034112", "variance": "COVARIANT"}}, ".2.139805272034112": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034112", "variance": "CONTRAVARIANT"}}, "139805238442272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "returnType": {"nodeId": "139805264183696"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264183696": {"type": "Union", "content": {"items": [{"nodeId": "139805481887424", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805410999680": {"type": "Function", "content": {"typeVars": [".0.139805410999680"], "argTypes": [{"nodeId": ".0.139805410999680"}], "returnType": {"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805410999680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, "def": "139805410999680", "variance": "INVARIANT"}}, "139805414899776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414900224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, {"nodeId": ".2.139805272034112"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805263887968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805276231424"}, {"nodeId": "139805414900672"}]}}, "139805276231424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, {"nodeId": "0"}, {"nodeId": "139805264184480"}, {"nodeId": "139805264184592"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264184480": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805264184592": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805414900672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805264184816"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805272034112"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264184816": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805414901568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034112", "args": [{"nodeId": ".1.139805272034112"}, {"nodeId": ".2.139805272034112"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414902016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", null]}}, "139805272034464": {"type": "Concrete", "content": {"module": "types", "simpleName": "CoroutineType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cr_origin", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238581440"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414903360"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414903808"}, "name": "__await__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414904256"}, "name": "send"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805264184704"}, "items": [{"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "throw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "throw"}}], "typeVars": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}], "bases": [{"nodeId": "139805481887776", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "isAbstract": false}}, ".1.139805272034464": {"type": "TypeVar", "content": {"varName": "_YieldT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034464", "variance": "COVARIANT"}}, ".2.139805272034464": {"type": "TypeVar", "content": {"varName": "_SendT_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034464", "variance": "CONTRAVARIANT"}}, ".3.139805272034464": {"type": "TypeVar", "content": {"varName": "_ReturnT_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272034464", "variance": "COVARIANT"}}, "139805238581440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "returnType": {"nodeId": "139805264185600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264185600": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805264185488"}]}, {"nodeId": "N"}]}}, "139805264185488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805414903360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414903808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": "A"}, {"nodeId": "N"}, {"nodeId": ".3.139805272034464"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414904256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}, {"nodeId": ".2.139805272034464"}], "returnType": {"nodeId": ".1.139805272034464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805264184704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805414904704"}, {"nodeId": "139805414905152"}]}}, "139805414904704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}, {"nodeId": "0"}, {"nodeId": "139805264185936"}, {"nodeId": "139805264186048"}], "returnType": {"nodeId": ".1.139805272034464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264185936": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "139805481881792"}]}}, "139805264186048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805414905152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272034464", "args": [{"nodeId": ".1.139805272034464"}, {"nodeId": ".2.139805272034464"}, {"nodeId": ".3.139805272034464"}]}, {"nodeId": "139805276675712"}, {"nodeId": "N"}, {"nodeId": "139805264186160"}], "returnType": {"nodeId": ".1.139805272034464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", null, null, null]}}, "139805264186160": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272035520": {"type": "Concrete", "content": {"module": "types", "simpleName": "BuiltinFunctionType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238589952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238590176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238590400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414910976"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238589952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}], "returnType": {"nodeId": "139805264187280"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805264187280": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "139805272033408"}]}}, "139805238590176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238590400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414910976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035520"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805272035872": {"type": "Concrete", "content": {"module": "types", "simpleName": "WrapperDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238657984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238658432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238658656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414912768"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414913216"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238657984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238658432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238658656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414912768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414913216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272035872"}, {"nodeId": "A"}, {"nodeId": "139805264188176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264188176": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272036224": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodWrapperType", "members": [{"kind": "Variable", "content": {"name": "__self__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238660448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238660672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238660896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238661120"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414915456"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414785088"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414785536"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238660448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238660672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238660896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238661120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414915456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414785088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805414785536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036224"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805272036576": {"type": "Concrete", "content": {"module": "types", "simpleName": "MethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238663808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238664032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238664256"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414787328"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414787776"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238663808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238664032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238664256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414787328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414787776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036576"}, {"nodeId": "A"}, {"nodeId": "139805264189184"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264189184": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272036928": {"type": "Concrete", "content": {"module": "types", "simpleName": "ClassMethodDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238666048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238666272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238666496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414789568"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414790016"}, "name": "__get__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238666048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238666272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238666496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414789568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805414790016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272036928"}, {"nodeId": "A"}, {"nodeId": "139805264189856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264189856": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272037984": {"type": "Concrete", "content": {"module": "types", "simpleName": "GetSetDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242515392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238755616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238756064"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414797184"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414797632"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414798080"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805242515392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238755616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238756064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414797184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}, {"nodeId": "A"}, {"nodeId": "139805264190976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264190976": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805414797632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805414798080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272037984"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805272038336": {"type": "Concrete", "content": {"module": "types", "simpleName": "MemberDescriptorType", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238757856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__qualname__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238758080"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__objclass__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238758304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414799872"}, "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414800320"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414800768"}, "name": "__delete__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805238757856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238758080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805238758304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805414799872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}, {"nodeId": "A"}, {"nodeId": "139805264191648"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805264191648": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805414800320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805414800768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272038336"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805272039040": {"type": "Concrete", "content": {"module": "types", "simpleName": "NoneType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805414611136"}, "name": "__bool__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805414611136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272039040"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150972384": {"type": "Protocol", "content": {"module": "numpy.core.records", "simpleName": "_SupportsReadInto", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805393799424"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805393799872"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805393800320"}, "name": "readinto"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["readinto", "seek", "tell"]}}, "139805393799424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972384"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805393799872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972384"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805393800320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972384"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154868416": {"type": "Protocol", "content": {"module": "numpy.core.multiarray", "simpleName": "_SupportsLenAndGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805394266688"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805394267136"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154868416"}, {"nodeId": ".2.139805154868416"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "__len__"]}}, ".1.139805154868416": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154868416", "variance": "CONTRAVARIANT"}}, ".2.139805154868416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154868416", "variance": "COVARIANT"}}, "139805394266688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868416", "args": [{"nodeId": ".1.139805154868416"}, {"nodeId": ".2.139805154868416"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805394267136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154868416", "args": [{"nodeId": ".1.139805154868416"}, {"nodeId": ".2.139805154868416"}]}, {"nodeId": ".1.139805154868416"}], "returnType": {"nodeId": ".2.139805154868416"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154867712": {"type": "Protocol", "content": {"module": "numpy.core.numerictypes", "simpleName": "_CastFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385943392"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805385943392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867712"}, {"nodeId": "139805205198016"}, {"nodeId": "139805205198912"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "k"]}}, "139805205198016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805205198912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805150982240": {"type": "Concrete", "content": {"module": "numpy.core.numerictypes", "simpleName": "_typedict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805385943840"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805150982240"}], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": "0"}, {"nodeId": ".1.139805150982240"}]}], "isAbstract": false}}, ".1.139805150982240": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805150982240", "variance": "INVARIANT"}}, "139805385943840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150982240", "args": [{"nodeId": ".1.139805150982240"}]}, {"nodeId": "139805205199024"}], "returnType": {"nodeId": ".1.139805150982240"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805205199024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805154867360": {"type": "Protocol", "content": {"module": "numpy.lib.arraypad", "simpleName": "_ModeFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vector", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iaxis_pad_width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "iaxis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805390156992"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805390156992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867360"}, {"nodeId": "0"}, {"nodeId": "139805205184800"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null, null]}}, "139805205184800": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805154866656": {"type": "Protocol", "content": {"module": "numpy.lib.function_base", "simpleName": "_TrimZerosSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380923616"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380924064"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380924512"}, "name": "__iter__"}}], "typeVars": [{"nodeId": ".1.139805154866656"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__", "__iter__", "__len__"]}}, ".1.139805154866656": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154866656", "variance": "COVARIANT"}}, "139805380923616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866656", "args": [{"nodeId": ".1.139805154866656"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805380924064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866656", "args": [{"nodeId": ".1.139805154866656"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": ".1.139805154866656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805380924512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866656", "args": [{"nodeId": ".1.139805154866656"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805154867008": {"type": "Protocol", "content": {"module": "numpy.lib.function_base", "simpleName": "_SupportsWriteFlush", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380924960"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805380925408"}, "name": "flush"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["flush", "write"]}}, "139805380924960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867008"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805380925408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154867008"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154864192": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "nd_grid", "members": [{"kind": "Variable", "content": {"name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154864192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sparse", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381300448"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167601920"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154864192"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805154864192": {"type": "TypeVar", "content": {"varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154864192", "variance": "INVARIANT"}}, "139805381300448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864192", "args": [{"nodeId": ".1.139805154864192"}]}, {"nodeId": ".1.139805154864192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sparse"]}}, "139805167601920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163314912"}, {"nodeId": "139805381301344"}]}}, "139805163314912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}, {"nodeId": "139805167604272"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167604272": {"type": "Union", "content": {"items": [{"nodeId": "139805276670432"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276670432"}]}]}}, "139805381301344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}, {"nodeId": "139805167604720"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805167604720": {"type": "Union", "content": {"items": [{"nodeId": "139805276670432"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276670432"}]}]}}, "139805154864544": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "MGridClass", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381301792"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}], "isAbstract": false}}, "139805381301792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154864896": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "OGridClass", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381302240"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154864192", "args": [{"nodeId": "0"}]}], "isAbstract": false}}, "139805381302240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154864896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154865248": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "AxisConcatenator", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381302688"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167601808"}, "items": [{"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "concatenate"}}, {"kind": "Variable", "content": {"name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805130200832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381304480"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805381302688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865248"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "matrix", "ndmin", "trans1d"]}}, "139805167601808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163206048"}, {"nodeId": "139805381303584"}]}}, "139805163206048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167605392"}, {"nodeId": "139805276997408"}, {"nodeId": "N"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}}, "139805167605392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805381303584": {"type": "Function", "content": {"typeVars": [".-1.139805381303584"], "argTypes": [{"nodeId": "139805167605952"}, {"nodeId": "139805276997408"}, {"nodeId": ".-1.139805381303584"}], "returnType": {"nodeId": ".-1.139805381303584"}, "argKinds": ["ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["a", "axis", "out"]}}, "139805167605952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, ".-1.139805381303584": {"type": "TypeVar", "content": {"varName": "_ArrayType", "values": [], "upperBound": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805381303584", "variance": "INVARIANT"}}, "139805130200832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167605280"}, {"nodeId": "139805167606064"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805150586912", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["data", "dtype", "copy"]}}, "139805167605280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805167606064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159384768"}}}, "139805381304480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865248"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154865600": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "RClass", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381304928"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154865248"}], "isAbstract": false}}, "139805381304928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154865952": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "CClass", "members": [{"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "matrix", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "trans1d", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381305376"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805154865248"}], "isAbstract": false}}, "139805381305376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154865952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154866304": {"type": "Concrete", "content": {"module": "numpy.lib.index_tricks", "simpleName": "IndexExpression", "members": [{"kind": "Variable", "content": {"name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154866304"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maketuple", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381305824"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805154598624"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154866304"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805154866304": {"type": "TypeVar", "content": {"varName": "_BoolType", "values": [{"nodeId": "0"}, {"nodeId": "0"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154866304", "variance": "INVARIANT"}}, "139805381305824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": ".1.139805154866304"}]}, {"nodeId": ".1.139805154866304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "maketuple"]}}, "139805154598624": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805381306272"}, {"nodeId": "139805381306720"}, {"nodeId": "139805381307168"}]}}, "139805381306272": {"type": "Function", "content": {"typeVars": [".-1.139805381306272"], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": ".1.139805154866304"}]}, {"nodeId": ".-1.139805381306272"}], "returnType": {"nodeId": ".-1.139805381306272"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805381306272": {"type": "TypeVar", "content": {"varName": "_TupType", "values": [], "upperBound": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "def": "139805381306272", "variance": "INVARIANT"}}, "139805381306720": {"type": "Function", "content": {"typeVars": [".-1.139805381306720"], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.139805381306720"}], "returnType": {"nodeId": "139805167606176"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805381306720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805381306720", "variance": "INVARIANT"}}, "139805167606176": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805381306720"}]}}, "139805381307168": {"type": "Function", "content": {"typeVars": [".-1.139805381307168"], "argTypes": [{"nodeId": "139805154866304", "args": [{"nodeId": "0"}]}, {"nodeId": ".-1.139805381307168"}], "returnType": {"nodeId": ".-1.139805381307168"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805381307168": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805381307168", "variance": "INVARIANT"}}, "139805154862080": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsGetItem", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381310752"}, "name": "__getitem__"}}], "typeVars": [{"nodeId": ".1.139805154862080"}, {"nodeId": ".2.139805154862080"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__getitem__"]}}, ".1.139805154862080": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862080", "variance": "CONTRAVARIANT"}}, ".2.139805154862080": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862080", "variance": "COVARIANT"}}, "139805381310752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862080", "args": [{"nodeId": ".1.139805154862080"}, {"nodeId": ".2.139805154862080"}]}, {"nodeId": ".1.139805154862080"}], "returnType": {"nodeId": ".2.139805154862080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154862432": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsRead", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381311200"}, "name": "read"}}], "typeVars": [{"nodeId": ".1.139805154862432"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read"]}}, ".1.139805154862432": {"type": "TypeVar", "content": {"varName": "_CharType_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862432", "variance": "COVARIANT"}}, "139805381311200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862432", "args": [{"nodeId": ".1.139805154862432"}]}], "returnType": {"nodeId": ".1.139805154862432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154862784": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsReadSeek", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381311648"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805381312096"}, "name": "seek"}}], "typeVars": [{"nodeId": ".1.139805154862784"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read", "seek"]}}, ".1.139805154862784": {"type": "TypeVar", "content": {"varName": "_CharType_co", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154862784", "variance": "COVARIANT"}}, "139805381311648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862784", "args": [{"nodeId": ".1.139805154862784"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805154862784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805381312096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154862784", "args": [{"nodeId": ".1.139805154862784"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805154863136": {"type": "Protocol", "content": {"module": "numpy.lib.npyio", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376954656"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805154863136"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805154863136": {"type": "TypeVar", "content": {"varName": "_CharType_contra", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154863136", "variance": "CONTRAVARIANT"}}, "139805376954656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863136", "args": [{"nodeId": ".1.139805154863136"}]}, {"nodeId": ".1.139805154863136"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154863488": {"type": "Concrete", "content": {"module": "numpy.lib.npyio", "simpleName": "BagObj", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376955104"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376955552"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376956000"}, "name": "__dir__"}}], "typeVars": [{"nodeId": ".1.139805154863488"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805154863488": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154863488", "variance": "COVARIANT"}}, "139805376955104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863488", "args": [{"nodeId": ".1.139805154863488"}]}, {"nodeId": "139805154862080", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".1.139805154863488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805376955552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863488", "args": [{"nodeId": ".1.139805154863488"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805154863488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805376956000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863488", "args": [{"nodeId": ".1.139805154863488"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154863840": {"type": "Concrete", "content": {"module": "numpy.lib.npyio", "simpleName": "NpzFile", "members": [{"kind": "Variable", "content": {"name": "zip", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184479776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154594928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154594704"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805154813744"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805129867776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "own_fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allow_pickle", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pickle_kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376957344"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376957792"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376958240"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376958688"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376959136"}, "name": "__del__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376959584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376960032"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805376960480"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}], "isAbstract": false}}, "139805184479776": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipFile", "members": [{"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805184480480"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "NameToInfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179798112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179798000"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict_timestamps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339221376"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334831616"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334832064"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334832512"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334832960"}, "name": "getinfo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334833408"}, "name": "infolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334833856"}, "name": "namelist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "force_zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334834304"}, "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334834752"}, "name": "extract"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "members", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334835200"}, "name": "extractall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334835648"}, "name": "printdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334836096"}, "name": "setpassword"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334836544"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334836992"}, "name": "testzip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334837440"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zinfo_or_arcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compresslevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334837888"}, "name": "writestr"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805179797328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805184480480": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipInfo", "members": [{"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179798560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compress_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_system", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extract_version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reserved", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flag_bits", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "volume", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "internal_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "external_attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "CRC", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "compress_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "file_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orig_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "date_time", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334839680"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "from_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179885856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334841024"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334841472"}, "name": "FileHeader"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805179798560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179639088"}}}, "139805179639088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805334839680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480480"}, {"nodeId": "139805276669024"}, {"nodeId": "139805180199200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "date_time"]}}, "139805180199200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179639088"}}}, "139805179885856": {"type": "Function", "content": {"typeVars": [".0.139805179885856"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805180199312"}, {"nodeId": "139805180199536"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".0.139805179885856"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "filename", "arcname", "strict_timestamps"]}}, "139805180199312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805276562576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}]}}, "139805180199536": {"type": "Union", "content": {"items": [{"nodeId": "139805180199424"}, {"nodeId": "N"}]}}, "139805180199424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, ".0.139805179885856": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184480480"}, "def": "139805179885856", "variance": "INVARIANT"}}, "139805334841024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480480"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334841472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480480"}, {"nodeId": "139805180199648"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "zip64"]}}, "139805180199648": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805179797776": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805179797888": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805179798112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796880"}}}, "139805179796880": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805179798000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339221376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179802032"}, {"nodeId": "139805179802144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805179802256"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "compresslevel", "strict_timestamps"]}}, "139805179802032": {"type": "Union", "content": {"items": [{"nodeId": "139805179801920"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}]}}, "139805179801920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179802144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796880"}}}, "139805179802256": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805334831616": {"type": "Function", "content": {"typeVars": [".0.139805334831616"], "argTypes": [{"nodeId": ".0.139805334831616"}], "returnType": {"nodeId": ".0.139805334831616"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805334831616": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805184479776"}, "def": "139805334831616", "variance": "INVARIANT"}}, "139805334832064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179802368"}, {"nodeId": "139805179802480"}, {"nodeId": "139805179802592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805179802368": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805179802480": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805179802592": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805334832512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334832960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184480480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805334833408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805184480480"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334833856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334834304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179802704"}, {"nodeId": "139805179802816"}, {"nodeId": "139805179802928"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "mode", "pwd", "force_zip64"]}}, "139805179802704": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179802816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179795536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805179802928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334834752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179803040"}, {"nodeId": "139805179803264"}, {"nodeId": "139805179803376"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "member", "path", "pwd"]}}, "139805179803040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179803264": {"type": "Union", "content": {"items": [{"nodeId": "139805179803152"}, {"nodeId": "N"}]}}, "139805179803152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179803376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334835200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179803600"}, {"nodeId": "139805179803824"}, {"nodeId": "139805179803936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "path", "members", "pwd"]}}, "139805179803600": {"type": "Union", "content": {"items": [{"nodeId": "139805179803488"}, {"nodeId": "N"}]}}, "139805179803488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179803824": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805179803712"}]}, {"nodeId": "N"}]}}, "139805179803712": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179803936": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334835648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179804048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "file"]}}, "139805179804048": {"type": "Union", "content": {"items": [{"nodeId": "139805184479424"}, {"nodeId": "N"}]}}, "139805184479424": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_Writer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339220032"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, "139805339220032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479424"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805334836096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pwd"]}}, "139805334836544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179804160"}, {"nodeId": "139805179804272"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "pwd"]}}, "139805179804160": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179804272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334836992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}], "returnType": {"nodeId": "139805179804384"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805179804384": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805334837440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179804496"}, {"nodeId": "139805179804720"}, {"nodeId": "139805179804832"}, {"nodeId": "139805179804944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "arcname", "compress_type", "compresslevel"]}}, "139805179804496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179804720": {"type": "Union", "content": {"items": [{"nodeId": "139805179804608"}, {"nodeId": "N"}]}}, "139805179804608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805179804832": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805179804944": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805334837888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479776"}, {"nodeId": "139805179805056"}, {"nodeId": "139805179805168"}, {"nodeId": "139805179805280"}, {"nodeId": "139805179805392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "zinfo_or_arcname", "data", "compress_type", "compresslevel"]}}, "139805179805056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805184480480"}]}}, "139805179805168": {"type": "Union", "content": {"items": [{"nodeId": "139805268035360"}, {"nodeId": "139805276669024"}]}}, "139805179805280": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805179805392": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805154594928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}]}}, "139805154594704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805154813744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805376956448"}]}}, "139805376956448": {"type": "Function", "content": {"typeVars": [".-1.139805376956448"], "argTypes": [{"nodeId": ".-1.139805376956448"}], "returnType": {"nodeId": "139805154863488", "args": [{"nodeId": ".-1.139805376956448"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805376956448": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805376956448", "variance": "INVARIANT"}}, "139805129867776": {"type": "Function", "content": {"typeVars": [".-1.139805129867776"], "argTypes": [{"nodeId": ".-1.139805129867776"}], "returnType": {"nodeId": "139805154863488", "args": [{"nodeId": ".-1.139805129867776"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805129867776": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805129867776", "variance": "INVARIANT"}}, "139805376957344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805154816992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "own_fid", "allow_pickle", "pickle_kwargs"]}}, "139805154816992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805376957792": {"type": "Function", "content": {"typeVars": [".-1.139805376957792"], "argTypes": [{"nodeId": ".-1.139805376957792"}], "returnType": {"nodeId": ".-1.139805376957792"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805376957792": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805376957792", "variance": "INVARIANT"}}, "139805376958240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}, {"nodeId": "139805154817104"}, {"nodeId": "139805154817216"}, {"nodeId": "139805154817328"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805154817104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805154817216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805154817328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805376958688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805376959136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805376959584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805376960032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805376960480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154863840"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154860672": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_ArrayWrap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805377350560"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805377350560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154860672"}, {"nodeId": "0"}, {"nodeId": "139805297269824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805297269824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805297269152"}]}}, "139805297269152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805154861024": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_ArrayPrepare", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "array", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805377351008"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805377351008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154861024"}, {"nodeId": "0"}, {"nodeId": "139805297269488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805297269488": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805297269600"}]}}, "139805297269600": {"type": "Tuple", "content": {"items": [{"nodeId": "139805150579520"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481893056"}]}}, "139805154861376": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayWrap", "members": [{"kind": "Variable", "content": {"name": "__array_wrap__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805129611680"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_wrap__"]}}, "139805129611680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154861376"}], "returnType": {"nodeId": "139805154860672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154861728": {"type": "Protocol", "content": {"module": "numpy.lib.shape_base", "simpleName": "_SupportsArrayPrepare", "members": [{"kind": "Variable", "content": {"name": "__array_prepare__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805129612576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_prepare__"]}}, "139805129612576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154861728"}], "returnType": {"nodeId": "139805154861024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154860320": {"type": "Concrete", "content": {"module": "numpy.lib.stride_tricks", "simpleName": "DummyArray", "members": [{"kind": "Variable", "content": {"name": "__array_interface__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805172069680"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "interface", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "base", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805377467040"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805172069680": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805377467040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154860320"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805297263216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "interface", "base"]}}, "139805297263216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805154859616": {"type": "Protocol", "content": {"module": "numpy.lib.type_check", "simpleName": "_SupportsReal", "members": [{"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242665536"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805154859616"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["real"]}}, ".1.139805154859616": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154859616", "variance": "COVARIANT"}}, "139805242665536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154859616", "args": [{"nodeId": ".1.139805154859616"}]}], "returnType": {"nodeId": ".1.139805154859616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154859968": {"type": "Protocol", "content": {"module": "numpy.lib.type_check", "simpleName": "_SupportsImag", "members": [{"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805238427936"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805154859968"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["imag"]}}, ".1.139805154859968": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154859968", "variance": "COVARIANT"}}, "139805238427936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154859968", "args": [{"nodeId": ".1.139805154859968"}]}], "returnType": {"nodeId": ".1.139805154859968"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805154858912": {"type": "Protocol", "content": {"module": "numpy.lib.utils", "simpleName": "_SupportsWrite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372764832"}, "name": "write"}}], "typeVars": [{"nodeId": ".1.139805154858912"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["write"]}}, ".1.139805154858912": {"type": "TypeVar", "content": {"varName": "_T_contra", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805154858912", "variance": "CONTRAVARIANT"}}, "139805372764832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154858912", "args": [{"nodeId": ".1.139805154858912"}]}, {"nodeId": ".1.139805154858912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805154859264": {"type": "Concrete", "content": {"module": "numpy.lib.utils", "simpleName": "_Deprecate", "members": [{"kind": "Variable", "content": {"name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154932016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154932688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154932800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "old_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372765280"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805372765728"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805154932016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805154932688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805154932800": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805372765280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154859264"}, {"nodeId": "139805217831200"}, {"nodeId": "139805217830304"}, {"nodeId": "139805217822128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "old_name", "new_name", "message"]}}, "139805217831200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805217830304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805217822128": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}]}}, "139805372765728": {"type": "Function", "content": {"typeVars": [".-1.139805372765728"], "argTypes": [{"nodeId": "139805154859264"}, {"nodeId": ".-1.139805372765728"}], "returnType": {"nodeId": ".-1.139805372765728"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805372765728": {"type": "TypeVar", "content": {"varName": "_FuncType", "values": [], "upperBound": {"nodeId": "139805159391296"}, "def": "139805372765728", "variance": "INVARIANT"}}, "139805159391296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805154854336": {"type": "Protocol", "content": {"module": "numpy._typing._array_like", "simpleName": "_SupportsArrayFunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "types", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335726432"}, "name": "__array_function__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__array_function__"]}}, "139805335726432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154854336"}, {"nodeId": "139805163566048"}, {"nodeId": "139805481889536", "args": [{"nodeId": "0"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "types", "args", "kwargs"]}}, "139805163566048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805167806496": {"type": "Concrete", "content": {"module": "numpy._typing._generic_alias", "simpleName": "_GenericAlias", "members": [{"kind": "Variable", "content": {"name": "__slots__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805133480656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__origin__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196595968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196598432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__parameters__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196597760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__unpacked__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196597312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__typing_unpacked_tuple_args__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196596640"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339460640"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805196596416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339457952"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339461984"}, "name": "__mro_entries__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339462432"}, "name": "__dir__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339462880"}, "name": "__hash__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339463328"}, "name": "__instancecheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339463776"}, "name": "__subclasscheck__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339464224"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339461536"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339465120"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339464672"}, "name": "__iter__"}}, {"kind": "Variable", "content": {"name": "_ATTR_EXCEPTIONS", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003392", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339466016"}, "name": "__getattribute__"}}, {"kind": "Variable", "content": {"name": "_origin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481892352"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805133482560"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_parameters", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481882848"}]}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_starred", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805133480656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805196595968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805481892352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196598432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196597760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481882848"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196597312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805196596640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805213566432"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213566432": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805339460640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481892352"}, {"nodeId": "139805213567664"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "origin", "args", "starred"]}}, "139805213567664": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}]}}, "139805196596416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339457952": {"type": "Function", "content": {"typeVars": [".-1.139805339457952"], "argTypes": [{"nodeId": ".-1.139805339457952"}], "returnType": {"nodeId": "139805213560496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805339457952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805167806496"}, "def": "139805339457952", "variance": "INVARIANT"}}, "139805213560496": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805213559488"}]}}, "139805213559488": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805481882144"}]}}, "139805339461984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481881792"}]}], "returnType": {"nodeId": "139805213559152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bases"]}}, "139805213559152": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}]}}, "139805339462432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339462880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339463328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805339463776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481892352"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}}, "139805339464224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805339461536": {"type": "Function", "content": {"typeVars": [".-1.139805339461536"], "argTypes": [{"nodeId": ".-1.139805339461536"}, {"nodeId": "139805213557920"}], "returnType": {"nodeId": ".-1.139805339461536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805339461536": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805167806496"}, "def": "139805339461536", "variance": "INVARIANT"}}, "139805213557920": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}]}}, "139805339465120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339464672": {"type": "Function", "content": {"typeVars": [".-1.139805339464672"], "argTypes": [{"nodeId": ".-1.139805339464672"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".-1.139805339464672"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805339464672": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805167806496"}, "def": "139805339464672", "variance": "INVARIANT"}}, "139805339466016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806496"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805133482560": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}]}}, "139805154855040": {"type": "Concrete", "content": {"module": "numpy.ctypeslib", "simpleName": "_ndptr", "members": [{"kind": "Variable", "content": {"name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154855040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_ndim_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805154925296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_flags_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805172065760"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213333024"}, "items": [{"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "from_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "from_param"}}], "typeVars": [{"nodeId": ".1.139805154855040"}], "bases": [{"nodeId": "139805171897568"}], "isAbstract": false}}, ".1.139805154855040": {"type": "TypeVar", "content": {"varName": "_DTypeOptional", "values": [], "upperBound": {"nodeId": "139805213570240"}, "def": "139805154855040", "variance": "INVARIANT"}}, "139805213570240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}]}}, "139805154925296": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805172065760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805154928544"}]}]}}, "139805154928544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805154931344"}}}, "139805154931344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805213333024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805372775136"}, {"nodeId": "139805372775584"}]}}, "139805372775136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, "139805372775584": {"type": "Function", "content": {"typeVars": [".-1.139805372775584"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".-1.139805372775584"}]}], "returnType": {"nodeId": "139805155353952", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "obj"]}}, ".-1.139805372775584": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805372775584", "variance": "INVARIANT"}}, "139805154855392": {"type": "Concrete", "content": {"module": "numpy.ctypeslib", "simpleName": "_concrete_ndptr", "members": [{"kind": "Variable", "content": {"name": "_dtype_", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805154855392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_shape_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805209252288"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805154855392"}], "bases": [{"nodeId": "139805154855040", "args": [{"nodeId": ".1.139805154855392"}]}], "isAbstract": false}}, ".1.139805154855392": {"type": "TypeVar", "content": {"varName": "_DType", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805154855392", "variance": "INVARIANT"}}, "139805209252288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154855392", "args": [{"nodeId": ".1.139805154855392"}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": ".1.139805154855392"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193089472": {"type": "Concrete", "content": {"module": "numpy.lib._version", "simpleName": "NumpyVersion", "members": [{"kind": "Variable", "content": {"name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "major", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "minor", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bugfix", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pre_release", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_devversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vstring", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326314624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326315072"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326315520"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326315968"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326316416"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326316864"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326317312"}, "name": "__ge__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805326314624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "vstring"]}}, "139805326315072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184445904"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184445904": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326315520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446016"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446016": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326315968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446128"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326316416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446240"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446240": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326316864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446352"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805326317312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089472"}, {"nodeId": "139805184446576"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184446576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805193089472"}]}}, "139805150972032": {"type": "Concrete", "content": {"module": "numpy.linalg", "simpleName": "LinAlgError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805167808256": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MAError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805167808608": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805167808256"}], "isAbstract": false}}, "139805150980128": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedArray", "members": [{"kind": "Variable", "content": {"name": "__array_priority__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ndmin", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012672"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012944"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327013216"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327013488"}, "name": "view"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327013760"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327014032"}, "name": "__setitem__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213567888"}, "items": [{"kind": "Variable", "content": {"name": "dtype", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201424768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "dtype"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213342208"}, "items": [{"kind": "Variable", "content": {"name": "shape", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201425664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "shape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327015392"}, "name": "__setmask__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213341312"}, "items": [{"kind": "Variable", "content": {"name": "mask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201425888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "mask"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213342544"}, "items": [{"kind": "Variable", "content": {"name": "recordmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201425216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "recordmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "recordmask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322363760"}, "name": "harden_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322364032"}, "name": "soften_mask"}}, {"kind": "Variable", "content": {"name": "hardmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201426112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322364576"}, "name": "unshare_mask"}}, {"kind": "Variable", "content": {"name": "sharedmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201421856"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322365120"}, "name": "shrink_mask"}}, {"kind": "Variable", "content": {"name": "baseclass", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805339457056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213341536"}, "items": [{"kind": "Variable", "content": {"name": "flat", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805159123072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "flat"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805213338848"}, "items": [{"kind": "Variable", "content": {"name": "fill_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201417376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fill_value"}}, {"kind": "Variable", "content": {"name": "get_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "set_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322366752"}, "name": "filled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367024"}, "name": "compressed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "condition", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367296"}, "name": "compress"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367568"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322367840"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368112"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368384"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368656"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322368928"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322369200"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322369472"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322369744"}, "name": "__div__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370016"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370288"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370560"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322370832"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371104"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371376"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371648"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322371920"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322372192"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322372464"}, "name": "__idiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322372736"}, "name": "__ifloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373008"}, "name": "__itruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373280"}, "name": "__ipow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373552"}, "name": "__float__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322373824"}, "name": "__int__"}}, {"kind": "Variable", "content": {"name": "imag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805201426336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_imag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "real", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805163565376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_real", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322374640"}, "name": "count"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322374912"}, "name": "ravel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322375184"}, "name": "reshape"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newshape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refcheck", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322375456"}, "name": "resize"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322375728"}, "name": "put"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376000"}, "name": "ids"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376272"}, "name": "iscontiguous"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376544"}, "name": "all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322376816"}, "name": "any"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377088"}, "name": "nonzero"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377360"}, "name": "trace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377632"}, "name": "dot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322377904"}, "name": "sum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378176"}, "name": "cumsum"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378448"}, "name": "prod"}}, {"kind": "Variable", "content": {"name": "product", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378720"}, "name": "cumprod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322378992"}, "name": "mean"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322461248"}, "name": "anom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322461520"}, "name": "var"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ddof", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322461792"}, "name": "std"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decimals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462064"}, "name": "round"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462336"}, "name": "argsort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462608"}, "name": "argmin"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322462880"}, "name": "argmax"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "endwith", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463152"}, "name": "sort"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463424"}, "name": "min"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463696"}, "name": "max"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepdims", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322463968"}, "name": "ptp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322464240"}, "name": "partition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322464512"}, "name": "argpartition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indices", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322464784"}, "name": "take"}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "diagonal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flatten", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "repeat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "squeeze", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "swapaxes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "transpose", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465056"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "order", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465328"}, "name": "tobytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465600"}, "name": "tofile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322465872"}, "name": "toflex"}}, {"kind": "Variable", "content": {"name": "torecords", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466144"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466416"}, "name": "__deepcopy__"}}], "typeVars": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}], "bases": [{"nodeId": "139805155356768", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "isAbstract": false}}, ".1.139805150980128": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150980128", "variance": "INVARIANT"}}, ".2.139805150980128": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150980128", "variance": "COVARIANT"}}, "139805327012672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "data", "mask", "dtype", "copy", "subok", "ndmin", "fill_value", "keep_mask", "hard_mask", "shrink", "order"]}}, "139805327012944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805327013216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "139805327013488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type", "fill_value"]}}, "139805327013760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805327014032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805213567888": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159310272"}]}}, "139805159310272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201424768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213342208": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159309376"}]}}, "139805159309376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201425664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327015392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mask", "copy"]}}, "139805213341312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159309824"}]}}, "139805159309824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201425888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213342544": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159311168"}]}}, "139805159311168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201425216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322363760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322364032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201426112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322364576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201421856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322365120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339457056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213341536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163565152"}]}}, "139805163565152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805159123072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213338848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805163568736"}]}}, "139805163568736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805201417376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322366752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805322367024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322367296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "condition", "axis", "out"]}}, "139805322367568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322367840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322368928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322369200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322369472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322369744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805322370016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322370288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322370560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322370832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322371920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322372192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322372464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322372736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322373008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322373280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322373552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805322373824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805201426336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163565376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980128"}, {"nodeId": ".2.139805150980128"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322374640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "keepdims"]}}, "139805322374912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "order"]}}, "139805322375184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "s", "kwargs"]}}, "139805322375456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "newshape", "refcheck", "order"]}}, "139805322375728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "indices", "values", "mode"]}}, "139805322376000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322376272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322376544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805322376816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "keepdims"]}}, "139805322377088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322377360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "offset", "axis1", "axis2", "dtype", "out"]}}, "139805322377632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "b", "out", "strict"]}}, "139805322377904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "139805322378176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805322378448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "139805322378720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out"]}}, "139805322378992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "keepdims"]}}, "139805322461248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype"]}}, "139805322461520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims"]}}, "139805322461792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "dtype", "out", "ddof", "keepdims"]}}, "139805322462064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "decimals", "out"]}}, "139805322462336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order", "endwith", "fill_value"]}}, "139805322462608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "fill_value", "out", "keepdims"]}}, "139805322462880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "axis", "fill_value", "out", "keepdims"]}}, "139805322463152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "kind", "order", "endwith", "fill_value"]}}, "139805322463424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "139805322463696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "139805322463968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "axis", "out", "fill_value", "keepdims"]}}, "139805322464240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805322464512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805322464784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "indices", "axis", "out", "mode"]}}, "139805322465056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805322465328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fill_value", "order"]}}, "139805322465600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fid", "sep", "format"]}}, "139805322465872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322466144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322466416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "memo"]}}, "139805150980480": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "mvoid", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hardmask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466688"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322466960"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322467232"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322467504"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322467776"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322468048"}, "name": "filled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322468320"}, "name": "tolist"}}], "typeVars": [{"nodeId": ".1.139805150980480"}, {"nodeId": ".2.139805150980480"}], "bases": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150980480"}, {"nodeId": ".2.139805150980480"}]}], "isAbstract": false}}, ".1.139805150980480": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150980480", "variance": "INVARIANT"}}, ".2.139805150980480": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150980480", "variance": "COVARIANT"}}, "139805322466688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "mask", "dtype", "fill_value", "hardmask", "copy", "subok"]}}, "139805322466960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805322467232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805322467504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805322467776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805322468048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805322468320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980480"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150971328": {"type": "Concrete", "content": {"module": "numpy.polynomial.chebyshev", "simpleName": "Chebyshev", "members": [{"kind": "Variable", "content": {"name": "interpolate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096398624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805096398624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "func", "deg", "domain", "args"]}}, "139805193084544": {"type": "Concrete", "content": {"module": "numpy.polynomial._polybase", "simpleName": "ABCPolyBase", "members": [{"kind": "Variable", "content": {"name": "__hash__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxpower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "symbol", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188137344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188136672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188136896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188401952"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305613264"}, "name": "has_samecoef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305613536"}, "name": "has_samedomain"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305613808"}, "name": "has_samewindow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305614080"}, "name": "has_sametype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "coef", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "symbol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305897248"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt_str", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305614624"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305614896"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615168"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615440"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615712"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305615984"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305616256"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305616528"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305616800"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617072"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617344"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617616"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305617888"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305618160"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305536576"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305536848"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537120"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537392"}, "name": "__rdiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537664"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305537936"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305538208"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305538480"}, "name": "__rdivmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305538752"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539024"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539296"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539568"}, "name": "degree"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "deg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305539840"}, "name": "cutdeg"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540112"}, "name": "trim"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540384"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540656"}, "name": "convert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305540928"}, "name": "mapparms"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "k", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lbnd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305541200"}, "name": "integ"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "m", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305541472"}, "name": "deriv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305541744"}, "name": "roots"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305542016"}, "name": "linspace"}}, {"kind": "Variable", "content": {"name": "fit", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242754880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fromroots", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188726048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "identity", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188142272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188139808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188139584"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879712"}], "isAbstract": true}}, "139805188137344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188136672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188136896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188401952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305613264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305613536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305613808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305614080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305897248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "coef", "domain", "window", "symbol"]}}, "139805305614624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt_str"]}}, "139805305614896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}}, "139805305615168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305615440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305615712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305615984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805305616256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305616528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305616800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305617888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305618160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305536576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305536848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305537936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305538208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305538480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805305538752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305539024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305539296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305539568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305539840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "deg"]}}, "139805305540112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tol"]}}, "139805305540384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "size"]}}, "139805305540656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "domain", "kind", "window"]}}, "139805305540928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305541200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "m", "k", "lbnd"]}}, "139805305541472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "m"]}}, "139805305541744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305542016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193084544"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "n", "domain"]}}, "139805242754880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "x", "y", "deg", "domain", "rcond", "full", "w", "window"]}}, "139805188726048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "roots", "domain", "window"]}}, "139805188142272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "domain", "window"]}}, "139805188139808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "deg", "domain", "window"]}}, "139805188139584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "series", "domain", "window"]}}, "139805276879712": {"type": "Concrete", "content": {"module": "abc", "simpleName": "ABC", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805150970976": {"type": "Concrete", "content": {"module": "numpy.polynomial.hermite", "simpleName": "Hermite", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150970624": {"type": "Concrete", "content": {"module": "numpy.polynomial.hermite_e", "simpleName": "HermiteE", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150970272": {"type": "Concrete", "content": {"module": "numpy.polynomial.laguerre", "simpleName": "Laguerre", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150969920": {"type": "Concrete", "content": {"module": "numpy.polynomial.legendre", "simpleName": "Legendre", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150592544": {"type": "Concrete", "content": {"module": "numpy.polynomial.polynomial", "simpleName": "Polynomial", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "window", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "basis_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805193084544"}], "isAbstract": false}}, "139805150977664": {"type": "Concrete", "content": {"module": "numpy.random._generator", "simpleName": "Generator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327264224"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327264672"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327265120"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327265568"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327266016"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327266464"}, "name": "__reduce__"}}, {"kind": "Variable", "content": {"name": "bit_generator", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100766624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327267360"}, "name": "bytes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138147968"}, "items": [{"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138147744"}, "items": [{"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "permutation"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138153232"}, "items": [{"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138240672"}, "items": [{"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138242128"}, "items": [{"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "beta"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138245264"}, "items": [{"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138245824"}, "items": [{"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "integers"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138246496"}, "items": [{"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choice"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201014160"}, "items": [{"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "uniform"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138296320"}, "items": [{"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138255120"}, "items": [{"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138301696"}, "items": [{"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138302592"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138303488"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138304272"}, "items": [{"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138304384"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138355360"}, "items": [{"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_t"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138356368"}, "items": [{"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vonmises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138357264"}, "items": [{"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pareto"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138358048"}, "items": [{"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "weibull"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138358720"}, "items": [{"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "power"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201013712"}, "items": [{"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_cauchy"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138360288"}, "items": [{"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "laplace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138360400"}, "items": [{"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gumbel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138361744"}, "items": [{"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logistic"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138362528"}, "items": [{"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lognormal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138363312"}, "items": [{"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rayleigh"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138364096"}, "items": [{"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "wald"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138364768"}, "items": [{"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "triangular"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138365552"}, "items": [{"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201013040"}, "items": [{"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "negative_binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138367456"}, "items": [{"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "poisson"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138368464"}, "items": [{"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "zipf"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138369136"}, "items": [{"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "geometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805201013376"}, "items": [{"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "hypergeometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138436384"}, "items": [{"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logseries"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318712224"}, "name": "multivariate_normal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318712672"}, "name": "multinomial"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "colors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "nsample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318713120"}, "name": "multivariate_hypergeometric"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318713568"}, "name": "dirichlet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "out", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318714016"}, "name": "permuted"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318714464"}, "name": "shuffle"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327264224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805150592192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "bit_generator"]}}, "139805150592192": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "BitGenerator", "members": [{"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193080672"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323108960"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323109408"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323109856"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323110304"}, "name": "__reduce__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805150870016"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096422624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805150869904"}, "items": [{"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cnt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "method", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323112992"}, "name": "_benchmark"}}, {"kind": "Variable", "content": {"name": "ctypes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096423968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cffi", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096423520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879712"}], "isAbstract": true}}, "139805193080672": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Lock", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305912928"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292937504"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292937952"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292938400"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292938848"}, "name": "locked"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805305912928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805292937504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}, {"nodeId": "139805188793040"}, {"nodeId": "139805188793152"}, {"nodeId": "139805188793264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188793040": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188793152": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188793264": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292937952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292938400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292938848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080672"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805323108960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805142636064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805142636064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142636400"}, {"nodeId": "139805150591840"}]}}, "139805142636400": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150591840": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "SeedSequence", "members": [{"kind": "Variable", "content": {"name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150867328"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pool", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805150868672"}]}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "entropy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spawn_key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pool_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children_spawned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323106720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323107168"}, "name": "__repr__"}}, {"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805096420384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323108064"}, "name": "generate_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323108512"}, "name": "spawn"}}], "typeVars": [], "bases": [{"nodeId": "139805150591136"}], "isAbstract": false}}, "139805150867328": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}]}}, "139805150868672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805323106720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}, {"nodeId": "139805142634944"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "entropy", "spawn_key", "pool_size", "n_children_spawned"]}}, "139805142634944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805142635280"}]}}, "139805142635280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805323107168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805096420384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}], "returnType": {"nodeId": "139805142635168"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142635168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805323108064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142635392"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142635840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "139805142635392": {"type": "Union", "content": {"items": [{"nodeId": "139805142632704"}, {"nodeId": "139805142635056"}]}}, "139805142632704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201277984"}}}, "139805201277984": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150859264"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150658032"}]}]}, {"nodeId": "0"}, {"nodeId": "139805150655680"}]}}, "139805150859264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805150658032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805150655680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805142635056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201274624"}}}, "139805201274624": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150658144"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805150859712"}]}]}, {"nodeId": "0"}, {"nodeId": "139805150859600"}]}}, "139805150658144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805150859712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805150859600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805142635840": {"type": "Union", "content": {"items": [{"nodeId": "139805142635616"}, {"nodeId": "139805142635728"}]}}, "139805142635616": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805142635728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323108512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591840"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805150591840"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, "139805150591136": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "ISpawnableSeedSequence", "members": [{"kind": "Variable", "content": {"name": "spawn", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096417024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805150590784"}], "isAbstract": true}}, "139805096417024": {"type": "Function", "content": {"typeVars": [".-1.139805096417024"], "argTypes": [{"nodeId": ".-1.139805096417024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805096417024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, ".-1.139805096417024": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805096417024", "variance": "INVARIANT"}}, "139805150590784": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "ISeedSequence", "members": [{"kind": "Variable", "content": {"name": "generate_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096416352"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879712"}], "isAbstract": true}}, "139805096416352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150590784"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142633488"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142633936"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "139805142633488": {"type": "Union", "content": {"items": [{"nodeId": "139805142633264"}, {"nodeId": "139805142633376"}]}}, "139805142633264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201277984"}}}, "139805142633376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201274624"}}}, "139805142633936": {"type": "Union", "content": {"items": [{"nodeId": "139805142633712"}, {"nodeId": "139805142633824"}]}}, "139805142633712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805142633824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323109408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805323109856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805323110304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805142637072"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142637072": {"type": "Tuple", "content": {"items": [{"nodeId": "139805184342304"}, {"nodeId": "139805142636512"}, {"nodeId": "139805142636848"}]}}, "139805184342304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150592192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805142636512": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805142636848": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805150870016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805323110752"}]}}, "139805323110752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805096422624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150869904": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805323111648"}, {"nodeId": "139805323112096"}, {"nodeId": "139805323112544"}]}}, "139805323111648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "N"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "139805323112096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805142638192"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142638528"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "139805142638192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805142638528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323112544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805142638976"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "output"]}}, "139805142638976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805142638864"}]}}, "139805142638864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805323112992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cnt", "method"]}}, "139805096423968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805142639200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142639200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150863744"}}}, "139805150863744": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}]}}, "139805096423520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150592192"}], "returnType": {"nodeId": "139805142639312"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805142639312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150863744"}}}, "139805327264672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805327265120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805327265568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327266016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805327266464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805138148864"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138148864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805188332384"}, {"nodeId": "139805138148528"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805188332384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150977664"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805138148528": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805100766624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}], "returnType": {"nodeId": "139805150592192"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327267360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}}, "139805138147968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327267808"}, {"nodeId": "139805327268256"}, {"nodeId": "139805327268704"}, {"nodeId": "139805327269152"}, {"nodeId": "139805327269600"}]}}, "139805327267808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}, {"nodeId": "139805138149536"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138149536": {"type": "Union", "content": {"items": [{"nodeId": "139805138149312"}, {"nodeId": "139805138149424"}]}}, "139805138149312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805201014720": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805151032176"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805201014944"}]}]}, {"nodeId": "0"}, {"nodeId": "139805201014832"}, {"nodeId": "139805201014496"}]}}, "139805151032176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805201014944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805201014832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595264"}}}, "139805201014496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184656544"}}}, "139805138149424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805201012816": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805151028256"}]}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805201013600"}]}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805201013264"}, {"nodeId": "139805201013152"}]}}, "139805151028256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184595936"}}}, "139805201013152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184657664"}}}, "139805327268256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138150096"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138149984"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138150096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138149984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327268704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138150544"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138150768"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "139805138150544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138150768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327269152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138151104"}, {"nodeId": "139805138151216"}, {"nodeId": "139805138151552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138151776"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138151104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138151216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138151552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138151440"}]}]}]}}, "139805138151440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138151776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805327269600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138151888"}, {"nodeId": "139805138150992"}, {"nodeId": "139805138152560"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138152784"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138151888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138150992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138152560": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138152448"}]}]}]}}, "139805138152448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138152784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138147744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327270048"}, {"nodeId": "139805327270496"}]}}, "139805327270048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138152896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "139805138152896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805327270496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138152224"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "139805138152224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138153232": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327270944"}, {"nodeId": "139805327271392"}, {"nodeId": "139805327271840"}, {"nodeId": "139805327272288"}, {"nodeId": "139805327272736"}, {"nodeId": "139805327273184"}]}}, "139805327270944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}, {"nodeId": "139805138154128"}, {"nodeId": "139805138154464"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "139805138154128": {"type": "Union", "content": {"items": [{"nodeId": "139805138153904"}, {"nodeId": "139805138154016"}]}}, "139805138153904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138154016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138154464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805327271392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138155024"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138154912"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138155024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138154912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327271840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138155472"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138155696"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "139805138155472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138155696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327272288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138156032"}, {"nodeId": "139805138156368"}, {"nodeId": "139805138156704"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138156928"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "method", "out"]}}, "139805138156032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138156368": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138156704": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138156592"}]}]}]}}, "139805138156592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138156928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327272736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138157264"}, {"nodeId": "139805138157376"}, {"nodeId": "139805138239776"}, {"nodeId": "139805138240112"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138240336"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "139805138157264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138157376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138239776": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138240112": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138240000"}]}]}]}}, "139805138240000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138240336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805327273184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138240448"}, {"nodeId": "139805138240560"}, {"nodeId": "139805138241120"}, {"nodeId": "139805138241456"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138241680"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "method", "out"]}}, "139805138240448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138240560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138241120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138241456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138241344"}]}]}]}}, "139805138241344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138241680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138240672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327273632"}, {"nodeId": "139805327274080"}, {"nodeId": "139805327274528"}, {"nodeId": "139805327274976"}, {"nodeId": "139805327275424"}]}}, "139805327273632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}, {"nodeId": "139805138240784"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138240784": {"type": "Union", "content": {"items": [{"nodeId": "139805138241904"}, {"nodeId": "139805138241792"}]}}, "139805138241904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138241792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805327274080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242800"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242464"}]}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "out"]}}, "139805138242800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138242464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327274528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138242576"}, {"nodeId": "139805138243024"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138243248"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "size", "out"]}}, "139805138242576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138243024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242352"}]}]}]}}, "139805138242352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138243248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805327274976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138243360"}, {"nodeId": "139805138243472"}, {"nodeId": "139805138243808"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138244032"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138243360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138243472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138243808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138243696"}]}]}]}}, "139805138243696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138244032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805327275424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138244256"}, {"nodeId": "139805138244480"}, {"nodeId": "139805138244592"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138244816"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "dtype", "out"]}}, "139805138244256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138244480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138244592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138242912"}]}]}]}}, "139805138242912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138244816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138242128": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327275872"}, {"nodeId": "139805327276320"}]}}, "139805327275872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805327276320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138245040"}, {"nodeId": "139805138244928"}, {"nodeId": "139805138245376"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138245600"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805138245040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138244928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138245376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138244368"}]}}, "139805138244368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138245600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138245264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327276768"}, {"nodeId": "139805327277216"}]}}, "139805327276768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805327277216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138245152"}, {"nodeId": "139805138246048"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138246272"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805138245152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138246048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138245712"}]}}, "139805138245712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138246272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138245824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805327277664"}, {"nodeId": "139805318283552"}, {"nodeId": "139805318284000"}, {"nodeId": "139805318284448"}, {"nodeId": "139805318284896"}, {"nodeId": "139805318285344"}, {"nodeId": "139805318285792"}, {"nodeId": "139805318286240"}, {"nodeId": "139805318286688"}, {"nodeId": "139805318287136"}, {"nodeId": "139805318287584"}, {"nodeId": "139805318288032"}, {"nodeId": "139805318288480"}, {"nodeId": "139805318288928"}, {"nodeId": "139805318289376"}]}}, "139805327277664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138245936"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}}, "139805138245936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805318283552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138246384"}, {"nodeId": "N"}, {"nodeId": "139805138246720"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138246384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805138246720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805159554320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805159552304"}]}}, "139805159552304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184457552"}}}, "139805318284000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138246944"}, {"nodeId": "N"}, {"nodeId": "139805138247168"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138246944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805138247168": {"type": "Union", "content": {"items": [{"nodeId": "139805138246832"}, {"nodeId": "139805138246608"}]}}, "139805138246832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200898912"}}}, "139805200898912": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805159382416"}, {"nodeId": "139805159378944"}, {"nodeId": "139805159382304"}, {"nodeId": "139805159382192"}, {"nodeId": "139805159382976"}, {"nodeId": "139805159383424"}, {"nodeId": "139805159382528"}, {"nodeId": "139805200899584"}, {"nodeId": "139805200899360"}, {"nodeId": "139805200899472"}]}}, "139805159382416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805159378944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805159382304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805159382192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805159382976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184597952"}}}, "139805159383424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184598624"}}}, "139805159382528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184599296"}}}, "139805200899584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184600192"}}}, "139805200899360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805200899472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601648"}}}, "139805138246608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200899696"}}}, "139805200899696": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805167807552", "args": [{"nodeId": "0"}]}, {"nodeId": "139805159381408"}, {"nodeId": "139805200901936"}, {"nodeId": "139805200902832"}, {"nodeId": "139805200902608"}, {"nodeId": "139805200901712"}, {"nodeId": "139805200902720"}, {"nodeId": "139805200902160"}, {"nodeId": "139805200900144"}, {"nodeId": "139805200900256"}, {"nodeId": "139805200899024"}]}}, "139805159381408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805200901936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805200902832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805200902608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805200901712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602320"}}}, "139805200902720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184602992"}}}, "139805200902160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184603664"}}}, "139805200900144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184604560"}}}, "139805200900256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805200899024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605904"}}}, "139805318284448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138249072"}, {"nodeId": "139805138247952"}, {"nodeId": "139805138249632"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138248288"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138249072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138247952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138249744"}]}}, "139805138249744": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138249632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138248736"}]}}, "139805138248736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138248288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318284896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138248960"}, {"nodeId": "139805138249184"}, {"nodeId": "139805138248848"}, {"nodeId": "139805138248064"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138248960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138249184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138249296"}]}}, "139805138249296": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138248848": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138247504"}]}}, "139805138247504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138248064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805318285344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138248624"}, {"nodeId": "139805138247616"}, {"nodeId": "139805138248400"}, {"nodeId": "139805138247840"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138249968"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138248624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138247616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138249520"}]}}, "139805138249520": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138248400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138248512"}]}}, "139805138248512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138247840": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138249408"}]}, {"nodeId": "0"}, {"nodeId": "139805138247056"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138247280"}]}]}]}}, "139805138249408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805138247056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805138247280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805138249968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805318285792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138250304"}, {"nodeId": "139805138250080"}, {"nodeId": "139805138250528"}, {"nodeId": "139805138250976"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138251200"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138250304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138250080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138247392"}]}}, "139805138247392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138250528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138250416"}]}}, "139805138250416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138250976": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138250640"}]}, {"nodeId": "0"}, {"nodeId": "139805138250752"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138250864"}]}]}]}}, "139805138250640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805138250752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805138250864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805138251200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805318286240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138251536"}, {"nodeId": "139805138251312"}, {"nodeId": "139805138251760"}, {"nodeId": "139805138252208"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138252432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138251536": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138251312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138250192"}]}}, "139805138250192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138251760": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138251648"}]}}, "139805138251648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138252208": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138251872"}]}, {"nodeId": "0"}, {"nodeId": "139805138251984"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138252096"}]}]}]}}, "139805138251872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805138251984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805138252096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805138252432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805318286688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138252768"}, {"nodeId": "139805138252544"}, {"nodeId": "139805138252992"}, {"nodeId": "139805138253440"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138253664"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138252768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138252544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138251424"}]}}, "139805138251424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138252992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138252880"}]}}, "139805138252880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138253440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138253104"}]}, {"nodeId": "0"}, {"nodeId": "139805138253216"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138253328"}]}]}]}}, "139805138253104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138253216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805138253328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138253664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318287136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138254000"}, {"nodeId": "139805138253776"}, {"nodeId": "139805138254224"}, {"nodeId": "139805138254672"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138254896"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138254000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138253776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138252656"}]}}, "139805138252656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138254224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138254112"}]}}, "139805138254112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138254672": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138254336"}]}, {"nodeId": "0"}, {"nodeId": "139805138254448"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138254560"}]}]}]}}, "139805138254336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805138254448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805138254560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805138254896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805318287584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138255232"}, {"nodeId": "139805138255008"}, {"nodeId": "139805138255456"}, {"nodeId": "139805138288816"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138289040"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138255232": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138255008": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138253888"}]}}, "139805138253888": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138255456": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138255344"}]}}, "139805138255344": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138288816": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138255568"}]}, {"nodeId": "0"}, {"nodeId": "139805138255680"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138288704"}]}]}]}}, "139805138255568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138255680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805138288704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138289040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805318288032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138289264"}, {"nodeId": "139805138289152"}, {"nodeId": "139805138289600"}, {"nodeId": "139805138290048"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138290272"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138289264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138289152": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138289376"}]}}, "139805138289376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138289600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138289488"}]}}, "139805138289488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138290048": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138289712"}]}, {"nodeId": "0"}, {"nodeId": "139805138289824"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138289936"}]}]}]}}, "139805138289712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138289824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805138289936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138290272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805318288480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138290496"}, {"nodeId": "139805138290384"}, {"nodeId": "139805138290832"}, {"nodeId": "139805138291280"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138291504"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138290496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138290384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138290608"}]}}, "139805138290608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138290832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138290720"}]}}, "139805138290720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138291280": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138290944"}]}, {"nodeId": "0"}, {"nodeId": "139805138291056"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138291168"}]}]}]}}, "139805138290944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138291056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805138291168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138291504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805318288928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138291728"}, {"nodeId": "139805138291616"}, {"nodeId": "139805138292064"}, {"nodeId": "139805138292624"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138292848"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138291728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138291616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138291840"}]}}, "139805138291840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138292064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138291952"}]}}, "139805138291952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138292624": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138292176"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805138292288"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138292512"}]}]}]}}, "139805138292176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138292288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805138292512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138292848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805318289376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138293072"}, {"nodeId": "139805138292960"}, {"nodeId": "139805138293408"}, {"nodeId": "139805138293968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138294192"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype", "endpoint"]}}, "139805138293072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138292960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138293184"}]}}, "139805138293184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138293408": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138293296"}]}}, "139805138293296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138293968": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138293520"}]}, {"nodeId": "0"}, {"nodeId": "139805138293632"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138293856"}]}]}]}}, "139805138293520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138293632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805138293856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138294192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138246496": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318289824"}, {"nodeId": "139805318290272"}, {"nodeId": "139805318290720"}, {"nodeId": "139805318291168"}]}}, "139805318289824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138294304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138294304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138294528"}]}}, "139805138294528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318290272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138294864"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138294640"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138295088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138294864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138294640": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138294416"}]}}, "139805138294416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138295088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318290720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138295424"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138295200"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138295424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138295200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138294752"}]}}, "139805138294752": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318291168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138295312"}, {"nodeId": "139805138295872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138295984"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p", "axis", "shuffle"]}}, "139805138295312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138295872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138295984": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138295760"}]}}, "139805138295760": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805201014160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318291616"}, {"nodeId": "139805318292064"}]}}, "139805318291616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805318292064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138296544"}, {"nodeId": "139805138296432"}, {"nodeId": "139805138296768"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138296992"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138296544": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138296432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138296768": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138296656"}]}}, "139805138296656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138296992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138296320": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318292512"}, {"nodeId": "139805318292960"}]}}, "139805318292512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318292960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138295648"}, {"nodeId": "139805138297104"}, {"nodeId": "139805138297552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138297776"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138295648": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138297104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138297552": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138297440"}]}}, "139805138297440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138297776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138255120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318293408"}, {"nodeId": "139805318293856"}, {"nodeId": "139805318294304"}, {"nodeId": "139805318294752"}, {"nodeId": "139805318295200"}]}}, "139805318293408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}, {"nodeId": "139805138298448"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "139805138298448": {"type": "Union", "content": {"items": [{"nodeId": "139805138298224"}, {"nodeId": "139805138298336"}]}}, "139805138298224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138298336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805318293856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138299008"}, {"nodeId": "139805138298896"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138298672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "139805138299008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138298896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138298784"}]}}, "139805138298784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138298672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318294304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138299344"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138299792"}]}]}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138300016"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "shape", "out"]}}, "139805138299344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138299792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138300016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318294752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138300128"}, {"nodeId": "139805138300576"}, {"nodeId": "139805138300688"}, {"nodeId": "139805138301024"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138301248"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "139805138300128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138300576": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138300464"}]}}, "139805138300464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138300688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201014720"}}}, "139805138301024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138300912"}]}]}]}}, "139805138300912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805138301248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857856"}]}}}, "139805318295200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138299120"}, {"nodeId": "139805138301808"}, {"nodeId": "139805138301920"}, {"nodeId": "139805138302256"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138302480"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "size", "dtype", "out"]}}, "139805138299120": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138301808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138301360"}]}}, "139805138301360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138301920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201012816"}}}, "139805138302256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138302144"}]}]}]}}, "139805138302144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138302480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138301696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318295648"}, {"nodeId": "139805318296096"}]}}, "139805318295648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805318296096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138302816"}, {"nodeId": "139805138301472"}, {"nodeId": "139805138303040"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138303264"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805138302816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138301472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138303040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138302704"}]}}, "139805138302704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138303264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138302592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318296544"}, {"nodeId": "139805318296992"}]}}, "139805318296544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805318296992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138302928"}, {"nodeId": "139805138303376"}, {"nodeId": "139805138303824"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138304048"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805138302928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138303376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138303824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138303712"}]}}, "139805138303712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138304048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138303488": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318297440"}, {"nodeId": "139805318297888"}]}}, "139805318297440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805318297888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138303600"}, {"nodeId": "139805138304160"}, {"nodeId": "139805138304496"}, {"nodeId": "139805138304720"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138354240"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805138303600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138304160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138304496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138304720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138304608"}]}}, "139805138304608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138354240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138304272": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318298336"}, {"nodeId": "139805318298784"}]}}, "139805318298336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805318298784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138354576"}, {"nodeId": "139805138354688"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138354912"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138354576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138354688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138354352"}]}}, "139805138354352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138354912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138304384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318299232"}, {"nodeId": "139805318545696"}]}}, "139805318299232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805318545696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138355584"}, {"nodeId": "139805138355696"}, {"nodeId": "139805138355920"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138356144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805138355584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138355696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138355920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138355808"}]}}, "139805138355808": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138356144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138355360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318546144"}, {"nodeId": "139805318546592"}, {"nodeId": "139805318547040"}]}}, "139805318546144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805318546592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138355472"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138356592"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138355472": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138356592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318547040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138356928"}, {"nodeId": "139805138356480"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138357040"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138356928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138356480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138357040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138356368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318547488"}, {"nodeId": "139805318547936"}]}}, "139805318547488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805318547936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138356816"}, {"nodeId": "139805138357152"}, {"nodeId": "139805138357600"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805138356816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138357152": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138357600": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138357488"}]}}, "139805138357488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138357824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138357264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318548384"}, {"nodeId": "139805318548832"}]}}, "139805318548384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318548832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138357376"}, {"nodeId": "139805138358272"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138358496"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138357376": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138358272": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138357936"}]}}, "139805138357936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138358496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138358048": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318549280"}, {"nodeId": "139805318549728"}]}}, "139805318549280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318549728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138358160"}, {"nodeId": "139805138358944"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138359168"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138358160": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138358944": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138358608"}]}}, "139805138358608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138359168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138358720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318550176"}, {"nodeId": "139805318550624"}]}}, "139805318550176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318550624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138358832"}, {"nodeId": "139805138359616"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138359840"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138358832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138359616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138359280"}]}}, "139805138359280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138359840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318551072"}, {"nodeId": "139805318551520"}]}}, "139805318551072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318551520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138360512"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138360736"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138360512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138360736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138360288": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318551968"}, {"nodeId": "139805318552416"}]}}, "139805318551968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318552416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138360960"}, {"nodeId": "139805138361072"}, {"nodeId": "139805138361296"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138361520"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138360960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138361072": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138361296": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138361184"}]}}, "139805138361184": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138361520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138360400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318552864"}, {"nodeId": "139805318553312"}]}}, "139805318552864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318553312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138360848"}, {"nodeId": "139805138361632"}, {"nodeId": "139805138362080"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138362304"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138360848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138361632": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138362080": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138361968"}]}}, "139805138361968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138362304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138361744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318553760"}, {"nodeId": "139805318554208"}]}}, "139805318553760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805318554208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138361856"}, {"nodeId": "139805138362416"}, {"nodeId": "139805138362864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138363088"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138361856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138362416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138362864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138362752"}]}}, "139805138362752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138363088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138362528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318554656"}, {"nodeId": "139805318555104"}]}}, "139805318554656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805318555104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138362640"}, {"nodeId": "139805138363200"}, {"nodeId": "139805138363648"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138363872"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805138362640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138363200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138363648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138363536"}]}}, "139805138363536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138363872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138363312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318555552"}, {"nodeId": "139805318556000"}]}}, "139805318555552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805318556000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138363424"}, {"nodeId": "139805138364320"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138364544"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805138363424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138364320": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138363984"}]}}, "139805138363984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138364544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138364096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318556448"}, {"nodeId": "139805318556896"}]}}, "139805318556448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805318556896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138364208"}, {"nodeId": "139805138364656"}, {"nodeId": "139805138365104"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138365328"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805138364208": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138364656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138365104": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138364992"}]}}, "139805138364992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138365328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138364768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318557344"}, {"nodeId": "139805318557792"}]}}, "139805318557344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805318557792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138364880"}, {"nodeId": "139805138365440"}, {"nodeId": "139805138365776"}, {"nodeId": "139805138366000"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138366224"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805138364880": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138365440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138365776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138366000": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138365888"}]}}, "139805138365888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138366224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138365552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318558240"}, {"nodeId": "139805318558688"}]}}, "139805318558240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805318558688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138365664"}, {"nodeId": "139805138366336"}, {"nodeId": "139805138366784"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138367008"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138365664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138366336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138366784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138366672"}]}}, "139805138366672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138367008": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318559136"}, {"nodeId": "139805318559584"}]}}, "139805318559136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805318559584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138367680"}, {"nodeId": "139805138367792"}, {"nodeId": "139805138368016"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138368240"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138367680": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138367792": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138368016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138367904"}]}}, "139805138367904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138368240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138367456": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318560032"}, {"nodeId": "139805318560480"}]}}, "139805318560032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805318560480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138367568"}, {"nodeId": "139805138368688"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138368912"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805138367568": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138368688": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138368352"}]}}, "139805138368352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138368912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138368464": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318560928"}, {"nodeId": "139805318561376"}]}}, "139805318560928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805318561376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138368576"}, {"nodeId": "139805138369360"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138369584"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138368576": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138369360": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138369024"}]}}, "139805138369024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138369584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138369136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318709536"}, {"nodeId": "139805318709984"}]}}, "139805318709536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805318709984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138369248"}, {"nodeId": "139805138370032"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138370256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138369248": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138370032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138369696"}]}}, "139805138369696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138370256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805201013376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318710432"}, {"nodeId": "139805318710880"}]}}, "139805318710432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805318710880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138436608"}, {"nodeId": "139805138436720"}, {"nodeId": "139805138436832"}, {"nodeId": "139805138437056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138437280"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805138436608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138436720": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138436832": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138437056": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138436944"}]}}, "139805138436944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138437280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805138436384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318711328"}, {"nodeId": "139805318711776"}]}}, "139805318711328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805318711776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138436496"}, {"nodeId": "139805138437728"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138437952"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138436496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138437728": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138437392"}]}}, "139805138437392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138437952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318712224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138438288"}, {"nodeId": "139805138437616"}, {"nodeId": "139805138438400"}, {"nodeId": "139805138438848"}, {"nodeId": "139805481893408"}, {"nodeId": "139805138439296"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138439520"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol", "method"]}}, "139805138438288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138437616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138438400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138438064"}]}}, "139805138438064": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138438848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138439296": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138439520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318712672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138439856"}, {"nodeId": "139805138438176"}, {"nodeId": "139805138439968"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138440192"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}}, "139805138439856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138438176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138439968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138439632"}]}}, "139805138439632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138440192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318713120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138440304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138440528"}, {"nodeId": "139805138440864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138441088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "colors", "nsample", "size", "method"]}}, "139805138440304": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138440528": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138440416"}]}}, "139805138440416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138440864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138441088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318713568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138441424"}, {"nodeId": "139805138441200"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138441648"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}}, "139805138441424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138441200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138439744"}]}}, "139805138439744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138441648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805318714016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138441984"}, {"nodeId": "139805138441312"}, {"nodeId": "139805138442208"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "x", "axis", "out"]}}, "139805138441984": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138441312": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805138442208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}]}}, "139805318714464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977664"}, {"nodeId": "139805138442656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "x", "axis"]}}, "139805138442656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150977312": {"type": "Concrete", "content": {"module": "numpy.random._mt19937", "simpleName": "MT19937", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318716256"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318716704"}, "name": "_legacy_seeding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318717152"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138146064"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100552512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318716256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}, {"nodeId": "139805138146400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138146400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138146288"}, {"nodeId": "139805150591840"}]}}, "139805138146288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318716704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}, {"nodeId": "139805138146736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "seed"]}}, "139805138146736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318717152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150977312"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805138146064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318717600"}]}}, "139805318717600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}], "returnType": {"nodeId": "139805138146624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138146624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100552512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150977312"}], "returnType": {"nodeId": "139805138146624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150975904": {"type": "Concrete", "content": {"module": "numpy.random._pcg64", "simpleName": "PCG64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318719392"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318719840"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138144944"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100554528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318721184"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318719392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}, {"nodeId": "139805138145280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138145280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138145168"}, {"nodeId": "139805150591840"}]}}, "139805138145168": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318719840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150975904"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805138144944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318720288"}]}}, "139805318720288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}], "returnType": {"nodeId": "139805138145056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138145056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100554528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}], "returnType": {"nodeId": "139805138145056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805318721184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150975904"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150975904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "139805150976256": {"type": "Concrete", "content": {"module": "numpy.random._pcg64", "simpleName": "PCG64DXSM", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318721632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318722080"}, "name": "jumped"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138145504"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100553632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318723424"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318721632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}, {"nodeId": "139805138145840"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138145840": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138145728"}, {"nodeId": "139805150591840"}]}}, "139805138145728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805318722080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150976256"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805138145504": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318722528"}]}}, "139805318722528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}], "returnType": {"nodeId": "139805138145616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138145616": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100553632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}], "returnType": {"nodeId": "139805138145616"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805318723424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150976256"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150976256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "139805150974848": {"type": "Concrete", "content": {"module": "numpy.random._philox", "simpleName": "Philox", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "counter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318724768"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138143936"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100189376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "jumps", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323100896"}, "name": "jumped"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323101344"}, "name": "advance"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805318724768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}, {"nodeId": "139805138143824"}, {"nodeId": "139805138144496"}, {"nodeId": "139805138144720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seed", "counter", "key"]}}, "139805138143824": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138144272"}, {"nodeId": "139805150591840"}]}}, "139805138144272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138144496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138144384"}]}}, "139805138144384": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138144720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138144608"}]}}, "139805138144608": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138143936": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318725216"}]}}, "139805318725216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}], "returnType": {"nodeId": "139805138144048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138144048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100189376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}], "returnType": {"nodeId": "139805138144048"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805323100896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150974848"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "jumps"]}}, "139805323101344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150974848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805150974848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "delta"]}}, "139805150973792": {"type": "Concrete", "content": {"module": "numpy.random._sfc64", "simpleName": "SFC64", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323102688"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138074896"}, "items": [{"kind": "Variable", "content": {"name": "state", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805100738144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "state"}}], "typeVars": [], "bases": [{"nodeId": "139805150592192"}], "isAbstract": false}}, "139805323102688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150973792"}, {"nodeId": "139805138143040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805138143040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138143712"}, {"nodeId": "139805150591840"}]}}, "139805138143712": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805323103136"}]}}, "139805323103136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150973792"}], "returnType": {"nodeId": "139805138143600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805138143600": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805100738144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150973792"}], "returnType": {"nodeId": "139805138143600"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150972736": {"type": "Concrete", "content": {"module": "numpy.random.mtrand", "simpleName": "RandomState", "members": [{"kind": "Variable", "content": {"name": "_bit_generator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805150592192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323115232"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323115680"}, "name": "__repr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323116128"}, "name": "__str__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318807840"}, "name": "__getstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318808288"}, "name": "__setstate__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318808736"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318809184"}, "name": "seed"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137911872"}, "items": [{"kind": "Variable", "content": {"name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318810528"}, "name": "set_state"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137913440"}, "items": [{"kind": "Variable", "content": {"name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_sample", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_sample"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137913552"}, "items": [{"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137915120"}, "items": [{"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "beta", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "beta"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137915568"}, "items": [{"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137878848"}, "items": [{"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_exponential", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_exponential"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137917808"}, "items": [{"kind": "Variable", "content": {"name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tomaxint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "tomaxint"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137917920"}, "items": [{"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "randint"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805318823072"}, "name": "bytes"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137918368"}, "items": [{"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "choice", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "choice"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805151027360"}, "items": [{"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "uniform", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "uniform"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138017904"}, "items": [{"kind": "Variable", "content": {"name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138018800"}, "items": [{"kind": "Variable", "content": {"name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "randn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "randn"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138018912"}, "items": [{"kind": "Variable", "content": {"name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "random_integers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "random_integers"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138019024"}, "items": [{"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138020480"}, "items": [{"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "normal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "normal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138020592"}, "items": [{"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138021712"}, "items": [{"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gamma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gamma"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138022384"}, "items": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138023168"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_f"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138023952"}, "items": [{"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805137927552"}, "items": [{"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "noncentral_chisquare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "noncentral_chisquare"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138025744"}, "items": [{"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_t"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805151028928"}, "items": [{"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vonmises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vonmises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138060560"}, "items": [{"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pareto", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "pareto"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138061344"}, "items": [{"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "weibull", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "weibull"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138062016"}, "items": [{"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "power", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "power"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138062688"}, "items": [{"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standard_cauchy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "standard_cauchy"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138063360"}, "items": [{"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "laplace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "laplace"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138063472"}, "items": [{"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gumbel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "gumbel"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138064592"}, "items": [{"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logistic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logistic"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138065376"}, "items": [{"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lognormal", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "lognormal"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138066160"}, "items": [{"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rayleigh", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "rayleigh"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138066944"}, "items": [{"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "wald", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "wald"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138067616"}, "items": [{"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "triangular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "triangular"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138068400"}, "items": [{"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138025856"}, "items": [{"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "negative_binomial", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "negative_binomial"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138070304"}, "items": [{"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "poisson", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "poisson"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138071312"}, "items": [{"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "zipf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "zipf"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138071984"}, "items": [{"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "geometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "geometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138072656"}, "items": [{"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hypergeometric", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "hypergeometric"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138073328"}, "items": [{"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logseries", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "logseries"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mean", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cov", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_valid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314300192"}, "name": "multivariate_normal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pvals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314300640"}, "name": "multinomial"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alpha", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314301088"}, "name": "dirichlet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314301536"}, "name": "shuffle"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805138074224"}, "items": [{"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "permutation", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "permutation"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805323115232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137912208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805137912208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137912096"}, {"nodeId": "139805150592192"}]}}, "139805137912096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805323115680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805323116128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805318807840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805318808288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805318808736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805137912992"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805137912992": {"type": "Tuple", "content": {"items": [{"nodeId": "139805184078592"}, {"nodeId": "139805137912656"}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805184078592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805150972736"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805137912656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805318809184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137913216"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "seed"]}}, "139805137913216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137913104"}]}}, "139805137913104": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137911872": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318809632"}, {"nodeId": "139805318810080"}]}}, "139805318809632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}}, "139805318810080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805137914336"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "legacy"]}}, "139805137914336": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805137914224"}]}}, "139805137914224": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137914000"}]}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}]}}, "139805137914000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805318810528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137915008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805137915008": {"type": "Union", "content": {"items": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805137914896"}]}}, "139805137914896": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137914672"}]}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}]}}, "139805137914672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805137913440": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318810976"}, {"nodeId": "139805318811424"}]}}, "139805318810976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318811424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137915232"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137915456"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137915232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137915456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137913552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318811872"}, {"nodeId": "139805318812320"}]}}, "139805318811872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318812320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137915680"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137915904"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137915680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137915904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137915120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318812768"}, {"nodeId": "139805318813216"}]}}, "139805318812768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805318813216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137916128"}, {"nodeId": "139805137916240"}, {"nodeId": "139805137916464"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137916688"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "size"]}}, "139805137916128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137916240": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137916464": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137916352"}]}}, "139805137916352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137916688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137915568": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318813664"}, {"nodeId": "139805318814112"}]}}, "139805318813664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805318814112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137916016"}, {"nodeId": "139805137917136"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137917360"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805137916016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137917136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137916800"}]}}, "139805137916800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137917360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137878848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318814560"}, {"nodeId": "139805318815008"}]}}, "139805318814560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318815008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137918032"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137918256"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137918032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137918256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137917808": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318815456"}, {"nodeId": "139805318815904"}]}}, "139805318815456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805318815904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137918480"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137918704"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805137918480": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137918704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805137917920": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318816352"}, {"nodeId": "139805318816800"}, {"nodeId": "139805318817248"}, {"nodeId": "139805318817696"}, {"nodeId": "139805318818144"}, {"nodeId": "139805318818592"}, {"nodeId": "139805318819040"}, {"nodeId": "139805318819488"}, {"nodeId": "139805318819936"}, {"nodeId": "139805318820384"}, {"nodeId": "139805318820832"}, {"nodeId": "139805318821280"}, {"nodeId": "139805318821728"}, {"nodeId": "139805318822176"}, {"nodeId": "139805318822624"}]}}, "139805318816352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805137918928"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "low", "high"]}}, "139805137918928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805318816800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805137919040"}, {"nodeId": "N"}, {"nodeId": "139805137919152"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137919040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805137919152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805318817248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805137919376"}, {"nodeId": "N"}, {"nodeId": "139805137919600"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137919376": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805137919600": {"type": "Union", "content": {"items": [{"nodeId": "139805137919264"}, {"nodeId": "139805137918816"}]}}, "139805137919264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200898912"}}}, "139805137918816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805200899696"}}}, "139805318817696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137921504"}, {"nodeId": "139805137920384"}, {"nodeId": "139805137922064"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137920720"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805137921504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137920384": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137922176"}]}}, "139805137922176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137922064": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137921168"}]}}, "139805137921168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137920720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805318818144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137921392"}, {"nodeId": "139805137921616"}, {"nodeId": "139805137921280"}, {"nodeId": "139805137920496"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805155357824"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137921392": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137921616": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137921728"}]}}, "139805137921728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137921280": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137919936"}]}}, "139805137919936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137920496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805159554320"}}}, "139805318818592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137921056"}, {"nodeId": "139805137920048"}, {"nodeId": "139805137920832"}, {"nodeId": "139805137920272"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137922400"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137921056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137920048": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137921952"}]}}, "139805137921952": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137920832": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137920944"}]}}, "139805137920944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137920272": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137921840"}]}, {"nodeId": "0"}, {"nodeId": "139805137919488"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137919712"}]}]}]}}, "139805137921840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805137919488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591904"}}}, "139805137919712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805137922400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858560"}]}}}, "139805318819040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137922736"}, {"nodeId": "139805137922512"}, {"nodeId": "139805137922960"}, {"nodeId": "139805137923408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137923632"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137922736": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137922512": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137919824"}]}}, "139805137919824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137922960": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137922848"}]}}, "139805137922848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137923408": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137923072"}]}, {"nodeId": "0"}, {"nodeId": "139805137923184"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137923296"}]}]}]}}, "139805137923072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805137923184": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184592576"}}}, "139805137923296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805137923632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154858208"}]}}}, "139805318819488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137923968"}, {"nodeId": "139805137923744"}, {"nodeId": "139805137924192"}, {"nodeId": "139805137924640"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137924864"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137923968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137923744": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137922624"}]}}, "139805137922624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137924192": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137924080"}]}}, "139805137924080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137924640": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137924304"}]}, {"nodeId": "0"}, {"nodeId": "139805137924416"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137924528"}]}]}]}}, "139805137924304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805137924416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593248"}}}, "139805137924528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805137924864": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857856"}]}}}, "139805318819936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137925200"}, {"nodeId": "139805137924976"}, {"nodeId": "139805137925424"}, {"nodeId": "139805137925872"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137926096"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137925200": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137924976": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137923856"}]}}, "139805137923856": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137925424": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137925312"}]}}, "139805137925312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137925872": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137925536"}]}, {"nodeId": "0"}, {"nodeId": "139805137925648"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137925760"}]}]}]}}, "139805137925536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805137925648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184593920"}}}, "139805137925760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805137926096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805154857504"}]}}}, "139805318820384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137926432"}, {"nodeId": "139805137926208"}, {"nodeId": "139805137926656"}, {"nodeId": "139805137927104"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805137927328"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137926432": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137926208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137925088"}]}}, "139805137925088": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137926656": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137926544"}]}}, "139805137926544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805137927104": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137926768"}]}, {"nodeId": "0"}, {"nodeId": "139805137926880"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137926992"}]}]}]}}, "139805137926768": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805137926880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184458000"}}}, "139805137926992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805137927328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858560"}]}}}, "139805318820832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805137927664"}, {"nodeId": "139805137927440"}, {"nodeId": "139805137927888"}, {"nodeId": "139805138010400"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138010624"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805137927664": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137927440": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137926320"}]}}, "139805137926320": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805137927888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805137927776"}]}}, "139805137927776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138010400": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805137928000"}]}, {"nodeId": "0"}, {"nodeId": "139805138010176"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138010288"}]}]}]}}, "139805137928000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138010176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184589888"}}}, "139805138010288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805138010624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154858208"}]}}}, "139805318821280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138010848"}, {"nodeId": "139805138010736"}, {"nodeId": "139805138011184"}, {"nodeId": "139805138011632"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138011856"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138010848": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138010736": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138010960"}]}}, "139805138010960": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138011184": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138011072"}]}}, "139805138011072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138011632": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138011296"}]}, {"nodeId": "0"}, {"nodeId": "139805138011408"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138011520"}]}]}]}}, "139805138011296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138011408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184590560"}}}, "139805138011520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805138011856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805318821728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138012080"}, {"nodeId": "139805138011968"}, {"nodeId": "139805138012416"}, {"nodeId": "139805138012864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138013088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138012080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138011968": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138012192"}]}}, "139805138012192": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138012416": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138012304"}]}}, "139805138012304": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138012864": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138012528"}]}, {"nodeId": "0"}, {"nodeId": "139805138012640"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138012752"}]}]}]}}, "139805138012528": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138012640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184591232"}}}, "139805138012752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805138013088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805318822176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138013312"}, {"nodeId": "139805138013200"}, {"nodeId": "139805138013648"}, {"nodeId": "139805138014208"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138014432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138013312": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138013200": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138013424"}]}}, "139805138013424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138013648": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138013536"}]}}, "139805138013536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138014208": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138013760"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805138013872"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138014096"}]}]}]}}, "139805138013760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138013872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184601200"}}}, "139805138014096": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138014432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805318822624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138014656"}, {"nodeId": "139805138014544"}, {"nodeId": "139805138014992"}, {"nodeId": "139805138015552"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138015776"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size", "dtype"]}}, "139805138014656": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138014544": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138014768"}]}}, "139805138014768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138014992": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138014880"}]}}, "139805138014880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138015552": {"type": "Union", "content": {"items": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138015104"}]}, {"nodeId": "0"}, {"nodeId": "139805138015216"}, {"nodeId": "139805167807552", "args": [{"nodeId": "139805150983296", "args": [{"nodeId": "139805138015440"}]}]}]}}, "139805138015104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138015216": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184605344"}}}, "139805138015440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805138015776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805150262128"}]}}}, "139805318823072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "length"]}}, "139805137918368": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805318823520"}, {"nodeId": "139805314105632"}, {"nodeId": "139805314106080"}, {"nodeId": "139805314106528"}]}}, "139805318823520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138015888"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138015888": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138016112"}]}}, "139805138016112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805314105632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138016448"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138016224"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138016672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138016448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138016224": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138016000"}]}}, "139805138016000": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138016672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314106080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138017008"}, {"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138016784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138017008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138016784": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138016336"}]}}, "139805138016336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805314106528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138016896"}, {"nodeId": "139805138017456"}, {"nodeId": "139805481882144"}, {"nodeId": "139805138017568"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "a", "size", "replace", "p"]}}, "139805138016896": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138017456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138017568": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138017344"}]}}, "139805138017344": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805151027360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314106976"}, {"nodeId": "139805314107424"}]}}, "139805314106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805314107424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138018128"}, {"nodeId": "139805138018016"}, {"nodeId": "139805138018352"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138018576"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138018128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138018016": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138018352": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138018240"}]}}, "139805138018240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138018576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138017904": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314107872"}, {"nodeId": "139805314108320"}]}}, "139805314107872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314108320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138018688"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805138018688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138018800": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314108768"}, {"nodeId": "139805314109216"}]}}, "139805314108768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314109216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138019248"}]}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "args"]}}, "139805138019248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138018912": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314109664"}, {"nodeId": "139805314110112"}]}}, "139805314109664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805138019472"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138019472": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}]}}, "139805314110112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138019584"}, {"nodeId": "139805138019808"}, {"nodeId": "139805138020032"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138020256"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "low", "high", "size"]}}, "139805138019584": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138019808": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138019696"}]}}, "139805138019696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138020032": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138019920"}]}}, "139805138019920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138020256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138019024": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314110560"}, {"nodeId": "139805314111008"}]}}, "139805314110560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805314111008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138019360"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138020704"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138019360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138020704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138020480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314111456"}, {"nodeId": "139805314111904"}]}}, "139805314111456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314111904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138020928"}, {"nodeId": "139805138021040"}, {"nodeId": "139805138021264"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138021488"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138020928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138021040": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138021264": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138021152"}]}}, "139805138021152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138021488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138020592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314112352"}, {"nodeId": "139805314112800"}]}}, "139805314112352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "139805314112800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138020816"}, {"nodeId": "139805138021936"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138022160"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "shape", "size"]}}, "139805138020816": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138021936": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138021600"}]}}, "139805138021600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138022160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138021712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314113248"}, {"nodeId": "139805314113696"}]}}, "139805314113248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805314113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138021824"}, {"nodeId": "139805138022272"}, {"nodeId": "139805138022720"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138022944"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "shape", "scale", "size"]}}, "139805138021824": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138022272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138022720": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138022608"}]}}, "139805138022608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138022944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138022384": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314114144"}, {"nodeId": "139805314114592"}]}}, "139805314114144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805314114592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138022496"}, {"nodeId": "139805138023056"}, {"nodeId": "139805138023504"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138023728"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "size"]}}, "139805138022496": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138023056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138023504": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138023392"}]}}, "139805138023392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138023728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138023168": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314115040"}, {"nodeId": "139805314115488"}]}}, "139805314115040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805314115488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138023280"}, {"nodeId": "139805138023840"}, {"nodeId": "139805138024176"}, {"nodeId": "139805138024400"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138024624"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "dfnum", "dfden", "nonc", "size"]}}, "139805138023280": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138023840": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138024176": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138024400": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138024288"}]}}, "139805138024288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138024624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138023952": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314115936"}, {"nodeId": "139805314116384"}]}}, "139805314115936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805314116384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138024064"}, {"nodeId": "139805138025072"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138025296"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138024064": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138025072": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138024736"}]}}, "139805138024736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138025296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805137927552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314116832"}, {"nodeId": "139805314117280"}]}}, "139805314116832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805314117280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138025968"}, {"nodeId": "139805138026080"}, {"nodeId": "139805138026304"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138059440"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "nonc", "size"]}}, "139805138025968": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138026080": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138026304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138026192"}]}}, "139805138026192": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138059440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138025744": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314117728"}, {"nodeId": "139805314118176"}, {"nodeId": "139805314118624"}]}}, "139805314117728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805314118176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138059776"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138059888"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138059776": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138059888": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805314118624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138060224"}, {"nodeId": "139805138059664"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138060336"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "df", "size"]}}, "139805138060224": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138059664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138060336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805151028928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314119072"}, {"nodeId": "139805314119520"}]}}, "139805314119072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805314119520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138060112"}, {"nodeId": "139805138060448"}, {"nodeId": "139805138060896"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138061120"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mu", "kappa", "size"]}}, "139805138060112": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138060448": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138060896": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138060784"}]}}, "139805138060784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138061120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138060560": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314119968"}, {"nodeId": "139805314120416"}]}}, "139805314119968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314120416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138060672"}, {"nodeId": "139805138061568"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138061792"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138060672": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138061568": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138061232"}]}}, "139805138061232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138061792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138061344": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314120864"}, {"nodeId": "139805314121312"}]}}, "139805314120864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314121312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138061456"}, {"nodeId": "139805138062240"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138062464"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138061456": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138062240": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138061904"}]}}, "139805138061904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138062464": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138062016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314285856"}, {"nodeId": "139805314286304"}]}}, "139805314285856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314286304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138062128"}, {"nodeId": "139805138062912"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138063136"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138062128": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138062912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138062576"}]}}, "139805138062576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138063136": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138062688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314286752"}, {"nodeId": "139805314287200"}]}}, "139805314286752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805314287200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138062800"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138063584"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805138062800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138063584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138063360": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314287648"}, {"nodeId": "139805314288096"}]}}, "139805314287648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314288096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138063808"}, {"nodeId": "139805138063920"}, {"nodeId": "139805138064144"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138064368"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138063808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138063920": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138064144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138064032"}]}}, "139805138064032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138064368": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138063472": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314288544"}, {"nodeId": "139805314288992"}]}}, "139805314288544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314288992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138063696"}, {"nodeId": "139805138064480"}, {"nodeId": "139805138064928"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138065152"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138063696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138064480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138064928": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138064816"}]}}, "139805138064816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138065152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138064592": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314289440"}, {"nodeId": "139805314289888"}]}}, "139805314289440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805314289888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138064704"}, {"nodeId": "139805138065264"}, {"nodeId": "139805138065712"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138065936"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "loc", "scale", "size"]}}, "139805138064704": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138065264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138065712": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138065600"}]}}, "139805138065600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138065936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138065376": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314290336"}, {"nodeId": "139805314290784"}]}}, "139805314290336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805314290784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138065488"}, {"nodeId": "139805138066048"}, {"nodeId": "139805138066496"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138066720"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "sigma", "size"]}}, "139805138065488": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138066048": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138066496": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138066384"}]}}, "139805138066384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138066720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138066160": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314291232"}, {"nodeId": "139805314291680"}]}}, "139805314291232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805314291680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138066272"}, {"nodeId": "139805138067168"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138067392"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "scale", "size"]}}, "139805138066272": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138067168": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138066832"}]}}, "139805138066832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138067392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138066944": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314292128"}, {"nodeId": "139805314292576"}]}}, "139805314292128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805314292576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138067056"}, {"nodeId": "139805138067504"}, {"nodeId": "139805138067952"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138068176"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "mean", "scale", "size"]}}, "139805138067056": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138067504": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138067952": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138067840"}]}}, "139805138067840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138068176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138067616": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314293024"}, {"nodeId": "139805314293472"}]}}, "139805314293024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805314293472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138067728"}, {"nodeId": "139805138068288"}, {"nodeId": "139805138068624"}, {"nodeId": "139805138068848"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138069072"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "left", "mode", "right", "size"]}}, "139805138067728": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138068288": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138068624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138068848": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138068736"}]}}, "139805138068736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138069072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805138068400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314293920"}, {"nodeId": "139805314294368"}]}}, "139805314293920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805314294368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138068512"}, {"nodeId": "139805138069184"}, {"nodeId": "139805138069632"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138069856"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138068512": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138069184": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138069632": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138069520"}]}}, "139805138069520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138069856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138025856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314294816"}, {"nodeId": "139805314295264"}]}}, "139805314294816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805314295264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138070528"}, {"nodeId": "139805138070640"}, {"nodeId": "139805138070864"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138071088"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "p", "size"]}}, "139805138070528": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138070640": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138070864": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138070752"}]}}, "139805138070752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138071088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138070304": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314295712"}, {"nodeId": "139805314296160"}]}}, "139805314295712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805314296160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138070416"}, {"nodeId": "139805138071536"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138071760"}]}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "lam", "size"]}}, "139805138070416": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138071536": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138071200"}]}}, "139805138071200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138071760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138071312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314296608"}, {"nodeId": "139805314297056"}]}}, "139805314296608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805314297056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138071424"}, {"nodeId": "139805138072208"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138072432"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "size"]}}, "139805138071424": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138072208": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138071872"}]}}, "139805138071872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138072432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138071984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314297504"}, {"nodeId": "139805314297952"}]}}, "139805314297504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805314297952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138072096"}, {"nodeId": "139805138072880"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138073104"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138072096": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138072880": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138072544"}]}}, "139805138072544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138073104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138072656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314298400"}, {"nodeId": "139805314298848"}]}}, "139805314298400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805314298848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138072768"}, {"nodeId": "139805138073216"}, {"nodeId": "139805138073552"}, {"nodeId": "139805138073776"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138074000"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "ngood", "nbad", "nsample", "size"]}}, "139805138072768": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138073216": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138073552": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138073776": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138073664"}]}}, "139805138073664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138074000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805138073328": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314299296"}, {"nodeId": "139805314299744"}]}}, "139805314299296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893408"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805314299744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138073440"}, {"nodeId": "139805138074448"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138074672"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "p", "size"]}}, "139805138073440": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074448": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138074112"}]}}, "139805138074112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138074672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314300192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138075008"}, {"nodeId": "139805138074336"}, {"nodeId": "139805138075120"}, {"nodeId": "139805138141248"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138141472"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mean", "cov", "size", "check_valid", "tol"]}}, "139805138075008": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074336": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138075120": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138074784"}]}}, "139805138074784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138141248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805138141472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805314300640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138141696"}, {"nodeId": "139805138141808"}, {"nodeId": "139805138141920"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138142144"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n", "pvals", "size"]}}, "139805138141696": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138141808": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138141920": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138141584"}]}}, "139805138141584": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138142144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314301088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138142480"}, {"nodeId": "139805138142368"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138142704"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "alpha", "size"]}}, "139805138142480": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138142368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805138142256"}]}}, "139805138142256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184453184"}}}, "139805138142704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805314301536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138142928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805138142928": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805138074224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314466080"}, {"nodeId": "139805314466528"}]}}, "139805314466080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805138143152"}]}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805138143152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155359584", "args": [{"nodeId": "139805150261008"}]}}}, "139805314466528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150972736"}, {"nodeId": "139805138143264"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "x"]}}, "139805138143264": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805150588320": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "IgnoreException", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150588672": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "clear_and_catch_warnings", "members": [{"kind": "Variable", "content": {"name": "class_modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805272033408"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "modules", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277003040", "args": [{"nodeId": "139805272033408"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805142483680"}, "items": [{"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__new__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314470112"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314470560"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805167796640", "args": [{"nodeId": "A"}]}], "isAbstract": false}}, "139805142483680": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314468768"}, {"nodeId": "139805314469216"}, {"nodeId": "139805314469664"}]}}, "139805314468768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272033408"}]}], "returnType": {"nodeId": "139805150589376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "139805150589376": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_without_records", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314471456"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139805150588672"}], "isAbstract": false}}, "139805314471456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805314469216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272033408"}]}], "returnType": {"nodeId": "139805150589024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "139805150589024": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "_clear_and_catch_warnings_with_records", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314471008"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139805150588672"}], "isAbstract": false}}, "139805314471008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167796288": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "WarningMessage", "members": [{"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167881344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167880560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167880672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167880784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293657248"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805167881344": {"type": "Union", "content": {"items": [{"nodeId": "139805276874784"}, {"nodeId": "139805276669024"}]}}, "139805167880560": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805167880672": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805167880784": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293657248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796288"}, {"nodeId": "139805167883248"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805167883360"}, {"nodeId": "139805167883472"}, {"nodeId": "139805167883696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "message", "category", "filename", "lineno", "file", "line", "source"]}}, "139805167883248": {"type": "Union", "content": {"items": [{"nodeId": "139805276874784"}, {"nodeId": "139805276669024"}]}}, "139805167883360": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805167883472": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805167883696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805314469664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272033408"}]}], "returnType": {"nodeId": "139805150588672"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "record", "modules"]}}, "139805314470112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150588672"}], "returnType": {"nodeId": "139805142484912"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805142484912": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}]}}, "139805314470560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150588672"}, {"nodeId": "139805142485024"}, {"nodeId": "139805142485136"}, {"nodeId": "139805142485248"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}}, "139805142485024": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142485136": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142485248": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805167796640": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "catch_warnings", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805167882016"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293136352"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293136800"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805167796640"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805167796640": {"type": "TypeVar", "content": {"varName": "_W", "values": [], "upperBound": {"nodeId": "139805167881232"}, "def": "139805167796640", "variance": "INVARIANT"}}, "139805167881232": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, {"nodeId": "N"}]}}, "139805167882016": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293135008"}, {"nodeId": "139805293135456"}, {"nodeId": "139805293135904"}]}}, "139805293135008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": "N"}]}, {"nodeId": "0"}, {"nodeId": "139805167884032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "139805167884032": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293135456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}]}, {"nodeId": "0"}, {"nodeId": "139805167884256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "139805167884256": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293135904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": "139805167884368"}]}, {"nodeId": "139805481882144"}, {"nodeId": "139805167884480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED", "ARG_NAMED_OPT"], "argNames": ["self", "record", "module"]}}, "139805167884368": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, {"nodeId": "N"}]}}, "139805167884480": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293136352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": ".1.139805167796640"}]}], "returnType": {"nodeId": ".1.139805167796640"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805293136800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167796640", "args": [{"nodeId": ".1.139805167796640"}]}, {"nodeId": "139805167884592"}, {"nodeId": "139805167884704"}, {"nodeId": "139805167884816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805167884592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805167884704": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805167884816": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805150587968": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "KnownFailureException", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805150589728": {"type": "Concrete", "content": {"module": "numpy.testing._private.utils", "simpleName": "suppress_warnings", "members": [{"kind": "Variable", "content": {"name": "log", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "forwarding_rule", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314471904"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314472352"}, "name": "filter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "category", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314472800"}, "name": "record"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314473248"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314473696"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314474144"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805314471904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "139805142486032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "forwarding_rule"]}}, "139805142486032": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805314472352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142486144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}}, "139805142486144": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272033408"}]}}, "139805314472800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805142486256"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "category", "message", "module"]}}, "139805142486256": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272033408"}]}}, "139805314473248": {"type": "Function", "content": {"typeVars": [".-1.139805314473248"], "argTypes": [{"nodeId": ".-1.139805314473248"}], "returnType": {"nodeId": ".-1.139805314473248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805314473248": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805314473248", "variance": "INVARIANT"}}, "139805314473696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": "139805142486368"}, {"nodeId": "139805142486480"}, {"nodeId": "139805142486592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null, null]}}, "139805142486368": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "0"}]}}, "139805142486480": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276675712"}]}}, "139805142486592": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805272037280"}]}}, "139805314474144": {"type": "Function", "content": {"typeVars": [".-1.139805314474144"], "argTypes": [{"nodeId": "139805150589728"}, {"nodeId": ".-1.139805314474144"}], "returnType": {"nodeId": ".-1.139805314474144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805314474144": {"type": "TypeVar", "content": {"varName": "_FT", "values": [], "upperBound": {"nodeId": "139805293656800"}, "def": "139805314474144", "variance": "INVARIANT"}}, "139805293656800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805272045376": {"type": "Concrete", "content": {"module": "os", "simpleName": "_Environ", "members": [{"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decodevalue", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365095328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365096224"}, "name": "setdefault"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365096672"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365097120"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365097568"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365098016"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365098464"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365098912"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365099360"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805365099808"}, "name": "__ror__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259617712"}, "items": [{"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__ior__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__ior__"}}], "typeVars": [{"nodeId": ".1.139805272045376"}], "bases": [{"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}], "isAbstract": false}}, ".1.139805272045376": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272045376", "variance": "INVARIANT"}}, "139805365095328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": "139805481891648", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "data", "encodekey", "decodekey", "encodevalue", "decodevalue"]}}, "139805365096224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": ".1.139805272045376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "value"]}}, "139805365096672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805365097120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805365097568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": ".1.139805272045376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805365098016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805365098464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805272045376"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805365098912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805365099360": {"type": "Function", "content": {"typeVars": [".-1.139805365099360", ".-2.139805365099360"], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805365099360"}, {"nodeId": ".-2.139805365099360"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805259622976"}, {"nodeId": "139805259623088"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805365099360": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099360", "variance": "INVARIANT"}}, ".-2.139805365099360": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099360", "variance": "INVARIANT"}}, "139805259622976": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-1.139805365099360"}]}}, "139805259623088": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-2.139805365099360"}]}}, "139805365099808": {"type": "Function", "content": {"typeVars": [".-1.139805365099808", ".-2.139805365099808"], "argTypes": [{"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": ".-1.139805365099808"}, {"nodeId": ".-2.139805365099808"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805259623200"}, {"nodeId": "139805259623312"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805365099808": {"type": "TypeVar", "content": {"varName": "_T1", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099808", "variance": "INVARIANT"}}, ".-2.139805365099808": {"type": "TypeVar", "content": {"varName": "_T2", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805365099808", "variance": "INVARIANT"}}, "139805259623200": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-1.139805365099808"}]}}, "139805259623312": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".-2.139805365099808"}]}}, "139805259617712": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805365100256"}, {"nodeId": "139805365100704"}]}}, "139805365100256": {"type": "Function", "content": {"typeVars": [".0.139805365100256"], "argTypes": [{"nodeId": ".0.139805365100256"}, {"nodeId": "139805481891296", "args": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}], "returnType": {"nodeId": ".0.139805365100256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805365100256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, "def": "139805365100256", "variance": "INVARIANT"}}, "139805365100704": {"type": "Function", "content": {"typeVars": [".0.139805365100704"], "argTypes": [{"nodeId": ".0.139805365100704"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805259623760"}]}], "returnType": {"nodeId": ".0.139805365100704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805365100704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272045376", "args": [{"nodeId": ".1.139805272045376"}]}, "def": "139805365100704", "variance": "INVARIANT"}}, "139805259623760": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805272045376"}, {"nodeId": ".1.139805272045376"}]}}, "139805268309824": {"type": "Concrete", "content": {"module": "os", "simpleName": "stat_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242921744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242604032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ino", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242593504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_dev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242599552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_nlink", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242758464"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242754432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_gid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242753760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_size", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242754656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242756672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242755552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242758240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_atime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242756448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_mtime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242759136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_ctime_ns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242763392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242759584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_blksize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242757568"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "st_rdev", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242760704"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805242921744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242604032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259623984"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259623984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242593504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624096"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624096": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242599552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624208": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242758464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624320"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624320": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242754432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624432"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624432": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242753760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624544"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624544": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242754656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624656"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624656": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242756672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624768"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242755552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624880"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624880": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242758240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259624992"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259624992": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242756448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625104": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242759136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625216"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625216": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242763392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625328"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625328": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242759584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625440"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242757568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625552"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805242760704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259625664"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259625664": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805272045728": {"type": "Concrete", "content": {"module": "os", "simpleName": "DirEntry", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242765408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242768768"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356397216"}, "name": "inode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356397664"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356398112"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356398560"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356399008"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356399456"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356399904"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272045728"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272045728": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272045728", "variance": "INVARIANT"}}, "139805242765408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": ".1.139805272045728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805242768768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": ".1.139805272045728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356397216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356397664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805356398112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805356398560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356399008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805259626112"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805259626112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263538976"}}}, "139805263538976": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805356399456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805272045728"}]}], "returnType": {"nodeId": ".1.139805272045728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805356399904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805268510848": {"type": "Concrete", "content": {"module": "os", "simpleName": "statvfs_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242694272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_frsize", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_blocks", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bfree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242812768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_bavail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242813216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242814336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_ffree", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242813440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_favail", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242816352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_flag", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242816800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_namemax", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242818144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "f_fsid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242817472"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805242694272": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242812544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626448"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626448": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242812096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626560"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626560": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242812320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626672"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626672": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242812768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626784"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626784": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242813216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259626896"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259626896": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242814336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627008"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627008": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242813440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627120"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627120": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242816352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627232"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627232": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242816800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627344"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627344": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242818144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627456"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627456": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805242817472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259627568"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259627568": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268511200": {"type": "Concrete", "content": {"module": "os", "simpleName": "uname_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242690128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sysname", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242952832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nodename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242953280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "release", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242952608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242953952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "machine", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805242953504"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805242690128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242952832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259628128"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259628128": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242953280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259628240"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259628240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242952608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259628352"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259628352": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242953952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259890752"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259890752": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805242953504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259890864"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259890864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268511552": {"type": "Concrete", "content": {"module": "os", "simpleName": "terminal_size", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805247577936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "columns", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243282976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805243287232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805247577936": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805243282976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259898592"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259898592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805243287232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805259898704"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259898704": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268511904": {"type": "Concrete", "content": {"module": "os", "simpleName": "_ScandirIterator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351681760"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351682208"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351682656"}, "name": "close"}}], "typeVars": [{"nodeId": ".1.139805268511904"}], "bases": [{"nodeId": "139805481886368", "args": [{"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805268511904"}]}]}, {"nodeId": "139805267652704", "args": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}]}], "isAbstract": false}}, ".1.139805268511904": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805268511904", "variance": "INVARIANT"}}, "139805351681760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}], "returnType": {"nodeId": "139805272045728", "args": [{"nodeId": ".1.139805268511904"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805351682208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805351682656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268511904", "args": [{"nodeId": ".1.139805268511904"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267652704": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360510944"}, "name": "__enter__"}}, {"kind": "Variable", "content": {"name": "__exit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805217665120"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805267652704"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__enter__", "__exit__"]}}, ".1.139805267652704": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267652704", "variance": "COVARIANT"}}, "139805360510944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267652704"}]}], "returnType": {"nodeId": ".1.139805267652704"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805217665120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267652704"}]}, {"nodeId": "139805255446848"}, {"nodeId": "139805255446960"}, {"nodeId": "139805255447072"}], "returnType": {"nodeId": "139805255447184"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255446848": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255446960": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255447072": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255447184": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805268512256": {"type": "Concrete", "content": {"module": "os", "simpleName": "_wrap_close", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "proc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351894752"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351895200"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805272607200"}], "isAbstract": false}}, "139805351894752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268512256"}, {"nodeId": "139805272607200"}, {"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "proc"]}}, "139805272607200": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOWrapper", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343561568"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226282208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226282656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226282880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226283328"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343990048"}, "name": "reconfigure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343990496"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343990944"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343991392"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343991840"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343992288"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343992736"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343993184"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805272606848"}, {"nodeId": "139805277000928"}], "isAbstract": false}}, "139805343561568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805260219552"}, {"nodeId": "139805260219664"}, {"nodeId": "139805260219776"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "buffer", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139805260219552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260219664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260219776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226282208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226282656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226282880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226283328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343990048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805260219888"}, {"nodeId": "139805260220000"}, {"nodeId": "139805260220112"}, {"nodeId": "139805260220224"}, {"nodeId": "139805260220336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139805260219888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220224": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805260220336": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805343990496": {"type": "Function", "content": {"typeVars": [".0.139805343990496"], "argTypes": [{"nodeId": ".0.139805343990496"}], "returnType": {"nodeId": ".0.139805343990496"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343990496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272607200"}, "def": "139805343990496", "variance": "INVARIANT"}}, "139805343990944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805343991392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343991840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343992288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343992736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343993184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607200"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805272606848": {"type": "Concrete", "content": {"module": "io", "simpleName": "TextIOBase", "members": [{"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263541776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268567520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343557984"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343558432"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343558880"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343559328"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343559776"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343560224"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343560672"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343561120"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139805272046432"}], "isAbstract": false}}, "139805263541776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268567520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805343557984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805343558432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343558880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343559328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343559776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343560224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343560672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343561120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606848"}, {"nodeId": "139805260219440"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260219440": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272046432": {"type": "Concrete", "content": {"module": "io", "simpleName": "IOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343224032"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343224480"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343224928"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343225376"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343225824"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343226272"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343226720"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343227168"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343227616"}, "name": "readable"}}, {"kind": "Variable", "content": {"name": "read", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276228288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__hint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343228064"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343228512"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343228960"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343229408"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343229856"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343230304"}, "name": "writable"}}, {"kind": "Variable", "content": {"name": "write", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276226720"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343230752"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343231200"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343231648"}, "name": "__del__"}}, {"kind": "Variable", "content": {"name": "closed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226091232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343232544"}, "name": "_checkClosed"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805343224032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805343224480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343224928": {"type": "Function", "content": {"typeVars": [".0.139805343224928"], "argTypes": [{"nodeId": ".0.139805343224928"}], "returnType": {"nodeId": ".0.139805343224928"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343224928": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272046432"}, "def": "139805343224928", "variance": "INVARIANT"}}, "139805343225376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260069712"}, {"nodeId": "139805260069824"}, {"nodeId": "139805260069936"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805260069712": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805260069824": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805260069936": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805343225824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343226272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343226720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343227168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343227616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276228288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805343228064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343228512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805343228960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343229408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343229856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260070048"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070048": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343230304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276226720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805343230752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805277011488"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343231200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260070160"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070160": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343231648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805226091232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343232544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046432"}, {"nodeId": "139805260070272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139805260070272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272042208": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "Popen", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263531696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263538192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268560128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272228912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272229024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "universal_newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805264369296"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292775008"}, "name": "poll"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292775456"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292775904"}, "name": "communicate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sig", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292776352"}, "name": "send_signal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292776800"}, "name": "terminate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292777248"}, "name": "kill"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292777696"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292778144"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292778592"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272042208"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272042208": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272042208", "variance": "INVARIANT"}}, "139805263531696": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805268559568": {"type": "Union", "content": {"items": [{"nodeId": "139805268559120"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805268558896"}]}]}}, "139805268559120": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805267825536": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669376"}]}]}}, "139805268558896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805263538192": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "N"}]}}, "139805268560128": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "N"}]}}, "139805272228912": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "N"}]}}, "139805272229024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "A"}]}}, "139805264369296": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805276500736"}, {"nodeId": "139805297551264"}, {"nodeId": "139805297551712"}, {"nodeId": "139805297552160"}, {"nodeId": "139805297552608"}, {"nodeId": "139805297553056"}]}}, "139805276500736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259312016"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259312240"}, {"nodeId": "139805259312464"}, {"nodeId": "139805259312688"}, {"nodeId": "139805259312912"}, {"nodeId": "139805259313024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259313360"}, {"nodeId": "139805259313584"}, {"nodeId": "139805259313696"}, {"nodeId": "139805259313920"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259314032"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259314144"}, {"nodeId": "139805259314256"}, {"nodeId": "139805259314368"}, {"nodeId": "139805259314592"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259312016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259312240": {"type": "Union", "content": {"items": [{"nodeId": "139805259312128"}, {"nodeId": "N"}]}}, "139805259312128": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259312464": {"type": "Union", "content": {"items": [{"nodeId": "139805259312352"}, {"nodeId": "N"}]}}, "139805259312352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805271916016": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481893056"}, {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}]}}, "139805259312688": {"type": "Union", "content": {"items": [{"nodeId": "139805259312576"}, {"nodeId": "N"}]}}, "139805259312576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259312912": {"type": "Union", "content": {"items": [{"nodeId": "139805259312800"}, {"nodeId": "N"}]}}, "139805259312800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259313024": {"type": "Union", "content": {"items": [{"nodeId": "139805276500288"}, {"nodeId": "N"}]}}, "139805276500288": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259313360": {"type": "Union", "content": {"items": [{"nodeId": "139805259313248"}, {"nodeId": "N"}]}}, "139805259313248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259313584": {"type": "Union", "content": {"items": [{"nodeId": "139805259313472"}, {"nodeId": "N"}]}}, "139805259313472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805268560352": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669376"}, {"nodeId": "139805268559904"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805268559456"}]}]}}, "139805268559904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805268559456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259313696": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259313920": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259314032": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259314144": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259314256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259314368": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259314592": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259314480"}]}, {"nodeId": "N"}]}}, "139805259314480": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297551264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259314704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259314928"}, {"nodeId": "139805259315152"}, {"nodeId": "139805259315376"}, {"nodeId": "139805259315600"}, {"nodeId": "139805259315712"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259316048"}, {"nodeId": "139805259316272"}, {"nodeId": "139805259316384"}, {"nodeId": "139805259316608"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259316720"}, {"nodeId": "139805259316832"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259316944"}, {"nodeId": "139805259317056"}, {"nodeId": "139805259366576"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259314704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259314928": {"type": "Union", "content": {"items": [{"nodeId": "139805259314816"}, {"nodeId": "N"}]}}, "139805259314816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259315152": {"type": "Union", "content": {"items": [{"nodeId": "139805259315040"}, {"nodeId": "N"}]}}, "139805259315040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259315376": {"type": "Union", "content": {"items": [{"nodeId": "139805259315264"}, {"nodeId": "N"}]}}, "139805259315264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259315600": {"type": "Union", "content": {"items": [{"nodeId": "139805259315488"}, {"nodeId": "N"}]}}, "139805259315488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259315712": {"type": "Union", "content": {"items": [{"nodeId": "139805276499616"}, {"nodeId": "N"}]}}, "139805276499616": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259316048": {"type": "Union", "content": {"items": [{"nodeId": "139805259315936"}, {"nodeId": "N"}]}}, "139805259315936": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259316272": {"type": "Union", "content": {"items": [{"nodeId": "139805259316160"}, {"nodeId": "N"}]}}, "139805259316160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259316384": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259316608": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259316720": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259316832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259316944": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259317056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259366576": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259366464"}]}, {"nodeId": "N"}]}}, "139805259366464": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297551712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259366688"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259366912"}, {"nodeId": "139805259367136"}, {"nodeId": "139805259367360"}, {"nodeId": "139805259367584"}, {"nodeId": "139805259367696"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259368032"}, {"nodeId": "139805259368256"}, {"nodeId": "0"}, {"nodeId": "139805259368592"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259368704"}, {"nodeId": "139805259368816"}, {"nodeId": "139805259368928"}, {"nodeId": "139805259369040"}, {"nodeId": "139805259369152"}, {"nodeId": "139805259369376"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259366688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259366912": {"type": "Union", "content": {"items": [{"nodeId": "139805259366800"}, {"nodeId": "N"}]}}, "139805259366800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259367136": {"type": "Union", "content": {"items": [{"nodeId": "139805259367024"}, {"nodeId": "N"}]}}, "139805259367024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259367360": {"type": "Union", "content": {"items": [{"nodeId": "139805259367248"}, {"nodeId": "N"}]}}, "139805259367248": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259367584": {"type": "Union", "content": {"items": [{"nodeId": "139805259367472"}, {"nodeId": "N"}]}}, "139805259367472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259367696": {"type": "Union", "content": {"items": [{"nodeId": "139805276500960"}, {"nodeId": "N"}]}}, "139805276500960": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259368032": {"type": "Union", "content": {"items": [{"nodeId": "139805259367920"}, {"nodeId": "N"}]}}, "139805259367920": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259368256": {"type": "Union", "content": {"items": [{"nodeId": "139805259368144"}, {"nodeId": "N"}]}}, "139805259368144": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259368592": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259368704": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259368816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259368928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259369040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259369152": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259369376": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259369264"}]}, {"nodeId": "N"}]}}, "139805259369264": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297552160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259369488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259369712"}, {"nodeId": "139805259369936"}, {"nodeId": "139805259370160"}, {"nodeId": "139805259370384"}, {"nodeId": "139805259370496"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259370832"}, {"nodeId": "139805259371056"}, {"nodeId": "139805259371168"}, {"nodeId": "139805259371392"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "0"}, {"nodeId": "139805259371616"}, {"nodeId": "139805259371728"}, {"nodeId": "139805259371840"}, {"nodeId": "139805259371952"}, {"nodeId": "139805259372176"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259369488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259369712": {"type": "Union", "content": {"items": [{"nodeId": "139805259369600"}, {"nodeId": "N"}]}}, "139805259369600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259369936": {"type": "Union", "content": {"items": [{"nodeId": "139805259369824"}, {"nodeId": "N"}]}}, "139805259369824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259370160": {"type": "Union", "content": {"items": [{"nodeId": "139805259370048"}, {"nodeId": "N"}]}}, "139805259370048": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259370384": {"type": "Union", "content": {"items": [{"nodeId": "139805259370272"}, {"nodeId": "N"}]}}, "139805259370272": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259370496": {"type": "Union", "content": {"items": [{"nodeId": "139805276501184"}, {"nodeId": "N"}]}}, "139805276501184": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259370832": {"type": "Union", "content": {"items": [{"nodeId": "139805259370720"}, {"nodeId": "N"}]}}, "139805259370720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259371056": {"type": "Union", "content": {"items": [{"nodeId": "139805259370944"}, {"nodeId": "N"}]}}, "139805259370944": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259371168": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259371392": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259371616": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259371728": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259371840": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259371952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259372176": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259372064"}]}, {"nodeId": "N"}]}}, "139805259372064": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297552608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805259372288"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259372512"}, {"nodeId": "139805259372736"}, {"nodeId": "139805259372960"}, {"nodeId": "139805259373184"}, {"nodeId": "139805259373296"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259373632"}, {"nodeId": "139805259373856"}, {"nodeId": "139805259374192"}, {"nodeId": "139805259374304"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259374640"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "139805259374528"}, {"nodeId": "139805259374752"}, {"nodeId": "139805259374976"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259372288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259372512": {"type": "Union", "content": {"items": [{"nodeId": "139805259372400"}, {"nodeId": "N"}]}}, "139805259372400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259372736": {"type": "Union", "content": {"items": [{"nodeId": "139805259372624"}, {"nodeId": "N"}]}}, "139805259372624": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259372960": {"type": "Union", "content": {"items": [{"nodeId": "139805259372848"}, {"nodeId": "N"}]}}, "139805259372848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259373184": {"type": "Union", "content": {"items": [{"nodeId": "139805259373072"}, {"nodeId": "N"}]}}, "139805259373072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259373296": {"type": "Union", "content": {"items": [{"nodeId": "139805276501408"}, {"nodeId": "N"}]}}, "139805276501408": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259373632": {"type": "Union", "content": {"items": [{"nodeId": "139805259373520"}, {"nodeId": "N"}]}}, "139805259373520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259373856": {"type": "Union", "content": {"items": [{"nodeId": "139805259373744"}, {"nodeId": "N"}]}}, "139805259373744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259374192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259374304": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259374640": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259374528": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259374752": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259374976": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259374864"}]}, {"nodeId": "N"}]}}, "139805259374864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805297553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": "A"}]}, {"nodeId": "139805259375200"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259375424"}, {"nodeId": "139805259375648"}, {"nodeId": "139805259375872"}, {"nodeId": "139805259376096"}, {"nodeId": "139805259376208"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805259376544"}, {"nodeId": "139805259376768"}, {"nodeId": "139805259376880"}, {"nodeId": "139805259377104"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481889536", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805259377216"}, {"nodeId": "139805259377328"}, {"nodeId": "139805259377440"}, {"nodeId": "139805259377552"}, {"nodeId": "139805259377664"}, {"nodeId": "139805259377888"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "args", "bufsize", "executable", "stdin", "stdout", "stderr", "preexec_fn", "close_fds", "shell", "cwd", "env", "universal_newlines", "startupinfo", "creationflags", "restore_signals", "start_new_session", "pass_fds", "text", "encoding", "errors", "user", "group", "extra_groups", "umask", "pipesize"]}}, "139805259375200": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259375424": {"type": "Union", "content": {"items": [{"nodeId": "139805259375312"}, {"nodeId": "N"}]}}, "139805259375312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259375648": {"type": "Union", "content": {"items": [{"nodeId": "139805259375536"}, {"nodeId": "N"}]}}, "139805259375536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259375872": {"type": "Union", "content": {"items": [{"nodeId": "139805259375760"}, {"nodeId": "N"}]}}, "139805259375760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259376096": {"type": "Union", "content": {"items": [{"nodeId": "139805259375984"}, {"nodeId": "N"}]}}, "139805259375984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805271916016"}}}, "139805259376208": {"type": "Union", "content": {"items": [{"nodeId": "139805276501632"}, {"nodeId": "N"}]}}, "139805276501632": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805259376544": {"type": "Union", "content": {"items": [{"nodeId": "139805259376432"}, {"nodeId": "N"}]}}, "139805259376432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805259376768": {"type": "Union", "content": {"items": [{"nodeId": "139805259376656"}, {"nodeId": "N"}]}}, "139805259376656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268560352"}}}, "139805259376880": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259377104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805259377216": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805259377328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259377440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259377552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259377664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805259377888": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805259377776"}]}, {"nodeId": "N"}]}}, "139805259377776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805292775008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}], "returnType": {"nodeId": "139805259378000"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259378000": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805292775456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805259378112"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805259378112": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292775904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805259378224"}, {"nodeId": "139805259378336"}], "returnType": {"nodeId": "139805259378560"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "input", "timeout"]}}, "139805259378224": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272042208"}, {"nodeId": "N"}]}}, "139805259378336": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805259378560": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805272042208"}, {"nodeId": ".1.139805272042208"}]}}, "139805292776352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sig"]}}, "139805292776800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292777248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292777696": {"type": "Function", "content": {"typeVars": [".0.139805292777696"], "argTypes": [{"nodeId": ".0.139805292777696"}], "returnType": {"nodeId": ".0.139805292777696"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805292777696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, "def": "139805292777696", "variance": "INVARIANT"}}, "139805292778144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042208", "args": [{"nodeId": ".1.139805272042208"}]}, {"nodeId": "139805259378784"}, {"nodeId": "139805259378896"}, {"nodeId": "139805259379008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805259378784": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259378896": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805259379008": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292778592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805351895200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268512256"}], "returnType": {"nodeId": "139805260059520"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260059520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268512608": {"type": "Concrete", "content": {"module": "os", "simpleName": "times_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805297910592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301643008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301643904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_user", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301644128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "children_system", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301644352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elapsed", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301644576"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893408"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805297910592": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805301643008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260061088"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260061088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301643904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260060528"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260060528": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301644128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260060864"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260060864": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301644352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260061200"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260061200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805301644576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260061312"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260061312": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}, {"nodeId": "139805481893408"}]}}, "139805268512960": {"type": "Concrete", "content": {"module": "os", "simpleName": "waitid_result", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805297906112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_pid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301641664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_uid", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_signo", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_status", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "si_code", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301647936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805297906112": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805301641664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260062768"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260062768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063104"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063104": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063440"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063552"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805301647936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260063664"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260063664": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805268513312": {"type": "Concrete", "content": {"module": "os", "simpleName": "sched_param", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805297905776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805351995744"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "sched_priority", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805301649728"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805481893056"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805297905776": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805351995744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805260067360"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "sched_priority"]}}, "139805260067360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805301649728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260067136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260067136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}]}}, "139805184486816": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "PyDLL", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184486464"}], "isAbstract": false}}, "139805171900736": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "LibraryLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dlltype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352419040"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352419488"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352419936"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352420384"}, "name": "LoadLibrary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805352420832"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805171900736"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805171900736": {"type": "TypeVar", "content": {"varName": "_DLLT", "values": [], "upperBound": {"nodeId": "139805184486464"}, "def": "139805171900736", "variance": "INVARIANT"}}, "139805352419040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "dlltype"]}}, "139805352419488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805171900736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352419936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805171900736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805352420384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900736", "args": [{"nodeId": ".1.139805171900736"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".1.139805171900736"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805352420832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805184487872": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_byte", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184488224": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_char", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355835680"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805276669376"}]}], "isAbstract": false}}, "139805355835680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184488224"}, {"nodeId": "139805172063296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805172063296": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805184488576": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_char_p", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355836128"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482592", "args": [{"nodeId": "139805172056352"}]}], "isAbstract": false}}, "139805355836128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184488576"}, {"nodeId": "139805172063408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805172063408": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805172056352": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805184488928": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_double", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805184489280": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_longdouble", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805184489632": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_float", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893408"}]}], "isAbstract": false}}, "139805184489984": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184490336": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int8", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184490688": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int16", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184491040": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_int32", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171892640": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_long", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171892992": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_longlong", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171893344": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_short", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171893696": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_size_t", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171894048": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ssize_t", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171894400": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ubyte", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171894752": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171895104": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint8", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171895456": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint16", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171895808": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint32", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171896160": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_uint64", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171896512": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ulong", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171896864": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ulonglong", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171897216": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_ushort", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805171897920": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_wchar", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805171898272": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_wchar_p", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355836576"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482592", "args": [{"nodeId": "139805171768384"}]}], "isAbstract": false}}, "139805355836576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171898272"}, {"nodeId": "139805172063520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805172063520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171768384": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171898624": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "c_bool", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805355837024"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805184482592", "args": [{"nodeId": "139805481882144"}]}], "isAbstract": false}}, "139805355837024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171898624"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805171898976": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "py_object", "members": [], "typeVars": [{"nodeId": ".1.139805171898976"}], "bases": [{"nodeId": "139805184482944"}, {"nodeId": "139805184482592", "args": [{"nodeId": ".1.139805171898976"}]}], "isAbstract": false}}, ".1.139805171898976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805171898976", "variance": "INVARIANT"}}, "139805171899328": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "BigEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485760"}], "isAbstract": false}}, "139805184485760": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Structure", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485056"}], "isAbstract": false}}, "139805184485056": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_StructUnionBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314718560"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314719008"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314719456"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805184482240"}], "isAbstract": false}}, "139805314718560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184485056"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kw"]}}, "139805314719008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184485056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314719456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184485056"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805171899680": {"type": "Concrete", "content": {"module": "ctypes", "simpleName": "LittleEndianStructure", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485760"}], "isAbstract": false}}, "139805167798048": {"type": "Concrete", "content": {"module": "datetime", "simpleName": "timezone", "members": [{"kind": "Variable", "content": {"name": "utc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "min", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167798048"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356009824"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356010272"}, "name": "tzname"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356010720"}, "name": "utcoffset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__dt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805356011168"}, "name": "dst"}}], "typeVars": [], "bases": [{"nodeId": "139805167797696"}], "isAbstract": false}}, "139805356009824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805167799456"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "name"]}}, "139805356010272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805162874000"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162874000": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805356010720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805162874112"}], "returnType": {"nodeId": "139805167799456"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162874112": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805356011168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167798048"}, {"nodeId": "139805162874224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805162874224": {"type": "Union", "content": {"items": [{"nodeId": "139805167799808"}, {"nodeId": "N"}]}}, "139805272616352": {"type": "Concrete", "content": {"module": "enum", "simpleName": "_EnumDict", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347383328"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347383776"}, "name": "__setitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "isAbstract": false}}, "139805347383328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616352"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347383776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616352"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805272616704": {"type": "Concrete", "content": {"module": "enum", "simpleName": "EnumMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "metacls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "classdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347385568"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__prepare__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221976352"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347387360"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347387808"}, "name": "__reversed__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347389152"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347390048"}, "name": "__getitem__"}}, {"kind": "Variable", "content": {"name": "__members__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221976576"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347390944"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347391392"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347391840"}, "name": "__dir__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260234112"}, "items": [{"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__call__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__call__"}}, {"kind": "Variable", "content": {"name": "_member_names_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805272617056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value2member_map_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "A"}, {"nodeId": "139805272617056"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276879008"}], "isAbstract": false}}, "139805347385568": {"type": "Function", "content": {"typeVars": [".-1.139805347385568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "139805272616352"}, {"nodeId": "A"}], "returnType": {"nodeId": ".-1.139805347385568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "classdict", "kwds"]}}, ".-1.139805347385568": {"type": "TypeVar", "content": {"varName": "_typeshed.Self", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347385568", "variance": "INVARIANT"}}, "139805221976352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481892352"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272616352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["metacls", "cls", "bases", "kwds"]}}, "139805347387360": {"type": "Function", "content": {"typeVars": [".-1.139805347387360"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".-1.139805347387360"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805347387360": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347387360", "variance": "INVARIANT"}}, "139805347387808": {"type": "Function", "content": {"typeVars": [".-1.139805347387808"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".-1.139805347387808"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805347387808": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347387808", "variance": "INVARIANT"}}, "139805347389152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805347390048": {"type": "Function", "content": {"typeVars": [".-1.139805347390048"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".-1.139805347390048"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".-1.139805347390048": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347390048", "variance": "INVARIANT"}}, "139805221976576": {"type": "Function", "content": {"typeVars": [".-1.139805221976576"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "139805272032352", "args": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805221976576"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".-1.139805221976576": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805221976576", "variance": "INVARIANT"}}, "139805347390944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805347391392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347391840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260234112": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805347392288"}, {"nodeId": "139805347393184"}]}}, "139805347392288": {"type": "Function", "content": {"typeVars": [".-1.139805347392288"], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}, {"nodeId": "N"}], "returnType": {"nodeId": ".-1.139805347392288"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "value", "names"]}}, ".-1.139805347392288": {"type": "TypeVar", "content": {"varName": "_EnumMemberT", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347392288", "variance": "INVARIANT"}}, "139805347393184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616704"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255227024"}, {"nodeId": "139805255227136"}, {"nodeId": "139805255227248"}, {"nodeId": "139805255227360"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "value", "names", "module", "qualname", "type", "start"]}}, "139805255227024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272707072"}}}, "139805272707072": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805272705280"}]}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805272705280": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805255227136": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255227248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255227360": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "N"}]}}, "139805272617408": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntEnum", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222083872"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347513056"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}, {"nodeId": "139805272617056"}], "isAbstract": false}}, "139805222083872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617408"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347513056": {"type": "Function", "content": {"typeVars": [".0.139805347513056"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347513056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139805347513056": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617408"}, "def": "139805347513056", "variance": "INVARIANT"}}, "139805272617760": {"type": "Concrete", "content": {"module": "enum", "simpleName": "Flag", "members": [{"kind": "Variable", "content": {"name": "_name_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272707408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222084992"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222086336"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347514848"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347515296"}, "name": "__bool__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347515744"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347516192"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347516640"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347517088"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "139805272617056"}], "isAbstract": false}}, "139805272707408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805222084992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617760"}], "returnType": {"nodeId": "139805255228256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255228256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805222086336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617760"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347514848": {"type": "Function", "content": {"typeVars": [".0.139805347514848"], "argTypes": [{"nodeId": ".0.139805347514848"}, {"nodeId": ".0.139805347514848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347514848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347514848", "variance": "INVARIANT"}}, "139805347515296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272617760"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347515744": {"type": "Function", "content": {"typeVars": [".0.139805347515744"], "argTypes": [{"nodeId": ".0.139805347515744"}, {"nodeId": ".0.139805347515744"}], "returnType": {"nodeId": ".0.139805347515744"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347515744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347515744", "variance": "INVARIANT"}}, "139805347516192": {"type": "Function", "content": {"typeVars": [".0.139805347516192"], "argTypes": [{"nodeId": ".0.139805347516192"}, {"nodeId": ".0.139805347516192"}], "returnType": {"nodeId": ".0.139805347516192"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347516192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347516192", "variance": "INVARIANT"}}, "139805347516640": {"type": "Function", "content": {"typeVars": [".0.139805347516640"], "argTypes": [{"nodeId": ".0.139805347516640"}, {"nodeId": ".0.139805347516640"}], "returnType": {"nodeId": ".0.139805347516640"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347516640": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347516640", "variance": "INVARIANT"}}, "139805347517088": {"type": "Function", "content": {"typeVars": [".0.139805347517088"], "argTypes": [{"nodeId": ".0.139805347517088"}], "returnType": {"nodeId": ".0.139805347517088"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805347517088": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272617760"}, "def": "139805347517088", "variance": "INVARIANT"}}, "139805272618112": {"type": "Concrete", "content": {"module": "enum", "simpleName": "IntFlag", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347524256"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347524704"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347525152"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347525600"}, "name": "__xor__"}}, {"kind": "Variable", "content": {"name": "__ror__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222159072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rand__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222161536"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__rxor__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222162656"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}, {"nodeId": "139805272617760"}], "isAbstract": false}}, "139805347524256": {"type": "Function", "content": {"typeVars": [".0.139805347524256"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347524256"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "value"]}}, ".0.139805347524256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347524256", "variance": "INVARIANT"}}, "139805347524704": {"type": "Function", "content": {"typeVars": [".0.139805347524704"], "argTypes": [{"nodeId": ".0.139805347524704"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347524704"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347524704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347524704", "variance": "INVARIANT"}}, "139805347525152": {"type": "Function", "content": {"typeVars": [".0.139805347525152"], "argTypes": [{"nodeId": ".0.139805347525152"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347525152"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347525152": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347525152", "variance": "INVARIANT"}}, "139805347525600": {"type": "Function", "content": {"typeVars": [".0.139805347525600"], "argTypes": [{"nodeId": ".0.139805347525600"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805347525600"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805347525600": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805347525600", "variance": "INVARIANT"}}, "139805222159072": {"type": "Function", "content": {"typeVars": [".0.139805222159072"], "argTypes": [{"nodeId": ".0.139805222159072"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805222159072"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805222159072": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805222159072", "variance": "INVARIANT"}}, "139805222161536": {"type": "Function", "content": {"typeVars": [".0.139805222161536"], "argTypes": [{"nodeId": ".0.139805222161536"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805222161536"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805222161536": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805222161536", "variance": "INVARIANT"}}, "139805222162656": {"type": "Function", "content": {"typeVars": [".0.139805222162656"], "argTypes": [{"nodeId": ".0.139805222162656"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".0.139805222162656"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805222162656": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618112"}, "def": "139805222162656", "variance": "INVARIANT"}}, "139805272618464": {"type": "Concrete", "content": {"module": "enum", "simpleName": "auto", "members": [{"kind": "Variable", "content": {"name": "_value_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805222164224"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347526496"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805272618112"}], "isAbstract": false}}, "139805222164224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347526496": {"type": "Function", "content": {"typeVars": [".0.139805347526496"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805347526496"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805347526496": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618464"}, "def": "139805347526496", "variance": "INVARIANT"}}, "139805276879360": {"type": "Concrete", "content": {"module": "abc", "simpleName": "abstractproperty", "members": [{"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276672192"}], "isAbstract": false}}, "139805267653056": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "AbstractAsyncContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255278528"}, "name": "__aenter__"}}, {"kind": "Variable", "content": {"name": "__aexit__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805217660864"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805267653056"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__aenter__", "__aexit__"]}}, ".1.139805267653056": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267653056", "variance": "COVARIANT"}}, "139805255278528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267653056"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805267653056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805217660864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267653056"}]}, {"nodeId": "139805255447408"}, {"nodeId": "139805255447520"}, {"nodeId": "139805255447632"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805255447744"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139805255447408": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255447520": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255447632": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255447744": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805267653760": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_GeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360513184"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805267653760"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276238816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360513632"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805267653760"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267653760"}]}, {"nodeId": "139805267653408"}], "isAbstract": false}}, ".1.139805267653760": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267653760", "variance": "COVARIANT"}}, "139805360513184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653760", "args": [{"nodeId": ".1.139805267653760"}]}, {"nodeId": "139805255277408"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139805255277408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": ".1.139805267653760"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276238816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".1.139805267653760"}, {"nodeId": "A"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805360513632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267653760", "args": [{"nodeId": ".1.139805267653760"}]}, {"nodeId": "139805255448304"}, {"nodeId": "139805255448416"}, {"nodeId": "139805255448528"}], "returnType": {"nodeId": "139805255448640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255448304": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255448416": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255448528": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255448640": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805267654112": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncContextDecorator", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360514976"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805360514976": {"type": "Function", "content": {"typeVars": [".-1.139805360514976"], "argTypes": [{"nodeId": "139805267654112"}, {"nodeId": ".-1.139805360514976"}], "returnType": {"nodeId": ".-1.139805360514976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, ".-1.139805360514976": {"type": "TypeVar", "content": {"varName": "_AF", "values": [], "upperBound": {"nodeId": "139805276237472"}, "def": "139805360514976", "variance": "INVARIANT"}}, "139805276237472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805267654464": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_AsyncGeneratorContextManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360515424"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "gen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805267654464"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276239488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typ", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255280320"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139805267654464"}], "bases": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267654464"}]}, {"nodeId": "139805267654112"}], "isAbstract": false}}, ".1.139805267654464": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267654464", "variance": "COVARIANT"}}, "139805360515424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267654464", "args": [{"nodeId": ".1.139805267654464"}]}, {"nodeId": "139805255280544"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "func", "args", "kwds"]}}, "139805255280544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481888480", "args": [{"nodeId": ".1.139805267654464"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276239488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481888832", "args": [{"nodeId": ".1.139805267654464"}, {"nodeId": "A"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805255280320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267654464", "args": [{"nodeId": ".1.139805267654464"}]}, {"nodeId": "139805255449536"}, {"nodeId": "139805255449648"}, {"nodeId": "139805255449760"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805255449872"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typ", "value", "traceback"]}}, "139805255449536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255449648": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255449760": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805255449872": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805267654816": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsClose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360517664"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["close"]}}, "139805360517664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267654816"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267655168": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "closing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360518112"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360518560"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805267655168"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267655168"}]}], "isAbstract": false}}, ".1.139805267655168": {"type": "TypeVar", "content": {"varName": "_SupportsCloseT", "values": [], "upperBound": {"nodeId": "139805267654816"}, "def": "139805267655168", "variance": "INVARIANT"}}, "139805360518112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655168", "args": [{"nodeId": ".1.139805267655168"}]}, {"nodeId": ".1.139805267655168"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139805360518560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655168", "args": [{"nodeId": ".1.139805267655168"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805267655520": {"type": "Protocol", "content": {"module": "contextlib", "simpleName": "_SupportsAclose", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360519008"}, "name": "aclose"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["aclose"]}}, "139805360519008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655520"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "139805481881792"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267655872": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "aclosing", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "thing", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360519456"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255281888"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139805267655872"}], "bases": [{"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267655872"}]}], "isAbstract": false}}, ".1.139805267655872": {"type": "TypeVar", "content": {"varName": "_SupportsAcloseT", "values": [], "upperBound": {"nodeId": "139805267655520"}, "def": "139805267655872", "variance": "INVARIANT"}}, "139805360519456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655872", "args": [{"nodeId": ".1.139805267655872"}]}, {"nodeId": ".1.139805267655872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "thing"]}}, "139805255281888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267655872", "args": [{"nodeId": ".1.139805267655872"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exc_info"]}}, "139805267656224": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "suppress", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exceptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360520352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805360520800"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": "N"}]}], "isAbstract": false}}, "139805360520352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267656224"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exceptions"]}}, "139805360520800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267656224"}, {"nodeId": "139805255598256"}, {"nodeId": "139805255598368"}, {"nodeId": "139805255598480"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255598256": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255598368": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255598480": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267804224": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "_RedirectStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "new_target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347873056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinst", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347873504"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805267804224"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267804224"}]}], "isAbstract": false}}, ".1.139805267804224": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139805268571776"}, "def": "139805267804224", "variance": "INVARIANT"}}, "139805268571776": {"type": "Union", "content": {"items": [{"nodeId": "139805277000224", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805347873056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804224"}]}, {"nodeId": ".1.139805267804224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "new_target"]}}, "139805347873504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804224"}]}, {"nodeId": "139805255598592"}, {"nodeId": "139805255598704"}, {"nodeId": "139805255598816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255598592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255598704": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255598816": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267804576": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stdout", "members": [], "typeVars": [{"nodeId": ".1.139805267804576"}], "bases": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804576"}]}], "isAbstract": false}}, ".1.139805267804576": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139805268571776"}, "def": "139805267804576", "variance": "INVARIANT"}}, "139805267804928": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "redirect_stderr", "members": [], "typeVars": [{"nodeId": ".1.139805267804928"}], "bases": [{"nodeId": "139805267804224", "args": [{"nodeId": ".1.139805267804928"}]}], "isAbstract": false}}, ".1.139805267804928": {"type": "TypeVar", "content": {"varName": "_T_io", "values": [], "upperBound": {"nodeId": "139805268571776"}, "def": "139805267804928", "variance": "INVARIANT"}}, "139805267805280": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "ExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347873952"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347874400"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347874848"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347875296"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347875744"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347876192"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347876640"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805347873952": {"type": "Function", "content": {"typeVars": [".-1.139805347873952"], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": "139805267652704", "args": [{"nodeId": ".-1.139805347873952"}]}], "returnType": {"nodeId": ".-1.139805347873952"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139805347873952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347873952", "variance": "INVARIANT"}}, "139805347874400": {"type": "Function", "content": {"typeVars": [".-1.139805347874400"], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": ".-1.139805347874400"}], "returnType": {"nodeId": ".-1.139805347874400"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139805347874400": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139805268572896"}, "def": "139805347874400", "variance": "INVARIANT"}}, "139805268572896": {"type": "Union", "content": {"items": [{"nodeId": "139805267652704", "args": [{"nodeId": "A"}]}, {"nodeId": "139805268572336"}]}}, "139805268572336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276474720"}}}, "139805276474720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272714688"}, {"nodeId": "139805272714240"}, {"nodeId": "139805272714352"}], "returnType": {"nodeId": "139805272714464"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805272714688": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805272714240": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805272714352": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272714464": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805347874848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": "139805255281440"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805255282112"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139805255281440": {"type": "Function", "content": {"typeVars": [".-2.139805255281440"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255281440"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255281440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255281440", "variance": "INVARIANT"}}, "139805255282112": {"type": "Function", "content": {"typeVars": [".-2.139805255282112"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255282112"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255282112": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255282112", "variance": "INVARIANT"}}, "139805347875296": {"type": "Function", "content": {"typeVars": [".0.139805347875296"], "argTypes": [{"nodeId": ".0.139805347875296"}], "returnType": {"nodeId": ".0.139805347875296"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805347875296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805280"}, "def": "139805347875296", "variance": "INVARIANT"}}, "139805347875744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347876192": {"type": "Function", "content": {"typeVars": [".0.139805347876192"], "argTypes": [{"nodeId": ".0.139805347876192"}], "returnType": {"nodeId": ".0.139805347876192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805347876192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805280"}, "def": "139805347876192", "variance": "INVARIANT"}}, "139805347876640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805280"}, {"nodeId": "139805255599824"}, {"nodeId": "139805255599936"}, {"nodeId": "139805255600048"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255599824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255599936": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255600048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267805632": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "AsyncExitStack", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347877088"}, "name": "enter_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cm", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255282336"}, "name": "enter_async_context"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347877984"}, "name": "push"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347878432"}, "name": "push_async_exit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347878880"}, "name": "callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347879328"}, "name": "push_async_callback"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347879776"}, "name": "pop_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347877536"}, "name": "aclose"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347880224"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347880672"}, "name": "__aexit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805347877088": {"type": "Function", "content": {"typeVars": [".-1.139805347877088"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805267652704", "args": [{"nodeId": ".-1.139805347877088"}]}], "returnType": {"nodeId": ".-1.139805347877088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139805347877088": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805347877088", "variance": "INVARIANT"}}, "139805255282336": {"type": "Function", "content": {"typeVars": [".-1.139805255282336"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805267653056", "args": [{"nodeId": ".-1.139805255282336"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".-1.139805255282336"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cm"]}}, ".-1.139805255282336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255282336", "variance": "INVARIANT"}}, "139805347877984": {"type": "Function", "content": {"typeVars": [".-1.139805347877984"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": ".-1.139805347877984"}], "returnType": {"nodeId": ".-1.139805347877984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139805347877984": {"type": "TypeVar", "content": {"varName": "_CM_EF", "values": [], "upperBound": {"nodeId": "139805268572896"}, "def": "139805347877984", "variance": "INVARIANT"}}, "139805347878432": {"type": "Function", "content": {"typeVars": [".-1.139805347878432"], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": ".-1.139805347878432"}], "returnType": {"nodeId": ".-1.139805347878432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "exit"]}}, ".-1.139805347878432": {"type": "TypeVar", "content": {"varName": "_ACM_EF", "values": [], "upperBound": {"nodeId": "139805268573456"}, "def": "139805347878432", "variance": "INVARIANT"}}, "139805268573456": {"type": "Union", "content": {"items": [{"nodeId": "139805267653056", "args": [{"nodeId": "A"}]}, {"nodeId": "139805268573680"}]}}, "139805268573680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276241056"}}}, "139805276241056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272718944"}, {"nodeId": "139805272717488"}, {"nodeId": "139805272718608"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "139805272718720"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805272718944": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805272717488": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805272718608": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805272718720": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805347878880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805255281664"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805255282560"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139805255281664": {"type": "Function", "content": {"typeVars": [".-2.139805255281664"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255281664"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255281664": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255281664", "variance": "INVARIANT"}}, "139805255282560": {"type": "Function", "content": {"typeVars": [".-2.139805255282560"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": ".-2.139805255282560"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255282560": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255282560", "variance": "INVARIANT"}}, "139805347879328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805255278976"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805255283008"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwds"]}}, "139805255278976": {"type": "Function", "content": {"typeVars": [".-2.139805255278976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".-2.139805255278976"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255278976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255278976", "variance": "INVARIANT"}}, "139805255283008": {"type": "Function", "content": {"typeVars": [".-2.139805255283008"], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": ".-2.139805255283008"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".-2.139805255283008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805255283008", "variance": "INVARIANT"}}, "139805347879776": {"type": "Function", "content": {"typeVars": [".0.139805347879776"], "argTypes": [{"nodeId": ".0.139805347879776"}], "returnType": {"nodeId": ".0.139805347879776"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805347879776": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805632"}, "def": "139805347879776", "variance": "INVARIANT"}}, "139805347877536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805347880224": {"type": "Function", "content": {"typeVars": [".0.139805347880224"], "argTypes": [{"nodeId": ".0.139805347880224"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".0.139805347880224"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805347880224": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267805632"}, "def": "139805347880224", "variance": "INVARIANT"}}, "139805347880672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805632"}, {"nodeId": "139805255602176"}, {"nodeId": "139805255602288"}, {"nodeId": "139805255602400"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805481882144"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null, null]}}, "139805255602176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255602288": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255602400": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805267805984": {"type": "Concrete", "content": {"module": "contextlib", "simpleName": "nullcontext", "members": [{"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805267805984"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255602064"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347882464"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805347882912"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255282784"}, "name": "__aenter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805255283680"}, "name": "__aexit__"}}], "typeVars": [{"nodeId": ".1.139805267805984"}], "bases": [{"nodeId": "139805267652704", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": "139805267653056", "args": [{"nodeId": ".1.139805267805984"}]}], "isAbstract": false}}, ".1.139805267805984": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267805984", "variance": "INVARIANT"}}, "139805255602064": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805347881120"}, {"nodeId": "139805347881568"}]}}, "139805347881120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": "N"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "139805347881568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": ".1.139805267805984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "enter_result"]}}, "139805347882464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}], "returnType": {"nodeId": ".1.139805267805984"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805347882912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805255282784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": ".1.139805267805984"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255283680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267805984", "args": [{"nodeId": ".1.139805267805984"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "exctype"]}}, "139805272044672": {"type": "Concrete", "content": {"module": "re", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235038912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "endpos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235037792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235036896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lastgroup", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235036224"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235002528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "re", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805235001856"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259378672"}, "items": [{"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "expand"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259464768"}, "items": [{"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "group"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259465440"}, "items": [{"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groups"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259465552"}, "items": [{"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "groupdict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348043168"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348043616"}, "name": "end"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348044064"}, "name": "span"}}, {"kind": "Variable", "content": {"name": "regs", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234995360"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259466672"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348045856"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348046304"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348046752"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272044672"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272044672": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272044672", "variance": "INVARIANT"}}, "139805235038912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805235037792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805235036896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805259465216"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259465216": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805235036224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805259465328"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259465328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805235002528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805235001856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272044672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272045024": {"type": "Concrete", "content": {"module": "re", "simpleName": "Pattern", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234809984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupindex", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234965728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234957664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234958784"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259467120"}, "items": [{"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "search", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "search"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259468352"}, "items": [{"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "match", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "match"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259469136"}, "items": [{"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullmatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "fullmatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259469584"}, "items": [{"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "split", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "split"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259470032"}, "items": [{"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "findall", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "findall"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259470480"}, "items": [{"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "finditer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "finditer"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259471264"}, "items": [{"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sub", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "sub"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259471600"}, "items": [{"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "subn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348272992"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348273440"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805348273888"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272045024"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272045024": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272045024", "variance": "INVARIANT"}}, "139805234809984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805234965728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805234957664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805234958784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259467120": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348048992"}, {"nodeId": "139805259481376"}, {"nodeId": "139805348049888"}]}}, "139805348048992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469248": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805259481376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469360": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805348049888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469472": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "N"}]}}, "139805259468352": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348050336"}, {"nodeId": "139805259481600"}, {"nodeId": "139805348051232"}]}}, "139805348050336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469696": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805259481600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469808"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469808": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805348051232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259469920"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259469920": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "N"}]}}, "139805259469136": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348051680"}, {"nodeId": "139805259482048"}, {"nodeId": "139805348052576"}]}}, "139805348051680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259470144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470144": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805259482048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259470256"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470256": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805348052576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259470368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470368": {"type": "Union", "content": {"items": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "N"}]}}, "139805259469584": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348266272"}, {"nodeId": "139805259482272"}, {"nodeId": "139805348267168"}]}}, "139805348266272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805259470704"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139805259470704": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805259482272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805259470928"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139805259470928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "A"}]}}, "139805348267168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805259471152"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "string", "maxsplit"]}}, "139805259471152": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "A"}]}}, "139805259470032": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348267616"}, {"nodeId": "139805259482496"}, {"nodeId": "139805348268512"}]}}, "139805348267616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259482496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805348268512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".1.139805272045024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259470480": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348268960"}, {"nodeId": "139805259482720"}, {"nodeId": "139805348269856"}]}}, "139805348268960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259482720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805348269856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "string", "pos", "endpos"]}}, "139805259471264": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348270304"}, {"nodeId": "139805259483392"}, {"nodeId": "139805348271200"}]}}, "139805348270304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259471824"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259471824": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805259482944"}]}}, "139805259482944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259483392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805259471936"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259471936": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805259483168"}]}}, "139805259483168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "139805277011488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805348271200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "139805259472048"}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472048": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "139805259481824"}]}}, "139805259481824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259471600": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348271648"}, {"nodeId": "139805259484288"}, {"nodeId": "139805348272544"}]}}, "139805348271648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805259472272"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259472496"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805259483616"}]}}, "139805259483616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259472496": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259484288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805259472608"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259472832"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472608": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805259483840"}]}}, "139805259483840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "139805277011488"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259472832": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805348272544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "139805259472944"}, {"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805259473168"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "repl", "string", "count"]}}, "139805259472944": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "139805259484064"}]}}, "139805259484064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": ".1.139805272045024"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805259473168": {"type": "Tuple", "content": {"items": [{"nodeId": ".1.139805272045024"}, {"nodeId": "139805481893056"}]}}, "139805348272992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}], "returnType": {"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805348273440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272045024", "args": [{"nodeId": ".1.139805272045024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805348273888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805259378672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348038688"}, {"nodeId": "139805259481152"}, {"nodeId": "139805348039584"}]}}, "139805348038688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805259481152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805348039584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": ".1.139805272044672"}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805259464768": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348040032"}, {"nodeId": "139805348040480"}, {"nodeId": "139805348040928"}]}}, "139805348040032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805348040480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259465776"}], "returnType": {"nodeId": "139805259466000"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805259465776": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466000": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348040928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259466112"}, {"nodeId": "139805259466224"}, {"nodeId": "139805259466336"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259466560"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", null, null, "groups"]}}, "139805259466112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466224": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805259466560": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805259465440": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348041376"}, {"nodeId": "139805348041824"}]}}, "139805348041376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259466896"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259466896": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348041824": {"type": "Function", "content": {"typeVars": [".-1.139805348041824"], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": ".-1.139805348041824"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259467008"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139805348041824": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805348041824", "variance": "INVARIANT"}}, "139805259467008": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": ".-1.139805348041824"}]}}, "139805259465552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348042272"}, {"nodeId": "139805348042720"}]}}, "139805348042272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805259467344"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259467344": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348042720": {"type": "Function", "content": {"typeVars": [".-1.139805348042720"], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": ".-1.139805348042720"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805259467456"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "default"]}}, ".-1.139805348042720": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805348042720", "variance": "INVARIANT"}}, "139805259467456": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": ".-1.139805348042720"}]}}, "139805348043168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259467568"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805259467568": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805348043616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259467680"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805259467680": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805348044064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259467792"}], "returnType": {"nodeId": "139805259468016"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805259467792": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805259468016": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805234995360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805259468240"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259468240": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805259466672": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805348044960"}, {"nodeId": "139805348045408"}]}}, "139805348044960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "0"}], "returnType": {"nodeId": ".1.139805272044672"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805348045408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "139805259468576"}], "returnType": {"nodeId": "139805259468800"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805259468576": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805259468800": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272044672"}, {"nodeId": "A"}]}}, "139805348045856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}], "returnType": {"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805348046304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272044672", "args": [{"nodeId": ".1.139805272044672"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805348046752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805268510144": {"type": "Concrete", "content": {"module": "re", "simpleName": "RegexFlag", "members": [{"kind": "Variable", "content": {"name": "A", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ASCII", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DEBUG", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "I", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "IGNORECASE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "L", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "LOCALE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "M", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MULTILINE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "S", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "DOTALL", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "X", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "VERBOSE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "U", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "UNICODE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "T", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "TEMPLATE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272618112"}], "isAbstract": false}}, "139805268036768": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AST", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204710000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_attributes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343222240"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "end_col_offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268022704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_comment", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268022816"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805204710000": {"type": "Tuple", "content": {"items": []}}, "139805343222240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268036768"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805263529792": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268022704": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268022816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268037120": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268037472": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "type_ignore", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268037824": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "TypeIgnore", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204714144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037472"}], "isAbstract": false}}, "139805204714144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268038176": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionType", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204715152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "argtypes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204715152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268048736": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268038528": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Module", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204716160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type_ignores", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268037824"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204716160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268039584": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "stmt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268038880": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Interactive", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204717504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204717504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268039232": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expression", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204718400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805204718400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268039936": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204720976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268302432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528000"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204720976": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268302432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arguments", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205274784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "posonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "vararg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwonlyargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302784"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kw_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268026624"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwarg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205274784": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268302784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "arg", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205276016"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529568"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205276016": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529568": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268026400": {"type": "Union", "content": {"items": [{"nodeId": "139805268302784"}, {"nodeId": "N"}]}}, "139805268026624": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805263529456": {"type": "Union", "content": {"items": [{"nodeId": "139805268302784"}, {"nodeId": "N"}]}}, "139805263528000": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268040288": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFunctionDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204723552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268302432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204723552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263528448": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268040640": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ClassDef", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204840736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303136"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decorator_list", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204840736": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268303136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "keyword", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205276912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "arg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205276912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026736": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268040992": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Return", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204841744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528560"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204841744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805263528560": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268041344": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Delete", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204842640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204842640": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268041696": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204843984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "targets", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204843984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268042048": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AugAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204845104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528672"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268192320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204845104": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263528672": {"type": "Union", "content": {"items": [{"nodeId": "139805268188800"}, {"nodeId": "139805268187392"}, {"nodeId": "139805268188096"}]}}, "139805268188800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Name", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205267168"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "id", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205267168": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268189856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "expr_context", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268187392": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Attribute", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205130576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205130576": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268188096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Subscript", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205134048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "slice", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205134048": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268192320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "operator", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268042400": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AnnAssign", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204846448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528784"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "annotation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528896"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "simple", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204846448": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263528784": {"type": "Union", "content": {"items": [{"nodeId": "139805268188800"}, {"nodeId": "139805268187392"}, {"nodeId": "139805268188096"}]}}, "139805263528896": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268042752": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "For", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204847904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204847904": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268043104": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncFor", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204849248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204849248": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268043456": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "While", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204850144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204850144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268043808": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "If", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204851264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204851264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268044160": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "With", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204852384"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204852384": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268303840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "withitem", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205278928"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "context_expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "optional_vars", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026848"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205278928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026848": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268044512": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "AsyncWith", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204853504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "items", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303840"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204853504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268044864": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Raise", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204854400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cause", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529120"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204854400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529008": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805263529120": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268045216": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Try", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204855856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268302080"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finalbody", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204855856": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268302080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ExceptHandler", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205272768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268301728"}], "isAbstract": false}}, "139805205272768": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026176": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268026288": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268301728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "excepthandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268045568": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Assert", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204972032"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529232"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204972032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529232": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268045920": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Import", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204972816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303488"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204972816": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268303488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "alias", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205277920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026512"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205277920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268026512": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268046272": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ImportFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204974160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263529344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303488"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204974160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805263529344": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268046624": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Global", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204974832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204974832": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268046976": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Nonlocal", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204975728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204975728": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268047328": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Expr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204976624"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805204976624": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268047680": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pass", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805268048032": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Break", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805268048384": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Continue", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805268049088": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BoolOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204977744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268191264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204977744": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268191264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "boolop", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268049440": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BinOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204978976"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268192320"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "right", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204978976": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268181056": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UnaryOp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204979872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "op", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268295744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "operand", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204979872": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268295744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "unaryop", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268181408": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lambda", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204980880"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268302432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204980880": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268181760": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IfExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204982112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "orelse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204982112": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268182112": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Dict", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204983008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268023376"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204983008": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268023376": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268182464": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Set", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204983792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204983792": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268182816": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "ListComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204984912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204984912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268301376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "comprehension", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205271760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ifs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_async", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205271760": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268183168": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "SetComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204985920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204985920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268183520": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "DictComp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805204987152"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805204987152": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268183872": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GeneratorExp", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205119264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "generators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268301376"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205119264": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268184224": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Await", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205120048"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205120048": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268184576": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Yield", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205120944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263528112"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205120944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805263528112": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268184928": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "YieldFrom", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205121840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205121840": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268185280": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Compare", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205123184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "left", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ops", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268297504"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "comparators", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205123184": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268297504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "cmpop", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268185632": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Call", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205124304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268303136"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205124304": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268185984": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FormattedValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205125424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268023152"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205125424": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268023152": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268186336": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "JoinedStr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205126096"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "values", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205126096": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268186688": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Constant", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205127776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kind", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268023040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268025616"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205127776": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268023040": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268025616": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}]}}, "139805268187040": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NamedExpr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205129344"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268188800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205129344": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268187744": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Slice", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205132368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lower", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268025840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "upper", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268025952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "step", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026064"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205132368": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268025840": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268025952": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268026064": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268188448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Starred", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205134944"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205134944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268189152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "List", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205268176"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205268176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268189504": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Tuple", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205269184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "elts", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ctx", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268189856"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dims", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268048736"}], "isAbstract": false}}, "139805205269184": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268190208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Del", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805268190560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Load", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805268190912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Store", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805268191616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "And", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268191264"}], "isAbstract": false}}, "139805268191968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Or", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268191264"}], "isAbstract": false}}, "139805268192672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Add", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268193024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitAnd", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268193376": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitOr", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268193728": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "BitXor", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268194080": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Div", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268194432": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "FloorDiv", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268194784": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268195136": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mod", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268195488": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Mult", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268195840": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatMult", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268196192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Pow", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268196544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "RShift", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268196896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Sub", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268192320"}], "isAbstract": false}}, "139805268296096": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Invert", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268296448": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Not", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268296800": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "UAdd", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268297152": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "USub", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268295744"}], "isAbstract": false}}, "139805268297856": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Eq", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268298208": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Gt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268298560": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "GtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268298912": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "In", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268299264": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Is", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268299616": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "IsNot", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268299968": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Lt", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268300320": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "LtE", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268300672": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotEq", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268301024": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "NotIn", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268297504"}], "isAbstract": false}}, "139805268304192": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "Match", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205279936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subject", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cases", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304896"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268039584"}], "isAbstract": false}}, "139805205279936": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268304896": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "match_case", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205280608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268304544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "guard", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268026960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268039584"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805205280608": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268304544": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "pattern", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805268026960": {"type": "Union", "content": {"items": [{"nodeId": "139805268048736"}, {"nodeId": "N"}]}}, "139805268305248": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchValue", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205280720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205280720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268305600": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSingleton", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205281056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205281056": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268027072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "N"}]}}, "139805268305952": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchSequence", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205281392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205281392": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268306304": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchStar", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205281728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205281728": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805268027408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268306656": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchMapping", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205282512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268048736"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "rest", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027520"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205282512": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268027520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268307008": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchClass", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205529200"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268048736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_attrs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwd_patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205529200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268307360": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchAs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205529424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268027744"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205529424": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805268027632": {"type": "Union", "content": {"items": [{"nodeId": "139805268304544"}, {"nodeId": "N"}]}}, "139805268027744": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268307712": {"type": "Concrete", "content": {"module": "_ast", "simpleName": "MatchOr", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805205529648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "patterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805268304544"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268304544"}], "isAbstract": false}}, "139805205529648": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}]}}, "139805272046080": {"type": "Concrete", "content": {"module": "io", "simpleName": "UnsupportedOperation", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677824"}, {"nodeId": "139805276683456"}], "isAbstract": false}}, "139805272046784": {"type": "Concrete", "content": {"module": "io", "simpleName": "RawIOBase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343232992"}, "name": "readall"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343233440"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343233888"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343234336"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139805272046432"}], "isAbstract": false}}, "139805343232992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343233440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805260070384"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805260070384": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343233888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805260070496"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805260070496": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343234336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805260070608"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070608": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805272047136": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedIOBase", "members": [{"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272046784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343234784"}, "name": "detach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343235232"}, "name": "readinto"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343235680"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343547680"}, "name": "readinto1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343548128"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343548576"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139805272046432"}], "isAbstract": false}}, "139805343234784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}], "returnType": {"nodeId": "139805272046784"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343235232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343235680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343547680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343548128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805260070720"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260070720": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805343548576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272047136"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805272604736": {"type": "Concrete", "content": {"module": "io", "simpleName": "FileIO", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268567408"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "opener", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343549024"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "closefd", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226085824"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343549920"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343550368"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343550816"}, "name": "__enter__"}}], "typeVars": [], "bases": [{"nodeId": "139805272046784"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805268567408": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268017664"}}}, "139805268017664": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805268020016"}]}}, "139805268020016": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805343549024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}, {"nodeId": "139805260218432"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805260218656"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "closefd", "opener"]}}, "139805260218432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268017664"}}}, "139805260218656": {"type": "Union", "content": {"items": [{"nodeId": "139805260218544"}, {"nodeId": "N"}]}}, "139805260218544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276305696"}}}, "139805276305696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805226085824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343549920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805343550368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272604736"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805343550816": {"type": "Function", "content": {"typeVars": [".0.139805343550816"], "argTypes": [{"nodeId": ".0.139805343550816"}], "returnType": {"nodeId": ".0.139805343550816"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343550816": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272604736"}, "def": "139805343550816", "variance": "INVARIANT"}}, "139805272605088": {"type": "Concrete", "content": {"module": "io", "simpleName": "BytesIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343551264"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343551712"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343552160"}, "name": "getvalue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343552608"}, "name": "getbuffer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343553056"}, "name": "read1"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805343551264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "initial_bytes"]}}, "139805343551712": {"type": "Function", "content": {"typeVars": [".0.139805343551712"], "argTypes": [{"nodeId": ".0.139805343551712"}], "returnType": {"nodeId": ".0.139805343551712"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343551712": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272605088"}, "def": "139805343551712", "variance": "INVARIANT"}}, "139805343552160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343552608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805343553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605088"}, {"nodeId": "139805260218992"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805260218992": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272605440": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343553504"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343553952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343554400"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805343553504": {"type": "Function", "content": {"typeVars": [".0.139805343553504"], "argTypes": [{"nodeId": ".0.139805343553504"}], "returnType": {"nodeId": ".0.139805343553504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343553504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272605440"}, "def": "139805343553504", "variance": "INVARIANT"}}, "139805343553952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605440"}, {"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139805343554400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605440"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805272605792": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343554848"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343555296"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343555744"}, "name": "write"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}, {"nodeId": "139805277000576"}], "isAbstract": false}}, "139805343554848": {"type": "Function", "content": {"typeVars": [".0.139805343554848"], "argTypes": [{"nodeId": ".0.139805343554848"}], "returnType": {"nodeId": ".0.139805343554848"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343554848": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272605792"}, "def": "139805343554848", "variance": "INVARIANT"}}, "139805343555296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605792"}, {"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "raw", "buffer_size"]}}, "139805343555744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272605792"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805272606144": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRandom", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343556192"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343556640"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805272605440"}, {"nodeId": "139805272605792"}], "isAbstract": false}}, "139805343556192": {"type": "Function", "content": {"typeVars": [".0.139805343556192"], "argTypes": [{"nodeId": ".0.139805343556192"}], "returnType": {"nodeId": ".0.139805343556192"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805343556192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272606144"}, "def": "139805343556192", "variance": "INVARIANT"}}, "139805343556640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", null, null]}}, "139805272606496": {"type": "Concrete", "content": {"module": "io", "simpleName": "BufferedRWPair", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343557088"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343557536"}, "name": "peek"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}], "isAbstract": false}}, "139805343557088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606496"}, {"nodeId": "139805272046784"}, {"nodeId": "139805272046784"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "reader", "writer", "buffer_size"]}}, "139805343557536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272606496"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805272607552": {"type": "Concrete", "content": {"module": "io", "simpleName": "StringIO", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343993632"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343994080"}, "name": "getvalue"}}], "typeVars": [], "bases": [{"nodeId": "139805272607200"}], "isAbstract": false}}, "139805343993632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607552"}, {"nodeId": "139805260220560"}, {"nodeId": "139805260220672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "initial_value", "newline"]}}, "139805260220560": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260220672": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805343994080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607552"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268521760": {"type": "Concrete", "content": {"module": "io", "simpleName": "IncrementalNewlineDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "translate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343994528"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343994976"}, "name": "decode"}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226329568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343995872"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139805267810912"}], "isAbstract": false}}, "139805343994528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}, {"nodeId": "139805260220784"}, {"nodeId": "139805481882144"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "decoder", "translate", "errors"]}}, "139805260220784": {"type": "Union", "content": {"items": [{"nodeId": "139805267810912"}, {"nodeId": "N"}]}}, "139805267810912": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310068640"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213957632"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310069536"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310069984"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310070432"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805310068640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213957632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805310069536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805310069984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}], "returnType": {"nodeId": "139805255952176"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255952176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805310070432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810912"}, {"nodeId": "139805255952400"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805255952400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805343994976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}, {"nodeId": "139805260220896"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805260220896": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}]}}, "139805226329568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}], "returnType": {"nodeId": "139805260221008"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260221008": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805343995872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268521760"}, {"nodeId": "139805260221232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805260221232": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805272612128": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "Finder", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272612832": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceLoader", "members": [{"kind": "Variable", "content": {"name": "get_data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221755296"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272612480"}], "isAbstract": true}}, "139805221755296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272612832"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805272613184": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "InspectLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343999456"}, "name": "is_package"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805343999904"}, "name": "get_code"}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221754400"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344000800"}, "name": "exec_module"}}, {"kind": "Variable", "content": {"name": "source_to_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221753952"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272612480"}], "isAbstract": true}}, "139805343999456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805343999904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260231872"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260231872": {"type": "Union", "content": {"items": [{"nodeId": "139805272032000"}, {"nodeId": "N"}]}}, "139805221754400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260231984"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260231984": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344000800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613184"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805221753952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260232096"}, {"nodeId": "139805260232320"}], "returnType": {"nodeId": "139805272032000"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["data", "path"]}}, "139805260232096": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}, {"nodeId": "139805268038528"}, {"nodeId": "139805268039232"}, {"nodeId": "139805268038880"}]}}, "139805260232320": {"type": "Union", "content": {"items": [{"nodeId": "139805277011488"}, {"nodeId": "139805260232208"}]}}, "139805260232208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805272613536": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ExecutionLoader", "members": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221752608"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272613184"}], "isAbstract": true}}, "139805221752608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613536"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805272613888": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "SourceLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344002144"}, "name": "path_mtime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344002592"}, "name": "set_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344003040"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344003488"}, "name": "path_stats"}}], "typeVars": [], "bases": [{"nodeId": "139805272612832"}, {"nodeId": "139805272613536"}], "isAbstract": true}}, "139805344002144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805344002592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "data"]}}, "139805344003040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260232432"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260232432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344003488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272613888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805272614240": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "MetaPathFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344003936"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344004384"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344004832"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139805272612128"}], "isAbstract": false}}, "139805344003936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614240"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260232656"}], "returnType": {"nodeId": "139805260232768"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139805260232656": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260232768": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805344004384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614240"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805344004832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614240"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260232880"}, {"nodeId": "139805260232992"}], "returnType": {"nodeId": "139805260233104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "path", "target"]}}, "139805260232880": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260232992": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260233104": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272614592": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "PathEntryFinder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344005280"}, "name": "find_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344005728"}, "name": "find_loader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344104736"}, "name": "invalidate_caches"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344105184"}, "name": "find_spec"}}], "typeVars": [], "bases": [{"nodeId": "139805272612128"}], "isAbstract": false}}, "139805344005280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260233216"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260233216": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805344005728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260233552"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805260233552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805260233328"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}]}}, "139805260233328": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805344104736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805344105184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614592"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260233664"}], "returnType": {"nodeId": "139805260233776"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "fullname", "target"]}}, "139805260233664": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260233776": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272614944": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "FileLoader", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344105632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344106080"}, "name": "get_data"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344106528"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344106976"}, "name": "load_module"}}], "typeVars": [], "bases": [{"nodeId": "139805272612832"}, {"nodeId": "139805272613536"}], "isAbstract": true}}, "139805344105632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fullname", "path"]}}, "139805344106080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805344106528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805260233888"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805260233888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344106976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272614944"}, {"nodeId": "139805260234000"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805260234000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272615296": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "ResourceReader", "members": [{"kind": "Variable", "content": {"name": "open_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221715104"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resource_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221714656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221713984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221714432"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805221715104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805221714656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805221713984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805221714432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615296"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272615648": {"type": "Protocol", "content": {"module": "importlib.abc", "simpleName": "Traversable", "members": [{"kind": "Variable", "content": {"name": "is_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221713088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221712640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "iterdir", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221712416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "joinpath", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711744"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260231536"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221712192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__truediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_bytes", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221711072"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__truediv__", "is_dir", "is_file", "iterdir", "joinpath", "name", "open", "read_bytes", "read_text"]}}, "139805221713088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221712640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221712416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272615648"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221711744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272615648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "child"]}}, "139805260231536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805344111904"}, {"nodeId": "139805344112352"}, {"nodeId": "139805344112800"}, {"nodeId": "139805344113248"}, {"nodeId": "139805344113696"}, {"nodeId": "139805344114144"}, {"nodeId": "139805344114592"}]}}, "139805344111904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805260234224"}, {"nodeId": "139805481893056"}, {"nodeId": "139805260234336"}, {"nodeId": "139805260234448"}, {"nodeId": "139805260234560"}], "returnType": {"nodeId": "139805272607200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805260234224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267831024"}}}, "139805267831024": {"type": "Union", "content": {"items": [{"nodeId": "139805267832928"}, {"nodeId": "139805267833040"}, {"nodeId": "139805267830912"}]}}, "139805267832928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267830464"}}}, "139805267830464": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805267833040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267832592"}}}, "139805267832592": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805267830912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267834608"}}}, "139805267834608": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805260234336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260234448": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805260234560": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805344112352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255221312"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272604736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255221312": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805268018448": {"type": "Union", "content": {"items": [{"nodeId": "139805268018672"}, {"nodeId": "139805268018784"}, {"nodeId": "139805268017440"}]}}, "139805268018672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267836400"}}}, "139805267836400": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805268018784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268019680"}}}, "139805268019680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805268017440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018336"}}}, "139805268018336": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344112800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255221536"}, {"nodeId": "139805255221872"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272606144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255221536": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267836400"}}}, "139805255221872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344113248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255221984"}, {"nodeId": "139805255222320"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255221984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018336"}}}, "139805255222320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344113696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255222432"}, {"nodeId": "139805255222768"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255222432": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268019680"}}}, "139805255222768": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805344114144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255222880"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255222880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805344114592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805255222992"}, {"nodeId": "139805255223104"}, {"nodeId": "139805255223216"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805255222992": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255223104": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255223216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805221712192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221711520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272615648"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805221711296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221711072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272615648"}, {"nodeId": "139805255223440"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139805255223440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272616000": {"type": "Concrete", "content": {"module": "importlib.abc", "simpleName": "TraversableResources", "members": [{"kind": "Variable", "content": {"name": "files", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221709504"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344117280"}, "name": "open_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resource", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344117728"}, "name": "resource_path"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344118176"}, "name": "is_resource"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805344118624"}, "name": "contents"}}], "typeVars": [], "bases": [{"nodeId": "139805272615296"}], "isAbstract": true}}, "139805221709504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}], "returnType": {"nodeId": "139805272615648"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805344117280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272605440"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805344117728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "resource"]}}, "139805344118176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805344118624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272616000"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268514720": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "BuiltinImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221532864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221532416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221531968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221531520"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221531072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221530400"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221529952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221528832"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221527936"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}, {"nodeId": "139805272613184"}], "isAbstract": false}}, "139805221532864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260228512"}], "returnType": {"nodeId": "139805260228624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260228512": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260228624": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805221532416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260228736"}, {"nodeId": "139805260228848"}], "returnType": {"nodeId": "139805260228960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260228736": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260228848": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260228960": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805221531968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221531520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221531072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221530400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221529952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139805221528832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260229072"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139805260229072": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805221527936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139805268515072": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FrozenImporter", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221526816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221526368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "is_package", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221525920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "load_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221525472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_code", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221524576"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "get_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221524128"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module_repr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221523680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "create_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221522560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exec_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221522336"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}, {"nodeId": "139805272613184"}], "isAbstract": false}}, "139805221526816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260229184"}], "returnType": {"nodeId": "139805260229296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260229184": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260229296": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805221526368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260229408"}, {"nodeId": "139805260229520"}], "returnType": {"nodeId": "139805260229632"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260229408": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260229520": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260229632": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805221525920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221525472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221524576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221524128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "fullname"]}}, "139805221523680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["m"]}}, "139805221522560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805260229744"}, "argKinds": ["ARG_POS"], "argNames": ["spec"]}}, "139805260229744": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805221522336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["module"]}}, "139805268515424": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "WindowsRegistryFinder", "members": [{"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221521216"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221520768"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}], "isAbstract": false}}, "139805221521216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260229856"}], "returnType": {"nodeId": "139805260229968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260229856": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260229968": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805221520768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260230080"}, {"nodeId": "139805260230192"}], "returnType": {"nodeId": "139805260230304"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260230080": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260230192": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260230304": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805272611776": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "PathFinder", "members": [{"kind": "Variable", "content": {"name": "invalidate_caches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221519648"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221502112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221501888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "find_module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221501664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805221519648": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "139805221502112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272611072"}]}, "argKinds": ["ARG_OPT"], "argNames": ["context"]}}, "139805268514016": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder.Context", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263542112"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309580704"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226497216"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805263542112": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805309580704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514016"}, {"nodeId": "139805260225376"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "name", "path", "kwargs"]}}, "139805260225376": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226497216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272611072": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PathDistribution", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309582944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305766176"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305766624"}, "name": "locate_file"}}], "typeVars": [], "bases": [{"nodeId": "139805272610720"}], "isAbstract": false}}, "139805309582944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611072"}, {"nodeId": "139805268520704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805268520704": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "Path", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284653920"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284654368"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284654816"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "cwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805225672192"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284655712"}, "name": "stat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "follow_symlinks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284656160"}, "name": "chmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284658848"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284659296"}, "name": "glob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284659744"}, "name": "rglob"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284660192"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284660640"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284661088"}, "name": "is_symlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284661536"}, "name": "is_socket"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284661984"}, "name": "is_fifo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284662432"}, "name": "is_block_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284662880"}, "name": "is_char_device"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284844256"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284844704"}, "name": "lchmod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284845152"}, "name": "lstat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284845600"}, "name": "mkdir"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805259615248"}, "items": [{"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "open", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284849184"}, "name": "owner"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284849632"}, "name": "group"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284850080"}, "name": "is_mount"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284850528"}, "name": "readlink"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284850976"}, "name": "rename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284851424"}, "name": "replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284852768"}, "name": "resolve"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284853216"}, "name": "rmdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target_is_directory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284853664"}, "name": "symlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284854112"}, "name": "hardlink_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exist_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284854560"}, "name": "touch"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "missing_ok", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284855008"}, "name": "unlink"}}, {"kind": "Variable", "content": {"name": "home", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805230608704"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284856352"}, "name": "absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284856800"}, "name": "expanduser"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284857248"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284857696"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284858144"}, "name": "samefile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284858592"}, "name": "write_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284859040"}, "name": "write_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285007648"}, "name": "link_to"}}], "typeVars": [], "bases": [{"nodeId": "139805268519648"}], "isAbstract": false}}, "139805284653920": {"type": "Function", "content": {"typeVars": [".0.139805284653920"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805259617824"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805284653920"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", "args", "kwargs"]}}, "139805259617824": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, ".0.139805284653920": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284653920", "variance": "INVARIANT"}}, "139805284654368": {"type": "Function", "content": {"typeVars": [".0.139805284654368"], "argTypes": [{"nodeId": ".0.139805284654368"}], "returnType": {"nodeId": ".0.139805284654368"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805284654368": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284654368", "variance": "INVARIANT"}}, "139805284654816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259618048"}, {"nodeId": "139805259618160"}, {"nodeId": "139805259618272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805259618048": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805259618160": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805259618272": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805225672192": {"type": "Function", "content": {"typeVars": [".0.139805225672192"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805225672192"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805225672192": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805225672192", "variance": "INVARIANT"}}, "139805284655712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805259618384"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "follow_symlinks"]}}, "139805259618384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263538976"}}}, "139805284656160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "mode", "follow_symlinks"]}}, "139805284658848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284659296": {"type": "Function", "content": {"typeVars": [".0.139805284659296"], "argTypes": [{"nodeId": ".0.139805284659296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284659296"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139805284659296": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284659296", "variance": "INVARIANT"}}, "139805284659744": {"type": "Function", "content": {"typeVars": [".0.139805284659744"], "argTypes": [{"nodeId": ".0.139805284659744"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284659744"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pattern"]}}, ".0.139805284659744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284659744", "variance": "INVARIANT"}}, "139805284660192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284660640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284661088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284661536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284661984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284662432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284662880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284844256": {"type": "Function", "content": {"typeVars": [".0.139805284844256"], "argTypes": [{"nodeId": ".0.139805284844256"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284844256"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284844256": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284844256", "variance": "INVARIANT"}}, "139805284844704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "mode"]}}, "139805284845152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805259618496"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259618496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263538976"}}}, "139805284845600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "parents", "exist_ok"]}}, "139805259615248": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284846048"}, {"nodeId": "139805284846496"}, {"nodeId": "139805284846944"}, {"nodeId": "139805284847392"}, {"nodeId": "139805284847840"}, {"nodeId": "139805284848288"}, {"nodeId": "139805284848736"}]}}, "139805284846048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259618720"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259618832"}, {"nodeId": "139805259618944"}, {"nodeId": "139805259619056"}], "returnType": {"nodeId": "139805272607200"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259618720": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267831024"}}}, "139805259618832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259618944": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259619056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284846496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259619168"}, {"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272604736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259619168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805284846944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259619392"}, {"nodeId": "139805259619728"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272606144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259619392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267836400"}}}, "139805259619728": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805284847392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259619840"}, {"nodeId": "139805259620176"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259619840": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018336"}}}, "139805259620176": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805284847840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259620288"}, {"nodeId": "139805259620624"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805272605440"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259620288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268019680"}}}, "139805259620624": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}]}}, "139805284848288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259620736"}, {"nodeId": "139805481893056"}, {"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805277000576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259620736": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268018448"}}}, "139805284848736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259620848"}, {"nodeId": "139805259620960"}, {"nodeId": "139805259621072"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "buffering", "encoding", "errors", "newline"]}}, "139805259620848": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259620960": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259621072": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284849184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284849632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284850080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284850528": {"type": "Function", "content": {"typeVars": [".0.139805284850528"], "argTypes": [{"nodeId": ".0.139805284850528"}], "returnType": {"nodeId": ".0.139805284850528"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284850528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284850528", "variance": "INVARIANT"}}, "139805284850976": {"type": "Function", "content": {"typeVars": [".0.139805284850976"], "argTypes": [{"nodeId": ".0.139805284850976"}, {"nodeId": "139805259621296"}], "returnType": {"nodeId": ".0.139805284850976"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139805284850976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284850976", "variance": "INVARIANT"}}, "139805259621296": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805268519648"}]}}, "139805268519648": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePath", "members": [{"kind": "Variable", "content": {"name": "parts", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225661408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drive", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "anchor", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660512"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225660064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suffixes", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225659840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225659616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284510944"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284511392"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284511840"}, "name": "__fspath__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284512288"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284512736"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284513184"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284513632"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284514080"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284514528"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284514976"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284515424"}, "name": "as_posix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284647200"}, "name": "as_uri"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284647648"}, "name": "is_absolute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284648096"}, "name": "is_reserved"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284648544"}, "name": "is_relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284649440"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284649888"}, "name": "relative_to"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284650336"}, "name": "with_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stem", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284650784"}, "name": "with_stem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284651232"}, "name": "with_suffix"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284651680"}, "name": "joinpath"}}, {"kind": "Variable", "content": {"name": "parents", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225655584"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805225669728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284653024"}, "name": "__class_getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805225661408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225660064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225659840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805225659616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284510944": {"type": "Function", "content": {"typeVars": [".0.139805284510944"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805259616928"}], "returnType": {"nodeId": ".0.139805284510944"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139805259616928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, ".0.139805284510944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284510944", "variance": "INVARIANT"}}, "139805284511392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284511840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284512288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284512736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284513184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284513632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805284514080": {"type": "Function", "content": {"typeVars": [".0.139805284514080"], "argTypes": [{"nodeId": ".0.139805284514080"}, {"nodeId": "139805259617040"}], "returnType": {"nodeId": ".0.139805284514080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805284514080": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284514080", "variance": "INVARIANT"}}, "139805259617040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284514528": {"type": "Function", "content": {"typeVars": [".0.139805284514528"], "argTypes": [{"nodeId": ".0.139805284514528"}, {"nodeId": "139805259617152"}], "returnType": {"nodeId": ".0.139805284514528"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, ".0.139805284514528": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284514528", "variance": "INVARIANT"}}, "139805259617152": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284514976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284515424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284647200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284647648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284648096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284648544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805259617264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "139805259617264": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284649440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519648"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path_pattern"]}}, "139805284649888": {"type": "Function", "content": {"typeVars": [".0.139805284649888"], "argTypes": [{"nodeId": ".0.139805284649888"}, {"nodeId": "139805259617376"}], "returnType": {"nodeId": ".0.139805284649888"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139805284649888": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284649888", "variance": "INVARIANT"}}, "139805259617376": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284650336": {"type": "Function", "content": {"typeVars": [".0.139805284650336"], "argTypes": [{"nodeId": ".0.139805284650336"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805284650336"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, ".0.139805284650336": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284650336", "variance": "INVARIANT"}}, "139805284650784": {"type": "Function", "content": {"typeVars": [".0.139805284650784"], "argTypes": [{"nodeId": ".0.139805284650784"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805284650784"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stem"]}}, ".0.139805284650784": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284650784", "variance": "INVARIANT"}}, "139805284651232": {"type": "Function", "content": {"typeVars": [".0.139805284651232"], "argTypes": [{"nodeId": ".0.139805284651232"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805284651232"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.139805284651232": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284651232", "variance": "INVARIANT"}}, "139805284651680": {"type": "Function", "content": {"typeVars": [".0.139805284651680"], "argTypes": [{"nodeId": ".0.139805284651680"}, {"nodeId": "139805259617488"}], "returnType": {"nodeId": ".0.139805284651680"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, ".0.139805284651680": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805284651680", "variance": "INVARIANT"}}, "139805259617488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805225655584": {"type": "Function", "content": {"typeVars": [".0.139805225655584"], "argTypes": [{"nodeId": ".0.139805225655584"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": ".0.139805225655584"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805225655584": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805225655584", "variance": "INVARIANT"}}, "139805225669728": {"type": "Function", "content": {"typeVars": [".0.139805225669728"], "argTypes": [{"nodeId": ".0.139805225669728"}], "returnType": {"nodeId": ".0.139805225669728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805225669728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519648"}, "def": "139805225669728", "variance": "INVARIANT"}}, "139805284653024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139805284851424": {"type": "Function", "content": {"typeVars": [".0.139805284851424"], "argTypes": [{"nodeId": ".0.139805284851424"}, {"nodeId": "139805259621408"}], "returnType": {"nodeId": ".0.139805284851424"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, ".0.139805284851424": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284851424", "variance": "INVARIANT"}}, "139805259621408": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805268519648"}]}}, "139805284852768": {"type": "Function", "content": {"typeVars": [".0.139805284852768"], "argTypes": [{"nodeId": ".0.139805284852768"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": ".0.139805284852768"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "strict"]}}, ".0.139805284852768": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284852768", "variance": "INVARIANT"}}, "139805284853216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284853664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621520"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "target_is_directory"]}}, "139805259621520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805284854112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139805259621632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805284854560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mode", "exist_ok"]}}, "139805284855008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "missing_ok"]}}, "139805230608704": {"type": "Function", "content": {"typeVars": [".0.139805230608704"], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": ".0.139805230608704"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, ".0.139805230608704": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805230608704", "variance": "INVARIANT"}}, "139805284856352": {"type": "Function", "content": {"typeVars": [".0.139805284856352"], "argTypes": [{"nodeId": ".0.139805284856352"}], "returnType": {"nodeId": ".0.139805284856352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284856352": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284856352", "variance": "INVARIANT"}}, "139805284856800": {"type": "Function", "content": {"typeVars": [".0.139805284856800"], "argTypes": [{"nodeId": ".0.139805284856800"}], "returnType": {"nodeId": ".0.139805284856800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284856800": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268520704"}, "def": "139805284856800", "variance": "INVARIANT"}}, "139805284857248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284857696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621744"}, {"nodeId": "139805259621856"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors"]}}, "139805259621744": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259621856": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284858144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259621968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other_path"]}}, "139805259621968": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805284858592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139805284859040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259622080"}, {"nodeId": "139805259622192"}, {"nodeId": "139805259622304"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "data", "encoding", "errors", "newline"]}}, "139805259622080": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259622192": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805259622304": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285007648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268520704"}, {"nodeId": "139805259622416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "target"]}}, "139805259622416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805267825536"}}}, "139805305766176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611072"}, {"nodeId": "139805260225600"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139805260225600": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805305766624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272611072"}, {"nodeId": "139805260225712"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805260225712": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805272610720": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "Distribution", "members": [{"kind": "Variable", "content": {"name": "read_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226516544"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "locate_file", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226499680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "from_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226499456"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260224144"}, "items": [{"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "discover", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "discover"}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226499232"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "metadata", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226498560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "entry_points", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226499008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "version", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226498336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "files", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226498112"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "requires", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226497888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226497664"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805226516544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805260224480"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filename"]}}, "139805260224480": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226499680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}, {"nodeId": "139805260224592"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "path"]}}, "139805260224592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805226499456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272610720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "name"]}}, "139805260224144": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805309575776"}, {"nodeId": "139805309576224"}]}}, "139805309575776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272610720"}]}, "argKinds": ["ARG_POS", "ARG_NAMED"], "argNames": ["cls", "context"]}}, "139805309576224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "N"}, {"nodeId": "139805260224816"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272610720"}]}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["cls", "context", "name", "path", "kwargs"]}}, "139805260224816": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805226499232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260225040"}], "returnType": {"nodeId": "139805272611072"}, "argKinds": ["ARG_POS"], "argNames": ["path"]}}, "139805260225040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805226498560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805272607904"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272607904": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "PackageMetadata", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289483616"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289484064"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289484512"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289484960"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289485408"}, "name": "get_all"}}, {"kind": "Variable", "content": {"name": "json", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226540992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__contains__", "__getitem__", "__iter__", "__len__", "get_all", "json"]}}, "139805289483616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289484064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289484512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289484960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289485408": {"type": "Function", "content": {"typeVars": [".-1.139805289485408"], "argTypes": [{"nodeId": "139805272607904"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805289485408"}], "returnType": {"nodeId": "139805260222016"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, ".-1.139805289485408": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805289485408", "variance": "INVARIANT"}}, "139805260222016": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": ".-1.139805289485408"}]}}, "139805226540992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272607904"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805260222128"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260222128": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805226499008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805272609664"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272609664": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoints", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309568608"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309569056"}, "name": "select"}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226520800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226525056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805272703040"}]}], "isAbstract": false}}, "139805309568608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}, {"nodeId": "139805260223248"}], "returnType": {"nodeId": "139805260224032"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805260223248": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805260224032": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268567072"}}}, "139805268567072": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805309569056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805272609664"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139805226520800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226525056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272609664"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272703040": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268567072"}}}, "139805226498336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226498112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805260225152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260225152": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805268522112"}]}, {"nodeId": "N"}]}}, "139805268522112": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackagePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309572640"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309573088"}, "name": "read_binary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309573536"}, "name": "locate"}}, {"kind": "Variable", "content": {"name": "hash", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268567296"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268565504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272610720"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268520000"}], "isAbstract": false}}, "139805309572640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522112"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "encoding"]}}, "139805309573088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522112"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309573536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522112"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268567296": {"type": "Union", "content": {"items": [{"nodeId": "139805272610368"}, {"nodeId": "N"}]}}, "139805272610368": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "FileHash", "members": [{"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309573984"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805309573984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610368"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139805268565504": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805268520000": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PurePosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268519648"}], "isAbstract": false}}, "139805226497888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805260225264"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260225264": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805226497664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610720"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805221501888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260230416"}, {"nodeId": "139805260230528"}], "returnType": {"nodeId": "139805260230640"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["cls", "fullname", "path", "target"]}}, "139805260230416": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260230528": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805260230640": {"type": "Union", "content": {"items": [{"nodeId": "139805272611424"}, {"nodeId": "N"}]}}, "139805221501664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260230752"}], "returnType": {"nodeId": "139805260230864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["cls", "fullname", "path"]}}, "139805260230752": {"type": "Union", "content": {"items": [{"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805260230864": {"type": "Union", "content": {"items": [{"nodeId": "139805272612480"}, {"nodeId": "N"}]}}, "139805268515776": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "FileFinder", "members": [{"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "loader_details", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339023200"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "path_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805221500992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614592"}], "isAbstract": false}}, "139805339023200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268515776"}, {"nodeId": "139805276669024"}, {"nodeId": "139805260231088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR"], "argNames": ["self", "path", "loader_details"]}}, "139805260231088": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805221500992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805260231312"}], "returnType": {"nodeId": "139805260011488"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "loader_details"]}}, "139805260231312": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805260011488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805272614592"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805268516128": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourceFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339024096"}, "name": "set_data"}}], "typeVars": [], "bases": [{"nodeId": "139805272614944"}, {"nodeId": "139805272613888"}], "isAbstract": false}}, "139805339024096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516128"}, {"nodeId": "139805276669024"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "path", "data", "_mode"]}}, "139805268516480": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "SourcelessFileLoader", "members": [], "typeVars": [], "bases": [{"nodeId": "139805272614944"}, {"nodeId": "139805272613888"}], "isAbstract": false}}, "139805268516832": {"type": "Concrete", "content": {"module": "importlib.machinery", "simpleName": "ExtensionFileLoader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339024544"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339024992"}, "name": "get_filename"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339173152"}, "name": "get_source"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339173600"}, "name": "create_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339174048"}, "name": "exec_module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fullname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339174496"}, "name": "get_code"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339174944"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805272613536"}], "isAbstract": false}}, "139805339024544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "path"]}}, "139805339024992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805260231424"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805260231424": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805339173152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805339173600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805272611424"}], "returnType": {"nodeId": "139805272033408"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "spec"]}}, "139805339174048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805272033408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "module"]}}, "139805339174496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fullname"]}}, "139805339174944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268516832"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805267650592": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "_MISSING_TYPE", "members": [{"kind": "Variable", "content": {"name": "MISSING", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272618464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272617056"}], "isAbstract": false}}, "139805267650944": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "KW_ONLY", "members": [], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805267652000": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "FrozenInstanceError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276678880"}], "isAbstract": false}}, "139805267652352": {"type": "Concrete", "content": {"module": "dataclasses", "simpleName": "InitVar", "members": [{"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339188384"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255442928"}, "items": [{"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__class_getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805267652352"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805267652352": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805267652352", "variance": "INVARIANT"}}, "139805339188384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267652352", "args": [{"nodeId": ".1.139805267652352"}]}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "type"]}}, "139805255442928": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805339188832"}, {"nodeId": "139805339451680"}]}}, "139805339188832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805267652352", "args": [{"nodeId": ".1.139805267652352"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139805339451680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805267652352", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "type"]}}, "139805184481184": {"type": "Concrete", "content": {"module": "__future__", "simpleName": "_Feature", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "optionalRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mandatoryRelease", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339209952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339210400"}, "name": "getOptionalRelease"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339210848"}, "name": "getMandatoryRelease"}}, {"kind": "Variable", "content": {"name": "compiler_flag", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805339209952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481184"}, {"nodeId": "139805180134000"}, {"nodeId": "139805180134224"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "optionalRelease", "mandatoryRelease", "compiler_flag"]}}, "139805180134000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805180212752": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805180134224": {"type": "Union", "content": {"items": [{"nodeId": "139805180134112"}, {"nodeId": "N"}]}}, "139805180134112": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805339210400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481184"}], "returnType": {"nodeId": "139805180134336"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180134336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805339210848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184481184"}], "returnType": {"nodeId": "139805180134560"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805180134560": {"type": "Union", "content": {"items": [{"nodeId": "139805180134448"}, {"nodeId": "N"}]}}, "139805180134448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805180212752"}}}, "139805150984704": {"type": "Concrete", "content": {"module": "numpy.ma.mrecords", "simpleName": "MaskedRecords", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shape", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buf", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strides", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "formats", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "titles", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "byteorder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "aligned", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hard_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keep_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "copy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "options", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339714144"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "_mask", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_data", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213263008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fieldmask", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213262784"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339714960"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339715232"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339715504"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339715776"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716048"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716320"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716592"}, "name": "view"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339716864"}, "name": "harden_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717136"}, "name": "soften_mask"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717408"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717680"}, "name": "tolist"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339717952"}, "name": "__reduce__"}}], "typeVars": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}], "bases": [{"nodeId": "139805150980128", "args": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}]}], "isAbstract": false}}, ".1.139805150984704": {"type": "TypeVar", "content": {"varName": "_ShapeType", "values": [], "upperBound": {"nodeId": "A"}, "def": "139805150984704", "variance": "INVARIANT"}}, ".2.139805150984704": {"type": "TypeVar", "content": {"varName": "_DType_co", "values": [], "upperBound": {"nodeId": "139805150983296", "args": [{"nodeId": "A"}]}, "def": "139805150984704", "variance": "COVARIANT"}}, "139805339714144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_STAR_2"], "argNames": ["cls", "shape", "dtype", "buf", "offset", "strides", "formats", "names", "titles", "byteorder", "aligned", "mask", "hard_mask", "fill_value", "keep_mask", "copy", "options"]}}, "139805213263008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704", "args": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805213262784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704", "args": [{"nodeId": ".1.139805150984704"}, {"nodeId": ".2.139805150984704"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339714960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805339715232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805339715504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339715776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "val"]}}, "139805339716048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805339716320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805339716592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dtype", "type"]}}, "139805339716864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339717136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339717408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339717680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "fill_value"]}}, "139805339717952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150984704"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184477312": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "BadZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805184477664": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "LargeZipFile", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805184478016": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_ZipStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339214208"}, "name": "read"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read"]}}, "139805339214208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478016"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805184478368": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_SupportsReadSeekTell", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339214656"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__cookie", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339215104"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339215552"}, "name": "tell"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read", "seek", "tell"]}}, "139805339214656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478368"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805339215104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478368"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805339215552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478368"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184478720": {"type": "Protocol", "content": {"module": "zipfile", "simpleName": "_ClosableZipStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339216000"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805184478016"}], "protocolMembers": ["close", "read"]}}, "139805339216000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184478720"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184479072": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "ZipExtFile", "members": [{"kind": "Variable", "content": {"name": "MAX_N", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MIN_READ_SIZE", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "MAX_SEEK_READ", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "newlines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179799680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805179797440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805179800240"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339217792"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "limit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339218240"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339218688"}, "name": "peek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339219136"}, "name": "read1"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339219584"}, "name": "seek"}}], "typeVars": [], "bases": [{"nodeId": "139805272047136"}], "isAbstract": false}}, "139805179799680": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "N"}]}}, "139805179797440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179800240": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805339216448"}, {"nodeId": "139805339216896"}, {"nodeId": "139805339217344"}]}}, "139805339216448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805184478720"}, {"nodeId": "139805179798896"}, {"nodeId": "139805184480480"}, {"nodeId": "139805179800800"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "139805179798896": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179800800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339216896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805184478720"}, {"nodeId": "139805179801024"}, {"nodeId": "139805184480480"}, {"nodeId": "139805179801136"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "139805179801024": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179801136": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339217344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805184478016"}, {"nodeId": "139805179801360"}, {"nodeId": "139805184480480"}, {"nodeId": "139805179801472"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "fileobj", "mode", "zipinfo", "pwd", "close_fileobj"]}}, "139805179801360": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179795536"}}}, "139805179801472": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805339217792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805179801696"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805179801696": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805339218240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "limit"]}}, "139805339218688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805339219136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805179801808"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n"]}}, "139805179801808": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805339219584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184479072"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139805184480128": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "PyZipFile", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compression", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allowZip64", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "optimize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334838784"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "basename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filterfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334839232"}, "name": "writepy"}}], "typeVars": [], "bases": [{"nodeId": "139805184479776"}], "isAbstract": false}}, "139805334838784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480128"}, {"nodeId": "139805179805504"}, {"nodeId": "139805180198976"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "file", "mode", "compression", "allowZip64", "optimize"]}}, "139805179805504": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}]}}, "139805180198976": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796880"}}}, "139805334839232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480128"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805180199088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "pathname", "basename", "filterfunc"]}}, "139805180199088": {"type": "Union", "content": {"items": [{"nodeId": "139805180015136"}, {"nodeId": "N"}]}}, "139805180015136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805184480832": {"type": "Concrete", "content": {"module": "zipfile", "simpleName": "Path", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805179884960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805179884736"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805179727648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "at", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334845056"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pwd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334845504"}, "name": "open"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334846400"}, "name": "iterdir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805334846848"}, "name": "is_dir"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335044160"}, "name": "is_file"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335044608"}, "name": "exists"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "newline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line_buffering", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "write_through", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335045056"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335045504"}, "name": "read_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335045952"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "add", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335046848"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805179884960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805179884736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805179727648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805268510496", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334845056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180199872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "root", "at"]}}, "139805180199872": {"type": "Union", "content": {"items": [{"nodeId": "139805184479776"}, {"nodeId": "139805180199760"}, {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}]}}, "139805180199760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805334845504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180199984"}, {"nodeId": "139805180200096"}, {"nodeId": "A"}, {"nodeId": "139805180200320"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805277000224", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "mode", "encoding", "args", "pwd", "kwargs"]}}, "139805180199984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805179796320"}}}, "139805179796320": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805180200096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805180200320": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805334846400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805184480832"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805334846848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335044160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335044608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335045056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180200544"}, {"nodeId": "139805180200656"}, {"nodeId": "139805180200768"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "encoding", "errors", "newline", "line_buffering", "write_through"]}}, "139805180200544": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805180200656": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805180200768": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805335045504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805335045952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180200880"}], "returnType": {"nodeId": "139805184480832"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["self", "other"]}}, "139805180200880": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805335046848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184480832"}, {"nodeId": "139805180200992"}], "returnType": {"nodeId": "139805184480832"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805180200992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805193089824": {"type": "Concrete", "content": {"module": "ast", "simpleName": "_ABC", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335048416"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481892352"}], "isAbstract": false}}, "139805335048416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089824"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": ["cls", "args"]}}, "139805193090176": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Num", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184725440"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805184725440": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893408"}, {"nodeId": "139805276667968"}]}}, "139805193090528": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Str", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193090880": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Bytes", "members": [{"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193091232": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NameConstant", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193091584": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Ellipsis", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268186688"}], "isAbstract": false}}, "139805193091936": {"type": "Concrete", "content": {"module": "ast", "simpleName": "slice", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268036768"}], "isAbstract": false}}, "139805193092288": {"type": "Concrete", "content": {"module": "ast", "simpleName": "ExtSlice", "members": [], "typeVars": [], "bases": [{"nodeId": "139805193091936"}], "isAbstract": false}}, "139805193092640": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Index", "members": [], "typeVars": [], "bases": [{"nodeId": "139805193091936"}], "isAbstract": false}}, "139805184475200": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Suite", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268037120"}], "isAbstract": false}}, "139805184475552": {"type": "Concrete", "content": {"module": "ast", "simpleName": "AugLoad", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805184475904": {"type": "Concrete", "content": {"module": "ast", "simpleName": "AugStore", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805184476256": {"type": "Concrete", "content": {"module": "ast", "simpleName": "Param", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268189856"}], "isAbstract": false}}, "139805184476608": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NodeVisitor", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335048864"}, "name": "visit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335049312"}, "name": "generic_visit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335049760"}, "name": "visit_Module"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335050208"}, "name": "visit_Interactive"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335050656"}, "name": "visit_Expression"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335051104"}, "name": "visit_FunctionDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335051552"}, "name": "visit_AsyncFunctionDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335052000"}, "name": "visit_ClassDef"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335052448"}, "name": "visit_Return"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335052896"}, "name": "visit_Delete"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335053344"}, "name": "visit_Assign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335053792"}, "name": "visit_AugAssign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335054240"}, "name": "visit_AnnAssign"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335054688"}, "name": "visit_For"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335055136"}, "name": "visit_AsyncFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335055584"}, "name": "visit_While"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335056032"}, "name": "visit_If"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335056480"}, "name": "visit_With"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335056928"}, "name": "visit_AsyncWith"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335057376"}, "name": "visit_Raise"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335057824"}, "name": "visit_Try"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335058272"}, "name": "visit_Assert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335058720"}, "name": "visit_Import"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335059168"}, "name": "visit_ImportFrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335059616"}, "name": "visit_Global"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335060064"}, "name": "visit_Nonlocal"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335306528"}, "name": "visit_Expr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335306976"}, "name": "visit_Pass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335307424"}, "name": "visit_Break"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335307872"}, "name": "visit_Continue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335308320"}, "name": "visit_Slice"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335308768"}, "name": "visit_BoolOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335309216"}, "name": "visit_BinOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335309664"}, "name": "visit_UnaryOp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335310112"}, "name": "visit_Lambda"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335310560"}, "name": "visit_IfExp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335311008"}, "name": "visit_Dict"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335311456"}, "name": "visit_Set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335311904"}, "name": "visit_ListComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335312352"}, "name": "visit_SetComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335312800"}, "name": "visit_DictComp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335313248"}, "name": "visit_GeneratorExp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335313696"}, "name": "visit_Await"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335314144"}, "name": "visit_Yield"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335314592"}, "name": "visit_YieldFrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335315040"}, "name": "visit_Compare"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335315488"}, "name": "visit_Call"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335315936"}, "name": "visit_FormattedValue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335316384"}, "name": "visit_JoinedStr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335316832"}, "name": "visit_Constant"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335317280"}, "name": "visit_NamedExpr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335317728"}, "name": "visit_TypeIgnore"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335318176"}, "name": "visit_Attribute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335318624"}, "name": "visit_Subscript"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335319072"}, "name": "visit_Starred"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335319520"}, "name": "visit_Name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335319968"}, "name": "visit_List"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335320416"}, "name": "visit_Tuple"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335320864"}, "name": "visit_Del"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335321312"}, "name": "visit_Load"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335321760"}, "name": "visit_Store"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335322208"}, "name": "visit_And"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335421216"}, "name": "visit_Or"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335421664"}, "name": "visit_Add"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335422112"}, "name": "visit_BitAnd"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335422560"}, "name": "visit_BitOr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335423008"}, "name": "visit_BitXor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335423456"}, "name": "visit_Div"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335423904"}, "name": "visit_FloorDiv"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335424352"}, "name": "visit_LShift"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335424800"}, "name": "visit_Mod"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335425248"}, "name": "visit_Mult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335425696"}, "name": "visit_MatMult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335426144"}, "name": "visit_Pow"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335426592"}, "name": "visit_RShift"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335427040"}, "name": "visit_Sub"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335427488"}, "name": "visit_Invert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335427936"}, "name": "visit_Not"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335428384"}, "name": "visit_UAdd"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335428832"}, "name": "visit_USub"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335429280"}, "name": "visit_Eq"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335429728"}, "name": "visit_Gt"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335430176"}, "name": "visit_GtE"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335430624"}, "name": "visit_In"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335431072"}, "name": "visit_Is"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335431520"}, "name": "visit_IsNot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335431968"}, "name": "visit_Lt"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335432416"}, "name": "visit_LtE"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335432864"}, "name": "visit_NotEq"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335433312"}, "name": "visit_NotIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335433760"}, "name": "visit_comprehension"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335434208"}, "name": "visit_ExceptHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335434656"}, "name": "visit_arguments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335435104"}, "name": "visit_arg"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335435552"}, "name": "visit_keyword"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335436000"}, "name": "visit_alias"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335436448"}, "name": "visit_withitem"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335436896"}, "name": "visit_Match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335552288"}, "name": "visit_MatchValue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335552736"}, "name": "visit_MatchSequence"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335553184"}, "name": "visit_MatchStar"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335553632"}, "name": "visit_MatchMapping"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335554080"}, "name": "visit_MatchClass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335554528"}, "name": "visit_MatchAs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335554976"}, "name": "visit_MatchOr"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335555872"}, "name": "visit_ExtSlice"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335556320"}, "name": "visit_Index"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335556768"}, "name": "visit_Suite"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335557216"}, "name": "visit_AugLoad"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335557664"}, "name": "visit_AugStore"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335558112"}, "name": "visit_Param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335558560"}, "name": "visit_Num"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335559008"}, "name": "visit_Str"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335559456"}, "name": "visit_Bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335559904"}, "name": "visit_NameConstant"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335560352"}, "name": "visit_Ellipsis"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805335048864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268036768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335049312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268036768"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335049760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268038528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335050208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268038880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335050656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268039232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335051104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268039936"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335051552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268040288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335052000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268040640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335052448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268040992"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335052896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268041344"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335053344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268041696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335053792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268042048"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335054240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268042400"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335054688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268042752"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335055136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268043104"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335055584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268043456"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335056032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268043808"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335056480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268044160"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335056928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268044512"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335057376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268044864"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335057824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268045216"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335058272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268045568"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335058720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268045920"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335059168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268046272"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335059616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268046624"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335060064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268046976"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335306528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268047328"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335306976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268047680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335307424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268048032"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335307872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268048384"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335308320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268187744"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335308768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268049088"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335309216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268049440"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335309664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268181056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335310112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268181408"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335310560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268181760"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335311008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268182112"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335311456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268182464"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335311904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268182816"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335312352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268183168"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335312800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268183520"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335313248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268183872"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335313696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268184224"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335314144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268184576"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335314592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268184928"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335315040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268185280"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335315488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268185632"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335315936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268185984"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335316384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268186336"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335316832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268186688"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335317280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268187040"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335317728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268037824"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335318176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268187392"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335318624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268188096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335319072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268188448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335319520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268188800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335319968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268189152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335320416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268189504"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335320864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268190208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335321312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268190560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335321760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268190912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335322208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268191616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335421216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268191968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335421664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268192672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335422112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268193024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335422560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268193376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335423008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268193728"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335423456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268194080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335423904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268194432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335424352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268194784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335424800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268195136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335425248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268195488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335425696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268195840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335426144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268196192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335426592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268196544"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335427040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268196896"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335427488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268296096"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335427936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268296448"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335428384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268296800"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335428832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268297152"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335429280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268297856"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335429728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268298208"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335430176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268298560"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335430624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268298912"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335431072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268299264"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335431520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268299616"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335431968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268299968"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335432416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268300320"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335432864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268300672"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335433312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268301024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335433760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268301376"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335434208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268302080"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335434656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268302432"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335435104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268302784"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335435552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268303136"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335436000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268303488"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335436448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268303840"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335436896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268304192"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335552288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268305248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335552736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268305952"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335553184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268306304"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335553632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268306656"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335554080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268307008"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335554528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268307360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335554976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805268307712"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335555872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193092288"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335556320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193092640"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335556768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184475200"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335557216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184475552"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335557664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184475904"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335558112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805184476256"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335558560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193090176"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335559008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193090528"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335559456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193090880"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335559904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193091232"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805335560352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476608"}, {"nodeId": "139805193091584"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805184476960": {"type": "Concrete", "content": {"module": "ast", "simpleName": "NodeTransformer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "node", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805335560800"}, "name": "generic_visit"}}], "typeVars": [], "bases": [{"nodeId": "139805184476608"}], "isAbstract": false}}, "139805335560800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184476960"}, {"nodeId": "139805268036768"}], "returnType": {"nodeId": "139805268036768"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "node"]}}, "139805150971680": {"type": "Concrete", "content": {"module": "numpy.lib.mixins", "simpleName": "NDArrayOperatorsMixin", "members": [{"kind": "Variable", "content": {"name": "__array_ufunc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805096397056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330811456"}, "name": "__lt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330811904"}, "name": "__le__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330812352"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330812800"}, "name": "__ne__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330813248"}, "name": "__gt__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330813696"}, "name": "__ge__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330814144"}, "name": "__add__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330814592"}, "name": "__radd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330815040"}, "name": "__iadd__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330815488"}, "name": "__sub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330815936"}, "name": "__rsub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805330816384"}, "name": "__isub__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331341376"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331341824"}, "name": "__rmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331342272"}, "name": "__imul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331342720"}, "name": "__matmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331343168"}, "name": "__rmatmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331343616"}, "name": "__imatmul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331344064"}, "name": "__truediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331344512"}, "name": "__rtruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331344960"}, "name": "__itruediv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331345408"}, "name": "__floordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331345856"}, "name": "__rfloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331346304"}, "name": "__ifloordiv__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331346752"}, "name": "__mod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331347200"}, "name": "__rmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331347648"}, "name": "__imod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331348096"}, "name": "__divmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331348544"}, "name": "__rdivmod__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331348992"}, "name": "__pow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331349440"}, "name": "__rpow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331349888"}, "name": "__ipow__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331350336"}, "name": "__lshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331350784"}, "name": "__rlshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331351232"}, "name": "__ilshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331351680"}, "name": "__rshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331352128"}, "name": "__rrshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331352576"}, "name": "__irshift__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331353024"}, "name": "__and__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331353472"}, "name": "__rand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331353920"}, "name": "__iand__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331354368"}, "name": "__xor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331354816"}, "name": "__rxor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331355264"}, "name": "__ixor__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331355712"}, "name": "__or__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331356160"}, "name": "__ror__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331356608"}, "name": "__ior__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331357056"}, "name": "__neg__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331423296"}, "name": "__pos__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331423744"}, "name": "__abs__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805331424192"}, "name": "__invert__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805096397056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "139805150579520"}, {"nodeId": "139805142705856"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "ufunc", "method", "inputs", "kwargs"]}}, "139805142705856": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805330811456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330811904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330812352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330812800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330813248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330813696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330814144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330814592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330815040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330815488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330815936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805330816384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331341376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331341824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331342272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331342720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331343168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331343616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331344064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331344512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331344960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331345408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331345856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331346304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331346752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331347200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331348096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331348544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805331348992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331349440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331349888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331350336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331350784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331351232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331351680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331352128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331352576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331353024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331353472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331353920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331354368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331354816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331355264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331355712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331356160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331356608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805331357056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805331423296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805331423744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805331424192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150971680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805193088416": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsCeil", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326322240"}, "name": "__ceil__"}}], "typeVars": [{"nodeId": ".1.139805193088416"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__ceil__"]}}, ".1.139805193088416": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193088416", "variance": "COVARIANT"}}, "139805326322240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193088416", "args": [{"nodeId": ".1.139805193088416"}]}], "returnType": {"nodeId": ".1.139805193088416"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193088768": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsFloor", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326493952"}, "name": "__floor__"}}], "typeVars": [{"nodeId": ".1.139805193088768"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__floor__"]}}, ".1.139805193088768": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193088768", "variance": "COVARIANT"}}, "139805326493952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193088768", "args": [{"nodeId": ".1.139805193088768"}]}], "returnType": {"nodeId": ".1.139805193088768"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193089120": {"type": "Protocol", "content": {"module": "math", "simpleName": "_SupportsTrunc", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326593152"}, "name": "__trunc__"}}], "typeVars": [{"nodeId": ".1.139805193089120"}], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__trunc__"]}}, ".1.139805193089120": {"type": "TypeVar", "content": {"varName": "_T_co", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193089120", "variance": "COVARIANT"}}, "139805326593152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193089120", "args": [{"nodeId": ".1.139805193089120"}]}], "returnType": {"nodeId": ".1.139805193089120"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167812128": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326792336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326792608"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326792880"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805326792336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167812128"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "funcname"]}}, "139805326792608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167812128"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805326792880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167812128"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "139805154852928": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_single", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326793152"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167812128"}], "isAbstract": false}}, "139805326793152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154852928"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}}, "139805154853280": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_seq", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326793424"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167812128"}], "isAbstract": false}}, "139805326793424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154853280"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "x", "args", "params"]}}, "139805154853632": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "_fromnxfunction_allargs", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326793696"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167812128"}], "isAbstract": false}}, "139805326793696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805154853632"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "139805150981184": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "MAxisConcatenator", "members": [{"kind": "Variable", "content": {"name": "concatenate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "makemat", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805218265280"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326799680"}, "name": "__getitem__"}}], "typeVars": [], "bases": [{"nodeId": "139805154865248"}], "isAbstract": false}}, "139805218265280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "arr"]}}, "139805326799680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981184"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805150981536": {"type": "Concrete", "content": {"module": "numpy.ma.extras", "simpleName": "mr_class", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805326799952"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805150981184"}], "isAbstract": false}}, "139805326799952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150981536"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167807904": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedArrayFutureWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276876544"}], "isAbstract": false}}, "139805167808960": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedUFunc", "members": [{"kind": "Variable", "content": {"name": "f", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327001520"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327001520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167808960"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc"]}}, "139805167809312": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedUnaryOperation", "members": [{"kind": "Variable", "content": {"name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327001792"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002064"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805327001792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mufunc", "fill", "domain"]}}, "139805327002064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809312"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "kwargs"]}}, "139805167809664": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedBinaryOperation", "members": [{"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002336"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002608"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327002880"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003152"}, "name": "outer"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003424"}, "name": "accumulate"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805327002336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "mbfunc", "fillx", "filly"]}}, "139805327002608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "b", "args", "kwargs"]}}, "139805327002880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "target", "axis", "dtype"]}}, "139805327003152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "139805327003424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167809664"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}}, "139805167810016": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_DomainedBinaryOperation", "members": [{"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dbfunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "domain", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fillx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filly", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003696"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327003968"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805327003696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810016"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "dbfunc", "domain", "fillx", "filly"]}}, "139805327003968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810016"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "b", "args", "kwargs"]}}, "139805167810368": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_MaskedPrintOption", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "display", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327009680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327009952"}, "name": "display"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327010224"}, "name": "set_display"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327010496"}, "name": "enabled"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "shrink", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327010768"}, "name": "enable"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327009680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "display"]}}, "139805327009952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327010224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "s"]}}, "139805327010496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805327010768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810368"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "shrink"]}}, "139805167810720": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedIterator", "members": [{"kind": "Variable", "content": {"name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dataiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maskiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ma", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327011312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327011584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327011856"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012128"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805327012400"}, "name": "__next__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805327011312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ma"]}}, "139805327011584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805327011856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805327012128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805327012400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167810720"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805150980832": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "MaskedConstant", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322468864"}, "name": "__new__"}}, {"kind": "Variable", "content": {"name": "__class__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469136"}, "name": "__array_finalize__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469408"}, "name": "__array_prepare__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "context", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469680"}, "name": "__array_wrap__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322469952"}, "name": "__format__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322470224"}, "name": "__reduce__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322470496"}, "name": "__iop__"}}, {"kind": "Variable", "content": {"name": "__iadd__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__isub__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__imul__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ifloordiv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__itruediv__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__ipow__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322470768"}, "name": "copy"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322471040"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322471312"}, "name": "__deepcopy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322471584"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805150980128", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805167680560"}]}]}], "isAbstract": false}}, "139805322468864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805322469136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805322469408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "139805322469680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "context"]}}, "139805322469952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_spec"]}}, "139805322470224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322470496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "other"]}}, "139805322470768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805322471040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322471312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "memo"]}}, "139805322471584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150980832"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "attr", "value"]}}, "139805167680560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805150577056", "args": [{"nodeId": "139805154857504"}]}}}, "139805167811072": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_extrema_operation", "members": [{"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fill_value_func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ufunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "compare", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fill_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322472400"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322472672"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "axis", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322472944"}, "name": "reduce"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322473216"}, "name": "outer"}}], "typeVars": [], "bases": [{"nodeId": "139805167808960"}], "isAbstract": false}}, "139805322472400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "ufunc", "compare", "fill_value"]}}, "139805322472672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "139805322472944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "target", "axis"]}}, "139805322473216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811072"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "a", "b"]}}, "139805167811424": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_frommethod", "members": [{"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "methodname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reversed", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322474304"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322474576"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322474848"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805322474304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811424"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "methodname", "reversed"]}}, "139805322474576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811424"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322474848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811424"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "a", "args", "params"]}}, "139805167811776": {"type": "Concrete", "content": {"module": "numpy.ma.core", "simpleName": "_convert2ma", "members": [{"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "funcname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322679680"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322679952"}, "name": "getdoc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805322680224"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805322679680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811776"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "funcname", "params"]}}, "139805322679952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811776"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805322680224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167811776"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "params"]}}, "139805150591488": {"type": "Concrete", "content": {"module": "numpy.random.bit_generator", "simpleName": "SeedlessSeedSequence", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dtype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323105824"}, "name": "generate_state"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n_children", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805323106272"}, "name": "spawn"}}], "typeVars": [], "bases": [{"nodeId": "139805150591136"}], "isAbstract": false}}, "139805323105824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805150591488"}, {"nodeId": "139805481893056"}, {"nodeId": "139805142634272"}], "returnType": {"nodeId": "139805155356768", "args": [{"nodeId": "A"}, {"nodeId": "139805150983296", "args": [{"nodeId": "139805142634720"}]}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "n_words", "dtype"]}}, "139805142634272": {"type": "Union", "content": {"items": [{"nodeId": "139805142634496"}, {"nodeId": "139805142634160"}]}}, "139805142634496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201277984"}}}, "139805142634160": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805201274624"}}}, "139805142634720": {"type": "Union", "content": {"items": [{"nodeId": "139805142634384"}, {"nodeId": "139805142634608"}]}}, "139805142634384": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857856"}]}}}, "139805142634608": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805155360288", "args": [{"nodeId": "139805154857504"}]}}}, "139805323106272": {"type": "Function", "content": {"typeVars": [".-1.139805323106272"], "argTypes": [{"nodeId": ".-1.139805323106272"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": ".-1.139805323106272"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "n_children"]}}, ".-1.139805323106272": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805323106272", "variance": "INVARIANT"}}, "139805167802272": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "FunctionTestCase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testFunc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "setUp", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tearDown", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "description", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293650976"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293651424"}, "name": "runTest"}}], "typeVars": [], "bases": [{"nodeId": "139805167801920"}], "isAbstract": false}}, "139805293650976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802272"}, {"nodeId": "139805163557088"}, {"nodeId": "139805158634128"}, {"nodeId": "139805158634464"}, {"nodeId": "139805158634688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "testFunc", "setUp", "tearDown", "description"]}}, "139805163557088": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805158634128": {"type": "Union", "content": {"items": [{"nodeId": "139805163557984"}, {"nodeId": "N"}]}}, "139805163557984": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805158634464": {"type": "Union", "content": {"items": [{"nodeId": "139805163553056"}, {"nodeId": "N"}]}}, "139805163553056": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "A"}, "argKinds": [], "argNames": []}}, "139805158634688": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293651424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802272"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167801920": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "TestCase", "members": [{"kind": "Variable", "content": {"name": "failureException", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "longMessage", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "maxDiff", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163705664"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_testMethodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_testMethodDoc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "methodName", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293059808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293060256"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293060704"}, "name": "setUp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293061152"}, "name": "tearDown"}}, {"kind": "Variable", "content": {"name": "setUpClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805158944192"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tearDownClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805158946656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293062496"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293062944"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293063392"}, "name": "skipTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293063840"}, "name": "subTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293064288"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293064736"}, "name": "_addSkip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293065184"}, "name": "assertEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293065632"}, "name": "assertNotEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293066080"}, "name": "assertTrue"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293066528"}, "name": "assertFalse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293066976"}, "name": "assertIs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expr2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293067424"}, "name": "assertIsNot"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293067872"}, "name": "assertIsNone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293445408"}, "name": "assertIsNotNone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293445856"}, "name": "assertIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "member", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "container", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293446304"}, "name": "assertNotIn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293446752"}, "name": "assertIsInstance"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293447200"}, "name": "assertNotIsInstance"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163705552"}, "items": [{"kind": "Variable", "content": {"name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertGreater", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertGreater"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163707904"}, "items": [{"kind": "Variable", "content": {"name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertGreaterEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertGreaterEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163713840"}, "items": [{"kind": "Variable", "content": {"name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertLess", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertLess"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163714400"}, "items": [{"kind": "Variable", "content": {"name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertLessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertLessEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163714960"}, "items": [{"kind": "Variable", "content": {"name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertRaises"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163715520"}, "items": [{"kind": "Variable", "content": {"name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertRaisesRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertRaisesRegex"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805163716080"}, "items": [{"kind": "Variable", "content": {"name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertWarns", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertWarns"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805158621696"}, "items": [{"kind": "Variable", "content": {"name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertWarnsRegex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertWarnsRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293454816"}, "name": "assertLogs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293455264"}, "name": "assertNoLogs"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805158622816"}, "items": [{"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertAlmostEqual"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805158623824"}, "items": [{"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "assertNotAlmostEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293459296"}, "name": "assertRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unexpected_regex", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293459744"}, "name": "assertNotRegex"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293460192"}, "name": "assertCountEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typeobj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293460640"}, "name": "addTypeEqualityFunc"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293461088"}, "name": "assertMultiLineEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "seq_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293642016"}, "name": "assertSequenceEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293642464"}, "name": "assertListEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tuple1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tuple2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293642912"}, "name": "assertTupleEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "set1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "set2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293643360"}, "name": "assertSetEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "d1", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "d2", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293643808"}, "name": "assertDictEqual"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293644256"}, "name": "fail"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293644704"}, "name": "countTestCases"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293645152"}, "name": "defaultTestResult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293645600"}, "name": "id"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293646048"}, "name": "shortDescription"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293646496"}, "name": "addCleanup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293647840"}, "name": "doCleanups"}}, {"kind": "Variable", "content": {"name": "addClassCleanup", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805158948000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "doClassCleanups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159113216"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "standardMsg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293649632"}, "name": "_formatMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "first", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "second", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293650080"}, "name": "_getAssertEqualityFunc"}}, {"kind": "Variable", "content": {"name": "failUnlessEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159113888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159114560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIfEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159115008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159115456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnless", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159115904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assert_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159116352"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIf", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159116800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnlessRaises", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159099968"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failUnlessAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159100640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159101312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failIfAlmostEqual", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159101984"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotAlmostEquals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159102656"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159117472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertNotRegexpMatches", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159118592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "assertRaisesRegexp", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805159103664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "dictionary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293650528"}, "name": "assertDictContainsSubset"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163705664": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805293059808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "methodName"]}}, "139805293060256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805293060704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293061152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805158944192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805158946656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805293062496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163708576"}], "returnType": {"nodeId": "139805163708688"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}}, "139805163708576": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805167800160": {"type": "Concrete", "content": {"module": "unittest.result", "simpleName": "TestResult", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failures", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703536"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "skipped", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703760"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "expectedFailures", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805163703984"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "unexpectedSuccesses", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167801920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "shouldStop", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testsRun", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293147552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293148000"}, "name": "printErrors"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293148448"}, "name": "wasSuccessful"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293148896"}, "name": "stop"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293149344"}, "name": "startTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293149792"}, "name": "stopTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293248800"}, "name": "startTestRun"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293249248"}, "name": "stopTestRun"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293249696"}, "name": "addError"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293250144"}, "name": "addFailure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293250592"}, "name": "addSuccess"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293251040"}, "name": "addSkip"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293251488"}, "name": "addExpectedFailure"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293251936"}, "name": "addUnexpectedSuccess"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subtest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "err", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293252384"}, "name": "addSubTest"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163703200": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805163703536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805163703760": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805163703984": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805293147552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805163704656"}, {"nodeId": "139805163706224"}, {"nodeId": "139805163706336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity"]}}, "139805163704656": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805163706224": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163706336": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805293148000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293148448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293148896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293149344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293149792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293248800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293249248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293249696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "139805163706448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805268020576": {"type": "Union", "content": {"items": [{"nodeId": "139805268020240"}, {"nodeId": "139805268018560"}]}}, "139805268020240": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268017216"}}}, "139805268017216": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276675712"}, {"nodeId": "139805272037280"}]}}, "139805268018560": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}}, "139805293250144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "139805163706560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805293250592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293251040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "reason"]}}, "139805293251488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706672"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "err"]}}, "139805163706672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805293251936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293252384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805167801920"}, {"nodeId": "139805163706896"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test", "subtest", "err"]}}, "139805163706896": {"type": "Union", "content": {"items": [{"nodeId": "139805163706784"}, {"nodeId": "N"}]}}, "139805163706784": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268020576"}}}, "139805163708688": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805293062944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163708800"}], "returnType": {"nodeId": "139805163708912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "result"]}}, "139805163708800": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805163708912": {"type": "Union", "content": {"items": [{"nodeId": "139805167800160"}, {"nodeId": "N"}]}}, "139805293063392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}}, "139805293063840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805267652704", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "params"]}}, "139805293064288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293064736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805167800160"}, {"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "result", "test_case", "reason"]}}, "139805293065184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805163709696"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805163709696": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293065632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805163710144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805163710144": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293066080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163710480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805163710480": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293066528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163710816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805163710816": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293066976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711040"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}}, "139805163711040": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293067424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr1", "expr2", "msg"]}}, "139805163711264": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293067872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}}, "139805163711488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293445408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163711712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "msg"]}}, "139805163711712": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293445856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163712160"}, {"nodeId": "139805163712384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}}, "139805163712160": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889184", "args": [{"nodeId": "A"}]}]}}, "139805163712384": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293446304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805163712832"}, {"nodeId": "139805163713056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "member", "container", "msg"]}}, "139805163712832": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889184", "args": [{"nodeId": "A"}]}]}}, "139805163713056": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293446752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163713168"}, {"nodeId": "139805163713392"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}}, "139805163713168": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163353168"}}}, "139805163353168": {"type": "Union", "content": {"items": [{"nodeId": "139805481892352"}, {"nodeId": "139805272039392"}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805163352496"}]}]}}, "139805163352496": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163353168"}}}, "139805163713392": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293447200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481881792"}, {"nodeId": "139805163713504"}, {"nodeId": "139805163713728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls", "msg"]}}, "139805163713504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163353168"}}}, "139805163713728": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163705552": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293447648"}, {"nodeId": "139805293448096"}]}}, "139805293447648": {"type": "Function", "content": {"typeVars": [".-1.139805293447648"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267813024", "args": [{"nodeId": ".-1.139805293447648"}]}, {"nodeId": ".-1.139805293447648"}, {"nodeId": "139805163714064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293447648": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293447648", "variance": "INVARIANT"}}, "139805163714064": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293448096": {"type": "Function", "content": {"typeVars": [".-1.139805293448096"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293448096"}, {"nodeId": "139805267812672", "args": [{"nodeId": ".-1.139805293448096"}]}, {"nodeId": "139805163714288"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293448096": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293448096", "variance": "INVARIANT"}}, "139805163714288": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163707904": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293448544"}, {"nodeId": "139805293448992"}]}}, "139805293448544": {"type": "Function", "content": {"typeVars": [".-1.139805293448544"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267813728", "args": [{"nodeId": ".-1.139805293448544"}]}, {"nodeId": ".-1.139805293448544"}, {"nodeId": "139805163714624"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293448544": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293448544", "variance": "INVARIANT"}}, "139805163714624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293448992": {"type": "Function", "content": {"typeVars": [".-1.139805293448992"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293448992"}, {"nodeId": "139805267813376", "args": [{"nodeId": ".-1.139805293448992"}]}, {"nodeId": "139805163714848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293448992": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293448992", "variance": "INVARIANT"}}, "139805163714848": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163713840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293449440"}, {"nodeId": "139805293449888"}]}}, "139805293449440": {"type": "Function", "content": {"typeVars": [".-1.139805293449440"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267812672", "args": [{"nodeId": ".-1.139805293449440"}]}, {"nodeId": ".-1.139805293449440"}, {"nodeId": "139805163715184"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293449440": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293449440", "variance": "INVARIANT"}}, "139805163715184": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293449888": {"type": "Function", "content": {"typeVars": [".-1.139805293449888"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293449888"}, {"nodeId": "139805267813024", "args": [{"nodeId": ".-1.139805293449888"}]}, {"nodeId": "139805163715408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293449888": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293449888", "variance": "INVARIANT"}}, "139805163715408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163714400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293450336"}, {"nodeId": "139805293450784"}]}}, "139805293450336": {"type": "Function", "content": {"typeVars": [".-1.139805293450336"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267812672", "args": [{"nodeId": ".-1.139805293450336"}]}, {"nodeId": ".-1.139805293450336"}, {"nodeId": "139805163715744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293450336": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293450336", "variance": "INVARIANT"}}, "139805163715744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293450784": {"type": "Function", "content": {"typeVars": [".-1.139805293450784"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293450784"}, {"nodeId": "139805267813024", "args": [{"nodeId": ".-1.139805293450784"}]}, {"nodeId": "139805163715968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "a", "b", "msg"]}}, ".-1.139805293450784": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293450784", "variance": "INVARIANT"}}, "139805163715968": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805163714960": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293451232"}, {"nodeId": "139805293451680"}]}}, "139805293451232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163716192"}, {"nodeId": "139805163562912"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "callable", "args", "kwargs"]}}, "139805163716192": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805163562912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293451680": {"type": "Function", "content": {"typeVars": [".-1.139805293451680"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158621472"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805293451680"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}}, "139805158621472": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805167802624": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_AssertRaisesContext", "members": [{"kind": "Variable", "content": {"name": "exception", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805167802624"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293651872"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293652320"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293652768"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805167802624"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805167802624": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805167802624", "variance": "INVARIANT"}}, "139805293651872": {"type": "Function", "content": {"typeVars": [".0.139805293651872"], "argTypes": [{"nodeId": ".0.139805293651872"}], "returnType": {"nodeId": ".0.139805293651872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805293651872": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167802624", "args": [{"nodeId": ".1.139805167802624"}]}, "def": "139805293651872", "variance": "INVARIANT"}}, "139805293652320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802624", "args": [{"nodeId": ".1.139805167802624"}]}, {"nodeId": "139805158634800"}, {"nodeId": "139805158634912"}, {"nodeId": "139805158635024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805158634800": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805158634912": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805158635024": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805293652768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, ".-1.139805293451680": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805293451680", "variance": "INVARIANT"}}, "139805163715520": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293452128"}, {"nodeId": "139805293452576"}]}}, "139805293452128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158621808"}, {"nodeId": "139805158621920"}, {"nodeId": "139805163557536"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "expected_regex", "callable", "args", "kwargs"]}}, "139805158621808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158621920": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805163557536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293452576": {"type": "Function", "content": {"typeVars": [".-1.139805293452576"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158622480"}, {"nodeId": "139805158622592"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805293452576"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}}, "139805158622480": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158622592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, ".-1.139805293452576": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805293452576", "variance": "INVARIANT"}}, "139805163716080": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293453024"}, {"nodeId": "139805293453472"}]}}, "139805293453024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158622928"}, {"nodeId": "139805163562688"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_warning", "callable", "args", "kwargs"]}}, "139805158622928": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805163562688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293453472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158623600"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "msg"]}}, "139805158623600": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805167802976": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_AssertWarnsContext", "members": [{"kind": "Variable", "content": {"name": "warning", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167796288"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167796288"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293653216"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293653664"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805293653216": {"type": "Function", "content": {"typeVars": [".0.139805293653216"], "argTypes": [{"nodeId": ".0.139805293653216"}], "returnType": {"nodeId": ".0.139805293653216"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805293653216": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805167802976"}, "def": "139805293653216", "variance": "INVARIANT"}}, "139805293653664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167802976"}, {"nodeId": "139805158635248"}, {"nodeId": "139805158635360"}, {"nodeId": "139805158635472"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805158635248": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805158635360": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805158635472": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805158621696": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293453920"}, {"nodeId": "139805293454368"}]}}, "139805293453920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158623936"}, {"nodeId": "139805158624048"}, {"nodeId": "139805163558208"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_warning", "expected_regex", "callable", "args", "kwargs"]}}, "139805158623936": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158624048": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805163558208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293454368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158624720"}, {"nodeId": "139805158624832"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_warning", "expected_regex", "msg"]}}, "139805158624720": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805158624832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805293454816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158625056"}, {"nodeId": "139805158625168"}], "returnType": {"nodeId": "139805167805440", "args": [{"nodeId": "139805158625280"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}}, "139805158625056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805171902848"}, {"nodeId": "N"}]}}, "139805171902848": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Logger", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259280"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "propagate", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "handlers", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805171903200"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "disabled", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171906368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171902496"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285093152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285093600"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285094048"}, "name": "isEnabledFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285094496"}, "name": "getEffectiveLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "suffix", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285094944"}, "name": "getChild"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285095392"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285095840"}, "name": "info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285096288"}, "name": "warning"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285096736"}, "name": "warn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285097184"}, "name": "error"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285097632"}, "name": "exception"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285098080"}, "name": "critical"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285098528"}, "name": "log"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285098976"}, "name": "_log"}}, {"kind": "Variable", "content": {"name": "fatal", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167140928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285103456"}, "name": "addHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "hdlr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285103904"}, "name": "removeHandler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285104352"}, "name": "findCaller"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285105248"}, "name": "handle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fn", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280682272"}, "name": "makeRecord"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280682720"}, "name": "hasHandlers"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280683168"}, "name": "callHandlers"}}], "typeVars": [], "bases": [{"nodeId": "139805171902144"}], "isAbstract": false}}, "139805176259280": {"type": "Union", "content": {"items": [{"nodeId": "139805171902848"}, {"nodeId": "N"}]}}, "139805171903200": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Handler", "members": [{"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "formatter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259504"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259616"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176252896"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280683616"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280684064"}, "name": "get_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280684512"}, "name": "set_name"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280684960"}, "name": "createLock"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280685408"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280685856"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280686304"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280686752"}, "name": "setFormatter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280687200"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280687648"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280688096"}, "name": "handle"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280688544"}, "name": "handleError"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280688992"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280689440"}, "name": "emit"}}], "typeVars": [], "bases": [{"nodeId": "139805171902144"}], "isAbstract": false}}, "139805176259504": {"type": "Union", "content": {"items": [{"nodeId": "139805171903552"}, {"nodeId": "N"}]}}, "139805171903552": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Formatter", "members": [{"kind": "Variable", "content": {"name": "converter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176199680"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176258272"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259840"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_style", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171906720"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_time_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "default_msec_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176253568"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "style", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "validate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280689888"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280691232"}, "name": "format"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "datefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280691680"}, "name": "formatTime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ei", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280692128"}, "name": "formatException"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280692576"}, "name": "formatMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280693024"}, "name": "formatStack"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280693472"}, "name": "usesTime"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176199680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805176258496"}], "returnType": {"nodeId": "139805176253680"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805176258496": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805176253680": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805184099712"}}}, "139805176258272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176259840": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805171906720": {"type": "Concrete", "content": {"module": "logging", "simpleName": "PercentStyle", "members": [{"kind": "Variable", "content": {"name": "default_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime_format", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime_search", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "validation_pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281105312"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281106208"}, "name": "usesTime"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281106656"}, "name": "validate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281107104"}, "name": "format"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805281105312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}, {"nodeId": "139805276669024"}, {"nodeId": "139805166987504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "defaults"]}}, "139805166987504": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805281106208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805281106656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805281107104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906720"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805176253568": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280689888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805176266336"}, {"nodeId": "139805176266448"}, {"nodeId": "139805176266560"}, {"nodeId": "139805481882144"}, {"nodeId": "139805166977200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "fmt", "datefmt", "style", "validate", "defaults"]}}, "139805176266336": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176266448": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176266560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251664"}}}, "139805176251664": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805166977200": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805280691232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805171904608": {"type": "Concrete", "content": {"module": "logging", "simpleName": "LogRecord", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176253456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "asctime", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "created", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176261632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_text", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176257712"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "funcName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "levelname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "levelno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msecs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176260064"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "process", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176254688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "processName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176255136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "relativeCreated", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176254800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "thread", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176255024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "threadName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176255248"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pathname", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280696608"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280697056"}, "name": "getMessage"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280697504"}, "name": "__setattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176253456": {"type": "Union", "content": {"items": [{"nodeId": "139805176254352"}, {"nodeId": "N"}]}}, "139805176254352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805176252000": {"type": "Union", "content": {"items": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}]}}, "139805176261632": {"type": "Union", "content": {"items": [{"nodeId": "139805176254576"}, {"nodeId": "N"}]}}, "139805176254576": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176251440": {"type": "Union", "content": {"items": [{"nodeId": "139805176250656"}, {"nodeId": "139805176250544"}]}}, "139805176250656": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276675712"}, {"nodeId": "139805175802432"}]}}, "139805175802432": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805176250544": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "N"}, {"nodeId": "N"}]}}, "139805176257712": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176260064": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805176254688": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805176255136": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176254800": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176255024": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805176255248": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280696608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166977536"}, {"nodeId": "139805166977984"}, {"nodeId": "139805166978096"}, {"nodeId": "139805166978208"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "level", "pathname", "lineno", "msg", "args", "exc_info", "func", "sinfo"]}}, "139805166977536": {"type": "Union", "content": {"items": [{"nodeId": "139805166977760"}, {"nodeId": "N"}]}}, "139805166977760": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805166977984": {"type": "Union", "content": {"items": [{"nodeId": "139805166977872"}, {"nodeId": "N"}]}}, "139805166977872": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166978096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805166978208": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280697056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280697504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805280691680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805171904608"}, {"nodeId": "139805166977312"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "record", "datefmt"]}}, "139805166977312": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280692128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805166977424"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ei"]}}, "139805166977424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805280692576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280693024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stack_info"]}}, "139805280693472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903552"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805176259616": {"type": "Union", "content": {"items": [{"nodeId": "139805193080672"}, {"nodeId": "N"}]}}, "139805176252896": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280683616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805176266000"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "139805176266000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805176252112": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805280684064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280684512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805280684960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280685408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280685856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280686304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805176266224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805176266224": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805280686752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805176262192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "fmt"]}}, "139805176262192": {"type": "Union", "content": {"items": [{"nodeId": "139805171903552"}, {"nodeId": "N"}]}}, "139805280687200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280687648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280688096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280688544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280688992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280689440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903200"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805171902144": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Filterer", "members": [{"kind": "Variable", "content": {"name": "filters", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805176257488"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285090016"}, "name": "addFilter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285090464"}, "name": "removeFilter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285090912"}, "name": "filter"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176257488": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176258832"}}}, "139805176258832": {"type": "Union", "content": {"items": [{"nodeId": "139805171904256"}, {"nodeId": "139805176138432"}]}}, "139805171904256": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Filter", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "nlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280695712"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "record", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280696160"}, "name": "filter"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280695712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904256"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805280696160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904256"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805176138432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805285090016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902144"}, {"nodeId": "139805176252448"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}}, "139805176252448": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176258832"}}}, "139805285090464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902144"}, {"nodeId": "139805176261520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "filter"]}}, "139805176261520": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176258832"}}}, "139805285090912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902144"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805171906368": {"type": "Concrete", "content": {"module": "logging", "simpleName": "RootLogger", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281104864"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805171902848"}], "isAbstract": false}}, "139805281104864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906368"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805171902496": {"type": "Concrete", "content": {"module": "logging", "simpleName": "Manager", "members": [{"kind": "Variable", "content": {"name": "root", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171906368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "disable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "emittedNoHandlerWarning", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loggerDict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805176258944"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "loggerClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176250432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "logRecordFactory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176258384"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "rootnode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285091360"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285091808"}, "name": "getLogger"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "klass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285092256"}, "name": "setLoggerClass"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285092704"}, "name": "setLogRecordFactory"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805176258944": {"type": "Union", "content": {"items": [{"nodeId": "139805171902848"}, {"nodeId": "139805171906016"}]}}, "139805171906016": {"type": "Concrete", "content": {"module": "logging", "simpleName": "PlaceHolder", "members": [{"kind": "Variable", "content": {"name": "loggerMap", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805171902848"}, {"nodeId": "N"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281103968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "alogger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281104416"}, "name": "append"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805281103968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906016"}, {"nodeId": "139805171902848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}}, "139805281104416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171906016"}, {"nodeId": "139805171902848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "alogger"]}}, "139805176250432": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805176258384": {"type": "Union", "content": {"items": [{"nodeId": "139805176199232"}, {"nodeId": "N"}]}}, "139805176199232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805171904608"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805285091360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "139805171906368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "rootnode"]}}, "139805285091808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805171902848"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805285092256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "klass"]}}, "139805285092704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902496"}, {"nodeId": "139805176199456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "factory"]}}, "139805176199456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805171904608"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805285093152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805276669024"}, {"nodeId": "139805176261296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "level"]}}, "139805176261296": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805285093600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805176261856"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805176261856": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805285094048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805285094496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285094944": {"type": "Function", "content": {"typeVars": [".0.139805285094944"], "argTypes": [{"nodeId": ".0.139805285094944"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805285094944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "suffix"]}}, ".0.139805285094944": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805171902848"}, "def": "139805285094944", "variance": "INVARIANT"}}, "139805285095392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176262528"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176261968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176262528": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176262080"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176262080": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176261968": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285095840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176262864"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176262304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176262864": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176262416"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176262416": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176262304": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285096288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263200"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176262640"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263200": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176262752"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176262752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176262640": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285096736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263536"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176262976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263536": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176263088"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176263088": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176262976": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285097184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176263312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263872": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176263424"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176263424": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176263312": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285097632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176263648"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176263760"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176263648": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805176251216": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805481882144"}, {"nodeId": "139805176250992"}, {"nodeId": "139805276675712"}]}}, "139805176250992": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176263760": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285098080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176264432"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176260736"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176264432": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176264208"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176264208": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176260736": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285098528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176264768"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805176264320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805176264768": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176263984"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805176263984": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176264320": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285098976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176264544"}, {"nodeId": "139805176264096"}, {"nodeId": "139805176264880"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "extra", "stack_info", "stacklevel"]}}, "139805176264544": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805176264096": {"type": "Union", "content": {"items": [{"nodeId": "139805176264656"}, {"nodeId": "N"}]}}, "139805176264656": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805176264880": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805167140928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805167130928"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805167130256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra"]}}, "139805167130928": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805176264208"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805167130256": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805285103456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}}, "139805285103904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171903200"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "hdlr"]}}, "139805285104352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805176265216"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "stack_info", "stacklevel"]}}, "139805176265216": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805176264992"}]}}, "139805176264992": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285105248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805280682272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805176265440"}, {"nodeId": "139805176265552"}, {"nodeId": "139805176265664"}, {"nodeId": "139805176265776"}, {"nodeId": "139805176265888"}], "returnType": {"nodeId": "139805171904608"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "name", "level", "fn", "lno", "msg", "args", "exc_info", "func", "extra", "sinfo"]}}, "139805176265440": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805176265552": {"type": "Union", "content": {"items": [{"nodeId": "139805176265104"}, {"nodeId": "N"}]}}, "139805176265104": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805176265664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176265776": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805176265888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280682720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280683168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171902848"}, {"nodeId": "139805171904608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "record"]}}, "139805158625168": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805167805440": {"type": "Concrete", "content": {"module": "unittest._log", "simpleName": "_AssertLogsContext", "members": [{"kind": "Variable", "content": {"name": "LOGGING_FORMAT", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167801920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "N"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285021088"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "no_logs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285021984"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285022432"}, "name": "__exit__"}}], "typeVars": [{"nodeId": ".1.139805167805440"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805167805440": {"type": "TypeVar", "content": {"varName": "_L", "values": [{"nodeId": "N"}, {"nodeId": "139805163349472"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805167805440", "variance": "INVARIANT"}}, "139805163349472": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163350928"}}}, "139805163350928": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805171904608"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}]}}, "139805285021088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805440", "args": [{"nodeId": ".1.139805167805440"}]}, {"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "test_case", "logger_name", "level", "no_logs"]}}, "139805285021984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805440", "args": [{"nodeId": ".1.139805167805440"}]}], "returnType": {"nodeId": ".1.139805167805440"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805285022432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805440", "args": [{"nodeId": ".1.139805167805440"}]}, {"nodeId": "139805163707456"}, {"nodeId": "139805163707568"}, {"nodeId": "139805163707680"}], "returnType": {"nodeId": "139805163707792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805163707456": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805163707568": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805163707680": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805163707792": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158625280": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163350928"}}}, "139805293455264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158625392"}, {"nodeId": "139805158625504"}], "returnType": {"nodeId": "139805167805440", "args": [{"nodeId": "N"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "logger", "level"]}}, "139805158625392": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805171902848"}, {"nodeId": "N"}]}}, "139805158625504": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805158622816": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293455712"}, {"nodeId": "139805293456160"}, {"nodeId": "139805293456608"}, {"nodeId": "139805293457056"}]}}, "139805293455712": {"type": "Function", "content": {"typeVars": [".-1.139805293455712"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293455712"}, {"nodeId": ".-1.139805293455712"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293455712": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293455712", "variance": "INVARIANT"}}, "139805167801568": {"type": "Protocol", "content": {"module": "unittest.case", "simpleName": "_SupportsAbsAndDunderGE", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267813728", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481885312", "args": [{"nodeId": "A"}]}], "protocolMembers": ["__abs__", "__ge__"]}}, "139805293456160": {"type": "Function", "content": {"typeVars": [".-1.139805293456160"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293456160"}, {"nodeId": ".-1.139805293456160"}, {"nodeId": "N"}, {"nodeId": "139805158625952"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293456160": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293456160", "variance": "INVARIANT"}}, "139805158625952": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293456608": {"type": "Function", "content": {"typeVars": [".-1.139805293456608"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805293456608"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805293456608"}, {"nodeId": "139805158626064"}, {"nodeId": "139805158626288"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293456608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293456608", "variance": "INVARIANT"}}, "139805158626064": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158626288": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293457056": {"type": "Function", "content": {"typeVars": [".-1.139805293457056"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293457056"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805293457056"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805158626400"}, {"nodeId": "139805158626624"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293457056": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293457056", "variance": "INVARIANT"}}, "139805158626400": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158626624": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805158623824": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805293457504"}, {"nodeId": "139805293457952"}, {"nodeId": "139805293458400"}, {"nodeId": "139805293458848"}]}}, "139805293457504": {"type": "Function", "content": {"typeVars": [".-1.139805293457504"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293457504"}, {"nodeId": ".-1.139805293457504"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293457504": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293457504", "variance": "INVARIANT"}}, "139805293457952": {"type": "Function", "content": {"typeVars": [".-1.139805293457952"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293457952"}, {"nodeId": ".-1.139805293457952"}, {"nodeId": "N"}, {"nodeId": "139805158627072"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293457952": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805293457952", "variance": "INVARIANT"}}, "139805158627072": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293458400": {"type": "Function", "content": {"typeVars": [".-1.139805293458400"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805293458400"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805293458400"}, {"nodeId": "139805158627184"}, {"nodeId": "139805158627408"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293458400": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293458400", "variance": "INVARIANT"}}, "139805158627184": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158627408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293458848": {"type": "Function", "content": {"typeVars": [".-1.139805293458848"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293458848"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805293458848"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805158627520"}, {"nodeId": "139805158627744"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805293458848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293458848", "variance": "INVARIANT"}}, "139805158627520": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805158627744": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293459296": {"type": "Function", "content": {"typeVars": [".-1.139805293459296"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293459296"}, {"nodeId": "139805158627856"}, {"nodeId": "139805158628080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}}, ".-1.139805293459296": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293459296", "variance": "INVARIANT"}}, "139805158627856": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805293459296"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805293459296"}]}]}}, "139805158628080": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293459744": {"type": "Function", "content": {"typeVars": [".-1.139805293459744"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805293459744"}, {"nodeId": "139805158628192"}, {"nodeId": "139805158628416"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}}, ".-1.139805293459744": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805293459744", "variance": "INVARIANT"}}, "139805158628192": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805293459744"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805293459744"}]}]}}, "139805158628416": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293460192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158628864"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158628864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293460640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "0"}, {"nodeId": "139805163565824"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typeobj", "function"]}}, "139805163565824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293461088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805158629312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158629312": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293642016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158629760"}, {"nodeId": "139805158629984"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "seq1", "seq2", "msg", "seq_type"]}}, "139805158629760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805158629984": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805293642464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158630432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "list1", "list2", "msg"]}}, "139805158630432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293642912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "139805158630880"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "tuple1", "tuple2", "msg"]}}, "139805158630880": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293643360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805481890592", "args": [{"nodeId": "139805481881792"}]}, {"nodeId": "139805158631104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "set1", "set2", "msg"]}}, "139805158631104": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293643808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805158631552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "d1", "d2", "msg"]}}, "139805158631552": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293644256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158631776"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139805158631776": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293644704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293645152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293645600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293646048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805158631888"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805158631888": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293646496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805163566720"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805163566720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805293647840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805158948000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805163559328"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}}, "139805163559328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159113216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805293649632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805158633120"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "standardMsg"]}}, "139805158633120": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293650080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805163566944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second"]}}, "139805163566944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159113888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805158880224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158880224": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159114560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805158882800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158882800": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159115008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805158876976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805158876976": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159115456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "139805159096384"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "first", "second", "msg"]}}, "139805159096384": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159115904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805159099296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805159099296": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159116352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805159099408"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805159099408": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159116800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "A"}, {"nodeId": "139805159099520"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "expr", "msg"]}}, "139805159099520": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159099968": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159117696"}, {"nodeId": "139805159117920"}]}}, "139805159117696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159099632"}, {"nodeId": "139805159114112"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "callable", "args", "kwargs"]}}, "139805159099632": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805159114112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159117920": {"type": "Function", "content": {"typeVars": [".-1.139805159117920"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159099744"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805159117920"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "msg"]}}, "139805159099744": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, ".-1.139805159117920": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805159117920", "variance": "INVARIANT"}}, "139805159100640": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159118816"}, {"nodeId": "139805159119040"}, {"nodeId": "139805159119264"}, {"nodeId": "139805159119488"}]}}, "139805159118816": {"type": "Function", "content": {"typeVars": [".-1.139805159118816"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159118816"}, {"nodeId": ".-1.139805159118816"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159118816": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159118816", "variance": "INVARIANT"}}, "139805159119040": {"type": "Function", "content": {"typeVars": [".-1.139805159119040"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159119040"}, {"nodeId": ".-1.139805159119040"}, {"nodeId": "N"}, {"nodeId": "139805159099856"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119040": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159119040", "variance": "INVARIANT"}}, "139805159099856": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159119264": {"type": "Function", "content": {"typeVars": [".-1.139805159119264"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159119264"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159119264"}, {"nodeId": "139805159100080"}, {"nodeId": "139805159100192"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119264": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159119264", "variance": "INVARIANT"}}, "139805159100080": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159100192": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159119488": {"type": "Function", "content": {"typeVars": [".-1.139805159119488"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159119488"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159119488"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159100304"}, {"nodeId": "139805159100416"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119488": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159119488", "variance": "INVARIANT"}}, "139805159100304": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159100416": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159101312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159119936"}, {"nodeId": "139805159120160"}, {"nodeId": "139805159120384"}, {"nodeId": "139805159120608"}]}}, "139805159119936": {"type": "Function", "content": {"typeVars": [".-1.139805159119936"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159119936"}, {"nodeId": ".-1.139805159119936"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159119936": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159119936", "variance": "INVARIANT"}}, "139805159120160": {"type": "Function", "content": {"typeVars": [".-1.139805159120160"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159120160"}, {"nodeId": ".-1.139805159120160"}, {"nodeId": "N"}, {"nodeId": "139805159100528"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159120160": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159120160", "variance": "INVARIANT"}}, "139805159100528": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159120384": {"type": "Function", "content": {"typeVars": [".-1.139805159120384"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159120384"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159120384"}, {"nodeId": "139805159100752"}, {"nodeId": "139805159100864"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159120384": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159120384", "variance": "INVARIANT"}}, "139805159100752": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159100864": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159120608": {"type": "Function", "content": {"typeVars": [".-1.139805159120608"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159120608"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159120608"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159100976"}, {"nodeId": "139805159101088"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159120608": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159120608", "variance": "INVARIANT"}}, "139805159100976": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159101088": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159101984": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159121056"}, {"nodeId": "139805159121280"}, {"nodeId": "139805159121504"}, {"nodeId": "139805159121728"}]}}, "139805159121056": {"type": "Function", "content": {"typeVars": [".-1.139805159121056"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159121056"}, {"nodeId": ".-1.139805159121056"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121056": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159121056", "variance": "INVARIANT"}}, "139805159121280": {"type": "Function", "content": {"typeVars": [".-1.139805159121280"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159121280"}, {"nodeId": ".-1.139805159121280"}, {"nodeId": "N"}, {"nodeId": "139805159101200"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121280": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159121280", "variance": "INVARIANT"}}, "139805159101200": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159121504": {"type": "Function", "content": {"typeVars": [".-1.139805159121504"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159121504"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159121504"}, {"nodeId": "139805159101424"}, {"nodeId": "139805159101536"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121504": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159121504", "variance": "INVARIANT"}}, "139805159101424": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159101536": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159121728": {"type": "Function", "content": {"typeVars": [".-1.139805159121728"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159121728"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159121728"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159101648"}, {"nodeId": "139805159101760"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159121728": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159121728", "variance": "INVARIANT"}}, "139805159101648": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159101760": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159102656": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159122176"}, {"nodeId": "139805159122400"}, {"nodeId": "139805159122624"}, {"nodeId": "139805159122848"}]}}, "139805159122176": {"type": "Function", "content": {"typeVars": [".-1.139805159122176"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159122176"}, {"nodeId": ".-1.139805159122176"}, {"nodeId": "N"}, {"nodeId": "A"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122176": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159122176", "variance": "INVARIANT"}}, "139805159122400": {"type": "Function", "content": {"typeVars": [".-1.139805159122400"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159122400"}, {"nodeId": ".-1.139805159122400"}, {"nodeId": "N"}, {"nodeId": "139805159101872"}, {"nodeId": "139805167801568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_NAMED"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122400": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805267815136", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, "def": "139805159122400", "variance": "INVARIANT"}}, "139805159101872": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159122624": {"type": "Function", "content": {"typeVars": [".-1.139805159122624"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805267815136", "args": [{"nodeId": ".-1.139805159122624"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": ".-1.139805159122624"}, {"nodeId": "139805159102096"}, {"nodeId": "139805159102208"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122624": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159122624", "variance": "INVARIANT"}}, "139805159102096": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159102208": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159122848": {"type": "Function", "content": {"typeVars": [".-1.139805159122848"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159122848"}, {"nodeId": "139805267815488", "args": [{"nodeId": ".-1.139805159122848"}, {"nodeId": "139805481885312", "args": [{"nodeId": "139805481885664", "args": [{"nodeId": "139805481881792"}]}]}]}, {"nodeId": "139805159102320"}, {"nodeId": "139805159102432"}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "first", "second", "places", "msg", "delta"]}}, ".-1.139805159122848": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159122848", "variance": "INVARIANT"}}, "139805159102320": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805159102432": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159117472": {"type": "Function", "content": {"typeVars": [".-1.139805159117472"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159117472"}, {"nodeId": "139805159102544"}, {"nodeId": "139805159102768"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "expected_regex", "msg"]}}, ".-1.139805159117472": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159117472", "variance": "INVARIANT"}}, "139805159102544": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805159117472"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805159117472"}]}]}}, "139805159102768": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159118592": {"type": "Function", "content": {"typeVars": [".-1.139805159118592"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": ".-1.139805159118592"}, {"nodeId": "139805159102880"}, {"nodeId": "139805159102992"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "text", "unexpected_regex", "msg"]}}, ".-1.139805159118592": {"type": "TypeVar", "content": {"varName": "AnyStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805159118592", "variance": "INVARIANT"}}, "139805159102880": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805159118592"}, {"nodeId": "139805272045024", "args": [{"nodeId": ".-1.139805159118592"}]}]}}, "139805159102992": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805159103664": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805159123968"}, {"nodeId": "139805159124192"}]}}, "139805159123968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159103104"}, {"nodeId": "139805159103216"}, {"nodeId": "139805159117248"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "expected_exception", "expected_regex", "callable", "args", "kwargs"]}}, "139805159103104": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805159103216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, "139805159117248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805159124192": {"type": "Function", "content": {"typeVars": [".-1.139805159124192"], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805159103328"}, {"nodeId": "139805159103440"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805167802624", "args": [{"nodeId": ".-1.139805159124192"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_NAMED_OPT"], "argNames": ["self", "expected_exception", "expected_regex", "msg"]}}, "139805159103328": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276670784", "args": [{"nodeId": "0"}]}]}}, "139805159103440": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}]}}, ".-1.139805159124192": {"type": "TypeVar", "content": {"varName": "_E", "values": [], "upperBound": {"nodeId": "139805276675712"}, "def": "139805159124192", "variance": "INVARIANT"}}, "139805293650528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801920"}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "A"}, {"nodeId": "A"}]}, {"nodeId": "139805158634016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "subset", "dictionary", "msg"]}}, "139805158634016": {"type": "Union", "content": {"items": [{"nodeId": "139805481881792"}, {"nodeId": "N"}]}}, "139805167801216": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "SkipTest", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reason", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293059360"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805293059360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167801216"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "reason"]}}, "139805167804384": {"type": "Concrete", "content": {"module": "unittest.loader", "simpleName": "TestLoader", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "0"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testMethodPrefix", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sortTestMethodsUsing", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163701632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163353728"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "suiteClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163701744"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293138144"}, "name": "loadTestsFromTestCase"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293138592"}, "name": "loadTestsFromModule"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293139040"}, "name": "loadTestsFromName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "names", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293139488"}, "name": "loadTestsFromNames"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testCaseClass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293139936"}, "name": "getTestCaseNames"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "start_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "top_level_dir", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293140384"}, "name": "discover"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "full_path", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293140832"}, "name": "_match_path"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163701632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805242514272"}}}, "139805242514272": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805163353728": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805163701744": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163573024"}}}, "139805163573024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805167801920"}]}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805167806144": {"type": "Concrete", "content": {"module": "unittest.suite", "simpleName": "TestSuite", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "debug", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293264480"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "139805167805792"}], "isAbstract": false}}, "139805293264480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167806144"}, {"nodeId": "139805167800160"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "result", "debug"]}}, "139805167805792": {"type": "Concrete", "content": {"module": "unittest.suite", "simpleName": "BaseTestSuite", "members": [{"kind": "Variable", "content": {"name": "_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805167801920"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_removed_tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293260448"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293260896"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293261344"}, "name": "addTest"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tests", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293261792"}, "name": "addTests"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293262240"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293262688"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293263136"}, "name": "countTestCases"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293263584"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293264032"}, "name": "__eq__"}}], "typeVars": [], "bases": [{"nodeId": "139805481886016", "args": [{"nodeId": "139805163352832"}]}], "isAbstract": false}}, "139805293260448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805158636592"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "tests"]}}, "139805158636592": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805163352384": {"type": "Union", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805167806144"}]}}, "139805293260896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805167800160"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}}, "139805293261344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805158636704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805158636704": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293261792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805158636816"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "tests"]}}, "139805158636816": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293262240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805167800160"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "result"]}}, "139805293262688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293263136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293263584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805158636928"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805158636928": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293264032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805792"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805163352832": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805163352384"}}}, "139805293138144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}}, "139805293138592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805272033408"}, {"nodeId": "A"}, {"nodeId": "139805158868240"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT"], "argNames": ["self", "module", "args", "pattern"]}}, "139805158868240": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293139040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805158868352"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "module"]}}, "139805158868352": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293139488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805158868464"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "names", "module"]}}, "139805158868464": {"type": "Union", "content": {"items": [{"nodeId": "139805272033408"}, {"nodeId": "N"}]}}, "139805293139936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "testCaseClass"]}}, "139805293140384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805158868576"}], "returnType": {"nodeId": "139805167806144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "start_dir", "pattern", "top_level_dir"]}}, "139805158868576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293140832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "path", "full_path", "pattern"]}}, "139805167805088": {"type": "Concrete", "content": {"module": "unittest.main", "simpleName": "TestProgram", "members": [{"kind": "Variable", "content": {"name": "result", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805167800160"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702304"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702416"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702528"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702640"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "progName", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702752"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "testNamePatterns", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163702976"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defaultTest", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testRunner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "testLoader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exit", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "catchbreak", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293143968"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293144416"}, "name": "usageExit"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "argv", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293144864"}, "name": "parseArgs"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "from_discovery", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Loader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293145312"}, "name": "createTests"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293145760"}, "name": "runTests"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163702304": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805272033408"}]}}, "139805163702416": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163702528": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163702640": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805163702752": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805163702864": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805163702976": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805293143968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805158637040"}, {"nodeId": "139805158869584"}, {"nodeId": "139805158869696"}, {"nodeId": "139805158869808"}, {"nodeId": "139805167804384"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805158869920"}, {"nodeId": "139805158870032"}, {"nodeId": "139805158870144"}, {"nodeId": "139805158870256"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "module", "defaultTest", "argv", "testRunner", "testLoader", "exit", "verbosity", "failfast", "catchbreak", "buffer", "warnings", "tb_locals"]}}, "139805158637040": {"type": "Union", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805272033408"}]}}, "139805158869584": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805158869696": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "N"}]}}, "139805158869808": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805167804736"}, {"nodeId": "N"}]}}, "139805167804736": {"type": "Protocol", "content": {"module": "unittest.main", "simpleName": "_TestRunner", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293143520"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["run"]}}, "139805293143520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804736"}, {"nodeId": "139805158869360"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805158869360": {"type": "Union", "content": {"items": [{"nodeId": "139805167806144"}, {"nodeId": "139805167801920"}]}}, "139805158869920": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158870032": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158870144": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805158870256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805293144416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805158867904"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "msg"]}}, "139805158867904": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "N"}]}}, "139805293144864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "argv"]}}, "139805293145312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}, {"nodeId": "139805481882144"}, {"nodeId": "139805158870480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "from_discovery", "Loader"]}}, "139805158870480": {"type": "Union", "content": {"items": [{"nodeId": "139805167804384"}, {"nodeId": "N"}]}}, "139805293145760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167805088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805167803680": {"type": "Concrete", "content": {"module": "unittest.runner", "simpleName": "TextTestResult", "members": [{"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dots", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "separator1", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "separator2", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "showAll", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805277000928"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293253728"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293254176"}, "name": "getDescription"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "flavour", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293254624"}, "name": "printErrorList"}}], "typeVars": [], "bases": [{"nodeId": "139805167800160"}], "isAbstract": false}}, "139805293253728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803680"}, {"nodeId": "139805277000928"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "stream", "descriptions", "verbosity"]}}, "139805293254176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803680"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805293254624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803680"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805158867232"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "flavour", "errors"]}}, "139805158867232": {"type": "Tuple", "content": {"items": [{"nodeId": "139805167801920"}, {"nodeId": "139805276669024"}]}}, "139805167804032": {"type": "Concrete", "content": {"module": "unittest.runner", "simpleName": "TextTestRunner", "members": [{"kind": "Variable", "content": {"name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805163701072"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "descriptions", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "verbosity", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "failfast", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "resultclass", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "warnings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb_locals", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293255072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293255520"}, "name": "_makeResult"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293255968"}, "name": "run"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805163701072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805242514048"}}}, "139805242514048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805277000928"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805293255072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804032"}, {"nodeId": "139805158867344"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805158867568"}, {"nodeId": "139805158867680"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "stream", "descriptions", "verbosity", "failfast", "buffer", "resultclass", "warnings", "tb_locals"]}}, "139805158867344": {"type": "Union", "content": {"items": [{"nodeId": "139805277000928"}, {"nodeId": "N"}]}}, "139805158867568": {"type": "Union", "content": {"items": [{"nodeId": "139805158867456"}, {"nodeId": "N"}]}}, "139805158867456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805242514048"}}}, "139805158867680": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805293255520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804032"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293255968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167804032"}, {"nodeId": "139805158867792"}], "returnType": {"nodeId": "139805167800160"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test"]}}, "139805158867792": {"type": "Union", "content": {"items": [{"nodeId": "139805167806144"}, {"nodeId": "139805167801920"}]}}, "139805167803328": {"type": "Concrete", "content": {"module": "unittest.async_case", "simpleName": "IsolatedAsyncioTestCase", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805163559552"}, "name": "asyncSetUp"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805163567392"}, "name": "asyncTearDown"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288630304"}, "name": "addAsyncCleanup"}}], "typeVars": [], "bases": [{"nodeId": "139805167801920"}], "isAbstract": false}}, "139805163559552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803328"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805163567392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803328"}], "returnType": {"nodeId": "139805481887776", "args": [{"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805288630304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167803328"}, {"nodeId": "139805163556640"}, {"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805163556640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "0"}], "returnType": {"nodeId": "139805481887424", "args": [{"nodeId": "139805481881792"}]}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805272040800": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CompletedProcess", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805272040800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805272040800"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339180768"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339179872"}, "name": "check_returncode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805339179424"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805272040800"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805272040800": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805272040800", "variance": "INVARIANT"}}, "139805339180768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272040800", "args": [{"nodeId": ".1.139805272040800"}]}, {"nodeId": "139805264368848"}, {"nodeId": "139805481893056"}, {"nodeId": "139805264368960"}, {"nodeId": "139805264369072"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "args", "returncode", "stdout", "stderr"]}}, "139805264368848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805264368960": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272040800"}, {"nodeId": "N"}]}}, "139805264369072": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805272040800"}, {"nodeId": "N"}]}}, "139805339179872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272040800", "args": [{"nodeId": ".1.139805272040800"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805339179424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805272041152": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "SubprocessError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805272041504": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "TimeoutExpired", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805296964128"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263532368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268560464"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272041152"}], "isAbstract": false}}, "139805296964128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272041504"}, {"nodeId": "139805259311232"}, {"nodeId": "139805481893408"}, {"nodeId": "139805259311344"}, {"nodeId": "139805259311456"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "cmd", "timeout", "output", "stderr"]}}, "139805259311232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259311344": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805259311456": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805263532368": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805268560464": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805272041856": {"type": "Concrete", "content": {"module": "subprocess", "simpleName": "CalledProcessError", "members": [{"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stdout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "returncode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cmd", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "output", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stderr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805296964576"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805272041152"}], "isAbstract": false}}, "139805296964576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272041856"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259311568"}, {"nodeId": "139805259311680"}, {"nodeId": "139805259311792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "returncode", "cmd", "output", "stderr"]}}, "139805259311568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268559568"}}}, "139805259311680": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805259311792": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805184481888": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CDataMeta", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292785312"}, "name": "__mul__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292785760"}, "name": "__rmul__"}}], "typeVars": [], "bases": [{"nodeId": "139805481892352"}], "isAbstract": false}}, "139805292785312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805292785760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805171900032": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_Pointer", "members": [{"kind": "Variable", "content": {"name": "_type_", "isProperty": false, "isSelf": false, "type": {"nodeId": "0"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "contents", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805171900032"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805171766704"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805171776896"}, "items": [{"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__getitem__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314713632"}, "name": "__setitem__"}}], "typeVars": [{"nodeId": ".1.139805171900032"}], "bases": [{"nodeId": "139805184483296"}, {"nodeId": "139805184482240"}], "isAbstract": false}}, ".1.139805171900032": {"type": "TypeVar", "content": {"varName": "_CT", "values": [], "upperBound": {"nodeId": "139805184482240"}, "def": "139805171900032", "variance": "INVARIANT"}}, "139805171766704": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314711840"}, {"nodeId": "139805314712288"}]}}, "139805314711840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805314712288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": ".1.139805171900032"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "arg"]}}, "139805171776896": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805314712736"}, {"nodeId": "139805314713184"}]}}, "139805314712736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314713184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": "139805276670432"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805314713632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171900032", "args": [{"nodeId": ".1.139805171900032"}]}, {"nodeId": "139805481893056"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805184484352": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_CField", "members": [{"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805184484704": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "_StructUnionMeta", "members": [{"kind": "Variable", "content": {"name": "_fields_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481889888", "args": [{"nodeId": "139805171766032"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_pack_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_anonymous_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805314718112"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805184481888"}], "isAbstract": false}}, "139805171766032": {"type": "Union", "content": {"items": [{"nodeId": "139805171765696"}, {"nodeId": "139805171765920"}]}}, "139805171765696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}]}}, "139805171765920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "0"}, {"nodeId": "139805481893056"}]}}, "139805314718112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184484704"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805184484352"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805184485408": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "Union", "members": [], "typeVars": [], "bases": [{"nodeId": "139805184485056"}], "isAbstract": false}}, "139805184486112": {"type": "Concrete", "content": {"module": "_ctypes", "simpleName": "ArgumentError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805193087712": {"type": "Concrete", "content": {"module": "time", "simpleName": "struct_time", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805184111920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_year", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183984800"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mon", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985248"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_mday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_hour", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985696"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_min", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183985920"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_sec", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_wday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986368"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_yday", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_isdst", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183986816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_zone", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183987040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tm_gmtoff", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805183987264"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "139805184099488"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805481893056"}]}], "isAbstract": false}}, "139805184111920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805183984800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100384"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100384": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100496"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100496": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100608"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100608": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100720"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183985920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100832"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100832": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184100944"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184100944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101056"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101056": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101168"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101168": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183986816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101280"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101280": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183987040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101392"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101392": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805183987264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805184101504"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805184101504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805184099488": {"type": "Union", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}}, "139805193088064": {"type": "Protocol", "content": {"module": "time", "simpleName": "_ClockInfo", "members": [{"kind": "Variable", "content": {"name": "adjustable", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "implementation", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "monotonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "resolution", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["adjustable", "implementation", "monotonic", "resolution"]}}, "139805272043968": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "error", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272232496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272232608"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301249120"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805272232496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805272232608": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805301249120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043968"}, {"nodeId": "139805276669024"}, {"nodeId": "139805259382592"}, {"nodeId": "139805259382256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "msg", "pattern", "pos"]}}, "139805259382592": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "N"}]}}, "139805259382256": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272044320": {"type": "Concrete", "content": {"module": "sre_constants", "simpleName": "_NamedIntConstant", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301249568"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805481893056"}], "isAbstract": false}}, "139805301249568": {"type": "Function", "content": {"typeVars": [".0.139805301249568"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".0.139805301249568"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["cls", "value", "name"]}}, ".0.139805301249568": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272044320"}, "def": "139805301249568", "variance": "INVARIANT"}}, "139805267807392": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_WritableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301250912"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301251360"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301251808"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["close", "seek", "write"]}}, "139805301250912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807392"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805301251360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807392"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805301251808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807392"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267807744": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_ReadableStream", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301252256"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301252704"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301253152"}, "name": "close"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["close", "read", "seek"]}}, "139805301252256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807744"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", null]}}, "139805301252704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807744"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805301253152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267807744"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268517184": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Stream", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267807392"}, {"nodeId": "139805267807744"}], "protocolMembers": ["close", "read", "seek", "write"]}}, "139805267808096": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Encoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301253600"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301253600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267808096"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255947248"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255947248": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805267808448": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_Decoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301254048"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301254048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267808448"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255947472"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255947472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805267808800": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamReader", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301254496"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301254496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267808800"}, {"nodeId": "139805267807744"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805268518944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805268518944": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReader", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805267807744"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309634592"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "firstline", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309635040"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309635488"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "keepends", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309635936"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309636384"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309636832"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309637280"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309637728"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309638176"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309638624"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805267810208"}], "isAbstract": false}}, "139805309634592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805267807744"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805309635040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "chars", "firstline"]}}, "139805309635488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805255953632"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "size", "keepends"]}}, "139805255953632": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309635936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805255953744"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "sizehint", "keepends"]}}, "139805255953744": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309636384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309636832": {"type": "Function", "content": {"typeVars": [".0.139805309636832"], "argTypes": [{"nodeId": ".0.139805309636832"}], "returnType": {"nodeId": ".0.139805309636832"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309636832": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268518944"}, "def": "139805309636832", "variance": "INVARIANT"}}, "139805309637280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805255953968"}, {"nodeId": "139805255954080"}, {"nodeId": "139805255954192"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255953968": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255954080": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255954192": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309637728": {"type": "Function", "content": {"typeVars": [".0.139805309637728"], "argTypes": [{"nodeId": ".0.139805309637728"}], "returnType": {"nodeId": ".0.139805309637728"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309637728": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268518944"}, "def": "139805309637728", "variance": "INVARIANT"}}, "139805309638176": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309638624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518944"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255285696"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805255285696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267810208": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "Codec", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310065504"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310065952"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805310065504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810208"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255951504"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255951504": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805310065952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810208"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255951728"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "errors"]}}, "139805255951728": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805267809152": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_StreamWriter", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301254944"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301254944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267809152"}, {"nodeId": "139805267807392"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805268518592"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805268518592": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805267807392"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310073568"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310074016"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310074464"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309632800"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309633248"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309633696"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "getattr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309634144"}, "name": "__getattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805267810208"}], "isAbstract": false}}, "139805310073568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805267807392"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "errors"]}}, "139805310074016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "object"]}}, "139805310074464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139805309632800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309633248": {"type": "Function", "content": {"typeVars": [".0.139805309633248"], "argTypes": [{"nodeId": ".0.139805309633248"}], "returnType": {"nodeId": ".0.139805309633248"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309633248": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268518592"}, "def": "139805309633248", "variance": "INVARIANT"}}, "139805309633696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805255953072"}, {"nodeId": "139805255953184"}, {"nodeId": "139805255953296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255953072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255953184": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255953296": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309634144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518592"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255285248"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": [null, null, null]}}, "139805255285248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805267809504": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalEncoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301255392"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301255392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267809504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805267810560"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805267810560": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "IncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310066400"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213958528"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310067296"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310067744"}, "name": "getstate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310068192"}, "name": "setstate"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805310066400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213958528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805310067296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805310067744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}], "returnType": {"nodeId": "139805255951840"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255951840": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805310068192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267810560"}, {"nodeId": "139805255951952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "state"]}}, "139805255951952": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805267809856": {"type": "Protocol", "content": {"module": "codecs", "simpleName": "_IncrementalDecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301255840"}, "name": "__call__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__call__"]}}, "139805301255840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267809856"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805267810912"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805268517536": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "CodecInfo", "members": [{"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805214035072"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805214031936"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213998688"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213997792"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213998240"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805213996448"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamreader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "streamwriter", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementalencoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "incrementaldecoder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_is_text_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805301258976"}, "name": "__new__"}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805481881792"}]}], "isAbstract": false}}, "139805214035072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255947696"}], "returnType": {"nodeId": "139805267808096"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255947696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805214031936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255947808"}], "returnType": {"nodeId": "139805267808448"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255947808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213998688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255947920"}], "returnType": {"nodeId": "139805267808800"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255947920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213997792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255948032"}], "returnType": {"nodeId": "139805267809152"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255948032": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213998240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255948144"}], "returnType": {"nodeId": "139805267809504"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255948144": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805213996448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805255948256"}], "returnType": {"nodeId": "139805267809856"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255948256": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805301258976": {"type": "Function", "content": {"typeVars": [".0.139805301258976"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805255948480"}, {"nodeId": "139805255948592"}, {"nodeId": "139805255948704"}, {"nodeId": "139805255948816"}, {"nodeId": "139805255948928"}, {"nodeId": "139805255949040"}], "returnType": {"nodeId": ".0.139805301258976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["cls", "encode", "decode", "streamreader", "streamwriter", "incrementalencoder", "incrementaldecoder", "name", "_is_text_encoding"]}}, "139805255948480": {"type": "Union", "content": {"items": [{"nodeId": "139805267808800"}, {"nodeId": "N"}]}}, "139805255948592": {"type": "Union", "content": {"items": [{"nodeId": "139805267809152"}, {"nodeId": "N"}]}}, "139805255948704": {"type": "Union", "content": {"items": [{"nodeId": "139805267809504"}, {"nodeId": "N"}]}}, "139805255948816": {"type": "Union", "content": {"items": [{"nodeId": "139805267809856"}, {"nodeId": "N"}]}}, "139805255948928": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255949040": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, ".0.139805301258976": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805255947024"}, "def": "139805301258976", "variance": "INVARIANT"}}, "139805255947024": {"type": "Tuple", "content": {"items": [{"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}]}}, "139805268517888": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalEncoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310070880"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213956736"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310071776"}, "name": "encode"}}], "typeVars": [], "bases": [{"nodeId": "139805267810560"}], "isAbstract": true}}, "139805310070880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268517888"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213956736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268517888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255952624"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139805255952624": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805481893056"}]}}, "139805310071776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268517888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805268518240": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "BufferedIncrementalDecoder", "members": [{"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669376"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310072224"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "_buffer_decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805213955616"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "final", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805310073120"}, "name": "decode"}}], "typeVars": [], "bases": [{"nodeId": "139805267810912"}], "isAbstract": true}}, "139805310072224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "errors"]}}, "139805213955616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518240"}, {"nodeId": "139805277011488"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255952848"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "input", "errors", "final"]}}, "139805255952848": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805310073120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268518240"}, {"nodeId": "139805277011488"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "input", "final"]}}, "139805268519296": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamReaderWriter", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268517184"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309639072"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309639520"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309639968"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309640416"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309640864"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309641312"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309641760"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309642208"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309642656"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309643104"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309643552"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309644000"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309644448"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309644896"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309645344"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309645792"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309646240"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309646688"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309647136"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309647584"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309648032"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309648480"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139805277000928"}], "isAbstract": false}}, "139805309639072": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805268517184"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "Reader", "Writer", "errors"]}}, "139805309639520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805309639968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255954528"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255954528": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309640416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255954640"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139805255954640": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309640864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309641312": {"type": "Function", "content": {"typeVars": [".0.139805309641312"], "argTypes": [{"nodeId": ".0.139805309641312"}], "returnType": {"nodeId": ".0.139805309641312"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309641312": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519296"}, "def": "139805309641312", "variance": "INVARIANT"}}, "139805309641760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139805309642208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139805309642656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309643104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139805309643552": {"type": "Function", "content": {"typeVars": [".0.139805309643552"], "argTypes": [{"nodeId": ".0.139805309643552"}], "returnType": {"nodeId": ".0.139805309643552"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309643552": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805268519296"}, "def": "139805309643552", "variance": "INVARIANT"}}, "139805309644000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255954864"}, {"nodeId": "139805255954976"}, {"nodeId": "139805255955088"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255954864": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255954976": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255955088": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309644448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805309644896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309645344": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309645792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309646240": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309646688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309647136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}, {"nodeId": "139805255955312"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255955312": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309647584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309648032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309648480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268519296"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805267811264": {"type": "Concrete", "content": {"module": "codecs", "simpleName": "StreamRecoder", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Reader", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "Writer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309813024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309813472"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309813920"}, "name": "readline"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sizehint", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309814368"}, "name": "readlines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309814816"}, "name": "__next__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309815264"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309815712"}, "name": "write"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "list", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309816160"}, "name": "writelines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309816608"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309817056"}, "name": "__getattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309817504"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309817952"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "whence", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309818400"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309818848"}, "name": "close"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309819296"}, "name": "fileno"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309819744"}, "name": "flush"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309820192"}, "name": "isatty"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309820640"}, "name": "readable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "size", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309821088"}, "name": "truncate"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309821536"}, "name": "seekable"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309821984"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309822432"}, "name": "writable"}}], "typeVars": [], "bases": [{"nodeId": "139805277000576"}], "isAbstract": false}}, "139805309813024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805268517184"}, {"nodeId": "139805267808096"}, {"nodeId": "139805267808448"}, {"nodeId": "139805267808800"}, {"nodeId": "139805267809152"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "stream", "encode", "decode", "Reader", "Writer", "errors"]}}, "139805309813472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805309813920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255955424"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255955424": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309814368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255955536"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669376"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "sizehint"]}}, "139805255955536": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309814816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309815264": {"type": "Function", "content": {"typeVars": [".0.139805309815264"], "argTypes": [{"nodeId": ".0.139805309815264"}], "returnType": {"nodeId": ".0.139805309815264"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309815264": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267811264"}, "def": "139805309815264", "variance": "INVARIANT"}}, "139805309815712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805276669376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "data"]}}, "139805309816160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669376"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "list"]}}, "139805309816608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309817056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805309817504": {"type": "Function", "content": {"typeVars": [".0.139805309817504"], "argTypes": [{"nodeId": ".0.139805309817504"}], "returnType": {"nodeId": ".0.139805309817504"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".0.139805309817504": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805267811264"}, "def": "139805309817504", "variance": "INVARIANT"}}, "139805309817952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255955872"}, {"nodeId": "139805255955984"}, {"nodeId": "139805255956096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805255955872": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805255955984": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805255956096": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805309818400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "offset", "whence"]}}, "139805309818848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309819296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309819744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309820192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309820640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309821088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}, {"nodeId": "139805255956208"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "size"]}}, "139805255956208": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805309821536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309821984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805309822432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267811264"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272608608": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "PackageNotFoundError", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226532448"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805276865280"}], "isAbstract": false}}, "139805226532448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608608"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272609312": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "EntryPoint", "members": [{"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309828256"}, "name": "load"}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226530432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "module", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226529760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226530208"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dist", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272244032"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "module", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "attr", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extras", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309568160"}, "name": "matches"}}], "typeVars": [], "bases": [{"nodeId": "139805272608960"}], "isAbstract": false}}, "139805309828256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223360"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223360": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805226530432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223584"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223584": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805226529760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223696"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223696": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805226530208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223808"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260223808": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805272244032": {"type": "Union", "content": {"items": [{"nodeId": "139805272610720"}, {"nodeId": "N"}]}}, "139805309568160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805260223920"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139805260223920": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805272608960": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "_EntryPointBase", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_fields", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272242912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_types", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_field_defaults", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272242464"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276234560"}, "name": "_replace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276238368"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "_self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276232768"}, "name": "_asdict"}}, {"kind": "Variable", "content": {"name": "_make", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276240608"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139805276670784", "args": [{"nodeId": "139805276669024"}]}], "isAbstract": false}}, "139805272242912": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805272242464": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "0"}, {"nodeId": "0"}]}}, "139805276234560": {"type": "Function", "content": {"typeVars": [".-1.139805276234560"], "argTypes": [{"nodeId": ".-1.139805276234560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".-1.139805276234560"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["_self", "name", "value", "group"]}}, ".-1.139805276234560": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276234560", "variance": "INVARIANT"}}, "139805272242688": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805276238368": {"type": "Function", "content": {"typeVars": [".-1.139805276238368"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": ".-1.139805276238368"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["_cls", "name", "value", "group"]}}, ".-1.139805276238368": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276238368", "variance": "INVARIANT"}}, "139805276232768": {"type": "Function", "content": {"typeVars": [".-1.139805276232768"], "argTypes": [{"nodeId": ".-1.139805276232768"}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["_self"]}}, ".-1.139805276232768": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276232768", "variance": "INVARIANT"}}, "139805276240608": {"type": "Function", "content": {"typeVars": [".-1.139805276240608"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}], "returnType": {"nodeId": ".-1.139805276240608"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["_cls", "iterable"]}}, ".-1.139805276240608": {"type": "TypeVar", "content": {"varName": "_NT", "values": [], "upperBound": {"nodeId": "139805272242688"}, "def": "139805276240608", "variance": "INVARIANT"}}, "139805272610016": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "SelectableGroups", "members": [{"kind": "Variable", "content": {"name": "load", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226519904"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226519456"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "names", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805226519232"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805260222688"}, "items": [{"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "select", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "select"}}], "typeVars": [], "bases": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805272609664"}]}], "isAbstract": false}}, "139805226519904": {"type": "Function", "content": {"typeVars": [".0.139805226519904"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805260224256"}]}], "returnType": {"nodeId": ".0.139805226519904"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "eps"]}}, "139805260224256": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268567072"}}}, ".0.139805226519904": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272610016"}, "def": "139805226519904", "variance": "INVARIANT"}}, "139805226519456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610016"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805226519232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610016"}], "returnType": {"nodeId": "139805277003040", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805260222688": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805309571744"}, {"nodeId": "139805309572192"}]}}, "139805309571744": {"type": "Function", "content": {"typeVars": [".0.139805309571744"], "argTypes": [{"nodeId": ".0.139805309571744"}], "returnType": {"nodeId": ".0.139805309571744"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805309571744": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272610016"}, "def": "139805309571744", "variance": "INVARIANT"}}, "139805309572192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272610016"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805272609664"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "name", "value", "group", "module", "attr", "extras"]}}, "139805268513664": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "DistributionFinder", "members": [{"kind": "ClassDef", "content": {"type": {"nodeId": "139805268514016"}}}, {"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226496992"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805272614240"}], "isAbstract": true}}, "139805226496992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268513664"}, {"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272610720"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "context"]}}, "139805268514368": {"type": "Concrete", "content": {"module": "importlib.metadata", "simpleName": "MetadataPathFinder", "members": [{"kind": "Variable", "content": {"name": "find_distributions", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805226495648"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805309582496"}, "name": "invalidate_caches"}}], "typeVars": [], "bases": [{"nodeId": "139805268513664"}], "isAbstract": false}}, "139805226495648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805268514016"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805272611072"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["cls", "context"]}}, "139805309582496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268514368"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["cls"]}}, "139805193085600": {"type": "Concrete", "content": {"module": "functools", "simpleName": "_lru_cache_wrapper", "members": [{"kind": "Variable", "content": {"name": "__wrapped__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188033888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305774688"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305775136"}, "name": "cache_info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305775584"}, "name": "cache_clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305776032"}, "name": "cache_parameters"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305776480"}, "name": "__copy__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__memo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305776928"}, "name": "__deepcopy__"}}], "typeVars": [{"nodeId": ".1.139805193085600"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193085600": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193085600", "variance": "INVARIANT"}}, "139805188033888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085600"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305774688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, {"nodeId": "139805276998112"}, {"nodeId": "139805276998112"}], "returnType": {"nodeId": ".1.139805193085600"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "args", "kwargs"]}}, "139805305775136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "139805187984512"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805187984512": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805187928944"}}}, "139805187928944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805187927936"}, {"nodeId": "139805481893056"}]}}, "139805187927936": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805305775584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305776032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "139805187984624"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805187984624": {"type": "TypeAlias", "content": {"target": {"nodeId": "0"}}}, "139805305776480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}], "returnType": {"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305776928": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805193085600", "args": [{"nodeId": ".1.139805193085600"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805193085952": {"type": "Concrete", "content": {"module": "functools", "simpleName": "partial", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188020864"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188021312"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188021536"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305799392"}, "name": "__new__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305799840"}, "name": "__call__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305800288"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805193085952"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193085952": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193085952", "variance": "INVARIANT"}}, "139805188020864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}], "returnType": {"nodeId": "139805188079200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188079200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085952"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188021312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}], "returnType": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188021536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}], "returnType": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305799392": {"type": "Function", "content": {"typeVars": [".0.139805305799392"], "argTypes": [{"nodeId": "0"}, {"nodeId": "139805188075616"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805305799392"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["cls", null, "args", "kwargs"]}}, "139805188075616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085952"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, ".0.139805305799392": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}, "def": "139805305799392", "variance": "INVARIANT"}}, "139805305799840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193085952", "args": [{"nodeId": ".1.139805193085952"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193085952"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}}, "139805305800288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805193086304": {"type": "Concrete", "content": {"module": "functools", "simpleName": "partialmethod", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805187981600"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "keywords", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187983280"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305801632"}, "name": "__get__"}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188023776"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305802976"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805193086304"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193086304": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193086304", "variance": "INVARIANT"}}, "139805187981600": {"type": "Union", "content": {"items": [{"nodeId": "139805188033664"}, {"nodeId": "139805187981488"}]}}, "139805188033664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805187981488": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805187983280": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305800736"}, {"nodeId": "139805305801184"}]}}, "139805305800736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}, {"nodeId": "139805188078976"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}}, "139805188078976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305801184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}, {"nodeId": "139805187986976"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "keywords"]}}, "139805187986976": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805305801632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}, {"nodeId": "A"}, {"nodeId": "139805187987536"}], "returnType": {"nodeId": "139805188078528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}}, "139805187987536": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188078528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086304"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188023776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086304", "args": [{"nodeId": ".1.139805193086304"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305802976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805193086656": {"type": "Concrete", "content": {"module": "functools", "simpleName": "_SingleDispatchCallable", "members": [{"kind": "Variable", "content": {"name": "registry", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272032352", "args": [{"nodeId": "A"}, {"nodeId": "139805188033216"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305803424"}, "name": "dispatch"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187984848"}, "items": [{"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "register"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305805216"}, "name": "_clear_cache"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "__self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305805664"}, "name": "__call__"}}], "typeVars": [{"nodeId": ".1.139805193086656"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193086656": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193086656", "variance": "INVARIANT"}}, "139805188033216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305803424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "A"}], "returnType": {"nodeId": "139805188078080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "cls"]}}, "139805188078080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805187984848": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305803872"}, {"nodeId": "139805305804320"}, {"nodeId": "139805305804768"}]}}, "139805305803872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188078752"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}}, "139805188078752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188077632"}], "returnType": {"nodeId": "139805188077408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188077632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188077408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305804320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "139805188078304"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188076960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "func"]}}, "139805188078304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188076960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305804768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "0"}, {"nodeId": "139805188077856"}], "returnType": {"nodeId": "139805188076512"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "func"]}}, "139805188077856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188076512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305805216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305805664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193086656"}]}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193086656"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": [null, "args", "kwargs"]}}, "139805193087008": {"type": "Concrete", "content": {"module": "functools", "simpleName": "singledispatchmethod", "members": [{"kind": "Variable", "content": {"name": "dispatcher", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193086656", "args": [{"nodeId": ".1.139805193087008"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188032992"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305806560"}, "name": "__init__"}}, {"kind": "Variable", "content": {"name": "__isabstractmethod__", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188025120"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187986528"}, "items": [{"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "register", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "register"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305808800"}, "name": "__get__"}}], "typeVars": [{"nodeId": ".1.139805193087008"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193087008": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193087008", "variance": "INVARIANT"}}, "139805188032992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305806560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "139805188076064"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, "139805188076064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188025120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805187986528": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305807456"}, {"nodeId": "139805305807904"}, {"nodeId": "139805305808352"}]}}, "139805305807456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "0"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188216576"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}}, "139805188216576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188216352"}], "returnType": {"nodeId": "139805188216800"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188216352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188216800": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305807904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "139805188192992"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805188190976"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "cls", "method"]}}, "139805188192992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188190976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305808352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": "0"}, {"nodeId": "139805188191872"}], "returnType": {"nodeId": "139805188191648"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "cls", "method"]}}, "139805188191872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188191648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805305808800": {"type": "Function", "content": {"typeVars": [".-1.139805305808800"], "argTypes": [{"nodeId": "139805193087008", "args": [{"nodeId": ".1.139805193087008"}]}, {"nodeId": ".-1.139805305808800"}, {"nodeId": "139805187990560"}], "returnType": {"nodeId": "139805188192320"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "obj", "cls"]}}, ".-1.139805305808800": {"type": "TypeVar", "content": {"varName": "_S", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805305808800", "variance": "INVARIANT"}}, "139805187990560": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188192320": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087008"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805193087360": {"type": "Concrete", "content": {"module": "functools", "simpleName": "cached_property", "members": [{"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188032768"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "attrname", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805187982832"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "func", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305809248"}, "name": "__init__"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805187988096"}, "items": [{"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__get__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__get__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "owner", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305810592"}, "name": "__set_name__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "instance", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305811040"}, "name": "__set__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "cls", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "item", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305811488"}, "name": "__class_getitem__"}}], "typeVars": [{"nodeId": ".1.139805193087360"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805193087360": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805193087360", "variance": "INVARIANT"}}, "139805188032768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805187982832": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805305809248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "139805188192096"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "func"]}}, "139805188192096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": ".1.139805193087360"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805187988096": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805305809696"}, {"nodeId": "139805305810144"}]}}, "139805305809696": {"type": "Function", "content": {"typeVars": [".0.139805305809696"], "argTypes": [{"nodeId": ".0.139805305809696"}, {"nodeId": "N"}, {"nodeId": "139805187991120"}], "returnType": {"nodeId": ".0.139805305809696"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}}, ".0.139805305809696": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, "def": "139805305809696", "variance": "INVARIANT"}}, "139805187991120": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805305810144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805187991344"}], "returnType": {"nodeId": ".1.139805193087360"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "instance", "owner"]}}, "139805187991344": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805305810592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "0"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "owner", "name"]}}, "139805305811040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193087360", "args": [{"nodeId": ".1.139805193087360"}]}, {"nodeId": "139805481881792"}, {"nodeId": ".1.139805193087360"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "instance", "value"]}}, "139805305811488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "0"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805272038688"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["cls", "item"]}}, "139805193084192": {"type": "Concrete", "content": {"module": "numpy.polynomial.polyutils", "simpleName": "RankWarning", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276875136"}], "isAbstract": false}}, "139805193079264": {"type": "Concrete", "content": {"module": "threading", "simpleName": "ThreadError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805193079616": {"type": "Concrete", "content": {"module": "threading", "simpleName": "local", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305905760"}, "name": "__getattribute__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305906208"}, "name": "__setattr__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305906656"}, "name": "__delattr__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805305905760": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079616"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805305906208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079616"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805305906656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079616"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805193079968": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Thread", "members": [{"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ident", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188326336"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "group", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "target", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "daemon", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305907552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305908000"}, "name": "start"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305908448"}, "name": "run"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305908896"}, "name": "join"}}, {"kind": "Variable", "content": {"name": "native_id", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188325664"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305909792"}, "name": "is_alive"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305910688"}, "name": "getName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305911136"}, "name": "setName"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305911584"}, "name": "isDaemon"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "daemonic", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305912032"}, "name": "setDaemon"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188326336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805188791920"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188791920": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805305907552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "N"}, {"nodeId": "139805188792144"}, {"nodeId": "139805188792256"}, {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "139805188792592"}, {"nodeId": "139805188792704"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "group", "target", "name", "args", "kwargs", "daemon"]}}, "139805188792144": {"type": "Union", "content": {"items": [{"nodeId": "139805226332480"}, {"nodeId": "N"}]}}, "139805226332480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188792256": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805188792592": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805188792704": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "N"}]}}, "139805305908000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305908448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305908896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "139805188792816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188792816": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805188325664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805188792928"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188792928": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805305909792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305910688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305911136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805305911584": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805305912032": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193079968"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "daemonic"]}}, "139805193080320": {"type": "Concrete", "content": {"module": "threading", "simpleName": "_DummyThread", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805305912480"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805193079968"}], "isAbstract": false}}, "139805305912480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193080320"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193081024": {"type": "Concrete", "content": {"module": "threading", "simpleName": "_RLock", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292939296"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292939744"}, "name": "release"}}, {"kind": "Variable", "content": {"name": "__enter__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188338656"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292940192"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292939296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292939744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188338656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292940192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081024"}, {"nodeId": "139805188793376"}, {"nodeId": "139805188793488"}, {"nodeId": "139805188793600"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188793376": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188793488": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188793600": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805193081376": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Condition", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "lock", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292940640"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292941088"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292941536"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292941984"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292942432"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292942880"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "predicate", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292943328"}, "name": "wait_for"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292943776"}, "name": "notify"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292944224"}, "name": "notify_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292944672"}, "name": "notifyAll"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292940640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805188793712"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "lock"]}}, "139805188793712": {"type": "Union", "content": {"items": [{"nodeId": "139805193080672"}, {"nodeId": "139805193081024"}, {"nodeId": "N"}]}}, "139805292941088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805292941536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805188793824"}, {"nodeId": "139805188793936"}, {"nodeId": "139805188794048"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188793824": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188793936": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188794048": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292941984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805292942432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292942880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805188794160"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188794160": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292943328": {"type": "Function", "content": {"typeVars": [".-1.139805292943328"], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805226332704"}, {"nodeId": "139805188794272"}], "returnType": {"nodeId": ".-1.139805292943328"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "predicate", "timeout"]}}, "139805226332704": {"type": "Function", "content": {"typeVars": [".-1.139805226332704"], "argTypes": [], "returnType": {"nodeId": ".-1.139805226332704"}, "argKinds": [], "argNames": []}}, ".-1.139805226332704": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805226332704", "variance": "INVARIANT"}}, "139805188794272": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, ".-1.139805292943328": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805292943328", "variance": "INVARIANT"}}, "139805292943776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805292944224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292944672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081376"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193081728": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Semaphore", "members": [{"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292945120"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "t", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "v", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tb", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292945568"}, "name": "__exit__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292946016"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292946464"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292946912"}, "name": "release"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292945120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "value"]}}, "139805292945568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805188794384"}, {"nodeId": "139805188794496"}, {"nodeId": "139805188794608"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188794384": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188794496": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188794608": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805292946016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188794720"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805188794720": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292946464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188794832"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": [null, null, null]}}, "139805188794832": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292946912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193081728"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "n"]}}, "139805193082080": {"type": "Concrete", "content": {"module": "threading", "simpleName": "BoundedSemaphore", "members": [], "typeVars": [], "bases": [{"nodeId": "139805193081728"}], "isAbstract": false}}, "139805193082432": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Event", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292947808"}, "name": "is_set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292948256"}, "name": "isSet"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292948704"}, "name": "set"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292949152"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292949600"}, "name": "wait"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805292947808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292948256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292948704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292949152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292949600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082432"}, {"nodeId": "139805188794944"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188794944": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805193082784": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Timer", "members": [{"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "finished", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193082432"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805242519424"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893408"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "interval", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "function", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292950048"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292950496"}, "name": "cancel"}}], "typeVars": [], "bases": [{"nodeId": "139805193079968"}], "isAbstract": false}}, "139805242519424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805292950048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082784"}, {"nodeId": "139805481893408"}, {"nodeId": "139805226331808"}, {"nodeId": "139805188795280"}, {"nodeId": "139805188795504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "interval", "function", "args", "kwargs"]}}, "139805226331808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805481881792"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805188795280": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805188795504": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805292950496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193082784"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193083136": {"type": "Concrete", "content": {"module": "threading", "simpleName": "Barrier", "members": [{"kind": "Variable", "content": {"name": "parties", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188214560"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "n_waiting", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188215008"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "broken", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188215232"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parties", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "action", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292952288"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292952736"}, "name": "wait"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805292953184"}, "name": "reset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293052192"}, "name": "abort"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188214560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188215008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188215232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805292952288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}, {"nodeId": "139805481893056"}, {"nodeId": "139805188795616"}, {"nodeId": "139805188795728"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "parties", "action", "timeout"]}}, "139805188795616": {"type": "Union", "content": {"items": [{"nodeId": "139805242594848"}, {"nodeId": "N"}]}}, "139805242594848": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "N"}, "argKinds": [], "argNames": []}}, "139805188795728": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292952736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}, {"nodeId": "139805188795840"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "timeout"]}}, "139805188795840": {"type": "Union", "content": {"items": [{"nodeId": "139805481893408"}, {"nodeId": "N"}]}}, "139805292953184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805293052192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193083136"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805193083488": {"type": "Concrete", "content": {"module": "threading", "simpleName": "BrokenBarrierError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276681696"}], "isAbstract": false}}, "139805167800864": {"type": "Concrete", "content": {"module": "unittest.case", "simpleName": "_BaseTestCaseContext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "test_case", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805293054432"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805293054432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805167800864"}, {"nodeId": "139805167801920"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "test_case"]}}, "139805171908128": {"type": "Concrete", "content": {"module": "warnings", "simpleName": "_OptionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805193078208": {"type": "Concrete", "content": {"module": "json.decoder", "simpleName": "JSONDecodeError", "members": [{"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lineno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "colno", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "doc", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276015968"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276683456"}], "isAbstract": false}}, "139805276015968": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078208"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "doc", "pos"]}}, "139805193078560": {"type": "Concrete", "content": {"module": "json.decoder", "simpleName": "JSONDecoder", "members": [{"kind": "Variable", "content": {"name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188399264"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188399040"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188398816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188398592"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188398368"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_float", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_int", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "parse_constant", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "strict", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "object_pairs_hook", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276016416"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_w", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276016864"}, "name": "decode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "idx", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276017312"}, "name": "raw_decode"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188399264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188399040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188398816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188398592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188398368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805188676000"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188676000": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805276016416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078560"}, {"nodeId": "139805188676224"}, {"nodeId": "139805188676560"}, {"nodeId": "139805188676784"}, {"nodeId": "139805188677008"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188677232"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "object_hook", "parse_float", "parse_int", "parse_constant", "strict", "object_pairs_hook"]}}, "139805188676224": {"type": "Union", "content": {"items": [{"nodeId": "139805188398144"}, {"nodeId": "N"}]}}, "139805188398144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188676560": {"type": "Union", "content": {"items": [{"nodeId": "139805188397696"}, {"nodeId": "N"}]}}, "139805188397696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188676784": {"type": "Union", "content": {"items": [{"nodeId": "139805188397920"}, {"nodeId": "N"}]}}, "139805188397920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188677008": {"type": "Union", "content": {"items": [{"nodeId": "139805188395456"}, {"nodeId": "N"}]}}, "139805188395456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188677232": {"type": "Union", "content": {"items": [{"nodeId": "139805188393888"}, {"nodeId": "N"}]}}, "139805188393888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805188677568"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805188677568": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}}, "139805276016864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805188395680"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "_w"]}}, "139805188395680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276017312": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078560"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805188678352"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "s", "idx"]}}, "139805188678352": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481893056"}]}}, "139805193077856": {"type": "Concrete", "content": {"module": "json.encoder", "simpleName": "JSONEncoder", "members": [{"kind": "Variable", "content": {"name": "item_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "key_separator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188672416"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "skipkeys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ensure_ascii", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "check_circular", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "allow_nan", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sort_keys", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "separators", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "default", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276019552"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276020000"}, "name": "default"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276020448"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "o", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_one_shot", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276020896"}, "name": "iterencode"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805188672416": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805276019552": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805188672192"}, {"nodeId": "139805188672752"}, {"nodeId": "139805188672976"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "skipkeys", "ensure_ascii", "check_circular", "allow_nan", "sort_keys", "indent", "separators", "default"]}}, "139805188672192": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805188672752": {"type": "Union", "content": {"items": [{"nodeId": "139805188672640"}, {"nodeId": "N"}]}}, "139805188672640": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805188672976": {"type": "Union", "content": {"items": [{"nodeId": "139805193096544"}, {"nodeId": "N"}]}}, "139805193096544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805276020000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}}, "139805276020448": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "o"]}}, "139805276020896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077856"}, {"nodeId": "A"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "o", "_one_shot"]}}, "139805272042560": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Verbose", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805272042912": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "_State", "members": [{"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupdict", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groupwidths", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805272229696"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "lookbehindgroups", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263533488"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "groups", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234815808"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288851360"}, "name": "opengroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "p", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288851808"}, "name": "closegroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288852256"}, "name": "checkgroup"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "gid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288852704"}, "name": "checklookbehindgroup"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272229696": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805263533488": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805234815808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805288851360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805259379792"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "name"]}}, "139805259379792": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805288851808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805481893056"}, {"nodeId": "139805272043264"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "p"]}}, "139805272043264": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "SubPattern", "members": [{"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805263536176"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263473888"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272042912"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "state", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "data", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288853152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288854048"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288854496"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288854944"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288855392"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288855840"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288856288"}, "name": "insert"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "code", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288856736"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805288857184"}, "name": "getwidth"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805263536176": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805263537408": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272044320"}, {"nodeId": "139805263536288"}]}}, "139805263536288": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537184"}}}, "139805263537184": {"type": "Union", "content": {"items": [{"nodeId": "139805263535392"}, {"nodeId": "139805263535952"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805272043264"}]}, {"nodeId": "139805263536848"}, {"nodeId": "139805263537072"}]}}, "139805263535392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276671136", "args": [{"nodeId": "139805272229472"}]}}}, "139805272229472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272044320"}, {"nodeId": "139805481893056"}]}}, "139805263535952": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268561584"}}}, "139805268561584": {"type": "Tuple", "content": {"items": [{"nodeId": "N"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805272043264"}]}]}}, "139805263536848": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268561472"}}}, "139805268561472": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805272043264"}, {"nodeId": "139805272043264"}]}}, "139805263537072": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263532256"}}}, "139805263532256": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272228240"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}, {"nodeId": "139805272043264"}]}}, "139805272228240": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805263473888": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805288853152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805272042912"}, {"nodeId": "139805259380016"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "state", "data"]}}, "139805259380016": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805259379904"}]}, {"nodeId": "N"}]}}, "139805259379904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288854048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "level"]}}, "139805288854496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805288854944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380128"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805259380128": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805288855392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380240"}], "returnType": {"nodeId": "139805259380464"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805259380240": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805259380464": {"type": "Union", "content": {"items": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380352"}]}}, "139805259380352": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288855840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380576"}, {"nodeId": "139805259380688"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805259380576": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276670432"}]}}, "139805259380688": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288856288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805481893056"}, {"nodeId": "139805259380800"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "index", "code"]}}, "139805259380800": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288856736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}, {"nodeId": "139805259380912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "code"]}}, "139805259380912": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805263537408"}}}, "139805288857184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043264"}], "returnType": {"nodeId": "139805259381136"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259381136": {"type": "Tuple", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}}, "139805288852256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "gid"]}}, "139805288852704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272042912"}, {"nodeId": "139805481893056"}, {"nodeId": "139805272043616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "gid", "source"]}}, "139805272043616": {"type": "Concrete", "content": {"module": "sre_parse", "simpleName": "Tokenizer", "members": [{"kind": "Variable", "content": {"name": "istext", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "decoded_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "next", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263537520"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289087264"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "char", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289087712"}, "name": "match"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289088160"}, "name": "get"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289088608"}, "name": "getwhile"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289089056"}, "name": "getuntil"}}, {"kind": "Variable", "content": {"name": "pos", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805234811104"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289090400"}, "name": "tell"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289090848"}, "name": "seek"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "offset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289091296"}, "name": "error"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805263537520": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289087264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139805289087712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "char"]}}, "139805289088160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}], "returnType": {"nodeId": "139805259381360"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805259381360": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289088608": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805481893056"}, {"nodeId": "139805481886016", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "n", "charset"]}}, "139805289089056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "terminator", "name"]}}, "139805234811104": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289090400": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289090848": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "index"]}}, "139805289091296": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272043616"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805272043968"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "msg", "offset"]}}, "139805268036416": {"type": "Concrete", "content": {"module": "_codecs", "simpleName": "_EncodingMap", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289096672"}, "name": "size"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805289096672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268036416"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272608256": {"type": "Protocol", "content": {"module": "importlib.metadata._meta", "simpleName": "SimplePath", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289486304"}, "name": "joinpath"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289486752"}, "name": "parent"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289487200"}, "name": "read_text"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289487648"}, "name": "__truediv__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["__truediv__", "joinpath", "parent", "read_text"]}}, "139805289486304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805272608256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289486752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805272608256"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289487200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289487648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272608256"}], "returnType": {"nodeId": "139805272608256"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805272619872": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "Message", "members": [{"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272618816"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "preamble", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805263542000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "epilogue", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268571552"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "defects", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805267642848"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289488992"}, "name": "is_multipart"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289489440"}, "name": "set_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289489888"}, "name": "get_unixfrom"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289490336"}, "name": "attach"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "i", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "decode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289490784"}, "name": "get_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "payload", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289491232"}, "name": "set_payload"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289491680"}, "name": "set_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289492128"}, "name": "get_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289492576"}, "name": "__len__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289493024"}, "name": "__contains__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289493472"}, "name": "__iter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289493920"}, "name": "__getitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "val", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289494368"}, "name": "__setitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289494816"}, "name": "__delitem__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289495264"}, "name": "keys"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289495712"}, "name": "values"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805289496160"}, "name": "items"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255224224"}, "items": [{"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255229040"}, "items": [{"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_all", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_all"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284370464"}, "name": "add_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "_value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284370912"}, "name": "replace_header"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284371360"}, "name": "get_content_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284371808"}, "name": "get_content_maintype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284372256"}, "name": "get_content_subtype"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284372704"}, "name": "get_default_type"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "ctype", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284373152"}, "name": "set_default_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255232512"}, "items": [{"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_params", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_params"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255233072"}, "items": [{"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284375392"}, "name": "del_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284375840"}, "name": "set_type"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255233856"}, "items": [{"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_filename"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255235424"}, "items": [{"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_boundary"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284378080"}, "name": "set_boundary"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255235312"}, "items": [{"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_content_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_content_charset"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805255235536"}, "items": [{"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "get_charsets", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "get_charsets"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284380320"}, "name": "walk"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284380768"}, "name": "get_content_disposition"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284381216"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284381664"}, "name": "as_bytes"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284382112"}, "name": "__bytes__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "param", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "requote", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "language", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284382560"}, "name": "set_param"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284383008"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284383456"}, "name": "set_raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284383904"}, "name": "raw_items"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272618816": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Policy", "members": [{"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272707632"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272707968"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280221024"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280221472"}, "name": "clone"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280221920"}, "name": "handle_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280222368"}, "name": "register_defect"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280222816"}, "name": "header_max_count"}}, {"kind": "Variable", "content": {"name": "header_source_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222279808"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_store_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222279360"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_fetch_parse", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222279136"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222278912"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fold_binary", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805222276896"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": true}}, "139805272707632": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805272707968": {"type": "Union", "content": {"items": [{"nodeId": "139805276237696"}, {"nodeId": "N"}]}}, "139805276237696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}], "returnType": {"nodeId": "139805272619872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805280221024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805255228816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255228928"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory"]}}, "139805255228816": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255228928": {"type": "Union", "content": {"items": [{"nodeId": "139805255270688"}, {"nodeId": "N"}]}}, "139805255270688": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}], "returnType": {"nodeId": "139805272619872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805280221472": {"type": "Function", "content": {"typeVars": [".0.139805280221472"], "argTypes": [{"nodeId": ".0.139805280221472"}, {"nodeId": "A"}], "returnType": {"nodeId": ".0.139805280221472"}, "argKinds": ["ARG_POS", "ARG_STAR_2"], "argNames": ["self", "kw"]}}, ".0.139805280221472": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272618816"}, "def": "139805280221472", "variance": "INVARIANT"}}, "139805280221920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805272619872"}, {"nodeId": "139805267642848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139805267642848": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280219456"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805276683456"}], "isAbstract": false}}, "139805280219456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267642848"}, {"nodeId": "139805255439008"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "line"]}}, "139805255439008": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280222368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805272619872"}, {"nodeId": "139805267642848"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "obj", "defect"]}}, "139805280222816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255229264"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "name"]}}, "139805255229264": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805222279808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255229488"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139805255229488": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805222279360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255229712"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255229712": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805222279136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805222278912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805222276896": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805263542000": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805268571552": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289488992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289489440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "unixfrom"]}}, "139805289489888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255231056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255231056": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289490336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805272619872"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "payload"]}}, "139805289490784": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805255231168"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "i", "decode"]}}, "139805255231168": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805289491232": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805255231392"}, {"nodeId": "139805255231616"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "payload", "charset"]}}, "139805255231392": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272707856"}}}, "139805272707856": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805272619872"}]}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}]}}, "139805255231616": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805267650240": {"type": "Concrete", "content": {"module": "email.charset", "simpleName": "Charset", "members": [{"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "body_encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272709760"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "input_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272709872"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "output_codec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272709984"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "input_charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280210720"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280211168"}, "name": "get_body_encoding"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280211616"}, "name": "get_output_charset"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280212064"}, "name": "header_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlengths", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280212512"}, "name": "header_encode_lines"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280212960"}, "name": "body_encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280213408"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280213856"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805272709760": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272709872": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272709984": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280210720": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "input_charset"]}}, "139805280211168": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280211616": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}], "returnType": {"nodeId": "139805255440576"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255440576": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805280212064": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139805280212512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481886368", "args": [{"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "string", "maxlengths"]}}, "139805280212960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "string"]}}, "139805280213408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805280213856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267650240"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289491680": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805255231504"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "charset"]}}, "139805255231504": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268571328"}}}, "139805268571328": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805289492128": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255231728"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255231728": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805268571328"}}}, "139805289492576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289493024": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289493472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805289493920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255231840"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805255231840": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805289494368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255231952"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null]}}, "139805255231952": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805289494816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805289495264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805289495712": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255232064"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255232064": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805289496160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255232400"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255232400": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805255232176"}]}}, "139805255232176": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805255224224": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284368672"}, {"nodeId": "139805284369120"}]}}, "139805284368672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255232736"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139805255232736": {"type": "Union", "content": {"items": [{"nodeId": "139805255232624"}, {"nodeId": "N"}]}}, "139805255232624": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284369120": {"type": "Function", "content": {"typeVars": [".-1.139805284369120"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284369120"}], "returnType": {"nodeId": "139805255232960"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139805284369120": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284369120", "variance": "INVARIANT"}}, "139805255232960": {"type": "Union", "content": {"items": [{"nodeId": "139805255232848"}, {"nodeId": ".-1.139805284369120"}]}}, "139805255232848": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805255229040": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284369568"}, {"nodeId": "139805284370016"}]}}, "139805284369568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255233296"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "name", "failobj"]}}, "139805255233296": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255233184"}]}, {"nodeId": "N"}]}}, "139805255233184": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284370016": {"type": "Function", "content": {"typeVars": [".-1.139805284370016"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284370016"}], "returnType": {"nodeId": "139805255233520"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "failobj"]}}, ".-1.139805284370016": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284370016", "variance": "INVARIANT"}}, "139805255233520": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255233408"}]}, {"nodeId": ".-1.139805284370016"}]}}, "139805255233408": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284370464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255233632"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR_2"], "argNames": ["self", "_name", "_value", "_params"]}}, "139805255233632": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272711104"}}}, "139805272711104": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "139805272711328"}]}}, "139805272711328": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272710880"}, {"nodeId": "139805276669024"}]}}, "139805272710880": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284370912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255233744"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "_name", "_value"]}}, "139805255233744": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284371360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284371808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284372256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284372704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284373152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "ctype"]}}, "139805255232512": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284373600"}, {"nodeId": "139805284374048"}]}}, "139805284373600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255234192"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, "139805255234192": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255234080"}]}, {"nodeId": "N"}]}}, "139805255234080": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805284374048": {"type": "Function", "content": {"typeVars": [".-1.139805284374048"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284374048"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255234528"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "failobj", "header", "unquote"]}}, ".-1.139805284374048": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284374048", "variance": "INVARIANT"}}, "139805255234528": {"type": "Union", "content": {"items": [{"nodeId": "139805276671136", "args": [{"nodeId": "139805255234416"}]}, {"nodeId": ".-1.139805284374048"}]}}, "139805255234416": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805255233072": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284374496"}, {"nodeId": "139805284374944"}]}}, "139805284374496": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255234864"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, "139805255234864": {"type": "Union", "content": {"items": [{"nodeId": "139805255234752"}, {"nodeId": "N"}]}}, "139805255234752": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272710432"}}}, "139805272710432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805272709424"}]}}, "139805272709424": {"type": "Tuple", "content": {"items": [{"nodeId": "139805272710656"}, {"nodeId": "139805272710544"}, {"nodeId": "139805276669024"}]}}, "139805272710656": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805272710544": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284374944": {"type": "Function", "content": {"typeVars": [".-1.139805284374944"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284374944"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "139805255235200"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "failobj", "header", "unquote"]}}, ".-1.139805284374944": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284374944", "variance": "INVARIANT"}}, "139805255235200": {"type": "Union", "content": {"items": [{"nodeId": "139805255234640"}, {"nodeId": ".-1.139805284374944"}]}}, "139805255234640": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272710432"}}}, "139805284375392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "header", "requote"]}}, "139805284375840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "type", "header", "requote"]}}, "139805255233856": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284376288"}, {"nodeId": "139805284376736"}]}}, "139805284376288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255234976"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139805255234976": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284376736": {"type": "Function", "content": {"typeVars": [".-1.139805284376736"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284376736"}], "returnType": {"nodeId": "139805255235088"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284376736": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284376736", "variance": "INVARIANT"}}, "139805255235088": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284376736"}]}}, "139805255235424": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284377184"}, {"nodeId": "139805284377632"}]}}, "139805284377184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805255235648"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139805255235648": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284377632": {"type": "Function", "content": {"typeVars": [".-1.139805284377632"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284377632"}], "returnType": {"nodeId": "139805255235760"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284377632": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284377632", "variance": "INVARIANT"}}, "139805255235760": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284377632"}]}}, "139805284378080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "boundary"]}}, "139805255235312": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284378528"}, {"nodeId": "139805284378976"}]}}, "139805284378528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255235984"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255235984": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284378976": {"type": "Function", "content": {"typeVars": [".-1.139805284378976"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284378976"}], "returnType": {"nodeId": "139805255236096"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284378976": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284378976", "variance": "INVARIANT"}}, "139805255236096": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284378976"}]}}, "139805255235536": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805284379424"}, {"nodeId": "139805284379872"}]}}, "139805284379424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "N"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255236320"}]}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "failobj"]}}, "139805255236320": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284379872": {"type": "Function", "content": {"typeVars": [".-1.139805284379872"], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": ".-1.139805284379872"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805255236432"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "failobj"]}}, ".-1.139805284379872": {"type": "TypeVar", "content": {"varName": "_T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805284379872", "variance": "INVARIANT"}}, "139805255236432": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": ".-1.139805284379872"}]}}, "139805284380320": {"type": "Function", "content": {"typeVars": [".0.139805284380320"], "argTypes": [{"nodeId": ".0.139805284380320"}], "returnType": {"nodeId": "139805481887072", "args": [{"nodeId": ".0.139805284380320"}, {"nodeId": "N"}, {"nodeId": "N"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, ".0.139805284380320": {"type": "TypeVar", "content": {"varName": "Self", "values": [], "upperBound": {"nodeId": "139805272619872"}, "def": "139805284380320", "variance": "INVARIANT"}}, "139805284380768": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805255236656"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255236656": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284381216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805255236768"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139805255236768": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284381664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255236880"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "policy"]}}, "139805255236880": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284382112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284382560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255236992"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "param", "value", "header", "requote", "charset", "language", "replace"]}}, "139805255236992": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284383008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805272618816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139805284383456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255237104"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255237104": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805284383904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619872"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805255237440"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805255237440": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805255237216"}]}}, "139805255237216": {"type": "TypeAlias", "content": {"target": {"nodeId": "A"}}}, "139805272620224": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "MIMEPart", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284384352"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "preferencelist", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284499744"}, "name": "get_body"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284500192"}, "name": "iter_attachments"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284500640"}, "name": "iter_parts"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284501088"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284501536"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284501984"}, "name": "make_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284502432"}, "name": "make_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "boundary", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284502880"}, "name": "make_mixed"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284503328"}, "name": "add_related"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284503776"}, "name": "add_alternative"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284504224"}, "name": "add_attachment"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284504672"}, "name": "clear"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284505120"}, "name": "clear_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "unixfrom", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxheaderlen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "policy", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284505568"}, "name": "as_string"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805284506016"}, "name": "is_attachment"}}], "typeVars": [], "bases": [{"nodeId": "139805272619872"}], "isAbstract": false}}, "139805284384352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255434304"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "policy"]}}, "139805255434304": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284499744": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255434416"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "preferencelist"]}}, "139805255434416": {"type": "Union", "content": {"items": [{"nodeId": "139805272619872"}, {"nodeId": "N"}]}}, "139805284500192": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272619872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284500640": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "139805481886368", "args": [{"nodeId": "139805272619872"}]}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284501088": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255434640"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255434640": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805267649888": {"type": "Concrete", "content": {"module": "email.contentmanager", "simpleName": "ContentManager", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280216544"}, "name": "get_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kw", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280216992"}, "name": "set_content"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280217440"}, "name": "add_get_handler"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "typekey", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "handler", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280217888"}, "name": "add_set_handler"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280216544": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805272619872"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "kw"]}}, "139805280216992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805272619872"}, {"nodeId": "A"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", "msg", "obj", "args", "kw"]}}, "139805280217440": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255272480"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "handler"]}}, "139805255272480": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805280217888": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267649888"}, {"nodeId": "139805481892352"}, {"nodeId": "139805255272256"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "typekey", "handler"]}}, "139805255272256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805284501536": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255435088"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255435088": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284501984": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255435312"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139805255435312": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284502432": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255435424"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139805255435424": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284502880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805255435536"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "boundary"]}}, "139805255435536": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805284503328": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255435760"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255435760": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284503776": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255436096"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255436096": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284504224": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "A"}, {"nodeId": "139805255436432"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "args", "content_manager", "kw"]}}, "139805255436432": {"type": "Union", "content": {"items": [{"nodeId": "139805267649888"}, {"nodeId": "N"}]}}, "139805284504672": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284505120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805284505568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255436656"}, {"nodeId": "139805255436768"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "unixfrom", "maxheaderlen", "policy"]}}, "139805255436656": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255436768": {"type": "Union", "content": {"items": [{"nodeId": "139805272618816"}, {"nodeId": "N"}]}}, "139805284506016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272620224"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805272620576": {"type": "Concrete", "content": {"module": "email.message", "simpleName": "EmailMessage", "members": [], "typeVars": [], "bases": [{"nodeId": "139805272620224"}], "isAbstract": false}}, "139805268520352": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PureWindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268519648"}], "isAbstract": false}}, "139805268521056": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "PosixPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268520704"}, {"nodeId": "139805268520000"}], "isAbstract": false}}, "139805268521408": {"type": "Concrete", "content": {"module": "pathlib", "simpleName": "WindowsPath", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268520704"}, {"nodeId": "139805268520352"}], "isAbstract": false}}, "139805171901792": {"type": "Concrete", "content": {"module": "numpy.compat.py3k", "simpleName": "contextlib_nullcontext", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280348864"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280349136"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "excinfo", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280349408"}, "name": "__exit__"}}, {"kind": "Variable", "content": {"name": "enter_result", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280348864": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901792"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "enter_result"]}}, "139805280349136": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901792"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805280349408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171901792"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_STAR"], "argNames": [null, null]}}, "139805193078912": {"type": "Concrete", "content": {"module": "_thread", "simpleName": "LockType", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "blocking", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "timeout", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285012576"}, "name": "acquire"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285350336"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285013472"}, "name": "locked"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285348992"}, "name": "__enter__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "traceback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285014368"}, "name": "__exit__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805285012576": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893408"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "blocking", "timeout"]}}, "139805285350336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285013472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285348992": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805285014368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193078912"}, {"nodeId": "139805188788112"}, {"nodeId": "139805188788000"}, {"nodeId": "139805188788336"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": [null, null, null, null]}}, "139805188788112": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "N"}]}}, "139805188788000": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188788336": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805193083840": {"type": "Concrete", "content": {"module": "_thread", "simpleName": "_ExceptHookArgs", "members": [{"kind": "Variable", "content": {"name": "__match_args__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805188799088"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_type", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805221977472"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_value", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188720000"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "exc_traceback", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188724704"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "thread", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805188724256"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805268035712", "args": [{"nodeId": "A"}]}, {"nodeId": "139805276670784", "args": [{"nodeId": "139805188685072"}]}], "isAbstract": false}}, "139805188799088": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805221977472": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188789232"}], "returnType": {"nodeId": "0"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188789232": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188788896"}, {"nodeId": "139805188789008"}, {"nodeId": "139805188789120"}]}}, "139805188788896": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188789008": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188789120": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188720000": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188789680"}], "returnType": {"nodeId": "139805188789792"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188789680": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188789344"}, {"nodeId": "139805188789456"}, {"nodeId": "139805188789568"}]}}, "139805188789344": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188789456": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188789568": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188789792": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188724704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188790240"}], "returnType": {"nodeId": "139805188790352"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188790240": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188789904"}, {"nodeId": "139805188790016"}, {"nodeId": "139805188790128"}]}}, "139805188789904": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188790016": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188790128": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188790352": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188724256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805188790800"}], "returnType": {"nodeId": "139805188790912"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805188790800": {"type": "Tuple", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805188790464"}, {"nodeId": "139805188790576"}, {"nodeId": "139805188790688"}]}}, "139805188790464": {"type": "Union", "content": {"items": [{"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805188790576": {"type": "Union", "content": {"items": [{"nodeId": "139805272037280"}, {"nodeId": "N"}]}}, "139805188790688": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188790912": {"type": "Union", "content": {"items": [{"nodeId": "139805193079968"}, {"nodeId": "N"}]}}, "139805188685072": {"type": "Union", "content": {"items": [{"nodeId": "0"}, {"nodeId": "139805276675712"}, {"nodeId": "139805272037280"}, {"nodeId": "139805193079968"}]}}, "139805171903904": {"type": "Concrete", "content": {"module": "logging", "simpleName": "BufferingFormatter", "members": [{"kind": "Variable", "content": {"name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171903552"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linefmt", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280693920"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280694368"}, "name": "formatHeader"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280694816"}, "name": "formatFooter"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "records", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280695264"}, "name": "format"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805280693920": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805166977648"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "linefmt"]}}, "139805166977648": {"type": "Union", "content": {"items": [{"nodeId": "139805171903552"}, {"nodeId": "N"}]}}, "139805280694368": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805171904608"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "139805280694816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805171904608"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "139805280695264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171903904"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805171904608"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "records"]}}, "139805171907776": {"type": "Concrete", "content": {"module": "logging", "simpleName": "LoggerAdapter", "members": [{"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805171907776"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805171902496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259728"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "logger", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280697952"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280862944"}, "name": "process"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280863392"}, "name": "debug"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280863840"}, "name": "info"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280864288"}, "name": "warning"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280864736"}, "name": "warn"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280865184"}, "name": "error"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280865632"}, "name": "exception"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280866080"}, "name": "critical"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stacklevel", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280866528"}, "name": "log"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280870560"}, "name": "isEnabledFor"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280871008"}, "name": "getEffectiveLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280871456"}, "name": "setLevel"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280871904"}, "name": "hasHandlers"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "level", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "msg", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "exc_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "extra", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stack_info", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280872352"}, "name": "_log"}}, {"kind": "Variable", "content": {"name": "name", "isProperty": true, "isSelf": false, "type": {"nodeId": "139805167147648"}, "isInitializedInClass": true}}], "typeVars": [{"nodeId": ".1.139805171907776"}], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, ".1.139805171907776": {"type": "TypeVar", "content": {"varName": "_L", "values": [], "upperBound": {"nodeId": "139805176257376"}, "def": "139805171907776", "variance": "INVARIANT"}}, "139805176257376": {"type": "Union", "content": {"items": [{"nodeId": "139805171902848"}, {"nodeId": "139805171907776", "args": [{"nodeId": "A"}]}]}}, "139805176259728": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280697952": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": ".1.139805171907776"}, {"nodeId": "139805166978544"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "logger", "extra"]}}, "139805166978544": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280862944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "A"}, {"nodeId": "139805481891648", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805166979104"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "msg", "kwargs"]}}, "139805166979104": {"type": "Tuple", "content": {"items": [{"nodeId": "A"}, {"nodeId": "139805481891648", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}]}}, "139805280863392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166979776"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979216"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166979776": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166979328"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166979328": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979216": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280863840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980112"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979440"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980112": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166979664"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166979664": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979440": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280864288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980448"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979552"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980448": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166980000"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166980000": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979552": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280864736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980784"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166979888"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980784": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166980336"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166980336": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166979888": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280865184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166981120"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166980224"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166981120": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166980672"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166980672": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166980224": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280865632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166980560"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166981008"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166980560": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805166981008": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280866080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166981680"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166980896"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166981680": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166981456"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166981456": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166980896": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280866528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166982016"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805166981344"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_STAR", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_STAR_2"], "argNames": ["self", "level", "msg", "args", "exc_info", "stack_info", "stacklevel", "extra", "kwargs"]}}, "139805166982016": {"type": "Union", "content": {"items": [{"nodeId": "139805481882144"}, {"nodeId": "139805166981232"}, {"nodeId": "139805276675712"}, {"nodeId": "N"}]}}, "139805166981232": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251440"}}}, "139805166981344": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805280870560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805280871008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}], "returnType": {"nodeId": "139805481893056"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280871456": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805166981568"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "level"]}}, "139805166981568": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252112"}}}, "139805280871904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805280872352": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481881792"}, {"nodeId": "139805166981904"}, {"nodeId": "139805166982128"}, {"nodeId": "139805166982240"}, {"nodeId": "139805481882144"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "level", "msg", "args", "exc_info", "extra", "stack_info"]}}, "139805166981904": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176252000"}}}, "139805166982128": {"type": "Union", "content": {"items": [{"nodeId": "139805166981792"}, {"nodeId": "N"}]}}, "139805166981792": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805176251216"}}}, "139805166982240": {"type": "Union", "content": {"items": [{"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "N"}]}}, "139805167147648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171907776", "args": [{"nodeId": ".1.139805171907776"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171904960": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StreamHandler", "members": [{"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": ".1.139805171904960"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "terminator", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805176260400"}, "items": [{"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__init__", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "stream", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281101728"}, "name": "setStream"}}], "typeVars": [{"nodeId": ".1.139805171904960"}], "bases": [{"nodeId": "139805171903200"}], "isAbstract": false}}, ".1.139805171904960": {"type": "TypeVar", "content": {"varName": "_StreamT", "values": [], "upperBound": {"nodeId": "139805268033952", "args": [{"nodeId": "139805276669024"}]}, "def": "139805171904960", "variance": "INVARIANT"}}, "139805176260400": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805281100832"}, {"nodeId": "139805281101280"}]}}, "139805281100832": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904960", "args": [{"nodeId": "139805277000928"}]}, {"nodeId": "N"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT"], "argNames": ["self", "stream"]}}, "139805281101280": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904960", "args": [{"nodeId": ".1.139805171904960"}]}, {"nodeId": ".1.139805171904960"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}}, "139805281101728": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171904960", "args": [{"nodeId": ".1.139805171904960"}]}, {"nodeId": ".1.139805171904960"}], "returnType": {"nodeId": "139805166986944"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "stream"]}}, "139805166986944": {"type": "Union", "content": {"items": [{"nodeId": ".1.139805171904960"}, {"nodeId": "N"}]}}, "139805171905312": {"type": "Concrete", "content": {"module": "logging", "simpleName": "FileHandler", "members": [{"kind": "Variable", "content": {"name": "baseFilename", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176259952"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805176260288"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "filename", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mode", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "delay", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281102624"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805281103520"}, "name": "_open"}}], "typeVars": [], "bases": [{"nodeId": "139805171904960", "args": [{"nodeId": "139805272607200"}]}], "isAbstract": false}}, "139805176259952": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805176260288": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805281102624": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171905312"}, {"nodeId": "139805166987056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805166987168"}, {"nodeId": "139805481882144"}, {"nodeId": "139805166987280"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "filename", "mode", "encoding", "delay", "errors"]}}, "139805166987056": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805276562576"}}}, "139805166987168": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805166987280": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805281103520": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805171905312"}], "returnType": {"nodeId": "139805272607200"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805171905664": {"type": "Concrete", "content": {"module": "logging", "simpleName": "NullHandler", "members": [], "typeVars": [], "bases": [{"nodeId": "139805171903200"}], "isAbstract": false}}, "139805171907072": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StrFormatStyle", "members": [{"kind": "Variable", "content": {"name": "fmt_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "field_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805171906720"}], "isAbstract": false}}, "139805171907424": {"type": "Concrete", "content": {"module": "logging", "simpleName": "StringTemplateStyle", "members": [{"kind": "Variable", "content": {"name": "_tpl", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805193076800"}, "isInitializedInClass": true}}], "typeVars": [], "bases": [{"nodeId": "139805171906720"}], "isAbstract": false}}, "139805193076800": {"type": "Concrete", "content": {"module": "string", "simpleName": "Template", "members": [{"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "delimiter", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "idpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "braceidpattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805192900496"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805268510144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "pattern", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "template", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285205152"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285205600"}, "name": "substitute"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__mapping", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwds", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285206048"}, "name": "safe_substitute"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805192900496": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285205152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193076800"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "template"]}}, "139805285205600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193076800"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}}, "139805285206048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193076800"}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805481881792"}]}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_STAR_2"], "argNames": ["self", null, "kwds"]}}, "139805267640736": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805267641088": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MessageParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267640736"}], "isAbstract": false}}, "139805267641440": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderParseError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267641088"}], "isAbstract": false}}, "139805267641792": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "BoundaryError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267641088"}], "isAbstract": false}}, "139805267642144": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartConversionError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267640736"}, {"nodeId": "139805276683104"}], "isAbstract": false}}, "139805267642496": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CharsetError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267640736"}], "isAbstract": false}}, "139805267643200": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NoBoundaryInMultipartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267643552": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "StartBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267643904": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "FirstHeaderLineIsContinuationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267644256": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MisplacedEnvelopeHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267644608": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MultipartInvariantViolationDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267644960": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidMultipartContentTransferEncodingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267645312": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "UndecodableBytesDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267645664": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64PaddingDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267646016": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64CharactersDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267646368": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidBase64LengthDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267646720": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "CloseBoundaryNotFoundDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267647072": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "MissingHeaderBodySeparatorDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267647424": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267642848"}], "isAbstract": false}}, "139805267647776": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267648128": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "HeaderMissingRequiredValue", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267648480": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonPrintableDefect", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "non_printables", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805280219904"}, "name": "__init__"}}], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805280219904": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267648480"}, {"nodeId": "139805255439120"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "non_printables"]}}, "139805255439120": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805267648832": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "ObsoleteHeaderDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267649184": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "NonASCIILocalPartDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805267649536": {"type": "Concrete", "content": {"module": "email.errors", "simpleName": "InvalidDateDefect", "members": [], "typeVars": [], "bases": [{"nodeId": "139805267647424"}], "isAbstract": false}}, "139805272619168": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "Compat32", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285337568"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285338016"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285338464"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285338912"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285339360"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139805272618816"}], "isAbstract": false}}, "139805285337568": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255229936"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139805255229936": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285338016": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255230160"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255230160": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285338464": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255230272"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255230272": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805267640384"}]}}, "139805267640384": {"type": "Concrete", "content": {"module": "email.header", "simpleName": "Header", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "continuation_ws", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285213216"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "s", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "charset", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285213664"}, "name": "append"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "splitchars", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "maxlinelen", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285214112"}, "name": "encode"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "other", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285214560"}, "name": "__eq__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285215008"}, "name": "__ne__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805285213216": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805255436880"}, {"nodeId": "139805255436992"}, {"nodeId": "139805255437104"}, {"nodeId": "139805255437216"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "maxlinelen", "header_name", "continuation_ws", "errors"]}}, "139805255436880": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255436992": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805255437104": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255437216": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285213664": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805255437328"}, {"nodeId": "139805255437440"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "s", "charset", "errors"]}}, "139805255437328": {"type": "Union", "content": {"items": [{"nodeId": "139805276669376"}, {"nodeId": "139805276669728"}, {"nodeId": "139805276669024"}]}}, "139805255437440": {"type": "Union", "content": {"items": [{"nodeId": "139805267650240"}, {"nodeId": "139805276669024"}, {"nodeId": "N"}]}}, "139805285214112": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255437552"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT"], "argNames": ["self", "splitchars", "maxlinelen", "linesep"]}}, "139805255437552": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805285214560": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285215008": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267640384"}, {"nodeId": "139805481881792"}], "returnType": {"nodeId": "139805481882144"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285338912": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805285339360": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619168"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805272619520": {"type": "Concrete", "content": {"module": "email.policy", "simpleName": "EmailPolicy", "members": [{"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276229184"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805267649888"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_line_length", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "linesep", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cte_type", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "raise_on_defect", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "mangle_from_", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "message_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "utf8", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "refold_source", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "header_factory", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "content_manager", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285339808"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "sourcelines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285340256"}, "name": "header_source_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285340704"}, "name": "header_store_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285341152"}, "name": "header_fetch_parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285341600"}, "name": "fold"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285342048"}, "name": "fold_binary"}}], "typeVars": [], "bases": [{"nodeId": "139805272618816"}], "isAbstract": false}}, "139805276229184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285339808": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805255230384"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805255230496"}, {"nodeId": "139805481882144"}, {"nodeId": "139805276669024"}, {"nodeId": "139805255273600"}, {"nodeId": "139805267649888"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "max_line_length", "linesep", "cte_type", "raise_on_defect", "mangle_from_", "message_factory", "utf8", "refold_source", "header_factory", "content_manager"]}}, "139805255230384": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805255230496": {"type": "Union", "content": {"items": [{"nodeId": "139805255273376"}, {"nodeId": "N"}]}}, "139805255273376": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272618816"}], "returnType": {"nodeId": "139805272619872"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805255273600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805285340256": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805255230720"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "sourcelines"]}}, "139805255230720": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285340704": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805255230944"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805255230944": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}}, "139805285341152": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805285341600": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805285342048": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805272619520"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "name", "value"]}}, "139805193077504": {"type": "Concrete", "content": {"module": "textwrap", "simpleName": "TextWrapper", "members": [{"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805192907440"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "sentence_end_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "wordsep_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "wordsep_simple_re", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805272045024", "args": [{"nodeId": "139805276669024"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "unicode_whitespace_trans", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "uspace", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "initial_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "subsequent_indent", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "expand_tabs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "replace_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_sentence_endings", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "break_long_words", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "drop_whitespace", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "break_on_hyphens", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "tabsize", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "max_lines", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "placeholder", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285344512"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285344960"}, "name": "_munge_whitespace"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285345408"}, "name": "_split"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285345856"}, "name": "_fix_sentence_endings"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "reversed_chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cur_line", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "cur_len", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "width", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285346304"}, "name": "_handle_long_word"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "chunks", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285346752"}, "name": "_wrap_chunks"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285347200"}, "name": "_split_chunks"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285347648"}, "name": "wrap"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "text", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285348096"}, "name": "fill"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805192907440": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805285344512": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481882144"}, {"nodeId": "139805481893056"}, {"nodeId": "139805192908224"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "width", "initial_indent", "subsequent_indent", "expand_tabs", "replace_whitespace", "fix_sentence_endings", "break_long_words", "drop_whitespace", "break_on_hyphens", "tabsize", "max_lines", "placeholder"]}}, "139805192908224": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805285344960": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285345408": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285345856": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}}, "139805285346304": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "reversed_chunks", "cur_line", "cur_len", "width"]}}, "139805285346752": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "chunks"]}}, "139805285347200": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285347648": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276671136", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805285348096": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077504"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "text"]}}, "139805193077152": {"type": "Concrete", "content": {"module": "string", "simpleName": "Formatter", "members": [{"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805192900720"}, "items": [{"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "format"}}, {"kind": "OverloadedFuncDef", "content": {"type": {"nodeId": "139805192900832"}, "items": [{"kind": "Variable", "content": {"name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "vformat", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "name": "vformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "recursion_depth", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "auto_arg_index", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285209184"}, "name": "_vformat"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_string", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285209632"}, "name": "parse"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "field_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285210080"}, "name": "get_field"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "key", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285210528"}, "name": "get_value"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "used_args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "args", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "kwargs", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285210976"}, "name": "check_unused_args"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "format_spec", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285211424"}, "name": "format_field"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "value", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "conversion", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285211872"}, "name": "convert_field"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805192900720": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805285207392"}, {"nodeId": "139805285207840"}]}}, "139805285207392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805285207840": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_STAR", "ARG_STAR_2"], "argNames": ["self", null, "args", "kwargs"]}}, "139805192900832": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805285208288"}, {"nodeId": "139805285208736"}]}}, "139805285208288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "139805276669024"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}}, "139805285208736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "139805276669024"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "format_string", "args", "kwargs"]}}, "139805285209184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, {"nodeId": "139805277003040", "args": [{"nodeId": "139805192901952"}]}, {"nodeId": "139805481893056"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805192902176"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS", "ARG_OPT"], "argNames": ["self", "format_string", "args", "kwargs", "used_args", "recursion_depth", "auto_arg_index"]}}, "139805192901952": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805192902176": {"type": "Tuple", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805481893056"}]}}, "139805285209632": {"type": "Function", "content": {"typeVars": [".-1.139805285209632"], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": ".-1.139805285209632"}], "returnType": {"nodeId": "139805481886016", "args": [{"nodeId": "139805192902736"}]}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "format_string"]}}, ".-1.139805285209632": {"type": "TypeVar", "content": {"varName": "StrOrLiteralStr", "values": [{"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "upperBound": {"nodeId": "139805481881792"}, "def": "139805285209632", "variance": "INVARIANT"}}, "139805192902736": {"type": "Tuple", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "139805192902288"}, {"nodeId": "139805192902400"}, {"nodeId": "139805192902512"}]}}, "139805192902288": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "N"}]}}, "139805192902400": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "N"}]}}, "139805192902512": {"type": "Union", "content": {"items": [{"nodeId": ".-1.139805285209632"}, {"nodeId": "N"}]}}, "139805285210080": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805276669024"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "field_name", "args", "kwargs"]}}, "139805285210528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805192903184"}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "key", "args", "kwargs"]}}, "139805192903184": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805285210976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "139805277003040", "args": [{"nodeId": "139805192903632"}]}, {"nodeId": "139805481889888", "args": [{"nodeId": "A"}]}, {"nodeId": "139805481891296", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "used_args", "args", "kwargs"]}}, "139805192903632": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "139805276669024"}]}}, "139805285211424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "A"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "format_spec"]}}, "139805285211872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805193077152"}, {"nodeId": "A"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", "value", "conversion"]}}, "139805268522464": {"type": "Protocol", "content": {"module": "pickle", "simpleName": "_ReadableFileobj", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__n", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285217248"}, "name": "read"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285217696"}, "name": "readline"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "protocolMembers": ["read", "readline"]}}, "139805285217248": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522464"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805285217696": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522464"}], "returnType": {"nodeId": "139805276669376"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805268522816": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PickleBuffer", "members": [{"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285218144"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285218592"}, "name": "raw"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285219040"}, "name": "release"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__flags", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285219488"}, "name": "__buffer__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__buffer", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805285219936"}, "name": "__release_buffer__"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805285218144": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}, {"nodeId": "139805277011488"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "buffer"]}}, "139805285218592": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285219040": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805285219488": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276670080"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805285219936": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}, {"nodeId": "139805276670080"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805268523168": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PickleError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805276677120"}], "isAbstract": false}}, "139805268523520": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "PicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268523168"}], "isAbstract": false}}, "139805268523872": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "UnpicklingError", "members": [], "typeVars": [], "bases": [{"nodeId": "139805268523168"}], "isAbstract": false}}, "139805268524224": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "Pickler", "members": [{"kind": "Variable", "content": {"name": "fast", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dispatch_table", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481891296", "args": [{"nodeId": "139805481892352"}, {"nodeId": "139805251663264"}]}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "bin", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481882144"}, "isInitializedInClass": true}}, {"kind": "Variable", "content": {"name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481892352"}, {"nodeId": "139805196726816"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "protocol", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffer_callback", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276294944"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276295392"}, "name": "reducer_override"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276296288"}, "name": "dump"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276296736"}, "name": "clear_memo"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "obj", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276297184"}, "name": "persistent_id"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805251663264": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}], "returnType": {"nodeId": "139805197134400"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805197134400": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805197139664"}}}, "139805197139664": {"type": "Union", "content": {"items": [{"nodeId": "139805276669024"}, {"nodeId": "139805197133392"}, {"nodeId": "139805197137536"}, {"nodeId": "139805197138432"}, {"nodeId": "139805197139552"}]}}, "139805197133392": {"type": "Tuple", "content": {"items": [{"nodeId": "139805197108160"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}]}}, "139805197108160": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197137536": {"type": "Tuple", "content": {"items": [{"nodeId": "139805238441824"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}]}}, "139805238441824": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197138432": {"type": "Tuple", "content": {"items": [{"nodeId": "139805197002208"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "139805197138320"}]}}, "139805197002208": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197138320": {"type": "Union", "content": {"items": [{"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805197139552": {"type": "Tuple", "content": {"items": [{"nodeId": "139805196997056"}, {"nodeId": "139805276670784", "args": [{"nodeId": "A"}]}, {"nodeId": "A"}, {"nodeId": "139805197139216"}, {"nodeId": "139805197139440"}]}}, "139805196997056": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "A"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_STAR", "ARG_STAR_2"], "argNames": [null, null]}}, "139805197139216": {"type": "Union", "content": {"items": [{"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805197139440": {"type": "Union", "content": {"items": [{"nodeId": "139805481886368", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805196726816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": [null, null]}}, "139805268524576": {"type": "Concrete", "content": {"module": "pickle", "simpleName": "Unpickler", "members": [{"kind": "Variable", "content": {"name": "dispatch", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805481893056"}, {"nodeId": "139805196994816"}]}, "isInitializedInClass": true}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "file", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "fix_imports", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "encoding", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "errors", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "buffers", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276297632"}, "name": "__init__"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276298528"}, "name": "load"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__module_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "__global_name", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276298976"}, "name": "find_class"}}, {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "self", "isProperty": false, "isSelf": true, "type": {"nodeId": "A"}, "isInitializedInClass": false}}, {"kind": "Variable", "content": {"name": "pid", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805276299424"}, "name": "persistent_load"}}], "typeVars": [], "bases": [{"nodeId": "139805481881792"}], "isAbstract": false}}, "139805196994816": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276297632": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "139805268522464"}, {"nodeId": "139805481882144"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}, {"nodeId": "139805192635552"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "fix_imports", "encoding", "errors", "buffers"]}}, "139805192635552": {"type": "Union", "content": {"items": [{"nodeId": "139805481886016", "args": [{"nodeId": "A"}]}, {"nodeId": "N"}]}}, "139805276298528": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276298976": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "139805276669024"}, {"nodeId": "139805276669024"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_POS"], "argNames": ["self", null, null]}}, "139805276299424": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524576"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "pid"]}}, "139805276294944": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "139805268033952", "args": [{"nodeId": "139805276669376"}]}, {"nodeId": "139805192634432"}, {"nodeId": "139805481882144"}, {"nodeId": "139805192635776"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS", "ARG_OPT", "ARG_NAMED_OPT", "ARG_NAMED_OPT"], "argNames": ["self", "file", "protocol", "fix_imports", "buffer_callback"]}}, "139805192634432": {"type": "Union", "content": {"items": [{"nodeId": "139805481893056"}, {"nodeId": "N"}]}}, "139805192635776": {"type": "TypeAlias", "content": {"target": {"nodeId": "139805272239776"}}}, "139805272239776": {"type": "Union", "content": {"items": [{"nodeId": "139805196465792"}, {"nodeId": "N"}]}}, "139805196465792": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268522816"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805276295392": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805276296288": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "A"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", null]}}, "139805276296736": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}], "returnType": {"nodeId": "N"}, "argKinds": ["ARG_POS"], "argNames": ["self"]}}, "139805276297184": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805268524224"}, {"nodeId": "A"}], "returnType": {"nodeId": "A"}, "argKinds": ["ARG_POS", "ARG_POS"], "argNames": ["self", "obj"]}}, "139805100089840": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805104966336"}, {"nodeId": "139805104963872"}, {"nodeId": "139805104972384"}, {"nodeId": "139805104973504"}]}}, "139805104966336": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}}, "139805104963872": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "139805104972384": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805104973504": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805100090176": {"type": "Overloaded", "content": {"items": [{"nodeId": "139805104976416"}, {"nodeId": "139805104978656"}, {"nodeId": "139805104978880"}, {"nodeId": "139805104325120"}]}}, "139805104976416": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_OPT"], "argNames": [null]}}, "139805104978656": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "N"}, {"nodeId": "139805481893056"}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": "139805276669024"}]}, "argKinds": ["ARG_OPT", "ARG_STAR_2"], "argNames": [null, "kwargs"]}}, "139805104978880": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805267818304", "args": [{"nodeId": ".1.139805276880064"}, {"nodeId": "139805481893056"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805104325120": {"type": "Function", "content": {"typeVars": [], "argTypes": [{"nodeId": "139805481886016", "args": [{"nodeId": ".1.139805276880064"}]}], "returnType": {"nodeId": "139805276880064", "args": [{"nodeId": ".1.139805276880064"}]}, "argKinds": ["ARG_POS"], "argNames": [null]}}, "139805104329152": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "139805104095648"}, "argKinds": [], "argNames": []}}, "139805104331616": {"type": "Function", "content": {"typeVars": [], "argTypes": [], "returnType": {"nodeId": "139805104096704"}, "argKinds": [], "argNames": []}}, "139805104333408": {"type": "Function", "content": {"typeVars": [".-1.139805104333408"], "argTypes": [{"nodeId": "139805481885312", "args": [{"nodeId": ".-1.139805104333408"}]}], "returnType": {"nodeId": ".-1.139805104333408"}, "argKinds": ["ARG_POS"], "argNames": [null]}}, ".-1.139805104333408": {"type": "TypeVar", "content": {"varName": "T", "values": [], "upperBound": {"nodeId": "139805481881792"}, "def": "139805104333408", "variance": "INVARIANT"}}}, "exprTypes": {"subtypes": [{"startOffset": 205, "endOffset": 223, "line": 13, "type": {"nodeId": "139805100089840"}}, {"startOffset": 226, "endOffset": 226, "line": 13, "type": {"nodeId": "139805095524304"}}, {"startOffset": 304, "endOffset": 322, "line": 18, "type": {"nodeId": "139805100090176"}}, {"startOffset": 325, "endOffset": 325, "line": 18, "type": {"nodeId": "139805095525648"}}, {"startOffset": 372, "endOffset": 375, "line": 22, "type": {"nodeId": "N"}}, {"startOffset": 379, "endOffset": 388, "line": 25, "type": {"nodeId": "139805099822880"}}, {"startOffset": 390, "endOffset": 390, "line": 25, "type": {"nodeId": "139805104329152"}}, {"startOffset": 510, "endOffset": 513, "line": 35, "type": {"nodeId": "139805104096704"}}, {"startOffset": 558, "endOffset": 561, "line": 39, "type": {"nodeId": "N"}}, {"startOffset": 565, "endOffset": 574, "line": 42, "type": {"nodeId": "139805104898784"}}, {"startOffset": 576, "endOffset": 580, "line": 42, "type": {"nodeId": "139805104331616"}}, {"startOffset": 587, "endOffset": 587, "line": 45, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}}, {"startOffset": 670, "endOffset": 672, "line": 52, "type": {"nodeId": "139805104333408"}}, {"startOffset": 674, "endOffset": 674, "line": 52, "type": {"nodeId": "139805481885312", "args": [{"nodeId": ".-1.139805193098784"}]}}, {"startOffset": 679, "endOffset": 679, "line": 55, "type": {"nodeId": "139805481893056"}}, {"startOffset": 804, "endOffset": 804, "line": 64, "type": {"nodeId": "139805104097056"}}, {"startOffset": 957, "endOffset": 957, "line": 73, "type": {"nodeId": "139805104097760"}}]}, "definitions": {"subtypes": {"__name__": {"kind": "Variable", "content": {"name": "__name__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__doc__": {"kind": "Variable", "content": {"name": "__doc__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__file__": {"kind": "Variable", "content": {"name": "__file__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__package__": {"kind": "Variable", "content": {"name": "__package__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276669024"}, "isInitializedInClass": false}}, "__annotations__": {"kind": "Variable", "content": {"name": "__annotations__", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671488", "args": [{"nodeId": "139805276669024"}, {"nodeId": "A"}]}, "isInitializedInClass": false}}, "P": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104095296"}}}, "S": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104095648"}}}, "S1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104096000"}}}, "func_for_P": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805099822880"}, "name": "func_for_P"}}, "R": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104096352"}}}, "RImpl": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104096704"}}}, "func_for_R": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805104898784"}, "name": "func_for_R"}}, "a": {"kind": "Variable", "content": {"name": "a", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805276671136", "args": [{"nodeId": "139805481893056"}]}, "isInitializedInClass": false}}, "func_abs": {"kind": "FuncDef", "content": {"args": [{"kind": "Variable", "content": {"name": "x", "isProperty": false, "isSelf": false, "type": {"nodeId": "A"}, "isInitializedInClass": false}}], "type": {"nodeId": "139805193098784"}, "name": "func_abs"}}, "b": {"kind": "Variable", "content": {"name": "b", "isProperty": false, "isSelf": false, "type": {"nodeId": "139805481893056"}, "isInitializedInClass": false}}, "SupportsCall": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104097056"}}}, "HasF": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104097408"}}}, "SupportsSpecificCall": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104097760"}}}, "HasSpecificF": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805104098112"}}}}, "collections": {"UserDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277005504"}}}, "UserList": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277005856"}}}, "UserString": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277006208"}}}, "deque": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277006560"}}}, "Counter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276880064"}}}, "_OrderedDictKeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267806336"}}}, "_OrderedDictItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267806688"}}}, "_OrderedDictValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267807040"}}}, "_odict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277006912"}}}, "_odict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277007264"}}}, "_odict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277007616"}}}, "OrderedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277007968"}}}, "defaultdict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276880416"}}}, "ChainMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277008320"}}}}, "numpy": {"PytestTester": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901440"}}}, "_ctypes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353952"}}}, "_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853984"}}}, "_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797344"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854688"}}}, "_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807552"}}}, "NBitBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855744"}}}, "_256Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856096"}}}, "_128Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856448"}}}, "_96Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856800"}}}, "_80Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857152"}}}, "_64Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857504"}}}, "_32Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857856"}}}, "_16Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858208"}}}, "_8Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858560"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978368"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978720"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979072"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979424"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979776"}}}, "_BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345504"}}}, "_BoolBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345856"}}}, "_BoolSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346208"}}}, "_BoolTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346560"}}}, "_BoolMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346912"}}}, "_BoolDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347264"}}}, "_TD64Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347616"}}}, "_IntTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347968"}}}, "_UnsignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348320"}}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348672"}}}, "_UnsignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349024"}}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349376"}}}, "_SignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349728"}}}, "_SignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350080"}}}, "_SignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350432"}}}, "_SignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350784"}}}, "_FloatOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351136"}}}, "_FloatMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351488"}}}, "_FloatDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351840"}}}, "_ComplexOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352192"}}}, "_NumberOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352544"}}}, "_ComparisonOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353600"}}}, "flagsobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154868768"}}}, "Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981888"}}}, "_IOProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155354304"}}}, "_MemMapIOProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155354656"}}}, "_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155355008"}}}, "dtype": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150983296"}}}, "flatiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150983648"}}}, "_ArrayOrScalarCommon": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155355360"}}}, "_SupportsItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155355712"}}}, "_SupportsReal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155356064"}}}, "_SupportsImag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155356416"}}}, "ndarray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155356768"}}}, "generic": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155357120"}}}, "number": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155357472"}}}, "bool_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155357824"}}}, "object_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155358176"}}}, "_DatetimeScalar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155358528"}}}, "datetime64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155358880"}}}, "integer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155359232"}}}, "signedinteger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155359584"}}}, "timedelta64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155359936"}}}, "unsignedinteger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155360288"}}}, "inexact": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150576704"}}}, "floating": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150577056"}}}, "complexfloating": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150577408"}}}, "flexible": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150577760"}}}, "void": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150578112"}}}, "character": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150578464"}}}, "bytes_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150578816"}}}, "str_": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150579168"}}}, "ufunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150579520"}}}, "_CopyMode": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150579872"}}}, "ModuleDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150580224"}}}, "VisibleDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150580576"}}}, "ComplexWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150580928"}}}, "RankWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150581280"}}}, "TooHardError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150581632"}}}, "AxisError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150581984"}}}, "errstate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150582336"}}}, "ndenumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150984000"}}}, "ndindex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150582688"}}}, "DataSource": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150583040"}}}, "broadcast": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150583392"}}}, "busdaycalendar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150583744"}}}, "finfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150984352"}}}, "iinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150584096"}}}, "format_parser": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150584448"}}}, "recarray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150584800"}}}, "record": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150585152"}}}, "nditer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150585504"}}}, "memmap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150585856"}}}, "vectorize": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150586208"}}}, "poly1d": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150586560"}}}, "matrix": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150586912"}}}, "chararray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587264"}}}, "_SupportsDLPack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587616"}}}}, "typing": {"_ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010432"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481882848"}}}, "_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481883200"}}}, "ParamSpecArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481883552"}}}, "ParamSpecKwargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481883904"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481884256"}}}, "NewType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481884608"}}}, "_Alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481884960"}}}, "_ProtocolMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276995648"}}}, "SupportsInt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276996000"}}}, "SupportsFloat": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276996352"}}}, "SupportsComplex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276996704"}}}, "SupportsBytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276997056"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276997408"}}}, "SupportsAbs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481885312"}}}, "SupportsRound": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481885664"}}}, "Sized": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276997760"}}}, "Hashable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276998112"}}}, "Iterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481886016"}}}, "Iterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481886368"}}}, "Reversible": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481886720"}}}, "Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481887072"}}}, "Awaitable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481887424"}}}, "Coroutine": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481887776"}}}, "AwaitableGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276998464"}}}, "AsyncIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481888128"}}}, "AsyncIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481888480"}}}, "AsyncGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481888832"}}}, "Container": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481889184"}}}, "Collection": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481889536"}}}, "Sequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481889888"}}}, "MutableSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481890240"}}}, "AbstractSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481890592"}}}, "MutableSet": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481890944"}}}, "MappingView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276998816"}}}, "ItemsView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276999168"}}}, "KeysView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276999520"}}}, "ValuesView": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276999872"}}}, "Mapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481891296"}}}, "MutableMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481891648"}}}, "IO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277000224"}}}, "BinaryIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277000576"}}}, "TextIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277000928"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277001280"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277001632"}}}, "ForwardRef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481892000"}}}}, "builtins": {"object": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481881792"}}}, "bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481882144"}}}, "function": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481882496"}}}, "staticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "classmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "type": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481892352"}}}, "super": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481892704"}}}, "int": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481893056"}}}, "float": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805481893408"}}}, "complex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276667968"}}}, "_FormatMapMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276668320"}}}, "_TranslateTable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276668672"}}}, "str": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276669024"}}}, "bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276669376"}}}, "bytearray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276669728"}}}, "memoryview": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276670080"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276670432"}}}, "tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276670784"}}}, "list": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276671136"}}}, "dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276671488"}}}, "set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277003040"}}}, "frozenset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277003392"}}}, "enumerate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277003744"}}}, "range": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276671840"}}}, "property": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276672192"}}}, "_NotImplementedType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276672544"}}}, "_PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268308768"}}}, "_SupportsSynchronousAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276672896"}}}, "filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277004096"}}}, "_GetItemIterable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276673248"}}}, "map": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277004448"}}}, "_SupportsWriteAndFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268309120"}}}, "_SupportsPow2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276673600"}}}, "_SupportsPow3NoneOnly": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276673952"}}}, "_SupportsPow3": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276674304"}}}, "reversed": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277004800"}}}, "_SupportsRound1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276674656"}}}, "_SupportsRound2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276675008"}}}, "_SupportsSumWithNoDefaultGiven": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268309472"}}}, "zip": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277005152"}}}, "ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276675360"}}}, "BaseException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276675712"}}}, "GeneratorExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276676064"}}}, "KeyboardInterrupt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276676416"}}}, "SystemExit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276676768"}}}, "Exception": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276677120"}}}, "StopIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276677472"}}}, "OSError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276677824"}}}, "ArithmeticError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276678176"}}}, "AssertionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276678528"}}}, "AttributeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276678880"}}}, "BufferError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276679232"}}}, "EOFError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276679584"}}}, "ImportError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276679936"}}}, "LookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276680288"}}}, "MemoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276680640"}}}, "NameError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276680992"}}}, "ReferenceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276681344"}}}, "RuntimeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276681696"}}}, "StopAsyncIteration": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276682048"}}}, "SyntaxError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276682400"}}}, "SystemError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276682752"}}}, "TypeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276683104"}}}, "ValueError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276683456"}}}, "FloatingPointError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276683808"}}}, "OverflowError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276864576"}}}, "ZeroDivisionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276864928"}}}, "ModuleNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276865280"}}}, "IndexError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276865632"}}}, "KeyError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276865984"}}}, "UnboundLocalError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276866336"}}}, "BlockingIOError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276866688"}}}, "ChildProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276867040"}}}, "ConnectionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276867392"}}}, "BrokenPipeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276867744"}}}, "ConnectionAbortedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276868096"}}}, "ConnectionRefusedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276868448"}}}, "ConnectionResetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276868800"}}}, "FileExistsError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276869152"}}}, "FileNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276869504"}}}, "InterruptedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276869856"}}}, "IsADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276870208"}}}, "NotADirectoryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276870560"}}}, "PermissionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276870912"}}}, "ProcessLookupError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276871264"}}}, "TimeoutError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276871616"}}}, "NotImplementedError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276871968"}}}, "RecursionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276872320"}}}, "IndentationError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276872672"}}}, "TabError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276873024"}}}, "UnicodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276873376"}}}, "UnicodeDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276873728"}}}, "UnicodeEncodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276874080"}}}, "UnicodeTranslateError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276874432"}}}, "Warning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276874784"}}}, "UserWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276875136"}}}, "DeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276875488"}}}, "SyntaxWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276875840"}}}, "RuntimeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276876192"}}}, "FutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276876544"}}}, "PendingDeprecationWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276876896"}}}, "ImportWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276877248"}}}, "UnicodeWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276877600"}}}, "BytesWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276877952"}}}, "ResourceWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276878304"}}}, "EncodingWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276878656"}}}}, "sys": {"_MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272039744"}}}, "_flags": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268310880"}}}, "_float_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268311232"}}}, "_hash_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268311584"}}}, "_implementation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272040096"}}}, "_int_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268508736"}}}, "_thread_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268509088"}}}, "_version_info": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268509440"}}}, "UnraisableHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272040448"}}}, "_asyncgen_hooks": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268509792"}}}}, "_collections_abc": {"dict_keys": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277001984"}}}, "dict_values": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277002336"}}}, "dict_items": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277002688"}}}}, "_typeshed": {"IdentityFunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267811616"}}}, "SupportsNext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267811968"}}}, "SupportsAnext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267812320"}}}, "SupportsDunderLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267812672"}}}, "SupportsDunderGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267813024"}}}, "SupportsDunderLE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267813376"}}}, "SupportsDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267813728"}}}, "SupportsAllComparisons": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267814080"}}}, "SupportsAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267814432"}}}, "SupportsRAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267814784"}}}, "SupportsSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267815136"}}}, "SupportsRSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267815488"}}}, "SupportsDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267815840"}}}, "SupportsRDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267816192"}}}, "SupportsIter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267816544"}}}, "SupportsAiter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267816896"}}}, "SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267817248"}}}, "SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267817600"}}}, "SupportsItems": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267817952"}}}, "SupportsKeysAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267818304"}}}, "SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267818656"}}}, "SupportsItemAccess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267819008"}}}, "HasFileno": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267819360"}}}, "SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267819712"}}}, "SupportsReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267820064"}}}, "SupportsNoArgReadline": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268033600"}}}, "SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268033952"}}}, "SliceableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268034304"}}}, "IndexableBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268034656"}}}, "SupportsGetItemBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268035008"}}}, "SizedBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268035360"}}}, "structseq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268035712"}}}, "DataclassInstance": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268036064"}}}}, "typing_extensions": {"_SpecialForm": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277008672"}}}, "_TypedDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277009024"}}}, "SupportsIndex": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277009376"}}}, "NamedTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277009728"}}}, "TypeVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010080"}}}, "ParamSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010432"}}}, "TypeVarTuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277010784"}}}, "TypeAliasType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277011136"}}}, "Buffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805277011488"}}}}, "types": {"_Cell": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272031296"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272031648"}}}, "CodeType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272032000"}}}, "MappingProxyType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272032352"}}}, "SimpleNamespace": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272032704"}}}, "_LoaderProtocol": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272033056"}}}, "ModuleType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272033408"}}}, "GeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272033760"}}}, "AsyncGeneratorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272034112"}}}, "CoroutineType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272034464"}}}, "_StaticFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272034816"}}}, "MethodType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272035168"}}}, "BuiltinFunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272035520"}}}, "WrapperDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272035872"}}}, "MethodWrapperType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272036224"}}}, "MethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272036576"}}}, "ClassMethodDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272036928"}}}, "TracebackType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272037280"}}}, "FrameType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272037632"}}}, "GetSetDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272037984"}}}, "MemberDescriptorType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272038336"}}}, "GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272038688"}}}, "NoneType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272039040"}}}, "UnionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272039392"}}}}, "numpy.core._internal": {"_ctypes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353952"}}}}, "numpy._typing._callable": {"_BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345504"}}}, "_BoolBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155345856"}}}, "_BoolSub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346208"}}}, "_BoolTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346560"}}}, "_BoolMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155346912"}}}, "_BoolDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347264"}}}, "_TD64Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347616"}}}, "_IntTrueDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155347968"}}}, "_UnsignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348320"}}}, "_UnsignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155348672"}}}, "_UnsignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349024"}}}, "_UnsignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349376"}}}, "_SignedIntOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155349728"}}}, "_SignedIntBitOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350080"}}}, "_SignedIntMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350432"}}}, "_SignedIntDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155350784"}}}, "_FloatOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351136"}}}, "_FloatMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351488"}}}, "_FloatDivMod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155351840"}}}, "_ComplexOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352192"}}}, "_NumberOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352544"}}}, "_SupportsLT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155352896"}}}, "_SupportsGT": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353248"}}}, "_ComparisonOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805155353600"}}}}, "numpy.core.records": {"_SupportsReadInto": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972384"}}}}, "numpy.core.multiarray": {"_SupportsLenAndGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154868416"}}}, "flagsobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154868768"}}}}, "numpy.core.numerictypes": {"_CastFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154867712"}}}, "_typedict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150982240"}}}}, "numpy.lib.arraypad": {"_ModeFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154867360"}}}}, "numpy.lib.arrayterator": {"Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981888"}}}}, "numpy.lib.function_base": {"_TrimZerosSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154866656"}}}, "_SupportsWriteFlush": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154867008"}}}}, "numpy.lib.index_tricks": {"nd_grid": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154864192"}}}, "MGridClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154864544"}}}, "OGridClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154864896"}}}, "AxisConcatenator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154865248"}}}, "RClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154865600"}}}, "CClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154865952"}}}, "IndexExpression": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154866304"}}}}, "numpy.lib.npyio": {"_SupportsGetItem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154862080"}}}, "_SupportsRead": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154862432"}}}, "_SupportsReadSeek": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154862784"}}}, "_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154863136"}}}, "BagObj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154863488"}}}, "NpzFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154863840"}}}}, "numpy.lib.shape_base": {"_ArrayWrap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154860672"}}}, "_ArrayPrepare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154861024"}}}, "_SupportsArrayWrap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154861376"}}}, "_SupportsArrayPrepare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154861728"}}}}, "numpy.lib.stride_tricks": {"DummyArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154860320"}}}}, "numpy.lib.type_check": {"_SupportsReal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154859616"}}}, "_SupportsImag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154859968"}}}}, "numpy.lib.utils": {"_SupportsWrite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858912"}}}, "_Deprecate": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154859264"}}}}, "numpy._pytesttester": {"PytestTester": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901440"}}}}, "numpy._typing": {"NBitBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855744"}}}, "_256Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856096"}}}, "_128Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856448"}}}, "_96Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154856800"}}}, "_80Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857152"}}}, "_64Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857504"}}}, "_32Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154857856"}}}, "_16Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858208"}}}, "_8Bit": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154858560"}}}, "_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797344"}}}, "_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807552"}}}, "_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853984"}}}, "_SupportsArrayFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854336"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854688"}}}, "_GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806496"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978368"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978720"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979072"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979424"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979776"}}}}, "numpy.ctypeslib": {"_ndptr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855040"}}}, "_concrete_ndptr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154855392"}}}}, "numpy.lib": {"NumpyVersion": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089472"}}}, "Arrayterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981888"}}}}, "numpy.linalg": {"LinAlgError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972032"}}}}, "numpy.ma": {"MAError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808256"}}}, "MaskError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808608"}}}, "MaskedArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980128"}}}, "mvoid": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980480"}}}}, "numpy.polynomial": {"Chebyshev": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150971328"}}}, "Hermite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970976"}}}, "HermiteE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970624"}}}, "Laguerre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970272"}}}, "Legendre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150969920"}}}, "Polynomial": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592544"}}}}, "numpy.random": {"Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977664"}}}, "MT19937": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977312"}}}, "PCG64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150975904"}}}, "PCG64DXSM": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150976256"}}}, "Philox": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150974848"}}}, "SFC64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150973792"}}}, "BitGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592192"}}}, "SeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591840"}}}, "RandomState": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972736"}}}}, "numpy.testing": {"IgnoreException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588320"}}}, "clear_and_catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588672"}}}, "KnownFailureException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587968"}}}, "suppress_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589728"}}}}, "os": {"_Environ": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272045376"}}}, "stat_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268309824"}}}, "PathLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268510496"}}}, "DirEntry": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272045728"}}}, "statvfs_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268510848"}}}, "uname_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268511200"}}}, "terminal_size": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268511552"}}}, "_ScandirIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268511904"}}}, "_wrap_close": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268512256"}}}, "times_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268512608"}}}, "waitid_result": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268512960"}}}, "sched_param": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268513312"}}}}, "mmap": {"mmap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901088"}}}}, "ctypes": {"CDLL": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184486464"}}}, "PyDLL": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184486816"}}}, "LibraryLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171900736"}}}, "_FuncPointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184487168"}}}, "_NamedFuncPointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184487520"}}}, "c_byte": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184487872"}}}, "c_char": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184488224"}}}, "c_char_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184488576"}}}, "c_double": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184488928"}}}, "c_longdouble": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184489280"}}}, "c_float": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184489632"}}}, "c_int": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184489984"}}}, "c_int8": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184490336"}}}, "c_int16": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184490688"}}}, "c_int32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184491040"}}}, "c_int64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171892288"}}}, "c_long": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171892640"}}}, "c_longlong": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171892992"}}}, "c_short": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171893344"}}}, "c_size_t": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171893696"}}}, "c_ssize_t": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171894048"}}}, "c_ubyte": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171894400"}}}, "c_uint": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171894752"}}}, "c_uint8": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171895104"}}}, "c_uint16": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171895456"}}}, "c_uint32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171895808"}}}, "c_uint64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171896160"}}}, "c_ulong": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171896512"}}}, "c_ulonglong": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171896864"}}}, "c_ushort": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171897216"}}}, "c_void_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171897568"}}}, "c_wchar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171897920"}}}, "c_wchar_p": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171898272"}}}, "c_bool": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171898624"}}}, "py_object": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171898976"}}}, "BigEndianStructure": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171899328"}}}, "LittleEndianStructure": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171899680"}}}}, "array": {"array": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184481536"}}}}, "datetime": {"tzinfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797696"}}}, "timezone": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167798048"}}}, "date": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167798752"}}}, "time": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167799104"}}}, "timedelta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167799456"}}}, "datetime": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167799808"}}}}, "enum": {"_EnumDict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272616352"}}}, "EnumMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272616704"}}}, "Enum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272617056"}}}, "IntEnum": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272617408"}}}, "Flag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272617760"}}}, "IntFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618112"}}}, "auto": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618464"}}}}, "abc": {"ABCMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276879008"}}}, "abstractclassmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractstaticmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "0"}}}, "abstractproperty": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276879360"}}}, "ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805276879712"}}}}, "contextlib": {"AbstractContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267652704"}}}, "AbstractAsyncContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267653056"}}}, "ContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267653408"}}}, "_GeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267653760"}}}, "AsyncContextDecorator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267654112"}}}, "_AsyncGeneratorContextManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267654464"}}}, "_SupportsClose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267654816"}}}, "closing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267655168"}}}, "_SupportsAclose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267655520"}}}, "aclosing": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267655872"}}}, "suppress": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267656224"}}}, "_RedirectStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267804224"}}}, "redirect_stdout": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267804576"}}}, "redirect_stderr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267804928"}}}, "ExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267805280"}}}, "AsyncExitStack": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267805632"}}}, "nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267805984"}}}}, "re": {"Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272044672"}}}, "Pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272045024"}}}, "RegexFlag": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268510144"}}}}, "_ast": {"AST": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268036768"}}}, "mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268037120"}}}, "type_ignore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268037472"}}}, "TypeIgnore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268037824"}}}, "FunctionType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268038176"}}}, "Module": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268038528"}}}, "Interactive": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268038880"}}}, "Expression": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268039232"}}}, "stmt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268039584"}}}, "FunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268039936"}}}, "AsyncFunctionDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268040288"}}}, "ClassDef": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268040640"}}}, "Return": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268040992"}}}, "Delete": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268041344"}}}, "Assign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268041696"}}}, "AugAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268042048"}}}, "AnnAssign": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268042400"}}}, "For": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268042752"}}}, "AsyncFor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268043104"}}}, "While": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268043456"}}}, "If": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268043808"}}}, "With": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268044160"}}}, "AsyncWith": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268044512"}}}, "Raise": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268044864"}}}, "Try": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268045216"}}}, "Assert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268045568"}}}, "Import": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268045920"}}}, "ImportFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268046272"}}}, "Global": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268046624"}}}, "Nonlocal": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268046976"}}}, "Expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268047328"}}}, "Pass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268047680"}}}, "Break": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268048032"}}}, "Continue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268048384"}}}, "expr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268048736"}}}, "BoolOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268049088"}}}, "BinOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268049440"}}}, "UnaryOp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268181056"}}}, "Lambda": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268181408"}}}, "IfExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268181760"}}}, "Dict": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268182112"}}}, "Set": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268182464"}}}, "ListComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268182816"}}}, "SetComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268183168"}}}, "DictComp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268183520"}}}, "GeneratorExp": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268183872"}}}, "Await": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268184224"}}}, "Yield": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268184576"}}}, "YieldFrom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268184928"}}}, "Compare": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268185280"}}}, "Call": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268185632"}}}, "FormattedValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268185984"}}}, "JoinedStr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268186336"}}}, "Constant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268186688"}}}, "NamedExpr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268187040"}}}, "Attribute": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268187392"}}}, "Slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268187744"}}}, "Subscript": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268188096"}}}, "Starred": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268188448"}}}, "Name": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268188800"}}}, "List": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268189152"}}}, "Tuple": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268189504"}}}, "expr_context": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268189856"}}}, "Del": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268190208"}}}, "Load": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268190560"}}}, "Store": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268190912"}}}, "boolop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268191264"}}}, "And": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268191616"}}}, "Or": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268191968"}}}, "operator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268192320"}}}, "Add": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268192672"}}}, "BitAnd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268193024"}}}, "BitOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268193376"}}}, "BitXor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268193728"}}}, "Div": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268194080"}}}, "FloorDiv": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268194432"}}}, "LShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268194784"}}}, "Mod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268195136"}}}, "Mult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268195488"}}}, "MatMult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268195840"}}}, "Pow": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268196192"}}}, "RShift": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268196544"}}}, "Sub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268196896"}}}, "unaryop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268295744"}}}, "Invert": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268296096"}}}, "Not": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268296448"}}}, "UAdd": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268296800"}}}, "USub": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268297152"}}}, "cmpop": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268297504"}}}, "Eq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268297856"}}}, "Gt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268298208"}}}, "GtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268298560"}}}, "In": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268298912"}}}, "Is": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268299264"}}}, "IsNot": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268299616"}}}, "Lt": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268299968"}}}, "LtE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268300320"}}}, "NotEq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268300672"}}}, "NotIn": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268301024"}}}, "comprehension": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268301376"}}}, "excepthandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268301728"}}}, "ExceptHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268302080"}}}, "arguments": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268302432"}}}, "arg": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268302784"}}}, "keyword": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268303136"}}}, "alias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268303488"}}}, "withitem": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268303840"}}}, "Match": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268304192"}}}, "pattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268304544"}}}, "match_case": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268304896"}}}, "MatchValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268305248"}}}, "MatchSingleton": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268305600"}}}, "MatchSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268305952"}}}, "MatchStar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268306304"}}}, "MatchMapping": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268306656"}}}, "MatchClass": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268307008"}}}, "MatchAs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268307360"}}}, "MatchOr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268307712"}}}}, "io": {"UnsupportedOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272046080"}}}, "IOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272046432"}}}, "RawIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272046784"}}}, "BufferedIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272047136"}}}, "FileIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272604736"}}}, "BytesIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272605088"}}}, "BufferedReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272605440"}}}, "BufferedWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272605792"}}}, "BufferedRandom": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272606144"}}}, "BufferedRWPair": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272606496"}}}, "TextIOBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272606848"}}}, "TextIOWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607200"}}}, "StringIO": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607552"}}}, "IncrementalNewlineDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268521760"}}}}, "importlib.abc": {"Finder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612128"}}}, "Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612480"}}}, "ResourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612832"}}}, "InspectLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272613184"}}}, "ExecutionLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272613536"}}}, "SourceLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272613888"}}}, "MetaPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272614240"}}}, "PathEntryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272614592"}}}, "FileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272614944"}}}, "ResourceReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272615296"}}}, "Traversable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272615648"}}}, "TraversableResources": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272616000"}}}}, "importlib.machinery": {"ModuleSpec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272611424"}}}, "BuiltinImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268514720"}}}, "FrozenImporter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268515072"}}}, "WindowsRegistryFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268515424"}}}, "PathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272611776"}}}, "FileFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268515776"}}}, "SourceFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268516128"}}}, "SourcelessFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268516480"}}}, "ExtensionFileLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268516832"}}}}, "dataclasses": {"_MISSING_TYPE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267650592"}}}, "KW_ONLY": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267650944"}}}, "_DefaultFactory": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267651296"}}}, "Field": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267651648"}}}, "FrozenInstanceError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267652000"}}}, "InitVar": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267652352"}}}}, "numpy._typing._generic_alias": {"_GenericAlias": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806496"}}}}, "numpy._typing._nested_sequence": {"_NestedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167797344"}}}}, "__future__": {"_Feature": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184481184"}}}}, "numpy.ma.mrecords": {"MaskedRecords": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150984704"}}}}, "zipfile": {"BadZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184477312"}}}, "LargeZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184477664"}}}, "_ZipStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184478016"}}}, "_SupportsReadSeekTell": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184478368"}}}, "_ClosableZipStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184478720"}}}, "ZipExtFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184479072"}}}, "_Writer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184479424"}}}, "ZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184479776"}}}, "PyZipFile": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184480128"}}}, "ZipInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184480480"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184480832"}}}}, "ast": {"_ABC": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089824"}}}, "Num": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193090176"}}}, "Str": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193090528"}}}, "Bytes": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193090880"}}}, "NameConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193091232"}}}, "Ellipsis": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193091584"}}}, "slice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193091936"}}}, "ExtSlice": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193092288"}}}, "Index": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193092640"}}}, "Suite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184475200"}}}, "AugLoad": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184475552"}}}, "AugStore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184475904"}}}, "Param": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184476256"}}}, "NodeVisitor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184476608"}}}, "NodeTransformer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184476960"}}}}, "numpy._typing._dtype_like": {"_SupportsDType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807552"}}}}, "numpy._typing._array_like": {"_SupportsArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853984"}}}, "_SupportsArrayFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854336"}}}, "_UnknownType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154854688"}}}}, "numpy._typing._ufunc": {"_SupportsArrayUFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978016"}}}, "_UFunc_Nin1_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978368"}}}, "_UFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150978720"}}}, "_UFunc_Nin1_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979072"}}}, "_UFunc_Nin2_Nout2": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979424"}}}, "_GUFunc_Nin2_Nout1": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150979776"}}}}, "numpy.lib.mixins": {"NDArrayOperatorsMixin": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150971680"}}}}, "numpy.lib._version": {"NumpyVersion": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089472"}}}}, "math": {"_SupportsCeil": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193088416"}}}, "_SupportsFloor": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193088768"}}}, "_SupportsTrunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193089120"}}}}, "numpy.ma.extras": {"_fromnxfunction": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167812128"}}}, "_fromnxfunction_single": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154852928"}}}, "_fromnxfunction_seq": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853280"}}}, "_fromnxfunction_allargs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805154853632"}}}, "MAxisConcatenator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981184"}}}, "mr_class": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150981536"}}}}, "numpy.ma.core": {"MaskedArrayFutureWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167807904"}}}, "MAError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808256"}}}, "MaskError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808608"}}}, "_MaskedUFunc": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167808960"}}}, "_MaskedUnaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167809312"}}}, "_MaskedBinaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167809664"}}}, "_DomainedBinaryOperation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167810016"}}}, "_MaskedPrintOption": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167810368"}}}, "MaskedIterator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167810720"}}}, "MaskedArray": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980128"}}}, "mvoid": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980480"}}}, "MaskedConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150980832"}}}, "_extrema_operation": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167811072"}}}, "_frommethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167811424"}}}, "_convert2ma": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167811776"}}}}, "numpy.polynomial.chebyshev": {"Chebyshev": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150971328"}}}}, "numpy.polynomial.hermite": {"Hermite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970976"}}}}, "numpy.polynomial.hermite_e": {"HermiteE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970624"}}}}, "numpy.polynomial.laguerre": {"Laguerre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150970272"}}}}, "numpy.polynomial.legendre": {"Legendre": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150969920"}}}}, "numpy.polynomial.polynomial": {"Polynomial": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592544"}}}}, "numpy.random._generator": {"Generator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977664"}}}}, "numpy.random._mt19937": {"MT19937": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150977312"}}}}, "numpy.random._pcg64": {"PCG64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150975904"}}}, "PCG64DXSM": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150976256"}}}}, "numpy.random._philox": {"Philox": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150974848"}}}}, "numpy.random._sfc64": {"SFC64": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150973792"}}}}, "numpy.random.bit_generator": {"ISeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150590784"}}}, "ISpawnableSeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591136"}}}, "SeedlessSeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591488"}}}, "SeedSequence": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150591840"}}}, "BitGenerator": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150592192"}}}}, "numpy.random.mtrand": {"RandomState": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150972736"}}}}, "numpy.testing._private.utils": {"KnownFailureException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150587968"}}}, "IgnoreException": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588320"}}}, "clear_and_catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150588672"}}}, "_clear_and_catch_warnings_with_records": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589024"}}}, "_clear_and_catch_warnings_without_records": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589376"}}}, "suppress_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805150589728"}}}}, "unittest": {"FunctionTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802272"}}}, "SkipTest": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801216"}}}, "TestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801920"}}}, "TestLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804384"}}}, "TestProgram": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805088"}}}, "TestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167800160"}}}, "TextTestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803680"}}}, "TextTestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804032"}}}, "BaseTestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805792"}}}, "TestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806144"}}}, "IsolatedAsyncioTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803328"}}}}, "subprocess": {"CompletedProcess": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272040800"}}}, "SubprocessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272041152"}}}, "TimeoutExpired": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272041504"}}}, "CalledProcessError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272041856"}}}, "Popen": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272042208"}}}}, "_ctypes": {"_CDataMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184481888"}}}, "_CData": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184482240"}}}, "_SimpleCData": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184482592"}}}, "_CanCastTo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184482944"}}}, "_PointerLike": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184483296"}}}, "_Pointer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171900032"}}}, "_CArgObject": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184483648"}}}, "CFuncPtr": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184484000"}}}, "_CField": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184484352"}}}, "_StructUnionMeta": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184484704"}}}, "_StructUnionBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184485056"}}}, "Union": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184485408"}}}, "Structure": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184485760"}}}, "Array": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171900384"}}}, "ArgumentError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805184486112"}}}}, "time": {"struct_time": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193087712"}}}, "_ClockInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193088064"}}}}, "sre_constants": {"error": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272043968"}}}, "_NamedIntConstant": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272044320"}}}}, "codecs": {"_WritableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267807392"}}}, "_ReadableStream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267807744"}}}, "_Stream": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268517184"}}}, "_Encoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267808096"}}}, "_Decoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267808448"}}}, "_StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267808800"}}}, "_StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267809152"}}}, "_IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267809504"}}}, "_IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267809856"}}}, "CodecInfo": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268517536"}}}, "Codec": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267810208"}}}, "IncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267810560"}}}, "IncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267810912"}}}, "BufferedIncrementalEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268517888"}}}, "BufferedIncrementalDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268518240"}}}, "StreamWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268518592"}}}, "StreamReader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268518944"}}}, "StreamReaderWriter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268519296"}}}, "StreamRecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267811264"}}}}, "importlib": {"Loader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272612480"}}}}, "importlib.metadata": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607904"}}}, "PackageNotFoundError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272608608"}}}, "EntryPoint": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272609312"}}}, "EntryPoints": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272609664"}}}, "SelectableGroups": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272610016"}}}, "PackagePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268522112"}}}, "FileHash": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272610368"}}}, "Distribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272610720"}}}, "DistributionFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268513664"}}}, "MetadataPathFinder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268514368"}}}, "PathDistribution": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272611072"}}}}, "functools": {"_lru_cache_wrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193085600"}}}, "partial": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193085952"}}}, "partialmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193086304"}}}, "_SingleDispatchCallable": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193086656"}}}, "singledispatchmethod": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193087008"}}}, "cached_property": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193087360"}}}}, "numpy.polynomial._polybase": {"ABCPolyBase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193084544"}}}}, "numpy.polynomial.polyutils": {"RankWarning": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193084192"}}}}, "threading": {"ThreadError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193079264"}}}, "local": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193079616"}}}, "Thread": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193079968"}}}, "_DummyThread": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193080320"}}}, "Lock": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193080672"}}}, "_RLock": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193081024"}}}, "Condition": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193081376"}}}, "Semaphore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193081728"}}}, "BoundedSemaphore": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193082080"}}}, "Event": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193082432"}}}, "Timer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193082784"}}}, "Barrier": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193083136"}}}, "BrokenBarrierError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193083488"}}}}, "unittest.case": {"_BaseTestCaseContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167800864"}}}, "SkipTest": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801216"}}}, "_SupportsAbsAndDunderGE": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801568"}}}, "TestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167801920"}}}, "FunctionTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802272"}}}, "_AssertRaisesContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802624"}}}, "_AssertWarnsContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167802976"}}}}, "warnings": {"_OptionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171908128"}}}, "WarningMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167796288"}}}, "catch_warnings": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167796640"}}}}, "unittest.loader": {"TestLoader": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804384"}}}}, "unittest.main": {"_TestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804736"}}}, "TestProgram": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805088"}}}}, "unittest.result": {"TestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167800160"}}}}, "unittest.runner": {"TextTestResult": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803680"}}}, "TextTestRunner": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167804032"}}}}, "unittest.suite": {"BaseTestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805792"}}}, "TestSuite": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167806144"}}}}, "unittest.async_case": {"IsolatedAsyncioTestCase": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167803328"}}}}, "json": {"JSONDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078208"}}}, "JSONDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078560"}}}, "JSONEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077856"}}}}, "sre_parse": {"Verbose": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272042560"}}}, "_State": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272042912"}}}, "SubPattern": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272043264"}}}, "Tokenizer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272043616"}}}}, "_codecs": {"_EncodingMap": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268036416"}}}}, "importlib.metadata._meta": {"PackageMetadata": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272607904"}}}, "SimplePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272608256"}}}}, "email.message": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619872"}}}, "MIMEPart": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272620224"}}}, "EmailMessage": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272620576"}}}}, "pathlib": {"PurePath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268519648"}}}, "PurePosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268520000"}}}, "PureWindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268520352"}}}, "Path": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268520704"}}}, "PosixPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268521056"}}}, "WindowsPath": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268521408"}}}}, "numpy.compat": {"contextlib_nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901792"}}}}, "_thread": {"LockType": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078912"}}}, "_ExceptHookArgs": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193083840"}}}}, "unittest._log": {"_AssertLogsContext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805167805440"}}}}, "logging": {"Filterer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171902144"}}}, "Manager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171902496"}}}, "Logger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171902848"}}}, "Handler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171903200"}}}, "Formatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171903552"}}}, "BufferingFormatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171903904"}}}, "Filter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171904256"}}}, "LogRecord": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171904608"}}}, "LoggerAdapter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171907776"}}}, "StreamHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171904960"}}}, "FileHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171905312"}}}, "NullHandler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171905664"}}}, "PlaceHolder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171906016"}}}, "RootLogger": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171906368"}}}, "PercentStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171906720"}}}, "StrFormatStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171907072"}}}, "StringTemplateStyle": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171907424"}}}}, "json.decoder": {"JSONDecodeError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078208"}}}, "JSONDecoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193078560"}}}}, "json.encoder": {"JSONEncoder": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077856"}}}}, "email": {"Message": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619872"}}}, "Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618816"}}}}, "email.charset": {"Charset": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267650240"}}}}, "email.contentmanager": {"ContentManager": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267649888"}}}}, "email.errors": {"MessageError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267640736"}}}, "MessageParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267641088"}}}, "HeaderParseError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267641440"}}}, "BoundaryError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267641792"}}}, "MultipartConversionError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267642144"}}}, "CharsetError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267642496"}}}, "MessageDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267642848"}}}, "NoBoundaryInMultipartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267643200"}}}, "StartBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267643552"}}}, "FirstHeaderLineIsContinuationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267643904"}}}, "MisplacedEnvelopeHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267644256"}}}, "MultipartInvariantViolationDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267644608"}}}, "InvalidMultipartContentTransferEncodingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267644960"}}}, "UndecodableBytesDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267645312"}}}, "InvalidBase64PaddingDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267645664"}}}, "InvalidBase64CharactersDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267646016"}}}, "InvalidBase64LengthDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267646368"}}}, "CloseBoundaryNotFoundDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267646720"}}}, "MissingHeaderBodySeparatorDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267647072"}}}, "HeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267647424"}}}, "InvalidHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267647776"}}}, "HeaderMissingRequiredValue": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267648128"}}}, "NonPrintableDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267648480"}}}, "ObsoleteHeaderDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267648832"}}}, "NonASCIILocalPartDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267649184"}}}, "InvalidDateDefect": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267649536"}}}}, "email.policy": {"Policy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272618816"}}}, "Compat32": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619168"}}}, "EmailPolicy": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805272619520"}}}}, "numpy.compat.py3k": {"contextlib_nullcontext": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805171901792"}}}}, "textwrap": {"TextWrapper": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077504"}}}}, "string": {"Template": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193076800"}}}, "Formatter": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805193077152"}}}}, "email.header": {"Header": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805267640384"}}}}, "pickle": {"_ReadableFileobj": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268522464"}}}, "PickleBuffer": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268522816"}}}, "PickleError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268523168"}}}, "PicklingError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268523520"}}}, "UnpicklingError": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268523872"}}}, "Pickler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268524224"}}}, "Unpickler": {"kind": "ClassDef", "content": {"type": {"nodeId": "139805268524576"}}}}}, "names": {"subtypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "numpy", "kind": "Module", "fullname": "numpy"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing.ParamSpec"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "ByteString", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "P", "kind": "LocalType"}, {"name": "S", "kind": "LocalType"}, {"name": "S1", "kind": "LocalType"}, {"name": "func_for_P", "kind": "Other"}, {"name": "R", "kind": "LocalType"}, {"name": "RImpl", "kind": "LocalType"}, {"name": "func_for_R", "kind": "Other"}, {"name": "a", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "func_abs", "kind": "Other"}, {"name": "b", "kind": "Other"}, {"name": "SupportsCall", "kind": "LocalType"}, {"name": "HasF", "kind": "LocalType"}, {"name": "SupportsSpecificCall", "kind": "LocalType"}, {"name": "HasSpecificF", "kind": "LocalType"}], "collections": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "Callable", "kind": "Other"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "namedtuple", "kind": "Other"}, {"name": "UserDict", "kind": "LocalType"}, {"name": "UserList", "kind": "LocalType"}, {"name": "UserString", "kind": "LocalType"}, {"name": "deque", "kind": "LocalType"}, {"name": "Counter", "kind": "LocalType"}, {"name": "_OrderedDictKeysView", "kind": "LocalType"}, {"name": "_OrderedDictItemsView", "kind": "LocalType"}, {"name": "_OrderedDictValuesView", "kind": "LocalType"}, {"name": "_odict_keys", "kind": "LocalType"}, {"name": "_odict_items", "kind": "LocalType"}, {"name": "_odict_values", "kind": "LocalType"}, {"name": "OrderedDict", "kind": "LocalType"}, {"name": "defaultdict", "kind": "LocalType"}, {"name": "ChainMap", "kind": "LocalType"}], "numpy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "mmap", "kind": "Module", "fullname": "mmap"}, {"name": "ct", "kind": "Module", "fullname": "ctypes"}, {"name": "_array", "kind": "Module", "fullname": "array"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "ContextDecorator", "kind": "ImportedType", "fullname": "contextlib.ContextDecorator"}, {"name": "contextmanager", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "PytestTester", "kind": "LocalType"}, {"name": "_ctypes", "kind": "LocalType"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_NestedSequence", "kind": "LocalType"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "NBitBase", "kind": "LocalType"}, {"name": "_256Bit", "kind": "LocalType"}, {"name": "_128Bit", "kind": "LocalType"}, {"name": "_96Bit", "kind": "LocalType"}, {"name": "_80Bit", "kind": "LocalType"}, {"name": "_64Bit", "kind": "LocalType"}, {"name": "_32Bit", "kind": "LocalType"}, {"name": "_16Bit", "kind": "LocalType"}, {"name": "_8Bit", "kind": "LocalType"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_BoolOp", "kind": "LocalType"}, {"name": "_BoolBitOp", "kind": "LocalType"}, {"name": "_BoolSub", "kind": "LocalType"}, {"name": "_BoolTrueDiv", "kind": "LocalType"}, {"name": "_BoolMod", "kind": "LocalType"}, {"name": "_BoolDivMod", "kind": "LocalType"}, {"name": "_TD64Div", "kind": "LocalType"}, {"name": "_IntTrueDiv", "kind": "LocalType"}, {"name": "_UnsignedIntOp", "kind": "LocalType"}, {"name": "_UnsignedIntBitOp", "kind": "LocalType"}, {"name": "_UnsignedIntMod", "kind": "LocalType"}, {"name": "_UnsignedIntDivMod", "kind": "LocalType"}, {"name": "_SignedIntOp", "kind": "LocalType"}, {"name": "_SignedIntBitOp", "kind": "LocalType"}, {"name": "_SignedIntMod", "kind": "LocalType"}, {"name": "_SignedIntDivMod", "kind": "LocalType"}, {"name": "_FloatOp", "kind": "LocalType"}, {"name": "_FloatMod", "kind": "LocalType"}, {"name": "_FloatDivMod", "kind": "LocalType"}, {"name": "_ComplexOp", "kind": "LocalType"}, {"name": "_NumberOp", "kind": "LocalType"}, {"name": "_ComparisonOp", "kind": "LocalType"}, {"name": "uint128", "kind": "Other"}, {"name": "uint256", "kind": "Other"}, {"name": "int128", "kind": "Other"}, {"name": "int256", "kind": "Other"}, {"name": "float80", "kind": "Other"}, {"name": "float96", "kind": "Other"}, {"name": "float128", "kind": "Other"}, {"name": "float256", "kind": "Other"}, {"name": "complex160", "kind": "Other"}, {"name": "complex192", "kind": "Other"}, {"name": "complex256", "kind": "Other"}, {"name": "complex512", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ctypeslib", "kind": "Module", "fullname": "numpy.ctypeslib"}, {"name": "fft", "kind": "Module", "fullname": "numpy.fft"}, {"name": "lib", "kind": "Module", "fullname": "numpy.lib"}, {"name": "linalg", "kind": "Module", "fullname": "numpy.linalg"}, {"name": "ma", "kind": "Module", "fullname": "numpy.ma"}, {"name": "polynomial", "kind": "Module", "fullname": "numpy.polynomial"}, {"name": "random", "kind": "Module", "fullname": "numpy.random"}, {"name": "testing", "kind": "Module", "fullname": "numpy.testing"}, {"name": "version", "kind": "Module", "fullname": "numpy.version"}, {"name": "defchararray", "kind": "Module", "fullname": "numpy.core.defchararray"}, {"name": "records", "kind": "Module", "fullname": "numpy.core.records"}, {"name": "char", "kind": "Module", "fullname": "numpy.core.defchararray"}, {"name": "rec", "kind": "Module", "fullname": "numpy.core.records"}, {"name": "linspace", "kind": "Other"}, {"name": "logspace", "kind": "Other"}, {"name": "geomspace", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "argpartition", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "searchsorted", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "require", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "seterr", "kind": "Other"}, {"name": "geterr", "kind": "Other"}, {"name": "setbufsize", "kind": "Other"}, {"name": "getbufsize", "kind": "Other"}, {"name": "seterrcall", "kind": "Other"}, {"name": "geterrcall", "kind": "Other"}, {"name": "_ErrKind", "kind": "Other"}, {"name": "_ErrFunc", "kind": "Other"}, {"name": "_ErrDictOptional", "kind": "LocalType"}, {"name": "set_printoptions", "kind": "Other"}, {"name": "get_printoptions", "kind": "Other"}, {"name": "array2string", "kind": "Other"}, {"name": "format_float_scientific", "kind": "Other"}, {"name": "format_float_positional", "kind": "Other"}, {"name": "array_repr", "kind": "Other"}, {"name": "array_str", "kind": "Other"}, {"name": "set_string_function", "kind": "Other"}, {"name": "printoptions", "kind": "Other"}, {"name": "einsum", "kind": "Other"}, {"name": "einsum_path", "kind": "Other"}, {"name": "ALLOW_THREADS", "kind": "Other"}, {"name": "BUFSIZE", "kind": "Other"}, {"name": "CLIP", "kind": "Other"}, {"name": "MAXDIMS", "kind": "Other"}, {"name": "MAY_SHARE_BOUNDS", "kind": "Other"}, {"name": "MAY_SHARE_EXACT", "kind": "Other"}, {"name": "RAISE", "kind": "Other"}, {"name": "WRAP", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "lexsort", "kind": "Other"}, {"name": "can_cast", "kind": "Other"}, {"name": "min_scalar_type", "kind": "Other"}, {"name": "result_type", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "vdot", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "copyto", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "shares_memory", "kind": "Other"}, {"name": "may_share_memory", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "ascontiguousarray", "kind": "Other"}, {"name": "asfortranarray", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "busday_count", "kind": "Other"}, {"name": "busday_offset", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "datetime_as_string", "kind": "Other"}, {"name": "datetime_data", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "fromiter", "kind": "Other"}, {"name": "is_busday", "kind": "Other"}, {"name": "promote_types", "kind": "Other"}, {"name": "seterrobj", "kind": "Other"}, {"name": "geterrobj", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "frompyfunc", "kind": "Other"}, {"name": "nested_iters", "kind": "Other"}, {"name": "flagsobj", "kind": "LocalType"}, {"name": "zeros_like", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "full", "kind": "Other"}, {"name": "full_like", "kind": "Other"}, {"name": "count_nonzero", "kind": "Other"}, {"name": "isfortran", "kind": "Other"}, {"name": "argwhere", "kind": "Other"}, {"name": "flatnonzero", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "tensordot", "kind": "Other"}, {"name": "roll", "kind": "Other"}, {"name": "rollaxis", "kind": "Other"}, {"name": "moveaxis", "kind": "Other"}, {"name": "cross", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "isscalar", "kind": "Other"}, {"name": "binary_repr", "kind": "Other"}, {"name": "base_repr", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "array_equal", "kind": "Other"}, {"name": "array_equiv", "kind": "Other"}, {"name": "maximum_sctype", "kind": "Other"}, {"name": "issctype", "kind": "Other"}, {"name": "obj2sctype", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "sctype2char", "kind": "Other"}, {"name": "find_common_type", "kind": "Other"}, {"name": "nbytes", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "block", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "emath", "kind": "Module", "fullname": "numpy.lib.scimath"}, {"name": "pad", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}, {"name": "select", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "digitize", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "msort", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "mgrid", "kind": "Other"}, {"name": "ogrid", "kind": "Other"}, {"name": "r_", "kind": "Other"}, {"name": "c_", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "index_exp", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "get_include", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "mat", "kind": "Other"}, {"name": "bmat", "kind": "Other"}, {"name": "_AnyStr_contra", "kind": "Other"}, {"name": "_IOProtocol", "kind": "LocalType"}, {"name": "_MemMapIOProtocol", "kind": "LocalType"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "__git_version__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "cumproduct", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "show_config", "kind": "Other"}, {"name": "_NdArraySubClass", "kind": "Other"}, {"name": "_DTypeScalar_co", "kind": "Other"}, {"name": "_ByteOrder", "kind": "Other"}, {"name": "dtype", "kind": "LocalType"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_FlatIterSelf", "kind": "Other"}, {"name": "flatiter", "kind": "LocalType"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_PartitionKind", "kind": "Other"}, {"name": "_SortKind", "kind": "Other"}, {"name": "_SortSide", "kind": "Other"}, {"name": "_ArraySelf", "kind": "Other"}, {"name": "_ArrayOrScalarCommon", "kind": "LocalType"}, {"name": "_DType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_FlexDType", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_ShapeType2", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_ArrayUInt_co", "kind": "Other"}, {"name": "_ArrayInt_co", "kind": "Other"}, {"name": "_ArrayFloat_co", "kind": "Other"}, {"name": "_ArrayComplex_co", "kind": "Other"}, {"name": "_ArrayNumber_co", "kind": "Other"}, {"name": "_ArrayTD64_co", "kind": "Other"}, {"name": "_dtype", "kind": "Other"}, {"name": "_PyCapsule", "kind": "Other"}, {"name": "_SupportsItem", "kind": "LocalType"}, {"name": "_SupportsReal", "kind": "LocalType"}, {"name": "_SupportsImag", "kind": "LocalType"}, {"name": "ndarray", "kind": "LocalType"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "generic", "kind": "LocalType"}, {"name": "number", "kind": "LocalType"}, {"name": "bool_", "kind": "LocalType"}, {"name": "object_", "kind": "LocalType"}, {"name": "_DatetimeScalar", "kind": "LocalType"}, {"name": "datetime64", "kind": "LocalType"}, {"name": "_IntValue", "kind": "Other"}, {"name": "_FloatValue", "kind": "Other"}, {"name": "_ComplexValue", "kind": "Other"}, {"name": "integer", "kind": "LocalType"}, {"name": "signedinteger", "kind": "LocalType"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "timedelta64", "kind": "LocalType"}, {"name": "unsignedinteger", "kind": "LocalType"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uintp", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "inexact", "kind": "LocalType"}, {"name": "_IntType", "kind": "Other"}, {"name": "_FloatType", "kind": "Other"}, {"name": "floating", "kind": "LocalType"}, {"name": "float16", "kind": "Other"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "longfloat", "kind": "Other"}, {"name": "complexfloating", "kind": "LocalType"}, {"name": "complex64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "singlecomplex", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "complex_", "kind": "Other"}, {"name": "cfloat", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "clongfloat", "kind": "Other"}, {"name": "longcomplex", "kind": "Other"}, {"name": "flexible", "kind": "LocalType"}, {"name": "void", "kind": "LocalType"}, {"name": "character", "kind": "LocalType"}, {"name": "bytes_", "kind": "LocalType"}, {"name": "string_", "kind": "Other"}, {"name": "str_", "kind": "LocalType"}, {"name": "unicode_", "kind": "Other"}, {"name": "Inf", "kind": "Other"}, {"name": "Infinity", "kind": "Other"}, {"name": "NAN", "kind": "Other"}, {"name": "NINF", "kind": "Other"}, {"name": "NZERO", "kind": "Other"}, {"name": "NaN", "kind": "Other"}, {"name": "PINF", "kind": "Other"}, {"name": "PZERO", "kind": "Other"}, {"name": "e", "kind": "Other"}, {"name": "euler_gamma", "kind": "Other"}, {"name": "inf", "kind": "Other"}, {"name": "infty", "kind": "Other"}, {"name": "nan", "kind": "Other"}, {"name": "pi", "kind": "Other"}, {"name": "ERR_IGNORE", "kind": "Other"}, {"name": "ERR_WARN", "kind": "Other"}, {"name": "ERR_RAISE", "kind": "Other"}, {"name": "ERR_CALL", "kind": "Other"}, {"name": "ERR_PRINT", "kind": "Other"}, {"name": "ERR_LOG", "kind": "Other"}, {"name": "ERR_DEFAULT", "kind": "Other"}, {"name": "SHIFT_DIVIDEBYZERO", "kind": "Other"}, {"name": "SHIFT_OVERFLOW", "kind": "Other"}, {"name": "SHIFT_UNDERFLOW", "kind": "Other"}, {"name": "SHIFT_INVALID", "kind": "Other"}, {"name": "FPE_DIVIDEBYZERO", "kind": "Other"}, {"name": "FPE_OVERFLOW", "kind": "Other"}, {"name": "FPE_UNDERFLOW", "kind": "Other"}, {"name": "FPE_INVALID", "kind": "Other"}, {"name": "FLOATING_POINT_SUPPORT", "kind": "Other"}, {"name": "UFUNC_BUFSIZE_DEFAULT", "kind": "Other"}, {"name": "little_endian", "kind": "Other"}, {"name": "True_", "kind": "Other"}, {"name": "False_", "kind": "Other"}, {"name": "UFUNC_PYVALS_NAME", "kind": "Other"}, {"name": "newaxis", "kind": "Other"}, {"name": "ufunc", "kind": "LocalType"}, {"name": "absolute", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_not", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "cbrt", "kind": "Other"}, {"name": "ceil", "kind": "Other"}, {"name": "conj", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "copysign", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "deg2rad", "kind": "Other"}, {"name": "degrees", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "exp2", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expm1", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "float_power", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "fmax", "kind": "Other"}, {"name": "fmin", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frexp", "kind": "Other"}, {"name": "gcd", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "heaviside", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "invert", "kind": "Other"}, {"name": "isfinite", "kind": "Other"}, {"name": "isinf", "kind": "Other"}, {"name": "isnan", "kind": "Other"}, {"name": "isnat", "kind": "Other"}, {"name": "lcm", "kind": "Other"}, {"name": "ldexp", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log1p", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "logaddexp2", "kind": "Other"}, {"name": "logaddexp", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "matmul", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "modf", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "nextafter", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "positive", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rad2deg", "kind": "Other"}, {"name": "radians", "kind": "Other"}, {"name": "reciprocal", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "rint", "kind": "Other"}, {"name": "sign", "kind": "Other"}, {"name": "signbit", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "spacing", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "square", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "trunc", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "_CopyMode", "kind": "LocalType"}, {"name": "ModuleDeprecationWarning", "kind": "LocalType"}, {"name": "VisibleDeprecationWarning", "kind": "LocalType"}, {"name": "ComplexWarning", "kind": "LocalType"}, {"name": "RankWarning", "kind": "LocalType"}, {"name": "TooHardError", "kind": "LocalType"}, {"name": "AxisError", "kind": "LocalType"}, {"name": "_CallType", "kind": "Other"}, {"name": "errstate", "kind": "LocalType"}, {"name": "_no_nep50_warning", "kind": "Other"}, {"name": "_get_promotion_state", "kind": "Other"}, {"name": "_set_promotion_state", "kind": "Other"}, {"name": "ndenumerate", "kind": "LocalType"}, {"name": "ndindex", "kind": "LocalType"}, {"name": "DataSource", "kind": "LocalType"}, {"name": "broadcast", "kind": "LocalType"}, {"name": "busdaycalendar", "kind": "LocalType"}, {"name": "finfo", "kind": "LocalType"}, {"name": "iinfo", "kind": "LocalType"}, {"name": "format_parser", "kind": "LocalType"}, {"name": "recarray", "kind": "LocalType"}, {"name": "record", "kind": "LocalType"}, {"name": "_NDIterFlagsKind", "kind": "Other"}, {"name": "_NDIterOpFlagsKind", "kind": "Other"}, {"name": "nditer", "kind": "LocalType"}, {"name": "_MemMapModeKind", "kind": "Other"}, {"name": "memmap", "kind": "LocalType"}, {"name": "vectorize", "kind": "LocalType"}, {"name": "poly1d", "kind": "LocalType"}, {"name": "matrix", "kind": "LocalType"}, {"name": "_CharType", "kind": "Other"}, {"name": "_CharDType", "kind": "Other"}, {"name": "_CharArray", "kind": "Other"}, {"name": "chararray", "kind": "LocalType"}, {"name": "_SupportsDLPack", "kind": "LocalType"}, {"name": "from_dlpack", "kind": "Other"}], "typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AbstractAsyncContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractAsyncContextManager"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "BuiltinFunctionType", "kind": "ImportedType", "fullname": "types.BuiltinFunctionType"}, {"name": "CodeType", "kind": "ImportedType", "fullname": "types.CodeType"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "types.FunctionType"}, {"name": "MethodDescriptorType", "kind": "ImportedType", "fullname": "types.MethodDescriptorType"}, {"name": "MethodType", "kind": "ImportedType", "fullname": "types.MethodType"}, {"name": "MethodWrapperType", "kind": "ImportedType", "fullname": "types.MethodWrapperType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "WrapperDescriptorType", "kind": "ImportedType", "fullname": "types.WrapperDescriptorType"}, {"name": "_Never", "kind": "Other"}, {"name": "_ParamSpec", "kind": "LocalType"}, {"name": "_final", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "ContextManager", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "_promote", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ParamSpecArgs", "kind": "LocalType"}, {"name": "ParamSpecKwargs", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "NewType", "kind": "LocalType"}, {"name": "_S", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "_Alias", "kind": "LocalType"}, {"name": "Annotated", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "_ProtocolMeta", "kind": "LocalType"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "SupportsInt", "kind": "LocalType"}, {"name": "SupportsFloat", "kind": "LocalType"}, {"name": "SupportsComplex", "kind": "LocalType"}, {"name": "SupportsBytes", "kind": "LocalType"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "SupportsAbs", "kind": "LocalType"}, {"name": "SupportsRound", "kind": "LocalType"}, {"name": "Sized", "kind": "LocalType"}, {"name": "Hashable", "kind": "LocalType"}, {"name": "Iterable", "kind": "LocalType"}, {"name": "Iterator", "kind": "LocalType"}, {"name": "Reversible", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "Awaitable", "kind": "LocalType"}, {"name": "Coroutine", "kind": "LocalType"}, {"name": "AwaitableGenerator", "kind": "LocalType"}, {"name": "AsyncIterable", "kind": "LocalType"}, {"name": "AsyncIterator", "kind": "LocalType"}, {"name": "AsyncGenerator", "kind": "LocalType"}, {"name": "Container", "kind": "LocalType"}, {"name": "Collection", "kind": "LocalType"}, {"name": "Sequence", "kind": "LocalType"}, {"name": "MutableSequence", "kind": "LocalType"}, {"name": "AbstractSet", "kind": "LocalType"}, {"name": "MutableSet", "kind": "LocalType"}, {"name": "MappingView", "kind": "LocalType"}, {"name": "ItemsView", "kind": "LocalType"}, {"name": "KeysView", "kind": "LocalType"}, {"name": "ValuesView", "kind": "LocalType"}, {"name": "Mapping", "kind": "LocalType"}, {"name": "MutableMapping", "kind": "LocalType"}, {"name": "Text", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "IO", "kind": "LocalType"}, {"name": "BinaryIO", "kind": "LocalType"}, {"name": "TextIO", "kind": "LocalType"}, {"name": "ByteString", "kind": "Other"}, {"name": "_get_type_hints_obj_allowed_types", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "ForwardRef", "kind": "LocalType"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "_type_repr", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "Set", "kind": "Other"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "builtins": [{"name": "object", "kind": "LocalType"}, {"name": "bool", "kind": "LocalType"}, {"name": "function", "kind": "LocalType"}, {"name": "None", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "reveal_locals", "kind": "Other"}, {"name": "True", "kind": "Other"}, {"name": "False", "kind": "Other"}, {"name": "__debug__", "kind": "Other"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T3", "kind": "Other"}, {"name": "_T4", "kind": "Other"}, {"name": "_T5", "kind": "Other"}, {"name": "_SupportsNextT", "kind": "Other"}, {"name": "_SupportsAnextT", "kind": "Other"}, {"name": "_AwaitableT", "kind": "Other"}, {"name": "_AwaitableT_co", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "staticmethod", "kind": "LocalType"}, {"name": "classmethod", "kind": "LocalType"}, {"name": "type", "kind": "LocalType"}, {"name": "super", "kind": "LocalType"}, {"name": "_PositiveInteger", "kind": "Other"}, {"name": "_NegativeInteger", "kind": "Other"}, {"name": "_LiteralInteger", "kind": "Other"}, {"name": "int", "kind": "LocalType"}, {"name": "float", "kind": "LocalType"}, {"name": "complex", "kind": "LocalType"}, {"name": "_FormatMapMapping", "kind": "LocalType"}, {"name": "_TranslateTable", "kind": "LocalType"}, {"name": "str", "kind": "LocalType"}, {"name": "bytes", "kind": "LocalType"}, {"name": "bytearray", "kind": "LocalType"}, {"name": "memoryview", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "tuple", "kind": "LocalType"}, {"name": "list", "kind": "LocalType"}, {"name": "dict", "kind": "LocalType"}, {"name": "set", "kind": "LocalType"}, {"name": "frozenset", "kind": "LocalType"}, {"name": "enumerate", "kind": "LocalType"}, {"name": "range", "kind": "LocalType"}, {"name": "property", "kind": "LocalType"}, {"name": "_NotImplementedType", "kind": "LocalType"}, {"name": "NotImplemented", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "ascii", "kind": "Other"}, {"name": "bin", "kind": "Other"}, {"name": "breakpoint", "kind": "Other"}, {"name": "callable", "kind": "Other"}, {"name": "chr", "kind": "Other"}, {"name": "_PathLike", "kind": "LocalType"}, {"name": "aiter", "kind": "Other"}, {"name": "_SupportsSynchronousAnext", "kind": "LocalType"}, {"name": "anext", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "credits", "kind": "Other"}, {"name": "delattr", "kind": "Other"}, {"name": "dir", "kind": "Other"}, {"name": "divmod", "kind": "Other"}, {"name": "eval", "kind": "Other"}, {"name": "exec", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "filter", "kind": "LocalType"}, {"name": "format", "kind": "Other"}, {"name": "getattr", "kind": "Other"}, {"name": "globals", "kind": "Other"}, {"name": "hasattr", "kind": "Other"}, {"name": "hash", "kind": "Other"}, {"name": "help", "kind": "Other"}, {"name": "hex", "kind": "Other"}, {"name": "id", "kind": "Other"}, {"name": "input", "kind": "Other"}, {"name": "_GetItemIterable", "kind": "LocalType"}, {"name": "iter", "kind": "Other"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "isinstance", "kind": "Other"}, {"name": "issubclass", "kind": "Other"}, {"name": "len", "kind": "Other"}, {"name": "license", "kind": "Other"}, {"name": "locals", "kind": "Other"}, {"name": "map", "kind": "LocalType"}, {"name": "max", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "next", "kind": "Other"}, {"name": "oct", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "ord", "kind": "Other"}, {"name": "_SupportsWriteAndFlush", "kind": "LocalType"}, {"name": "print", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_M", "kind": "Other"}, {"name": "_SupportsPow2", "kind": "LocalType"}, {"name": "_SupportsPow3NoneOnly", "kind": "LocalType"}, {"name": "_SupportsPow3", "kind": "LocalType"}, {"name": "_SupportsSomeKindOfPow", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "quit", "kind": "Other"}, {"name": "reversed", "kind": "LocalType"}, {"name": "repr", "kind": "Other"}, {"name": "_SupportsRound1", "kind": "LocalType"}, {"name": "_SupportsRound2", "kind": "LocalType"}, {"name": "round", "kind": "Other"}, {"name": "setattr", "kind": "Other"}, {"name": "sorted", "kind": "Other"}, {"name": "_AddableT1", "kind": "Other"}, {"name": "_AddableT2", "kind": "Other"}, {"name": "_SupportsSumWithNoDefaultGiven", "kind": "LocalType"}, {"name": "_SupportsSumNoDefaultT", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "vars", "kind": "Other"}, {"name": "zip", "kind": "LocalType"}, {"name": "__import__", "kind": "Other"}, {"name": "__build_class__", "kind": "Other"}, {"name": "ellipsis", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "Other"}, {"name": "BaseException", "kind": "LocalType"}, {"name": "GeneratorExit", "kind": "LocalType"}, {"name": "KeyboardInterrupt", "kind": "LocalType"}, {"name": "SystemExit", "kind": "LocalType"}, {"name": "Exception", "kind": "LocalType"}, {"name": "StopIteration", "kind": "LocalType"}, {"name": "OSError", "kind": "LocalType"}, {"name": "EnvironmentError", "kind": "Other"}, {"name": "IOError", "kind": "Other"}, {"name": "ArithmeticError", "kind": "LocalType"}, {"name": "AssertionError", "kind": "LocalType"}, {"name": "AttributeError", "kind": "LocalType"}, {"name": "BufferError", "kind": "LocalType"}, {"name": "EOFError", "kind": "LocalType"}, {"name": "ImportError", "kind": "LocalType"}, {"name": "LookupError", "kind": "LocalType"}, {"name": "MemoryError", "kind": "LocalType"}, {"name": "NameError", "kind": "LocalType"}, {"name": "ReferenceError", "kind": "LocalType"}, {"name": "RuntimeError", "kind": "LocalType"}, {"name": "StopAsyncIteration", "kind": "LocalType"}, {"name": "SyntaxError", "kind": "LocalType"}, {"name": "SystemError", "kind": "LocalType"}, {"name": "TypeError", "kind": "LocalType"}, {"name": "ValueError", "kind": "LocalType"}, {"name": "FloatingPointError", "kind": "LocalType"}, {"name": "OverflowError", "kind": "LocalType"}, {"name": "ZeroDivisionError", "kind": "LocalType"}, {"name": "ModuleNotFoundError", "kind": "LocalType"}, {"name": "IndexError", "kind": "LocalType"}, {"name": "KeyError", "kind": "LocalType"}, {"name": "UnboundLocalError", "kind": "LocalType"}, {"name": "BlockingIOError", "kind": "LocalType"}, {"name": "ChildProcessError", "kind": "LocalType"}, {"name": "ConnectionError", "kind": "LocalType"}, {"name": "BrokenPipeError", "kind": "LocalType"}, {"name": "ConnectionAbortedError", "kind": "LocalType"}, {"name": "ConnectionRefusedError", "kind": "LocalType"}, {"name": "ConnectionResetError", "kind": "LocalType"}, {"name": "FileExistsError", "kind": "LocalType"}, {"name": "FileNotFoundError", "kind": "LocalType"}, {"name": "InterruptedError", "kind": "LocalType"}, {"name": "IsADirectoryError", "kind": "LocalType"}, {"name": "NotADirectoryError", "kind": "LocalType"}, {"name": "PermissionError", "kind": "LocalType"}, {"name": "ProcessLookupError", "kind": "LocalType"}, {"name": "TimeoutError", "kind": "LocalType"}, {"name": "NotImplementedError", "kind": "LocalType"}, {"name": "RecursionError", "kind": "LocalType"}, {"name": "IndentationError", "kind": "LocalType"}, {"name": "TabError", "kind": "LocalType"}, {"name": "UnicodeError", "kind": "LocalType"}, {"name": "UnicodeDecodeError", "kind": "LocalType"}, {"name": "UnicodeEncodeError", "kind": "LocalType"}, {"name": "UnicodeTranslateError", "kind": "LocalType"}, {"name": "Warning", "kind": "LocalType"}, {"name": "UserWarning", "kind": "LocalType"}, {"name": "DeprecationWarning", "kind": "LocalType"}, {"name": "SyntaxWarning", "kind": "LocalType"}, {"name": "RuntimeWarning", "kind": "LocalType"}, {"name": "FutureWarning", "kind": "LocalType"}, {"name": "PendingDeprecationWarning", "kind": "LocalType"}, {"name": "ImportWarning", "kind": "LocalType"}, {"name": "UnicodeWarning", "kind": "LocalType"}, {"name": "BytesWarning", "kind": "LocalType"}, {"name": "ResourceWarning", "kind": "LocalType"}, {"name": "EncodingWarning", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "collections.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "__all__", "kind": "Other"}], "sys": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "_object", "kind": "ImportedType", "fullname": "builtins.object"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "PathEntryFinder", "kind": "ImportedType", "fullname": "importlib.abc.PathEntryFinder"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ExitCode", "kind": "Other"}, {"name": "_OptExcInfo", "kind": "Other"}, {"name": "_MetaPathFinder", "kind": "LocalType"}, {"name": "abiflags", "kind": "Other"}, {"name": "argv", "kind": "Other"}, {"name": "base_exec_prefix", "kind": "Other"}, {"name": "base_prefix", "kind": "Other"}, {"name": "byteorder", "kind": "Other"}, {"name": "builtin_module_names", "kind": "Other"}, {"name": "copyright", "kind": "Other"}, {"name": "dont_write_bytecode", "kind": "Other"}, {"name": "displayhook", "kind": "Other"}, {"name": "excepthook", "kind": "Other"}, {"name": "exec_prefix", "kind": "Other"}, {"name": "executable", "kind": "Other"}, {"name": "float_repr_style", "kind": "Other"}, {"name": "hexversion", "kind": "Other"}, {"name": "last_type", "kind": "Other"}, {"name": "last_value", "kind": "Other"}, {"name": "last_traceback", "kind": "Other"}, {"name": "maxsize", "kind": "Other"}, {"name": "maxunicode", "kind": "Other"}, {"name": "meta_path", "kind": "Other"}, {"name": "modules", "kind": "Other"}, {"name": "orig_argv", "kind": "Other"}, {"name": "path", "kind": "Other"}, {"name": "path_hooks", "kind": "Other"}, {"name": "path_importer_cache", "kind": "Other"}, {"name": "platform", "kind": "Other"}, {"name": "platlibdir", "kind": "Other"}, {"name": "prefix", "kind": "Other"}, {"name": "pycache_prefix", "kind": "Other"}, {"name": "ps1", "kind": "Other"}, {"name": "ps2", "kind": "Other"}, {"name": "stdin", "kind": "Other"}, {"name": "stdout", "kind": "Other"}, {"name": "stderr", "kind": "Other"}, {"name": "stdlib_module_names", "kind": "Other"}, {"name": "__stdin__", "kind": "Other"}, {"name": "__stdout__", "kind": "Other"}, {"name": "__stderr__", "kind": "Other"}, {"name": "tracebacklimit", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "api_version", "kind": "Other"}, {"name": "warnoptions", "kind": "Other"}, {"name": "_xoptions", "kind": "Other"}, {"name": "_UninstantiableStructseq", "kind": "Other"}, {"name": "flags", "kind": "Other"}, {"name": "_FlagTuple", "kind": "Other"}, {"name": "_flags", "kind": "LocalType"}, {"name": "float_info", "kind": "Other"}, {"name": "_float_info", "kind": "LocalType"}, {"name": "hash_info", "kind": "Other"}, {"name": "_hash_info", "kind": "LocalType"}, {"name": "implementation", "kind": "Other"}, {"name": "_implementation", "kind": "LocalType"}, {"name": "int_info", "kind": "Other"}, {"name": "_int_info", "kind": "LocalType"}, {"name": "_ThreadInfoName", "kind": "Other"}, {"name": "_ThreadInfoLock", "kind": "Other"}, {"name": "_thread_info", "kind": "LocalType"}, {"name": "thread_info", "kind": "Other"}, {"name": "_version_info", "kind": "LocalType"}, {"name": "version_info", "kind": "Other"}, {"name": "call_tracing", "kind": "Other"}, {"name": "_clear_type_cache", "kind": "Other"}, {"name": "_current_frames", "kind": "Other"}, {"name": "_getframe", "kind": "Other"}, {"name": "_debugmallocstats", "kind": "Other"}, {"name": "__displayhook__", "kind": "Other"}, {"name": "__excepthook__", "kind": "Other"}, {"name": "exc_info", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "getallocatedblocks", "kind": "Other"}, {"name": "getdefaultencoding", "kind": "Other"}, {"name": "getdlopenflags", "kind": "Other"}, {"name": "getfilesystemencoding", "kind": "Other"}, {"name": "getfilesystemencodeerrors", "kind": "Other"}, {"name": "getrefcount", "kind": "Other"}, {"name": "getrecursionlimit", "kind": "Other"}, {"name": "getsizeof", "kind": "Other"}, {"name": "getswitchinterval", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "intern", "kind": "Other"}, {"name": "is_finalizing", "kind": "Other"}, {"name": "breakpointhook", "kind": "Other"}, {"name": "__breakpointhook__", "kind": "Other"}, {"name": "setdlopenflags", "kind": "Other"}, {"name": "setrecursionlimit", "kind": "Other"}, {"name": "setswitchinterval", "kind": "Other"}, {"name": "gettotalrefcount", "kind": "Other"}, {"name": "UnraisableHookArgs", "kind": "LocalType"}, {"name": "unraisablehook", "kind": "Other"}, {"name": "__unraisablehook__", "kind": "Other"}, {"name": "addaudithook", "kind": "Other"}, {"name": "audit", "kind": "Other"}, {"name": "_AsyncgenHook", "kind": "Other"}, {"name": "_asyncgen_hooks", "kind": "LocalType"}, {"name": "get_asyncgen_hooks", "kind": "Other"}, {"name": "set_asyncgen_hooks", "kind": "Other"}, {"name": "get_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_coroutine_origin_tracking_depth", "kind": "Other"}, {"name": "set_int_max_str_digits", "kind": "Other"}, {"name": "get_int_max_str_digits", "kind": "Other"}], "_collections_abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "MappingProxyType", "kind": "ImportedType", "fullname": "types.MappingProxyType"}, {"name": "Set", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "ByteString", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "Protocol", "kind": "Other"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "dict_keys", "kind": "LocalType"}, {"name": "dict_values", "kind": "LocalType"}, {"name": "dict_items", "kind": "LocalType"}, {"name": "__annotations__", "kind": "Other"}], "_typeshed": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Field", "kind": "ImportedType", "fullname": "dataclasses.Field"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Buffer", "kind": "ImportedType", "fullname": "typing_extensions.Buffer"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_KT_co", "kind": "Other"}, {"name": "_KT_contra", "kind": "Other"}, {"name": "_VT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "Incomplete", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "IdentityFunction", "kind": "LocalType"}, {"name": "SupportsNext", "kind": "LocalType"}, {"name": "SupportsAnext", "kind": "LocalType"}, {"name": "SupportsDunderLT", "kind": "LocalType"}, {"name": "SupportsDunderGT", "kind": "LocalType"}, {"name": "SupportsDunderLE", "kind": "LocalType"}, {"name": "SupportsDunderGE", "kind": "LocalType"}, {"name": "SupportsAllComparisons", "kind": "LocalType"}, {"name": "SupportsRichComparison", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "SupportsAdd", "kind": "LocalType"}, {"name": "SupportsRAdd", "kind": "LocalType"}, {"name": "SupportsSub", "kind": "LocalType"}, {"name": "SupportsRSub", "kind": "LocalType"}, {"name": "SupportsDivMod", "kind": "LocalType"}, {"name": "SupportsRDivMod", "kind": "LocalType"}, {"name": "SupportsIter", "kind": "LocalType"}, {"name": "SupportsAiter", "kind": "LocalType"}, {"name": "SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "SupportsTrunc", "kind": "LocalType"}, {"name": "SupportsItems", "kind": "LocalType"}, {"name": "SupportsKeysAndGetItem", "kind": "LocalType"}, {"name": "SupportsGetItem", "kind": "LocalType"}, {"name": "SupportsItemAccess", "kind": "LocalType"}, {"name": "StrPath", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "OpenTextModeUpdating", "kind": "Other"}, {"name": "OpenTextModeWriting", "kind": "Other"}, {"name": "OpenTextModeReading", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "HasFileno", "kind": "LocalType"}, {"name": "FileDescriptor", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "SupportsRead", "kind": "LocalType"}, {"name": "SupportsReadline", "kind": "LocalType"}, {"name": "SupportsNoArgReadline", "kind": "LocalType"}, {"name": "SupportsWrite", "kind": "LocalType"}, {"name": "ReadOnlyBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SliceableBuffer", "kind": "LocalType"}, {"name": "IndexableBuffer", "kind": "LocalType"}, {"name": "SupportsGetItemBuffer", "kind": "LocalType"}, {"name": "SizedBuffer", "kind": "LocalType"}, {"name": "_BufferWithLen", "kind": "Other"}, {"name": "ExcInfo", "kind": "Other"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "NoneType", "kind": "ImportedType", "fullname": "types.NoneType"}, {"name": "structseq", "kind": "LocalType"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "DataclassInstance", "kind": "LocalType"}], "typing_extensions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing", "kind": "Module", "fullname": "typing"}, {"name": "dict_items", "kind": "ImportedType", "fullname": "_collections_abc.dict_items"}, {"name": "dict_keys", "kind": "ImportedType", "fullname": "_collections_abc.dict_keys"}, {"name": "dict_values", "kind": "ImportedType", "fullname": "_collections_abc.dict_values"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "Incomplete", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "AsyncContextManager", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterable", "kind": "ImportedType", "fullname": "typing.AsyncIterable"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Callable", "kind": "Other"}, {"name": "ChainMap", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "ContextManager", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Counter", "kind": "Other"}, {"name": "DefaultDict", "kind": "Other"}, {"name": "Deque", "kind": "Other"}, {"name": "Dict", "kind": "Other"}, {"name": "ForwardRef", "kind": "ImportedType", "fullname": "typing.ForwardRef"}, {"name": "FrozenSet", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Generic", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "List", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MappingView", "kind": "ImportedType", "fullname": "typing.MappingView"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "MutableSet", "kind": "ImportedType", "fullname": "typing.MutableSet"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Optional", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Reversible", "kind": "ImportedType", "fullname": "typing.Reversible"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Set", "kind": "Other"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsComplex", "kind": "ImportedType", "fullname": "typing.SupportsComplex"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "Text", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Tuple", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "_Alias", "kind": "ImportedType", "fullname": "typing._Alias"}, {"name": "cast", "kind": "Other"}, {"name": "no_type_check", "kind": "Other"}, {"name": "no_type_check_decorator", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_TC", "kind": "Other"}, {"name": "_SpecialForm", "kind": "LocalType"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "runtime", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "IntVar", "kind": "Other"}, {"name": "_TypedDict", "kind": "LocalType"}, {"name": "TypedDict", "kind": "Other"}, {"name": "get_type_hints", "kind": "Other"}, {"name": "get_args", "kind": "Other"}, {"name": "get_origin", "kind": "Other"}, {"name": "Annotated", "kind": "Other"}, {"name": "_AnnotatedAlias", "kind": "Other"}, {"name": "SupportsIndex", "kind": "LocalType"}, {"name": "Concatenate", "kind": "Other"}, {"name": "NewType", "kind": "ImportedType", "fullname": "typing.NewType"}, {"name": "ParamSpecArgs", "kind": "ImportedType", "fullname": "typing.ParamSpecArgs"}, {"name": "ParamSpecKwargs", "kind": "ImportedType", "fullname": "typing.ParamSpecKwargs"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "is_typeddict", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "Never", "kind": "Other"}, {"name": "reveal_type", "kind": "Other"}, {"name": "assert_never", "kind": "Other"}, {"name": "assert_type", "kind": "Other"}, {"name": "clear_overloads", "kind": "Other"}, {"name": "get_overloads", "kind": "Other"}, {"name": "Required", "kind": "Other"}, {"name": "NotRequired", "kind": "Other"}, {"name": "Unpack", "kind": "Other"}, {"name": "dataclass_transform", "kind": "Other"}, {"name": "NamedTuple", "kind": "LocalType"}, {"name": "TypeVar", "kind": "LocalType"}, {"name": "ParamSpec", "kind": "LocalType"}, {"name": "TypeVarTuple", "kind": "LocalType"}, {"name": "deprecated", "kind": "Other"}, {"name": "override", "kind": "Other"}, {"name": "get_original_bases", "kind": "Other"}, {"name": "TypeAliasType", "kind": "LocalType"}, {"name": "Buffer", "kind": "LocalType"}, {"name": "is_protocol", "kind": "Other"}, {"name": "get_protocol_members", "kind": "Other"}, {"name": "OrderedDict", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}], "types": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Coroutine", "kind": "ImportedType", "fullname": "typing.Coroutine"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "ItemsView", "kind": "ImportedType", "fullname": "typing.ItemsView"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "KeysView", "kind": "ImportedType", "fullname": "typing.KeysView"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "ValuesView", "kind": "ImportedType", "fullname": "typing.ValuesView"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeVarTuple", "kind": "ImportedType", "fullname": "typing_extensions.TypeVarTuple"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_KT", "kind": "Other"}, {"name": "_VT_co", "kind": "Other"}, {"name": "_Cell", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "LambdaType", "kind": "Other"}, {"name": "CodeType", "kind": "LocalType"}, {"name": "MappingProxyType", "kind": "LocalType"}, {"name": "SimpleNamespace", "kind": "LocalType"}, {"name": "_LoaderProtocol", "kind": "LocalType"}, {"name": "ModuleType", "kind": "LocalType"}, {"name": "_YieldT_co", "kind": "Other"}, {"name": "_SendT_contra", "kind": "Other"}, {"name": "_ReturnT_co", "kind": "Other"}, {"name": "GeneratorType", "kind": "LocalType"}, {"name": "AsyncGeneratorType", "kind": "LocalType"}, {"name": "CoroutineType", "kind": "LocalType"}, {"name": "_StaticFunctionType", "kind": "LocalType"}, {"name": "MethodType", "kind": "LocalType"}, {"name": "BuiltinFunctionType", "kind": "LocalType"}, {"name": "BuiltinMethodType", "kind": "Other"}, {"name": "WrapperDescriptorType", "kind": "LocalType"}, {"name": "MethodWrapperType", "kind": "LocalType"}, {"name": "MethodDescriptorType", "kind": "LocalType"}, {"name": "ClassMethodDescriptorType", "kind": "LocalType"}, {"name": "TracebackType", "kind": "LocalType"}, {"name": "FrameType", "kind": "LocalType"}, {"name": "GetSetDescriptorType", "kind": "LocalType"}, {"name": "MemberDescriptorType", "kind": "LocalType"}, {"name": "new_class", "kind": "Other"}, {"name": "resolve_bases", "kind": "Other"}, {"name": "prepare_class", "kind": "Other"}, {"name": "DynamicClassAttribute", "kind": "Other"}, {"name": "_Fn", "kind": "Other"}, {"name": "_R", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "coroutine", "kind": "Other"}, {"name": "CellType", "kind": "Other"}, {"name": "GenericAlias", "kind": "LocalType"}, {"name": "NoneType", "kind": "LocalType"}, {"name": "EllipsisType", "kind": "Other"}, {"name": "_NotImplementedType", "kind": "ImportedType", "fullname": "builtins._NotImplementedType"}, {"name": "NotImplementedType", "kind": "Other"}, {"name": "UnionType", "kind": "LocalType"}], "numpy.core._internal": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "ct", "kind": "Module", "fullname": "ctypes"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "c_intp", "kind": "Other"}, {"name": "_CastT", "kind": "Other"}, {"name": "_CT", "kind": "Other"}, {"name": "_PT", "kind": "Other"}, {"name": "_ctypes", "kind": "LocalType"}], "numpy._typing._callable": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "int8", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "float64", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "complex128", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "_T1_contra", "kind": "Other"}, {"name": "_T2_contra", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "_IntType", "kind": "Other"}, {"name": "_FloatType", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_NumberType_co", "kind": "Other"}, {"name": "_GenericType_co", "kind": "Other"}, {"name": "_BoolOp", "kind": "LocalType"}, {"name": "_BoolBitOp", "kind": "LocalType"}, {"name": "_BoolSub", "kind": "LocalType"}, {"name": "_BoolTrueDiv", "kind": "LocalType"}, {"name": "_BoolMod", "kind": "LocalType"}, {"name": "_BoolDivMod", "kind": "LocalType"}, {"name": "_TD64Div", "kind": "LocalType"}, {"name": "_IntTrueDiv", "kind": "LocalType"}, {"name": "_UnsignedIntOp", "kind": "LocalType"}, {"name": "_UnsignedIntBitOp", "kind": "LocalType"}, {"name": "_UnsignedIntMod", "kind": "LocalType"}, {"name": "_UnsignedIntDivMod", "kind": "LocalType"}, {"name": "_SignedIntOp", "kind": "LocalType"}, {"name": "_SignedIntBitOp", "kind": "LocalType"}, {"name": "_SignedIntMod", "kind": "LocalType"}, {"name": "_SignedIntDivMod", "kind": "LocalType"}, {"name": "_FloatOp", "kind": "LocalType"}, {"name": "_FloatMod", "kind": "LocalType"}, {"name": "_FloatDivMod", "kind": "LocalType"}, {"name": "_ComplexOp", "kind": "LocalType"}, {"name": "_NumberOp", "kind": "LocalType"}, {"name": "_SupportsLT", "kind": "LocalType"}, {"name": "_SupportsGT", "kind": "LocalType"}, {"name": "_ComparisonOp", "kind": "LocalType"}], "numpy._typing._extended_precision": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_80Bit", "kind": "ImportedType", "fullname": "numpy._typing._80Bit"}, {"name": "_96Bit", "kind": "ImportedType", "fullname": "numpy._typing._96Bit"}, {"name": "_128Bit", "kind": "ImportedType", "fullname": "numpy._typing._128Bit"}, {"name": "_256Bit", "kind": "ImportedType", "fullname": "numpy._typing._256Bit"}, {"name": "uint128", "kind": "Other"}, {"name": "uint256", "kind": "Other"}, {"name": "int128", "kind": "Other"}, {"name": "int256", "kind": "Other"}, {"name": "float80", "kind": "Other"}, {"name": "float96", "kind": "Other"}, {"name": "float128", "kind": "Other"}, {"name": "float256", "kind": "Other"}, {"name": "complex160", "kind": "Other"}, {"name": "complex192", "kind": "Other"}, {"name": "complex256", "kind": "Other"}, {"name": "complex512", "kind": "Other"}], "numpy.core.defchararray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "chararray", "kind": "ImportedType", "fullname": "numpy.chararray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "int_", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "U_co", "kind": "Other"}, {"name": "S_co", "kind": "Other"}, {"name": "i_co", "kind": "Other"}, {"name": "b_co", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CharArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "capitalize", "kind": "Other"}, {"name": "center", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "expandtabs", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "ljust", "kind": "Other"}, {"name": "lower", "kind": "Other"}, {"name": "lstrip", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rjust", "kind": "Other"}, {"name": "rpartition", "kind": "Other"}, {"name": "rsplit", "kind": "Other"}, {"name": "rstrip", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitlines", "kind": "Other"}, {"name": "strip", "kind": "Other"}, {"name": "swapcase", "kind": "Other"}, {"name": "title", "kind": "Other"}, {"name": "translate", "kind": "Other"}, {"name": "upper", "kind": "Other"}, {"name": "zfill", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "endswith", "kind": "Other"}, {"name": "find", "kind": "Other"}, {"name": "index", "kind": "Other"}, {"name": "isalpha", "kind": "Other"}, {"name": "isalnum", "kind": "Other"}, {"name": "isdecimal", "kind": "Other"}, {"name": "isdigit", "kind": "Other"}, {"name": "islower", "kind": "Other"}, {"name": "isnumeric", "kind": "Other"}, {"name": "isspace", "kind": "Other"}, {"name": "istitle", "kind": "Other"}, {"name": "isupper", "kind": "Other"}, {"name": "rfind", "kind": "Other"}, {"name": "rindex", "kind": "Other"}, {"name": "startswith", "kind": "Other"}, {"name": "str_len", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "asarray", "kind": "Other"}], "numpy.core.records": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "format_parser", "kind": "ImportedType", "fullname": "numpy.format_parser"}, {"name": "record", "kind": "ImportedType", "fullname": "numpy.record"}, {"name": "recarray", "kind": "ImportedType", "fullname": "numpy.recarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "_ByteOrder", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_SCT", "kind": "Other"}, {"name": "_RecArray", "kind": "Other"}, {"name": "_SupportsReadInto", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "fromarrays", "kind": "Other"}, {"name": "fromrecords", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "array", "kind": "Other"}], "numpy.core.function_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "NDArray", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "linspace", "kind": "Other"}, {"name": "logspace", "kind": "Other"}, {"name": "geomspace", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}], "numpy.core.fromnumeric": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Union", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "uint64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float16", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderACF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_PartitionKind", "kind": "Other"}, {"name": "_SortKind", "kind": "Other"}, {"name": "_SortSide", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_SCT_uifcO", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "partition", "kind": "Other"}, {"name": "argpartition", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "searchsorted", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "var", "kind": "Other"}], "numpy.core._asarray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_Requirements", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_RequirementsWithE", "kind": "Other"}, {"name": "require", "kind": "Other"}], "numpy.core._type_aliases": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "_SCTypes", "kind": "LocalType"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}], "numpy.core._ufunc_config": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "_SupportsWrite", "kind": "ImportedType", "fullname": "numpy._SupportsWrite"}, {"name": "_ErrKind", "kind": "Other"}, {"name": "_ErrFunc", "kind": "Other"}, {"name": "_ErrDict", "kind": "LocalType"}, {"name": "_ErrDictOptional", "kind": "LocalType"}, {"name": "seterr", "kind": "Other"}, {"name": "geterr", "kind": "Other"}, {"name": "setbufsize", "kind": "Other"}, {"name": "getbufsize", "kind": "Other"}, {"name": "seterrcall", "kind": "Other"}, {"name": "geterrcall", "kind": "Other"}], "numpy.core.arrayprint": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_GeneratorContextManager", "kind": "ImportedType", "fullname": "contextlib._GeneratorContextManager"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "longdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_FloatMode", "kind": "Other"}, {"name": "_FormatDict", "kind": "LocalType"}, {"name": "_FormatOptions", "kind": "LocalType"}, {"name": "set_printoptions", "kind": "Other"}, {"name": "get_printoptions", "kind": "Other"}, {"name": "array2string", "kind": "Other"}, {"name": "format_float_scientific", "kind": "Other"}, {"name": "format_float_positional", "kind": "Other"}, {"name": "array_repr", "kind": "Other"}, {"name": "array_str", "kind": "Other"}, {"name": "set_string_function", "kind": "Other"}, {"name": "printoptions", "kind": "Other"}], "numpy.core.einsumfunc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_OptimizeKind", "kind": "Other"}, {"name": "_CastingSafe", "kind": "Other"}, {"name": "_CastingUnsafe", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "einsum", "kind": "Other"}, {"name": "einsum_path", "kind": "Other"}], "numpy.core.multiarray": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "dt", "kind": "Module", "fullname": "datetime"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "final", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "busdaycalendar", "kind": "ImportedType", "fullname": "numpy.busdaycalendar"}, {"name": "broadcast", "kind": "ImportedType", "fullname": "numpy.broadcast"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "nditer", "kind": "ImportedType", "fullname": "numpy.nditer"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "uint8", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "_SupportsBuffer", "kind": "Other"}, {"name": "_IOProtocol", "kind": "ImportedType", "fullname": "numpy._IOProtocol"}, {"name": "_CopyMode", "kind": "ImportedType", "fullname": "numpy._CopyMode"}, {"name": "_NDIterFlagsKind", "kind": "Other"}, {"name": "_NDIterOpFlagsKind", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_UnitKind", "kind": "Other"}, {"name": "_RollKind", "kind": "Other"}, {"name": "_SupportsLenAndGetItem", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "ALLOW_THREADS", "kind": "Other"}, {"name": "BUFSIZE", "kind": "Other"}, {"name": "CLIP", "kind": "Other"}, {"name": "WRAP", "kind": "Other"}, {"name": "RAISE", "kind": "Other"}, {"name": "MAXDIMS", "kind": "Other"}, {"name": "MAY_SHARE_BOUNDS", "kind": "Other"}, {"name": "MAY_SHARE_EXACT", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "lexsort", "kind": "Other"}, {"name": "can_cast", "kind": "Other"}, {"name": "min_scalar_type", "kind": "Other"}, {"name": "result_type", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "vdot", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "copyto", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "shares_memory", "kind": "Other"}, {"name": "may_share_memory", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "ascontiguousarray", "kind": "Other"}, {"name": "asfortranarray", "kind": "Other"}, {"name": "geterrobj", "kind": "Other"}, {"name": "seterrobj", "kind": "Other"}, {"name": "promote_types", "kind": "Other"}, {"name": "fromstring", "kind": "Other"}, {"name": "frompyfunc", "kind": "Other"}, {"name": "fromfile", "kind": "Other"}, {"name": "fromiter", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "datetime_data", "kind": "Other"}, {"name": "busday_count", "kind": "Other"}, {"name": "busday_offset", "kind": "Other"}, {"name": "is_busday", "kind": "Other"}, {"name": "datetime_as_string", "kind": "Other"}, {"name": "compare_chararrays", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "_GetItemKeys", "kind": "Other"}, {"name": "_SetItemKeys", "kind": "Other"}, {"name": "flagsobj", "kind": "LocalType"}, {"name": "nested_iters", "kind": "Other"}], "numpy.core.numeric": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "ComplexWarning", "kind": "ImportedType", "fullname": "numpy.ComplexWarning"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_CorrelateMode", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "zeros_like", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "full", "kind": "Other"}, {"name": "full_like", "kind": "Other"}, {"name": "count_nonzero", "kind": "Other"}, {"name": "isfortran", "kind": "Other"}, {"name": "argwhere", "kind": "Other"}, {"name": "flatnonzero", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "tensordot", "kind": "Other"}, {"name": "roll", "kind": "Other"}, {"name": "rollaxis", "kind": "Other"}, {"name": "moveaxis", "kind": "Other"}, {"name": "cross", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "isscalar", "kind": "Other"}, {"name": "binary_repr", "kind": "Other"}, {"name": "base_repr", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "array_equal", "kind": "Other"}, {"name": "array_equiv", "kind": "Other"}], "numpy.core.numerictypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "sctypeDict", "kind": "Other"}, {"name": "sctypes", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CastFunc", "kind": "LocalType"}, {"name": "_TypeCodes", "kind": "LocalType"}, {"name": "_typedict", "kind": "LocalType"}, {"name": "_TypeTuple", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "maximum_sctype", "kind": "Other"}, {"name": "issctype", "kind": "Other"}, {"name": "obj2sctype", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "sctype2char", "kind": "Other"}, {"name": "find_common_type", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "nbytes", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}], "numpy.core.shape_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "block", "kind": "Other"}], "numpy.lib.arraypad": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ModeFunc", "kind": "LocalType"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "pad", "kind": "Other"}], "numpy.lib.arraysetops": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ushort", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "byte", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "half", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "csingle", "kind": "Other"}, {"name": "cdouble", "kind": "Other"}, {"name": "clongdouble", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_NumberType", "kind": "Other"}, {"name": "_SCTNoCast", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}], "numpy.lib.arrayterator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_Index", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}], "numpy.lib.function_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "vectorize", "kind": "ImportedType", "fullname": "numpy.vectorize"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "_add_newdoc_ufunc", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_TrimZerosSequence", "kind": "LocalType"}, {"name": "_SupportsWriteFlush", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "select", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "_MethodKind", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "digitize", "kind": "Other"}], "numpy.lib.histograms": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_BinKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}], "numpy.lib.index_tricks": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_Matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "ndenumerate", "kind": "ImportedType", "fullname": "numpy.ndenumerate"}, {"name": "ndindex", "kind": "ImportedType", "fullname": "numpy.ndindex"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int_", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "complex_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_BoolType", "kind": "Other"}, {"name": "_TupType", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "nd_grid", "kind": "LocalType"}, {"name": "MGridClass", "kind": "LocalType"}, {"name": "mgrid", "kind": "Other"}, {"name": "OGridClass", "kind": "LocalType"}, {"name": "ogrid", "kind": "Other"}, {"name": "AxisConcatenator", "kind": "LocalType"}, {"name": "RClass", "kind": "LocalType"}, {"name": "r_", "kind": "Other"}, {"name": "CClass", "kind": "LocalType"}, {"name": "c_", "kind": "Other"}, {"name": "IndexExpression", "kind": "LocalType"}, {"name": "index_exp", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}], "numpy.lib.nanfunctions": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}], "numpy.lib.npyio": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "zipfile", "kind": "Module", "fullname": "zipfile"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "overload", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "DataSource", "kind": "ImportedType", "fullname": "numpy.DataSource"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "recarray", "kind": "ImportedType", "fullname": "numpy.recarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "float64", "kind": "Other"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "record", "kind": "ImportedType", "fullname": "numpy.record"}, {"name": "MaskedRecords", "kind": "ImportedType", "fullname": "numpy.ma.mrecords.MaskedRecords"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_CharType_co", "kind": "Other"}, {"name": "_CharType_contra", "kind": "Other"}, {"name": "_SupportsGetItem", "kind": "LocalType"}, {"name": "_SupportsRead", "kind": "LocalType"}, {"name": "_SupportsReadSeek", "kind": "LocalType"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "BagObj", "kind": "LocalType"}, {"name": "NpzFile", "kind": "LocalType"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}], "numpy.lib.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "NoReturn", "kind": "Other"}, {"name": "RankWarning", "kind": "ImportedType", "fullname": "numpy.RankWarning"}, {"name": "poly1d", "kind": "ImportedType", "fullname": "numpy.poly1d"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_2Tup", "kind": "Other"}, {"name": "_5Tup", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}], "numpy.lib.shape_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Protocol", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_ArrayWrap", "kind": "LocalType"}, {"name": "_ArrayPrepare", "kind": "LocalType"}, {"name": "_SupportsArrayWrap", "kind": "LocalType"}, {"name": "_SupportsArrayPrepare", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "get_array_prepare", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}], "numpy.lib.stride_tricks": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DummyArray", "kind": "LocalType"}, {"name": "as_strided", "kind": "Other"}, {"name": "sliding_window_view", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}], "numpy.lib.twodim_base": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "int_", "kind": "Other"}, {"name": "intp", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "signedinteger", "kind": "ImportedType", "fullname": "numpy.signedinteger"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "_OrderCF", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_SupportsArrayFunc", "kind": "ImportedType", "fullname": "numpy._typing._array_like._SupportsArrayFunc"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_MaskFunc", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}], "numpy.lib.type_check": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "float64", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "_64Bit", "kind": "ImportedType", "fullname": "numpy._typing._64Bit"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_NBit1", "kind": "Other"}, {"name": "_NBit2", "kind": "Other"}, {"name": "_SupportsReal", "kind": "LocalType"}, {"name": "_SupportsImag", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}], "numpy.lib.ufunclike": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "NDArray", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}], "numpy.lib.utils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "AST", "kind": "ImportedType", "fullname": "_ast.AST"}, {"name": "Callable", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "_T_contra", "kind": "Other"}, {"name": "_FuncType", "kind": "Other"}, {"name": "_SupportsWrite", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "_Deprecate", "kind": "LocalType"}, {"name": "get_include", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}], "numpy._pytesttester": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PytestTester", "kind": "LocalType"}], "numpy._typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "set_module", "kind": "Other"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "NBitBase", "kind": "LocalType"}, {"name": "_256Bit", "kind": "LocalType"}, {"name": "_128Bit", "kind": "LocalType"}, {"name": "_96Bit", "kind": "LocalType"}, {"name": "_80Bit", "kind": "LocalType"}, {"name": "_64Bit", "kind": "LocalType"}, {"name": "_32Bit", "kind": "LocalType"}, {"name": "_16Bit", "kind": "LocalType"}, {"name": "_8Bit", "kind": "LocalType"}, {"name": "_NestedSequence", "kind": "LocalType"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_UIntLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_VoidLike_co", "kind": "Other"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeTD64", "kind": "Other"}, {"name": "_DTypeLikeDT64", "kind": "Other"}, {"name": "_DTypeLikeObject", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_DTypeLikeStr", "kind": "Other"}, {"name": "_DTypeLikeBytes", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_SupportsArrayFunc", "kind": "LocalType"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "NDArray", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_GenericAlias", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}], "numpy.ctypeslib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_c_intp", "kind": "ImportedType", "fullname": "ctypes.c_int64"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ctypes", "kind": "Module", "fullname": "ctypes"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "byte", "kind": "Other"}, {"name": "short", "kind": "Other"}, {"name": "intc", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "longlong", "kind": "Other"}, {"name": "ubyte", "kind": "Other"}, {"name": "ushort", "kind": "Other"}, {"name": "uintc", "kind": "Other"}, {"name": "uint", "kind": "Other"}, {"name": "ulonglong", "kind": "Other"}, {"name": "single", "kind": "Other"}, {"name": "double", "kind": "Other"}, {"name": "longdouble", "kind": "Other"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "_ctypes", "kind": "ImportedType", "fullname": "numpy.core._internal._ctypes"}, {"name": "flagsobj", "kind": "ImportedType", "fullname": "numpy.core.multiarray.flagsobj"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_DTypeOptional", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_FlagsKind", "kind": "Other"}, {"name": "_ndptr", "kind": "LocalType"}, {"name": "_concrete_ndptr", "kind": "LocalType"}, {"name": "load_library", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "c_intp", "kind": "Other"}, {"name": "ndpointer", "kind": "Other"}, {"name": "as_ctypes_type", "kind": "Other"}, {"name": "as_array", "kind": "Other"}, {"name": "as_ctypes", "kind": "Other"}], "numpy.fft": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "fft", "kind": "Other"}, {"name": "ifft", "kind": "Other"}, {"name": "rfft", "kind": "Other"}, {"name": "irfft", "kind": "Other"}, {"name": "hfft", "kind": "Other"}, {"name": "ihfft", "kind": "Other"}, {"name": "rfftn", "kind": "Other"}, {"name": "irfftn", "kind": "Other"}, {"name": "rfft2", "kind": "Other"}, {"name": "irfft2", "kind": "Other"}, {"name": "fft2", "kind": "Other"}, {"name": "ifft2", "kind": "Other"}, {"name": "fftn", "kind": "Other"}, {"name": "ifftn", "kind": "Other"}, {"name": "fftshift", "kind": "Other"}, {"name": "ifftshift", "kind": "Other"}, {"name": "fftfreq", "kind": "Other"}, {"name": "rfftfreq", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.lib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "math", "kind": "Module", "fullname": "math"}, {"name": "Any", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "ndenumerate", "kind": "ImportedType", "fullname": "numpy.ndenumerate"}, {"name": "ndindex", "kind": "ImportedType", "fullname": "numpy.ndindex"}, {"name": "version", "kind": "Other"}, {"name": "format", "kind": "Module", "fullname": "numpy.lib.format"}, {"name": "mixins", "kind": "Module", "fullname": "numpy.lib.mixins"}, {"name": "scimath", "kind": "Module", "fullname": "numpy.lib.scimath"}, {"name": "stride_tricks", "kind": "Module", "fullname": "numpy.lib.stride_tricks"}, {"name": "NumpyVersion", "kind": "LocalType"}, {"name": "pad", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "Arrayterator", "kind": "LocalType"}, {"name": "select", "kind": "Other"}, {"name": "piecewise", "kind": "Other"}, {"name": "trim_zeros", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "iterable", "kind": "Other"}, {"name": "percentile", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "gradient", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "unwrap", "kind": "Other"}, {"name": "sort_complex", "kind": "Other"}, {"name": "disp", "kind": "Other"}, {"name": "flip", "kind": "Other"}, {"name": "rot90", "kind": "Other"}, {"name": "extract", "kind": "Other"}, {"name": "place", "kind": "Other"}, {"name": "vectorize", "kind": "ImportedType", "fullname": "numpy.vectorize"}, {"name": "asarray_chkfinite", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "bincount", "kind": "Other"}, {"name": "digitize", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "msort", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "sinc", "kind": "Other"}, {"name": "hamming", "kind": "Other"}, {"name": "hanning", "kind": "Other"}, {"name": "bartlett", "kind": "Other"}, {"name": "blackman", "kind": "Other"}, {"name": "kaiser", "kind": "Other"}, {"name": "trapz", "kind": "Other"}, {"name": "i0", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "add_docstring", "kind": "Other"}, {"name": "meshgrid", "kind": "Other"}, {"name": "delete", "kind": "Other"}, {"name": "insert", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "interp", "kind": "Other"}, {"name": "add_newdoc_ufunc", "kind": "Other"}, {"name": "quantile", "kind": "Other"}, {"name": "histogram_bin_edges", "kind": "Other"}, {"name": "histogram", "kind": "Other"}, {"name": "histogramdd", "kind": "Other"}, {"name": "ravel_multi_index", "kind": "Other"}, {"name": "unravel_index", "kind": "Other"}, {"name": "mgrid", "kind": "Other"}, {"name": "ogrid", "kind": "Other"}, {"name": "r_", "kind": "Other"}, {"name": "c_", "kind": "Other"}, {"name": "s_", "kind": "Other"}, {"name": "index_exp", "kind": "Other"}, {"name": "ix_", "kind": "Other"}, {"name": "fill_diagonal", "kind": "Other"}, {"name": "diag_indices", "kind": "Other"}, {"name": "diag_indices_from", "kind": "Other"}, {"name": "nansum", "kind": "Other"}, {"name": "nanmax", "kind": "Other"}, {"name": "nanmin", "kind": "Other"}, {"name": "nanargmax", "kind": "Other"}, {"name": "nanargmin", "kind": "Other"}, {"name": "nanmean", "kind": "Other"}, {"name": "nanmedian", "kind": "Other"}, {"name": "nanpercentile", "kind": "Other"}, {"name": "nanvar", "kind": "Other"}, {"name": "nanstd", "kind": "Other"}, {"name": "nanprod", "kind": "Other"}, {"name": "nancumsum", "kind": "Other"}, {"name": "nancumprod", "kind": "Other"}, {"name": "nanquantile", "kind": "Other"}, {"name": "savetxt", "kind": "Other"}, {"name": "loadtxt", "kind": "Other"}, {"name": "genfromtxt", "kind": "Other"}, {"name": "recfromtxt", "kind": "Other"}, {"name": "recfromcsv", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "save", "kind": "Other"}, {"name": "savez", "kind": "Other"}, {"name": "savez_compressed", "kind": "Other"}, {"name": "packbits", "kind": "Other"}, {"name": "unpackbits", "kind": "Other"}, {"name": "fromregex", "kind": "Other"}, {"name": "DataSource", "kind": "ImportedType", "fullname": "numpy.DataSource"}, {"name": "poly", "kind": "Other"}, {"name": "roots", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "RankWarning", "kind": "ImportedType", "fullname": "numpy.RankWarning"}, {"name": "poly1d", "kind": "ImportedType", "fullname": "numpy.poly1d"}, {"name": "column_stack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "array_split", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "vsplit", "kind": "Other"}, {"name": "dsplit", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "kron", "kind": "Other"}, {"name": "tile", "kind": "Other"}, {"name": "get_array_wrap", "kind": "Other"}, {"name": "take_along_axis", "kind": "Other"}, {"name": "put_along_axis", "kind": "Other"}, {"name": "broadcast_to", "kind": "Other"}, {"name": "broadcast_arrays", "kind": "Other"}, {"name": "broadcast_shapes", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "eye", "kind": "Other"}, {"name": "fliplr", "kind": "Other"}, {"name": "flipud", "kind": "Other"}, {"name": "tri", "kind": "Other"}, {"name": "triu", "kind": "Other"}, {"name": "tril", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "histogram2d", "kind": "Other"}, {"name": "mask_indices", "kind": "Other"}, {"name": "tril_indices", "kind": "Other"}, {"name": "tril_indices_from", "kind": "Other"}, {"name": "triu_indices", "kind": "Other"}, {"name": "triu_indices_from", "kind": "Other"}, {"name": "mintypecode", "kind": "Other"}, {"name": "asfarray", "kind": "Other"}, {"name": "real", "kind": "Other"}, {"name": "imag", "kind": "Other"}, {"name": "iscomplex", "kind": "Other"}, {"name": "isreal", "kind": "Other"}, {"name": "iscomplexobj", "kind": "Other"}, {"name": "isrealobj", "kind": "Other"}, {"name": "nan_to_num", "kind": "Other"}, {"name": "real_if_close", "kind": "Other"}, {"name": "typename", "kind": "Other"}, {"name": "common_type", "kind": "Other"}, {"name": "fix", "kind": "Other"}, {"name": "isposinf", "kind": "Other"}, {"name": "isneginf", "kind": "Other"}, {"name": "issubclass_", "kind": "Other"}, {"name": "issubsctype", "kind": "Other"}, {"name": "issubdtype", "kind": "Other"}, {"name": "deprecate", "kind": "Other"}, {"name": "deprecate_with_doc", "kind": "Other"}, {"name": "get_include", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "source", "kind": "Other"}, {"name": "who", "kind": "Other"}, {"name": "lookfor", "kind": "Other"}, {"name": "byte_bounds", "kind": "Other"}, {"name": "safe_eval", "kind": "Other"}, {"name": "show_runtime", "kind": "Other"}, {"name": "tracemalloc_domain", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "emath", "kind": "Module", "fullname": "numpy.lib.scimath"}], "numpy.linalg": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "matrix_power", "kind": "Other"}, {"name": "solve", "kind": "Other"}, {"name": "tensorsolve", "kind": "Other"}, {"name": "tensorinv", "kind": "Other"}, {"name": "inv", "kind": "Other"}, {"name": "cholesky", "kind": "Other"}, {"name": "eigvals", "kind": "Other"}, {"name": "eigvalsh", "kind": "Other"}, {"name": "pinv", "kind": "Other"}, {"name": "slogdet", "kind": "Other"}, {"name": "det", "kind": "Other"}, {"name": "svd", "kind": "Other"}, {"name": "eig", "kind": "Other"}, {"name": "eigh", "kind": "Other"}, {"name": "lstsq", "kind": "Other"}, {"name": "norm", "kind": "Other"}, {"name": "qr", "kind": "Other"}, {"name": "cond", "kind": "Other"}, {"name": "matrix_rank", "kind": "Other"}, {"name": "multi_dot", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "LinAlgError", "kind": "LocalType"}], "numpy.ma": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "extras", "kind": "Module", "fullname": "numpy.ma.extras"}, {"name": "MAError", "kind": "LocalType"}, {"name": "MaskError", "kind": "LocalType"}, {"name": "MaskType", "kind": "Other"}, {"name": "MaskedArray", "kind": "LocalType"}, {"name": "abs", "kind": "Other"}, {"name": "absolute", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "all", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "allequal", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "anom", "kind": "Other"}, {"name": "anomalies", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "arange", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "ceil", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "common_fill_value", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "compressed", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "default_fill_value", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expand_dims", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "filled", "kind": "Other"}, {"name": "fix_invalid", "kind": "Other"}, {"name": "flatten_mask", "kind": "Other"}, {"name": "flatten_structured_array", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromflex", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "getdata", "kind": "Other"}, {"name": "getmask", "kind": "Other"}, {"name": "getmaskarray", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "harden_mask", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "ids", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "innerproduct", "kind": "Other"}, {"name": "isMA", "kind": "Other"}, {"name": "isMaskedArray", "kind": "Other"}, {"name": "is_mask", "kind": "Other"}, {"name": "is_masked", "kind": "Other"}, {"name": "isarray", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "make_mask", "kind": "Other"}, {"name": "make_mask_descr", "kind": "Other"}, {"name": "make_mask_none", "kind": "Other"}, {"name": "mask_or", "kind": "Other"}, {"name": "masked", "kind": "Other"}, {"name": "masked_array", "kind": "Other"}, {"name": "masked_equal", "kind": "Other"}, {"name": "masked_greater", "kind": "Other"}, {"name": "masked_greater_equal", "kind": "Other"}, {"name": "masked_inside", "kind": "Other"}, {"name": "masked_invalid", "kind": "Other"}, {"name": "masked_less", "kind": "Other"}, {"name": "masked_less_equal", "kind": "Other"}, {"name": "masked_not_equal", "kind": "Other"}, {"name": "masked_object", "kind": "Other"}, {"name": "masked_outside", "kind": "Other"}, {"name": "masked_print_option", "kind": "Other"}, {"name": "masked_singleton", "kind": "Other"}, {"name": "masked_values", "kind": "Other"}, {"name": "masked_where", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "maximum_fill_value", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "min", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "minimum_fill_value", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "mvoid", "kind": "LocalType"}, {"name": "ndim", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "nomask", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "outerproduct", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "set_fill_value", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "soften_mask", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "clump_masked", "kind": "Other"}, {"name": "clump_unmasked", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "compress_cols", "kind": "Other"}, {"name": "compress_nd", "kind": "Other"}, {"name": "compress_rowcols", "kind": "Other"}, {"name": "compress_rows", "kind": "Other"}, {"name": "count_masked", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "flatnotmasked_contiguous", "kind": "Other"}, {"name": "flatnotmasked_edges", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "mask_cols", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}, {"name": "mask_rows", "kind": "Other"}, {"name": "masked_all", "kind": "Other"}, {"name": "masked_all_like", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "mr_", "kind": "Other"}, {"name": "ndenumerate", "kind": "Other"}, {"name": "notmasked_contiguous", "kind": "Other"}, {"name": "notmasked_edges", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "chebyshev", "kind": "Module", "fullname": "numpy.polynomial.chebyshev"}, {"name": "hermite", "kind": "Module", "fullname": "numpy.polynomial.hermite"}, {"name": "hermite_e", "kind": "Module", "fullname": "numpy.polynomial.hermite_e"}, {"name": "laguerre", "kind": "Module", "fullname": "numpy.polynomial.laguerre"}, {"name": "legendre", "kind": "Module", "fullname": "numpy.polynomial.legendre"}, {"name": "polynomial", "kind": "Module", "fullname": "numpy.polynomial.polynomial"}, {"name": "Chebyshev", "kind": "LocalType"}, {"name": "Hermite", "kind": "LocalType"}, {"name": "HermiteE", "kind": "LocalType"}, {"name": "Laguerre", "kind": "LocalType"}, {"name": "Legendre", "kind": "LocalType"}, {"name": "Polynomial", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "set_default_printstyle", "kind": "Other"}], "numpy.random": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "Generator", "kind": "LocalType"}, {"name": "default_rng", "kind": "Other"}, {"name": "MT19937", "kind": "LocalType"}, {"name": "PCG64", "kind": "LocalType"}, {"name": "PCG64DXSM", "kind": "LocalType"}, {"name": "Philox", "kind": "LocalType"}, {"name": "SFC64", "kind": "LocalType"}, {"name": "BitGenerator", "kind": "LocalType"}, {"name": "SeedSequence", "kind": "LocalType"}, {"name": "RandomState", "kind": "LocalType"}, {"name": "beta", "kind": "Other"}, {"name": "binomial", "kind": "Other"}, {"name": "bytes", "kind": "Other"}, {"name": "chisquare", "kind": "Other"}, {"name": "choice", "kind": "Other"}, {"name": "dirichlet", "kind": "Other"}, {"name": "exponential", "kind": "Other"}, {"name": "f", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "geometric", "kind": "Other"}, {"name": "get_bit_generator", "kind": "Other"}, {"name": "get_state", "kind": "Other"}, {"name": "gumbel", "kind": "Other"}, {"name": "hypergeometric", "kind": "Other"}, {"name": "laplace", "kind": "Other"}, {"name": "logistic", "kind": "Other"}, {"name": "lognormal", "kind": "Other"}, {"name": "logseries", "kind": "Other"}, {"name": "multinomial", "kind": "Other"}, {"name": "multivariate_normal", "kind": "Other"}, {"name": "negative_binomial", "kind": "Other"}, {"name": "noncentral_chisquare", "kind": "Other"}, {"name": "noncentral_f", "kind": "Other"}, {"name": "normal", "kind": "Other"}, {"name": "pareto", "kind": "Other"}, {"name": "permutation", "kind": "Other"}, {"name": "poisson", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rand", "kind": "Other"}, {"name": "randint", "kind": "Other"}, {"name": "randn", "kind": "Other"}, {"name": "random", "kind": "Other"}, {"name": "random_integers", "kind": "Other"}, {"name": "random_sample", "kind": "Other"}, {"name": "ranf", "kind": "Other"}, {"name": "rayleigh", "kind": "Other"}, {"name": "sample", "kind": "Other"}, {"name": "seed", "kind": "Other"}, {"name": "set_bit_generator", "kind": "Other"}, {"name": "set_state", "kind": "Other"}, {"name": "shuffle", "kind": "Other"}, {"name": "standard_cauchy", "kind": "Other"}, {"name": "standard_exponential", "kind": "Other"}, {"name": "standard_gamma", "kind": "Other"}, {"name": "standard_normal", "kind": "Other"}, {"name": "standard_t", "kind": "Other"}, {"name": "triangular", "kind": "Other"}, {"name": "uniform", "kind": "Other"}, {"name": "vonmises", "kind": "Other"}, {"name": "wald", "kind": "Other"}, {"name": "weibull", "kind": "Other"}, {"name": "zipf", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "numpy.testing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "assert_equal", "kind": "Other"}, {"name": "assert_almost_equal", "kind": "Other"}, {"name": "assert_approx_equal", "kind": "Other"}, {"name": "assert_array_equal", "kind": "Other"}, {"name": "assert_array_less", "kind": "Other"}, {"name": "assert_string_equal", "kind": "Other"}, {"name": "assert_array_almost_equal", "kind": "Other"}, {"name": "assert_raises", "kind": "Other"}, {"name": "build_err_msg", "kind": "Other"}, {"name": "decorate_methods", "kind": "Other"}, {"name": "jiffies", "kind": "Other"}, {"name": "memusage", "kind": "Other"}, {"name": "print_assert_equal", "kind": "Other"}, {"name": "raises", "kind": "Other"}, {"name": "rundocs", "kind": "Other"}, {"name": "runstring", "kind": "Other"}, {"name": "verbose", "kind": "Other"}, {"name": "measure", "kind": "Other"}, {"name": "assert_", "kind": "Other"}, {"name": "assert_array_almost_equal_nulp", "kind": "Other"}, {"name": "assert_raises_regex", "kind": "Other"}, {"name": "assert_array_max_ulp", "kind": "Other"}, {"name": "assert_warns", "kind": "Other"}, {"name": "assert_no_warnings", "kind": "Other"}, {"name": "assert_allclose", "kind": "Other"}, {"name": "IgnoreException", "kind": "LocalType"}, {"name": "clear_and_catch_warnings", "kind": "LocalType"}, {"name": "SkipTest", "kind": "ImportedType", "fullname": "unittest.case.SkipTest"}, {"name": "KnownFailureException", "kind": "LocalType"}, {"name": "temppath", "kind": "Other"}, {"name": "tempdir", "kind": "Other"}, {"name": "IS_PYPY", "kind": "Other"}, {"name": "IS_PYSTON", "kind": "Other"}, {"name": "HAS_REFCOUNT", "kind": "Other"}, {"name": "suppress_warnings", "kind": "LocalType"}, {"name": "assert_array_compare", "kind": "Other"}, {"name": "assert_no_gc_cycles", "kind": "Other"}, {"name": "break_cycles", "kind": "Other"}, {"name": "HAS_LAPACK64", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}, {"name": "run_module_suite", "kind": "Other"}], "numpy.version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "get_versions", "kind": "Other"}, {"name": "__ALL__", "kind": "Other"}, {"name": "vinfo", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "__version__", "kind": "Other"}, {"name": "full_version", "kind": "Other"}, {"name": "git_revision", "kind": "Other"}, {"name": "release", "kind": "Other"}, {"name": "short_version", "kind": "Other"}], "numpy.core": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "numpy.matrixlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "bmat", "kind": "Other"}, {"name": "mat", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "test", "kind": "Other"}], "os": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyStr_co", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorLike", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "GenericPath", "kind": "Other"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsLenAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsLenAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "OSError", "kind": "ImportedType", "fullname": "builtins.OSError"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "_TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Popen", "kind": "ImportedType", "fullname": "subprocess.Popen"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Generic", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_path", "kind": "Module", "fullname": "os.path"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "path", "kind": "Module", "fullname": "os.path"}, {"name": "_T", "kind": "Other"}, {"name": "_T1", "kind": "Other"}, {"name": "_T2", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "supports_bytes_environ", "kind": "Other"}, {"name": "supports_dir_fd", "kind": "Other"}, {"name": "supports_fd", "kind": "Other"}, {"name": "supports_effective_ids", "kind": "Other"}, {"name": "supports_follow_symlinks", "kind": "Other"}, {"name": "PRIO_PROCESS", "kind": "Other"}, {"name": "PRIO_PGRP", "kind": "Other"}, {"name": "PRIO_USER", "kind": "Other"}, {"name": "F_LOCK", "kind": "Other"}, {"name": "F_TLOCK", "kind": "Other"}, {"name": "F_ULOCK", "kind": "Other"}, {"name": "F_TEST", "kind": "Other"}, {"name": "POSIX_FADV_NORMAL", "kind": "Other"}, {"name": "POSIX_FADV_SEQUENTIAL", "kind": "Other"}, {"name": "POSIX_FADV_RANDOM", "kind": "Other"}, {"name": "POSIX_FADV_NOREUSE", "kind": "Other"}, {"name": "POSIX_FADV_WILLNEED", "kind": "Other"}, {"name": "POSIX_FADV_DONTNEED", "kind": "Other"}, {"name": "SF_NODISKIO", "kind": "Other"}, {"name": "SF_MNOWAIT", "kind": "Other"}, {"name": "SF_SYNC", "kind": "Other"}, {"name": "XATTR_SIZE_MAX", "kind": "Other"}, {"name": "XATTR_CREATE", "kind": "Other"}, {"name": "XATTR_REPLACE", "kind": "Other"}, {"name": "P_PID", "kind": "Other"}, {"name": "P_PGID", "kind": "Other"}, {"name": "P_ALL", "kind": "Other"}, {"name": "P_PIDFD", "kind": "Other"}, {"name": "WEXITED", "kind": "Other"}, {"name": "WSTOPPED", "kind": "Other"}, {"name": "WNOWAIT", "kind": "Other"}, {"name": "CLD_EXITED", "kind": "Other"}, {"name": "CLD_DUMPED", "kind": "Other"}, {"name": "CLD_TRAPPED", "kind": "Other"}, {"name": "CLD_CONTINUED", "kind": "Other"}, {"name": "CLD_KILLED", "kind": "Other"}, {"name": "CLD_STOPPED", "kind": "Other"}, {"name": "SCHED_OTHER", "kind": "Other"}, {"name": "SCHED_BATCH", "kind": "Other"}, {"name": "SCHED_IDLE", "kind": "Other"}, {"name": "SCHED_SPORADIC", "kind": "Other"}, {"name": "SCHED_FIFO", "kind": "Other"}, {"name": "SCHED_RR", "kind": "Other"}, {"name": "SCHED_RESET_ON_FORK", "kind": "Other"}, {"name": "RTLD_LAZY", "kind": "Other"}, {"name": "RTLD_NOW", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "RTLD_NODELETE", "kind": "Other"}, {"name": "RTLD_NOLOAD", "kind": "Other"}, {"name": "RTLD_DEEPBIND", "kind": "Other"}, {"name": "GRND_NONBLOCK", "kind": "Other"}, {"name": "GRND_RANDOM", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "SEEK_DATA", "kind": "Other"}, {"name": "SEEK_HOLE", "kind": "Other"}, {"name": "O_RDONLY", "kind": "Other"}, {"name": "O_WRONLY", "kind": "Other"}, {"name": "O_RDWR", "kind": "Other"}, {"name": "O_APPEND", "kind": "Other"}, {"name": "O_CREAT", "kind": "Other"}, {"name": "O_EXCL", "kind": "Other"}, {"name": "O_TRUNC", "kind": "Other"}, {"name": "O_DSYNC", "kind": "Other"}, {"name": "O_RSYNC", "kind": "Other"}, {"name": "O_SYNC", "kind": "Other"}, {"name": "O_NDELAY", "kind": "Other"}, {"name": "O_NONBLOCK", "kind": "Other"}, {"name": "O_NOCTTY", "kind": "Other"}, {"name": "O_CLOEXEC", "kind": "Other"}, {"name": "O_SHLOCK", "kind": "Other"}, {"name": "O_EXLOCK", "kind": "Other"}, {"name": "O_BINARY", "kind": "Other"}, {"name": "O_NOINHERIT", "kind": "Other"}, {"name": "O_SHORT_LIVED", "kind": "Other"}, {"name": "O_TEMPORARY", "kind": "Other"}, {"name": "O_RANDOM", "kind": "Other"}, {"name": "O_SEQUENTIAL", "kind": "Other"}, {"name": "O_TEXT", "kind": "Other"}, {"name": "O_ASYNC", "kind": "Other"}, {"name": "O_DIRECT", "kind": "Other"}, {"name": "O_DIRECTORY", "kind": "Other"}, {"name": "O_NOFOLLOW", "kind": "Other"}, {"name": "O_NOATIME", "kind": "Other"}, {"name": "O_PATH", "kind": "Other"}, {"name": "O_TMPFILE", "kind": "Other"}, {"name": "O_LARGEFILE", "kind": "Other"}, {"name": "O_ACCMODE", "kind": "Other"}, {"name": "ST_APPEND", "kind": "Other"}, {"name": "ST_MANDLOCK", "kind": "Other"}, {"name": "ST_NOATIME", "kind": "Other"}, {"name": "ST_NODEV", "kind": "Other"}, {"name": "ST_NODIRATIME", "kind": "Other"}, {"name": "ST_NOEXEC", "kind": "Other"}, {"name": "ST_RELATIME", "kind": "Other"}, {"name": "ST_SYNCHRONOUS", "kind": "Other"}, {"name": "ST_WRITE", "kind": "Other"}, {"name": "NGROUPS_MAX", "kind": "Other"}, {"name": "ST_NOSUID", "kind": "Other"}, {"name": "ST_RDONLY", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "linesep", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "name", "kind": "Other"}, {"name": "F_OK", "kind": "Other"}, {"name": "R_OK", "kind": "Other"}, {"name": "W_OK", "kind": "Other"}, {"name": "X_OK", "kind": "Other"}, {"name": "_EnvironCodeFunc", "kind": "Other"}, {"name": "_Environ", "kind": "LocalType"}, {"name": "environ", "kind": "Other"}, {"name": "environb", "kind": "Other"}, {"name": "confstr_names", "kind": "Other"}, {"name": "pathconf_names", "kind": "Other"}, {"name": "sysconf_names", "kind": "Other"}, {"name": "EX_OK", "kind": "Other"}, {"name": "EX_USAGE", "kind": "Other"}, {"name": "EX_DATAERR", "kind": "Other"}, {"name": "EX_NOINPUT", "kind": "Other"}, {"name": "EX_NOUSER", "kind": "Other"}, {"name": "EX_NOHOST", "kind": "Other"}, {"name": "EX_UNAVAILABLE", "kind": "Other"}, {"name": "EX_SOFTWARE", "kind": "Other"}, {"name": "EX_OSERR", "kind": "Other"}, {"name": "EX_OSFILE", "kind": "Other"}, {"name": "EX_CANTCREAT", "kind": "Other"}, {"name": "EX_IOERR", "kind": "Other"}, {"name": "EX_TEMPFAIL", "kind": "Other"}, {"name": "EX_PROTOCOL", "kind": "Other"}, {"name": "EX_NOPERM", "kind": "Other"}, {"name": "EX_CONFIG", "kind": "Other"}, {"name": "EX_NOTFOUND", "kind": "Other"}, {"name": "P_NOWAIT", "kind": "Other"}, {"name": "P_NOWAITO", "kind": "Other"}, {"name": "P_WAIT", "kind": "Other"}, {"name": "WNOHANG", "kind": "Other"}, {"name": "WCONTINUED", "kind": "Other"}, {"name": "WUNTRACED", "kind": "Other"}, {"name": "TMP_MAX", "kind": "Other"}, {"name": "stat_result", "kind": "LocalType"}, {"name": "PathLike", "kind": "LocalType"}, {"name": "listdir", "kind": "Other"}, {"name": "DirEntry", "kind": "LocalType"}, {"name": "statvfs_result", "kind": "LocalType"}, {"name": "fsencode", "kind": "Other"}, {"name": "fsdecode", "kind": "Other"}, {"name": "fspath", "kind": "Other"}, {"name": "get_exec_path", "kind": "Other"}, {"name": "getlogin", "kind": "Other"}, {"name": "getpid", "kind": "Other"}, {"name": "getppid", "kind": "Other"}, {"name": "strerror", "kind": "Other"}, {"name": "umask", "kind": "Other"}, {"name": "uname_result", "kind": "LocalType"}, {"name": "ctermid", "kind": "Other"}, {"name": "getegid", "kind": "Other"}, {"name": "geteuid", "kind": "Other"}, {"name": "getgid", "kind": "Other"}, {"name": "getgrouplist", "kind": "Other"}, {"name": "getgroups", "kind": "Other"}, {"name": "initgroups", "kind": "Other"}, {"name": "getpgid", "kind": "Other"}, {"name": "getpgrp", "kind": "Other"}, {"name": "getpriority", "kind": "Other"}, {"name": "setpriority", "kind": "Other"}, {"name": "getresuid", "kind": "Other"}, {"name": "getresgid", "kind": "Other"}, {"name": "getuid", "kind": "Other"}, {"name": "setegid", "kind": "Other"}, {"name": "seteuid", "kind": "Other"}, {"name": "setgid", "kind": "Other"}, {"name": "setgroups", "kind": "Other"}, {"name": "setpgrp", "kind": "Other"}, {"name": "setpgid", "kind": "Other"}, {"name": "setregid", "kind": "Other"}, {"name": "setresgid", "kind": "Other"}, {"name": "setresuid", "kind": "Other"}, {"name": "setreuid", "kind": "Other"}, {"name": "getsid", "kind": "Other"}, {"name": "setsid", "kind": "Other"}, {"name": "setuid", "kind": "Other"}, {"name": "uname", "kind": "Other"}, {"name": "getenv", "kind": "Other"}, {"name": "getenvb", "kind": "Other"}, {"name": "putenv", "kind": "Other"}, {"name": "unsetenv", "kind": "Other"}, {"name": "_Opener", "kind": "Other"}, {"name": "fdopen", "kind": "Other"}, {"name": "close", "kind": "Other"}, {"name": "closerange", "kind": "Other"}, {"name": "device_encoding", "kind": "Other"}, {"name": "dup", "kind": "Other"}, {"name": "dup2", "kind": "Other"}, {"name": "fstat", "kind": "Other"}, {"name": "ftruncate", "kind": "Other"}, {"name": "fsync", "kind": "Other"}, {"name": "isatty", "kind": "Other"}, {"name": "lseek", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "pipe", "kind": "Other"}, {"name": "read", "kind": "Other"}, {"name": "fchmod", "kind": "Other"}, {"name": "fchown", "kind": "Other"}, {"name": "fpathconf", "kind": "Other"}, {"name": "fstatvfs", "kind": "Other"}, {"name": "get_blocking", "kind": "Other"}, {"name": "set_blocking", "kind": "Other"}, {"name": "lockf", "kind": "Other"}, {"name": "openpty", "kind": "Other"}, {"name": "fdatasync", "kind": "Other"}, {"name": "pipe2", "kind": "Other"}, {"name": "posix_fallocate", "kind": "Other"}, {"name": "posix_fadvise", "kind": "Other"}, {"name": "pread", "kind": "Other"}, {"name": "pwrite", "kind": "Other"}, {"name": "preadv", "kind": "Other"}, {"name": "pwritev", "kind": "Other"}, {"name": "RWF_APPEND", "kind": "Other"}, {"name": "RWF_DSYNC", "kind": "Other"}, {"name": "RWF_SYNC", "kind": "Other"}, {"name": "RWF_HIPRI", "kind": "Other"}, {"name": "RWF_NOWAIT", "kind": "Other"}, {"name": "sendfile", "kind": "Other"}, {"name": "readv", "kind": "Other"}, {"name": "writev", "kind": "Other"}, {"name": "terminal_size", "kind": "LocalType"}, {"name": "get_terminal_size", "kind": "Other"}, {"name": "get_inheritable", "kind": "Other"}, {"name": "set_inheritable", "kind": "Other"}, {"name": "tcgetpgrp", "kind": "Other"}, {"name": "tcsetpgrp", "kind": "Other"}, {"name": "ttyname", "kind": "Other"}, {"name": "write", "kind": "Other"}, {"name": "access", "kind": "Other"}, {"name": "chdir", "kind": "Other"}, {"name": "fchdir", "kind": "Other"}, {"name": "getcwd", "kind": "Other"}, {"name": "getcwdb", "kind": "Other"}, {"name": "chmod", "kind": "Other"}, {"name": "chroot", "kind": "Other"}, {"name": "chown", "kind": "Other"}, {"name": "lchown", "kind": "Other"}, {"name": "link", "kind": "Other"}, {"name": "lstat", "kind": "Other"}, {"name": "mkdir", "kind": "Other"}, {"name": "mkfifo", "kind": "Other"}, {"name": "makedirs", "kind": "Other"}, {"name": "mknod", "kind": "Other"}, {"name": "major", "kind": "Other"}, {"name": "minor", "kind": "Other"}, {"name": "makedev", "kind": "Other"}, {"name": "pathconf", "kind": "Other"}, {"name": "readlink", "kind": "Other"}, {"name": "remove", "kind": "Other"}, {"name": "removedirs", "kind": "Other"}, {"name": "rename", "kind": "Other"}, {"name": "renames", "kind": "Other"}, {"name": "replace", "kind": "Other"}, {"name": "rmdir", "kind": "Other"}, {"name": "_ScandirIterator", "kind": "LocalType"}, {"name": "scandir", "kind": "Other"}, {"name": "stat", "kind": "Other"}, {"name": "statvfs", "kind": "Other"}, {"name": "symlink", "kind": "Other"}, {"name": "sync", "kind": "Other"}, {"name": "truncate", "kind": "Other"}, {"name": "unlink", "kind": "Other"}, {"name": "utime", "kind": "Other"}, {"name": "_OnError", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "fwalk", "kind": "Other"}, {"name": "getxattr", "kind": "Other"}, {"name": "listxattr", "kind": "Other"}, {"name": "removexattr", "kind": "Other"}, {"name": "setxattr", "kind": "Other"}, {"name": "abort", "kind": "Other"}, {"name": "execl", "kind": "Other"}, {"name": "execlp", "kind": "Other"}, {"name": "execle", "kind": "Other"}, {"name": "execlpe", "kind": "Other"}, {"name": "_ExecVArgs", "kind": "Other"}, {"name": "_ExecEnv", "kind": "Other"}, {"name": "execv", "kind": "Other"}, {"name": "execve", "kind": "Other"}, {"name": "execvp", "kind": "Other"}, {"name": "execvpe", "kind": "Other"}, {"name": "_exit", "kind": "Other"}, {"name": "kill", "kind": "Other"}, {"name": "fork", "kind": "Other"}, {"name": "forkpty", "kind": "Other"}, {"name": "killpg", "kind": "Other"}, {"name": "nice", "kind": "Other"}, {"name": "plock", "kind": "Other"}, {"name": "_wrap_close", "kind": "LocalType"}, {"name": "popen", "kind": "Other"}, {"name": "spawnl", "kind": "Other"}, {"name": "spawnle", "kind": "Other"}, {"name": "spawnv", "kind": "Other"}, {"name": "spawnve", "kind": "Other"}, {"name": "system", "kind": "Other"}, {"name": "times_result", "kind": "LocalType"}, {"name": "times", "kind": "Other"}, {"name": "waitpid", "kind": "Other"}, {"name": "spawnlp", "kind": "Other"}, {"name": "spawnlpe", "kind": "Other"}, {"name": "spawnvp", "kind": "Other"}, {"name": "spawnvpe", "kind": "Other"}, {"name": "wait", "kind": "Other"}, {"name": "waitid_result", "kind": "LocalType"}, {"name": "waitid", "kind": "Other"}, {"name": "wait3", "kind": "Other"}, {"name": "wait4", "kind": "Other"}, {"name": "WCOREDUMP", "kind": "Other"}, {"name": "WIFCONTINUED", "kind": "Other"}, {"name": "WIFSTOPPED", "kind": "Other"}, {"name": "WIFSIGNALED", "kind": "Other"}, {"name": "WIFEXITED", "kind": "Other"}, {"name": "WEXITSTATUS", "kind": "Other"}, {"name": "WSTOPSIG", "kind": "Other"}, {"name": "WTERMSIG", "kind": "Other"}, {"name": "posix_spawn", "kind": "Other"}, {"name": "posix_spawnp", "kind": "Other"}, {"name": "POSIX_SPAWN_OPEN", "kind": "Other"}, {"name": "POSIX_SPAWN_CLOSE", "kind": "Other"}, {"name": "POSIX_SPAWN_DUP2", "kind": "Other"}, {"name": "sched_param", "kind": "LocalType"}, {"name": "sched_get_priority_min", "kind": "Other"}, {"name": "sched_get_priority_max", "kind": "Other"}, {"name": "sched_yield", "kind": "Other"}, {"name": "sched_setscheduler", "kind": "Other"}, {"name": "sched_getscheduler", "kind": "Other"}, {"name": "sched_rr_get_interval", "kind": "Other"}, {"name": "sched_setparam", "kind": "Other"}, {"name": "sched_getparam", "kind": "Other"}, {"name": "sched_setaffinity", "kind": "Other"}, {"name": "sched_getaffinity", "kind": "Other"}, {"name": "cpu_count", "kind": "Other"}, {"name": "confstr", "kind": "Other"}, {"name": "getloadavg", "kind": "Other"}, {"name": "sysconf", "kind": "Other"}, {"name": "getrandom", "kind": "Other"}, {"name": "urandom", "kind": "Other"}, {"name": "register_at_fork", "kind": "Other"}, {"name": "MFD_CLOEXEC", "kind": "Other"}, {"name": "MFD_ALLOW_SEALING", "kind": "Other"}, {"name": "MFD_HUGETLB", "kind": "Other"}, {"name": "MFD_HUGE_SHIFT", "kind": "Other"}, {"name": "MFD_HUGE_MASK", "kind": "Other"}, {"name": "MFD_HUGE_64KB", "kind": "Other"}, {"name": "MFD_HUGE_512KB", "kind": "Other"}, {"name": "MFD_HUGE_1MB", "kind": "Other"}, {"name": "MFD_HUGE_2MB", "kind": "Other"}, {"name": "MFD_HUGE_8MB", "kind": "Other"}, {"name": "MFD_HUGE_16MB", "kind": "Other"}, {"name": "MFD_HUGE_32MB", "kind": "Other"}, {"name": "MFD_HUGE_256MB", "kind": "Other"}, {"name": "MFD_HUGE_512MB", "kind": "Other"}, {"name": "MFD_HUGE_1GB", "kind": "Other"}, {"name": "MFD_HUGE_2GB", "kind": "Other"}, {"name": "MFD_HUGE_16GB", "kind": "Other"}, {"name": "memfd_create", "kind": "Other"}, {"name": "copy_file_range", "kind": "Other"}, {"name": "waitstatus_to_exitcode", "kind": "Other"}, {"name": "pidfd_open", "kind": "Other"}], "mmap": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "ACCESS_DEFAULT", "kind": "Other"}, {"name": "ACCESS_READ", "kind": "Other"}, {"name": "ACCESS_WRITE", "kind": "Other"}, {"name": "ACCESS_COPY", "kind": "Other"}, {"name": "ALLOCATIONGRANULARITY", "kind": "Other"}, {"name": "MAP_DENYWRITE", "kind": "Other"}, {"name": "MAP_EXECUTABLE", "kind": "Other"}, {"name": "MAP_POPULATE", "kind": "Other"}, {"name": "MAP_ANON", "kind": "Other"}, {"name": "MAP_ANONYMOUS", "kind": "Other"}, {"name": "MAP_PRIVATE", "kind": "Other"}, {"name": "MAP_SHARED", "kind": "Other"}, {"name": "PROT_EXEC", "kind": "Other"}, {"name": "PROT_READ", "kind": "Other"}, {"name": "PROT_WRITE", "kind": "Other"}, {"name": "PAGESIZE", "kind": "Other"}, {"name": "mmap", "kind": "LocalType"}, {"name": "MADV_NORMAL", "kind": "Other"}, {"name": "MADV_RANDOM", "kind": "Other"}, {"name": "MADV_SEQUENTIAL", "kind": "Other"}, {"name": "MADV_WILLNEED", "kind": "Other"}, {"name": "MADV_DONTNEED", "kind": "Other"}, {"name": "MADV_FREE", "kind": "Other"}, {"name": "MADV_REMOVE", "kind": "Other"}, {"name": "MADV_DONTFORK", "kind": "Other"}, {"name": "MADV_DOFORK", "kind": "Other"}, {"name": "MADV_HWPOISON", "kind": "Other"}, {"name": "MADV_MERGEABLE", "kind": "Other"}, {"name": "MADV_UNMERGEABLE", "kind": "Other"}, {"name": "MADV_HUGEPAGE", "kind": "Other"}, {"name": "MADV_NOHUGEPAGE", "kind": "Other"}, {"name": "MADV_DONTDUMP", "kind": "Other"}, {"name": "MADV_DODUMP", "kind": "Other"}], "ctypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "POINTER", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "ArgumentError", "kind": "ImportedType", "fullname": "_ctypes.ArgumentError"}, {"name": "Array", "kind": "ImportedType", "fullname": "_ctypes.Array"}, {"name": "_CFuncPtr", "kind": "ImportedType", "fullname": "_ctypes.CFuncPtr"}, {"name": "Structure", "kind": "ImportedType", "fullname": "_ctypes.Structure"}, {"name": "Union", "kind": "ImportedType", "fullname": "_ctypes.Union"}, {"name": "_CanCastTo", "kind": "ImportedType", "fullname": "_ctypes._CanCastTo"}, {"name": "_CArgObject", "kind": "ImportedType", "fullname": "_ctypes._CArgObject"}, {"name": "_CData", "kind": "ImportedType", "fullname": "_ctypes._CData"}, {"name": "_CDataMeta", "kind": "ImportedType", "fullname": "_ctypes._CDataMeta"}, {"name": "_CField", "kind": "ImportedType", "fullname": "_ctypes._CField"}, {"name": "_Pointer", "kind": "ImportedType", "fullname": "_ctypes._Pointer"}, {"name": "_PointerLike", "kind": "ImportedType", "fullname": "_ctypes._PointerLike"}, {"name": "_SimpleCData", "kind": "ImportedType", "fullname": "_ctypes._SimpleCData"}, {"name": "_StructUnionBase", "kind": "ImportedType", "fullname": "_ctypes._StructUnionBase"}, {"name": "_StructUnionMeta", "kind": "ImportedType", "fullname": "_ctypes._StructUnionMeta"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "byref", "kind": "Other"}, {"name": "get_errno", "kind": "Other"}, {"name": "pointer", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_DLLT", "kind": "Other"}, {"name": "DEFAULT_MODE", "kind": "Other"}, {"name": "CDLL", "kind": "LocalType"}, {"name": "PyDLL", "kind": "LocalType"}, {"name": "LibraryLoader", "kind": "LocalType"}, {"name": "cdll", "kind": "Other"}, {"name": "pydll", "kind": "Other"}, {"name": "pythonapi", "kind": "Other"}, {"name": "_FuncPointer", "kind": "LocalType"}, {"name": "_NamedFuncPointer", "kind": "LocalType"}, {"name": "CFUNCTYPE", "kind": "Other"}, {"name": "PYFUNCTYPE", "kind": "Other"}, {"name": "_CVoidPLike", "kind": "Other"}, {"name": "_CVoidConstPLike", "kind": "Other"}, {"name": "_CastT", "kind": "Other"}, {"name": "cast", "kind": "Other"}, {"name": "create_string_buffer", "kind": "Other"}, {"name": "c_buffer", "kind": "Other"}, {"name": "create_unicode_buffer", "kind": "Other"}, {"name": "memmove", "kind": "Other"}, {"name": "memset", "kind": "Other"}, {"name": "string_at", "kind": "Other"}, {"name": "wstring_at", "kind": "Other"}, {"name": "c_byte", "kind": "LocalType"}, {"name": "c_char", "kind": "LocalType"}, {"name": "c_char_p", "kind": "LocalType"}, {"name": "c_double", "kind": "LocalType"}, {"name": "c_longdouble", "kind": "LocalType"}, {"name": "c_float", "kind": "LocalType"}, {"name": "c_int", "kind": "LocalType"}, {"name": "c_int8", "kind": "LocalType"}, {"name": "c_int16", "kind": "LocalType"}, {"name": "c_int32", "kind": "LocalType"}, {"name": "c_int64", "kind": "LocalType"}, {"name": "c_long", "kind": "LocalType"}, {"name": "c_longlong", "kind": "LocalType"}, {"name": "c_short", "kind": "LocalType"}, {"name": "c_size_t", "kind": "LocalType"}, {"name": "c_ssize_t", "kind": "LocalType"}, {"name": "c_ubyte", "kind": "LocalType"}, {"name": "c_uint", "kind": "LocalType"}, {"name": "c_uint8", "kind": "LocalType"}, {"name": "c_uint16", "kind": "LocalType"}, {"name": "c_uint32", "kind": "LocalType"}, {"name": "c_uint64", "kind": "LocalType"}, {"name": "c_ulong", "kind": "LocalType"}, {"name": "c_ulonglong", "kind": "LocalType"}, {"name": "c_ushort", "kind": "LocalType"}, {"name": "c_void_p", "kind": "LocalType"}, {"name": "c_wchar", "kind": "LocalType"}, {"name": "c_wchar_p", "kind": "LocalType"}, {"name": "c_bool", "kind": "LocalType"}, {"name": "py_object", "kind": "LocalType"}, {"name": "BigEndianStructure", "kind": "LocalType"}, {"name": "LittleEndianStructure", "kind": "LocalType"}], "array": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsRead", "kind": "ImportedType", "fullname": "_typeshed.SupportsRead"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "MutableSequence", "kind": "ImportedType", "fullname": "typing.MutableSequence"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_IntTypeCode", "kind": "Other"}, {"name": "_FloatTypeCode", "kind": "Other"}, {"name": "_UnicodeTypeCode", "kind": "Other"}, {"name": "_TypeCode", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "typecodes", "kind": "Other"}, {"name": "array", "kind": "LocalType"}, {"name": "ArrayType", "kind": "Other"}], "datetime": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_D", "kind": "Other"}, {"name": "MINYEAR", "kind": "Other"}, {"name": "MAXYEAR", "kind": "Other"}, {"name": "tzinfo", "kind": "LocalType"}, {"name": "_TzInfo", "kind": "Other"}, {"name": "timezone", "kind": "LocalType"}, {"name": "_IsoCalendarDate", "kind": "LocalType"}, {"name": "date", "kind": "LocalType"}, {"name": "time", "kind": "LocalType"}, {"name": "_Date", "kind": "Other"}, {"name": "_Time", "kind": "Other"}, {"name": "timedelta", "kind": "LocalType"}, {"name": "datetime", "kind": "LocalType"}], "enum": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "SupportsKeysAndGetItem", "kind": "ImportedType", "fullname": "_typeshed.SupportsKeysAndGetItem"}, {"name": "Unused", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "_builtins_property", "kind": "ImportedType", "fullname": "builtins.property"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_EnumMemberT", "kind": "Other"}, {"name": "_EnumerationT", "kind": "Other"}, {"name": "_EnumNames", "kind": "Other"}, {"name": "_EnumDict", "kind": "LocalType"}, {"name": "EnumMeta", "kind": "LocalType"}, {"name": "_magic_enum_attr", "kind": "Other"}, {"name": "Enum", "kind": "LocalType"}, {"name": "_IntEnumBase", "kind": "Other"}, {"name": "IntEnum", "kind": "LocalType"}, {"name": "unique", "kind": "Other"}, {"name": "_auto_null", "kind": "Other"}, {"name": "Flag", "kind": "LocalType"}, {"name": "IntFlag", "kind": "LocalType"}, {"name": "auto", "kind": "LocalType"}], "abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_typeshed", "kind": "Module", "fullname": "_typeshed"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Concatenate", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_T", "kind": "Other"}, {"name": "_R_co", "kind": "Other"}, {"name": "_FuncT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "ABCMeta", "kind": "LocalType"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "abstractclassmethod", "kind": "LocalType"}, {"name": "abstractstaticmethod", "kind": "LocalType"}, {"name": "abstractproperty", "kind": "LocalType"}, {"name": "ABC", "kind": "LocalType"}, {"name": "get_cache_token", "kind": "Other"}, {"name": "update_abstractmethods", "kind": "Other"}], "contextlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "AsyncGenerator", "kind": "ImportedType", "fullname": "typing.AsyncGenerator"}, {"name": "AsyncIterator", "kind": "ImportedType", "fullname": "typing.AsyncIterator"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_T_io", "kind": "Other"}, {"name": "_F", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "_ExitFunc", "kind": "Other"}, {"name": "_CM_EF", "kind": "Other"}, {"name": "AbstractContextManager", "kind": "LocalType"}, {"name": "AbstractAsyncContextManager", "kind": "LocalType"}, {"name": "ContextDecorator", "kind": "LocalType"}, {"name": "_GeneratorContextManager", "kind": "LocalType"}, {"name": "contextmanager", "kind": "Other"}, {"name": "_AF", "kind": "Other"}, {"name": "AsyncContextDecorator", "kind": "LocalType"}, {"name": "_AsyncGeneratorContextManager", "kind": "LocalType"}, {"name": "asynccontextmanager", "kind": "Other"}, {"name": "_SupportsClose", "kind": "LocalType"}, {"name": "_SupportsCloseT", "kind": "Other"}, {"name": "closing", "kind": "LocalType"}, {"name": "_SupportsAclose", "kind": "LocalType"}, {"name": "_SupportsAcloseT", "kind": "Other"}, {"name": "aclosing", "kind": "LocalType"}, {"name": "suppress", "kind": "LocalType"}, {"name": "_RedirectStream", "kind": "LocalType"}, {"name": "redirect_stdout", "kind": "LocalType"}, {"name": "redirect_stderr", "kind": "LocalType"}, {"name": "ExitStack", "kind": "LocalType"}, {"name": "_ExitCoroFunc", "kind": "Other"}, {"name": "_ACM_EF", "kind": "Other"}, {"name": "AsyncExitStack", "kind": "LocalType"}, {"name": "nullcontext", "kind": "LocalType"}], "re": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sre_compile", "kind": "Module", "fullname": "sre_compile"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "Match", "kind": "LocalType"}, {"name": "Pattern", "kind": "LocalType"}, {"name": "RegexFlag", "kind": "LocalType"}, {"name": "A", "kind": "Other"}, {"name": "ASCII", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "I", "kind": "Other"}, {"name": "IGNORECASE", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "LOCALE", "kind": "Other"}, {"name": "M", "kind": "Other"}, {"name": "MULTILINE", "kind": "Other"}, {"name": "S", "kind": "Other"}, {"name": "DOTALL", "kind": "Other"}, {"name": "X", "kind": "Other"}, {"name": "VERBOSE", "kind": "Other"}, {"name": "U", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "T", "kind": "Other"}, {"name": "TEMPLATE", "kind": "Other"}, {"name": "_FlagsType", "kind": "Other"}, {"name": "compile", "kind": "Other"}, {"name": "search", "kind": "Other"}, {"name": "match", "kind": "Other"}, {"name": "fullmatch", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "findall", "kind": "Other"}, {"name": "finditer", "kind": "Other"}, {"name": "sub", "kind": "Other"}, {"name": "subn", "kind": "Other"}, {"name": "escape", "kind": "Other"}, {"name": "purge", "kind": "Other"}, {"name": "template", "kind": "Other"}], "_ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "typing_extensions", "kind": "Module", "fullname": "typing_extensions"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "_Identifier", "kind": "Other"}, {"name": "AST", "kind": "LocalType"}, {"name": "mod", "kind": "LocalType"}, {"name": "type_ignore", "kind": "LocalType"}, {"name": "TypeIgnore", "kind": "LocalType"}, {"name": "FunctionType", "kind": "LocalType"}, {"name": "Module", "kind": "LocalType"}, {"name": "Interactive", "kind": "LocalType"}, {"name": "Expression", "kind": "LocalType"}, {"name": "stmt", "kind": "LocalType"}, {"name": "FunctionDef", "kind": "LocalType"}, {"name": "AsyncFunctionDef", "kind": "LocalType"}, {"name": "ClassDef", "kind": "LocalType"}, {"name": "Return", "kind": "LocalType"}, {"name": "Delete", "kind": "LocalType"}, {"name": "Assign", "kind": "LocalType"}, {"name": "AugAssign", "kind": "LocalType"}, {"name": "AnnAssign", "kind": "LocalType"}, {"name": "For", "kind": "LocalType"}, {"name": "AsyncFor", "kind": "LocalType"}, {"name": "While", "kind": "LocalType"}, {"name": "If", "kind": "LocalType"}, {"name": "With", "kind": "LocalType"}, {"name": "AsyncWith", "kind": "LocalType"}, {"name": "Raise", "kind": "LocalType"}, {"name": "Try", "kind": "LocalType"}, {"name": "Assert", "kind": "LocalType"}, {"name": "Import", "kind": "LocalType"}, {"name": "ImportFrom", "kind": "LocalType"}, {"name": "Global", "kind": "LocalType"}, {"name": "Nonlocal", "kind": "LocalType"}, {"name": "Expr", "kind": "LocalType"}, {"name": "Pass", "kind": "LocalType"}, {"name": "Break", "kind": "LocalType"}, {"name": "Continue", "kind": "LocalType"}, {"name": "expr", "kind": "LocalType"}, {"name": "BoolOp", "kind": "LocalType"}, {"name": "BinOp", "kind": "LocalType"}, {"name": "UnaryOp", "kind": "LocalType"}, {"name": "Lambda", "kind": "LocalType"}, {"name": "IfExp", "kind": "LocalType"}, {"name": "Dict", "kind": "LocalType"}, {"name": "Set", "kind": "LocalType"}, {"name": "ListComp", "kind": "LocalType"}, {"name": "SetComp", "kind": "LocalType"}, {"name": "DictComp", "kind": "LocalType"}, {"name": "GeneratorExp", "kind": "LocalType"}, {"name": "Await", "kind": "LocalType"}, {"name": "Yield", "kind": "LocalType"}, {"name": "YieldFrom", "kind": "LocalType"}, {"name": "Compare", "kind": "LocalType"}, {"name": "Call", "kind": "LocalType"}, {"name": "FormattedValue", "kind": "LocalType"}, {"name": "JoinedStr", "kind": "LocalType"}, {"name": "Constant", "kind": "LocalType"}, {"name": "NamedExpr", "kind": "LocalType"}, {"name": "Attribute", "kind": "LocalType"}, {"name": "_Slice", "kind": "Other"}, {"name": "Slice", "kind": "LocalType"}, {"name": "Subscript", "kind": "LocalType"}, {"name": "Starred", "kind": "LocalType"}, {"name": "Name", "kind": "LocalType"}, {"name": "List", "kind": "LocalType"}, {"name": "Tuple", "kind": "LocalType"}, {"name": "expr_context", "kind": "LocalType"}, {"name": "Del", "kind": "LocalType"}, {"name": "Load", "kind": "LocalType"}, {"name": "Store", "kind": "LocalType"}, {"name": "boolop", "kind": "LocalType"}, {"name": "And", "kind": "LocalType"}, {"name": "Or", "kind": "LocalType"}, {"name": "operator", "kind": "LocalType"}, {"name": "Add", "kind": "LocalType"}, {"name": "BitAnd", "kind": "LocalType"}, {"name": "BitOr", "kind": "LocalType"}, {"name": "BitXor", "kind": "LocalType"}, {"name": "Div", "kind": "LocalType"}, {"name": "FloorDiv", "kind": "LocalType"}, {"name": "LShift", "kind": "LocalType"}, {"name": "Mod", "kind": "LocalType"}, {"name": "Mult", "kind": "LocalType"}, {"name": "MatMult", "kind": "LocalType"}, {"name": "Pow", "kind": "LocalType"}, {"name": "RShift", "kind": "LocalType"}, {"name": "Sub", "kind": "LocalType"}, {"name": "unaryop", "kind": "LocalType"}, {"name": "Invert", "kind": "LocalType"}, {"name": "Not", "kind": "LocalType"}, {"name": "UAdd", "kind": "LocalType"}, {"name": "USub", "kind": "LocalType"}, {"name": "cmpop", "kind": "LocalType"}, {"name": "Eq", "kind": "LocalType"}, {"name": "Gt", "kind": "LocalType"}, {"name": "GtE", "kind": "LocalType"}, {"name": "In", "kind": "LocalType"}, {"name": "Is", "kind": "LocalType"}, {"name": "IsNot", "kind": "LocalType"}, {"name": "Lt", "kind": "LocalType"}, {"name": "LtE", "kind": "LocalType"}, {"name": "NotEq", "kind": "LocalType"}, {"name": "NotIn", "kind": "LocalType"}, {"name": "comprehension", "kind": "LocalType"}, {"name": "excepthandler", "kind": "LocalType"}, {"name": "ExceptHandler", "kind": "LocalType"}, {"name": "arguments", "kind": "LocalType"}, {"name": "arg", "kind": "LocalType"}, {"name": "keyword", "kind": "LocalType"}, {"name": "alias", "kind": "LocalType"}, {"name": "withitem", "kind": "LocalType"}, {"name": "Match", "kind": "LocalType"}, {"name": "pattern", "kind": "LocalType"}, {"name": "_Pattern", "kind": "Other"}, {"name": "match_case", "kind": "LocalType"}, {"name": "MatchValue", "kind": "LocalType"}, {"name": "MatchSingleton", "kind": "LocalType"}, {"name": "MatchSequence", "kind": "LocalType"}, {"name": "MatchStar", "kind": "LocalType"}, {"name": "MatchMapping", "kind": "LocalType"}, {"name": "MatchClass", "kind": "LocalType"}, {"name": "MatchAs", "kind": "LocalType"}, {"name": "MatchOr", "kind": "LocalType"}], "io": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "builtins", "kind": "Module", "fullname": "builtins"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "_Opener", "kind": "Other"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "DEFAULT_BUFFER_SIZE", "kind": "Other"}, {"name": "SEEK_SET", "kind": "Other"}, {"name": "SEEK_CUR", "kind": "Other"}, {"name": "SEEK_END", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "open_code", "kind": "Other"}, {"name": "BlockingIOError", "kind": "Other"}, {"name": "UnsupportedOperation", "kind": "LocalType"}, {"name": "IOBase", "kind": "LocalType"}, {"name": "RawIOBase", "kind": "LocalType"}, {"name": "BufferedIOBase", "kind": "LocalType"}, {"name": "FileIO", "kind": "LocalType"}, {"name": "BytesIO", "kind": "LocalType"}, {"name": "BufferedReader", "kind": "LocalType"}, {"name": "BufferedWriter", "kind": "LocalType"}, {"name": "BufferedRandom", "kind": "LocalType"}, {"name": "BufferedRWPair", "kind": "LocalType"}, {"name": "TextIOBase", "kind": "LocalType"}, {"name": "TextIOWrapper", "kind": "LocalType"}, {"name": "StringIO", "kind": "LocalType"}, {"name": "IncrementalNewlineDecoder", "kind": "LocalType"}], "importlib.abc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_ast", "kind": "Module", "fullname": "_ast"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleSpec", "kind": "ImportedType", "fullname": "importlib.machinery.ModuleSpec"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Finder", "kind": "LocalType"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ResourceLoader", "kind": "LocalType"}, {"name": "InspectLoader", "kind": "LocalType"}, {"name": "ExecutionLoader", "kind": "LocalType"}, {"name": "SourceLoader", "kind": "LocalType"}, {"name": "MetaPathFinder", "kind": "LocalType"}, {"name": "PathEntryFinder", "kind": "LocalType"}, {"name": "FileLoader", "kind": "LocalType"}, {"name": "ResourceReader", "kind": "LocalType"}, {"name": "Traversable", "kind": "LocalType"}, {"name": "TraversableResources", "kind": "LocalType"}], "importlib.machinery": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "importlib", "kind": "Module", "fullname": "importlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "DistributionFinder", "kind": "ImportedType", "fullname": "importlib.metadata.DistributionFinder"}, {"name": "PathDistribution", "kind": "ImportedType", "fullname": "importlib.metadata.PathDistribution"}, {"name": "ModuleSpec", "kind": "LocalType"}, {"name": "BuiltinImporter", "kind": "LocalType"}, {"name": "FrozenImporter", "kind": "LocalType"}, {"name": "WindowsRegistryFinder", "kind": "LocalType"}, {"name": "PathFinder", "kind": "LocalType"}, {"name": "SOURCE_SUFFIXES", "kind": "Other"}, {"name": "DEBUG_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "OPTIMIZED_BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "BYTECODE_SUFFIXES", "kind": "Other"}, {"name": "EXTENSION_SUFFIXES", "kind": "Other"}, {"name": "all_suffixes", "kind": "Other"}, {"name": "FileFinder", "kind": "LocalType"}, {"name": "SourceFileLoader", "kind": "LocalType"}, {"name": "SourcelessFileLoader", "kind": "LocalType"}, {"name": "ExtensionFileLoader", "kind": "LocalType"}], "dataclasses": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "enum", "kind": "Module", "fullname": "enum"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "DataclassInstance", "kind": "ImportedType", "fullname": "_typeshed.DataclassInstance"}, {"name": "Type", "kind": "ImportedType", "fullname": "builtins.type"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypeGuard", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DataclassT", "kind": "Other"}, {"name": "_MISSING_TYPE", "kind": "LocalType"}, {"name": "MISSING", "kind": "Other"}, {"name": "KW_ONLY", "kind": "LocalType"}, {"name": "asdict", "kind": "Other"}, {"name": "astuple", "kind": "Other"}, {"name": "dataclass", "kind": "Other"}, {"name": "_DefaultFactory", "kind": "LocalType"}, {"name": "Field", "kind": "LocalType"}, {"name": "field", "kind": "Other"}, {"name": "fields", "kind": "Other"}, {"name": "is_dataclass", "kind": "Other"}, {"name": "FrozenInstanceError", "kind": "LocalType"}, {"name": "_InitVarMeta", "kind": "Other"}, {"name": "InitVar", "kind": "LocalType"}, {"name": "make_dataclass", "kind": "Other"}, {"name": "replace", "kind": "Other"}], "numpy._typing._nbit": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "_NBitByte", "kind": "Other"}, {"name": "_NBitShort", "kind": "Other"}, {"name": "_NBitIntC", "kind": "Other"}, {"name": "_NBitIntP", "kind": "Other"}, {"name": "_NBitInt", "kind": "Other"}, {"name": "_NBitLongLong", "kind": "Other"}, {"name": "_NBitHalf", "kind": "Other"}, {"name": "_NBitSingle", "kind": "Other"}, {"name": "_NBitDouble", "kind": "Other"}, {"name": "_NBitLongDouble", "kind": "Other"}], "numpy._typing._scalars": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Tuple", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_CharLike_co", "kind": "Other"}, {"name": "_BoolLike_co", "kind": "Other"}, {"name": "_UIntLike_co", "kind": "Other"}, {"name": "_IntLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_TD64Like_co", "kind": "Other"}, {"name": "_NumberLike_co", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "_VoidLike_co", "kind": "Other"}], "numpy._typing._generic_alias": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TYPE_CHECKING", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_to_str", "kind": "Other"}, {"name": "_parse_parameters", "kind": "Other"}, {"name": "_reconstruct_alias", "kind": "Other"}, {"name": "_GenericAlias", "kind": "LocalType"}, {"name": "_GENERIC_ALIAS_TYPE", "kind": "Other"}, {"name": "ScalarType", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}], "numpy._typing._nested_sequence": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_NestedSequence", "kind": "LocalType"}], "__future__": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_VersionInfo", "kind": "Other"}, {"name": "_Feature", "kind": "LocalType"}, {"name": "absolute_import", "kind": "Other"}, {"name": "division", "kind": "Other"}, {"name": "generators", "kind": "Other"}, {"name": "nested_scopes", "kind": "Other"}, {"name": "print_function", "kind": "Other"}, {"name": "unicode_literals", "kind": "Other"}, {"name": "with_statement", "kind": "Other"}, {"name": "barry_as_FLUFL", "kind": "Other"}, {"name": "generator_stop", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "all_feature_names", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy.core.umath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_multiarray_umath", "kind": "Other"}, {"name": "_UFUNC_API", "kind": "Other"}, {"name": "_add_newdoc_ufunc", "kind": "Other"}, {"name": "_ones_like", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy.ma.mrecords": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "MaskedArray", "kind": "ImportedType", "fullname": "numpy.ma.core.MaskedArray"}, {"name": "__all__", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "MaskedRecords", "kind": "LocalType"}, {"name": "mrecarray", "kind": "Other"}, {"name": "fromarrays", "kind": "Other"}, {"name": "fromrecords", "kind": "Other"}, {"name": "fromtextfile", "kind": "Other"}, {"name": "addfield", "kind": "Other"}], "zipfile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "io", "kind": "Module", "fullname": "io"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SizedBuffer", "kind": "ImportedType", "fullname": "_typeshed.SizedBuffer"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_DateTuple", "kind": "Other"}, {"name": "_ReadWriteMode", "kind": "Other"}, {"name": "_ReadWriteBinaryMode", "kind": "Other"}, {"name": "_ZipFileMode", "kind": "Other"}, {"name": "BadZipFile", "kind": "LocalType"}, {"name": "BadZipfile", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "LargeZipFile", "kind": "LocalType"}, {"name": "_ZipStream", "kind": "LocalType"}, {"name": "_SupportsReadSeekTell", "kind": "LocalType"}, {"name": "_ClosableZipStream", "kind": "LocalType"}, {"name": "ZipExtFile", "kind": "LocalType"}, {"name": "_Writer", "kind": "LocalType"}, {"name": "ZipFile", "kind": "LocalType"}, {"name": "PyZipFile", "kind": "LocalType"}, {"name": "ZipInfo", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "is_zipfile", "kind": "Other"}, {"name": "ZIP_STORED", "kind": "Other"}, {"name": "ZIP_DEFLATED", "kind": "Other"}, {"name": "ZIP64_LIMIT", "kind": "Other"}, {"name": "ZIP_FILECOUNT_LIMIT", "kind": "Other"}, {"name": "ZIP_MAX_COMMENT", "kind": "Other"}, {"name": "ZIP_BZIP2", "kind": "Other"}, {"name": "ZIP_LZMA", "kind": "Other"}], "ast": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "PyCF_ONLY_AST", "kind": "Other"}, {"name": "PyCF_TYPE_COMMENTS", "kind": "Other"}, {"name": "PyCF_ALLOW_TOP_LEVEL_AWAIT", "kind": "Other"}, {"name": "AST", "kind": "ImportedType", "fullname": "_ast.AST"}, {"name": "mod", "kind": "ImportedType", "fullname": "_ast.mod"}, {"name": "type_ignore", "kind": "ImportedType", "fullname": "_ast.type_ignore"}, {"name": "TypeIgnore", "kind": "ImportedType", "fullname": "_ast.TypeIgnore"}, {"name": "FunctionType", "kind": "ImportedType", "fullname": "_ast.FunctionType"}, {"name": "Module", "kind": "ImportedType", "fullname": "_ast.Module"}, {"name": "Interactive", "kind": "ImportedType", "fullname": "_ast.Interactive"}, {"name": "Expression", "kind": "ImportedType", "fullname": "_ast.Expression"}, {"name": "stmt", "kind": "ImportedType", "fullname": "_ast.stmt"}, {"name": "FunctionDef", "kind": "ImportedType", "fullname": "_ast.FunctionDef"}, {"name": "AsyncFunctionDef", "kind": "ImportedType", "fullname": "_ast.AsyncFunctionDef"}, {"name": "ClassDef", "kind": "ImportedType", "fullname": "_ast.ClassDef"}, {"name": "Return", "kind": "ImportedType", "fullname": "_ast.Return"}, {"name": "Delete", "kind": "ImportedType", "fullname": "_ast.Delete"}, {"name": "Assign", "kind": "ImportedType", "fullname": "_ast.Assign"}, {"name": "AugAssign", "kind": "ImportedType", "fullname": "_ast.AugAssign"}, {"name": "AnnAssign", "kind": "ImportedType", "fullname": "_ast.AnnAssign"}, {"name": "For", "kind": "ImportedType", "fullname": "_ast.For"}, {"name": "AsyncFor", "kind": "ImportedType", "fullname": "_ast.AsyncFor"}, {"name": "While", "kind": "ImportedType", "fullname": "_ast.While"}, {"name": "If", "kind": "ImportedType", "fullname": "_ast.If"}, {"name": "With", "kind": "ImportedType", "fullname": "_ast.With"}, {"name": "AsyncWith", "kind": "ImportedType", "fullname": "_ast.AsyncWith"}, {"name": "Raise", "kind": "ImportedType", "fullname": "_ast.Raise"}, {"name": "Try", "kind": "ImportedType", "fullname": "_ast.Try"}, {"name": "Assert", "kind": "ImportedType", "fullname": "_ast.Assert"}, {"name": "Import", "kind": "ImportedType", "fullname": "_ast.Import"}, {"name": "ImportFrom", "kind": "ImportedType", "fullname": "_ast.ImportFrom"}, {"name": "Global", "kind": "ImportedType", "fullname": "_ast.Global"}, {"name": "Nonlocal", "kind": "ImportedType", "fullname": "_ast.Nonlocal"}, {"name": "Expr", "kind": "ImportedType", "fullname": "_ast.Expr"}, {"name": "Pass", "kind": "ImportedType", "fullname": "_ast.Pass"}, {"name": "Break", "kind": "ImportedType", "fullname": "_ast.Break"}, {"name": "Continue", "kind": "ImportedType", "fullname": "_ast.Continue"}, {"name": "expr", "kind": "ImportedType", "fullname": "_ast.expr"}, {"name": "BoolOp", "kind": "ImportedType", "fullname": "_ast.BoolOp"}, {"name": "BinOp", "kind": "ImportedType", "fullname": "_ast.BinOp"}, {"name": "UnaryOp", "kind": "ImportedType", "fullname": "_ast.UnaryOp"}, {"name": "Lambda", "kind": "ImportedType", "fullname": "_ast.Lambda"}, {"name": "IfExp", "kind": "ImportedType", "fullname": "_ast.IfExp"}, {"name": "Dict", "kind": "ImportedType", "fullname": "_ast.Dict"}, {"name": "Set", "kind": "ImportedType", "fullname": "_ast.Set"}, {"name": "ListComp", "kind": "ImportedType", "fullname": "_ast.ListComp"}, {"name": "SetComp", "kind": "ImportedType", "fullname": "_ast.SetComp"}, {"name": "DictComp", "kind": "ImportedType", "fullname": "_ast.DictComp"}, {"name": "GeneratorExp", "kind": "ImportedType", "fullname": "_ast.GeneratorExp"}, {"name": "Await", "kind": "ImportedType", "fullname": "_ast.Await"}, {"name": "Yield", "kind": "ImportedType", "fullname": "_ast.Yield"}, {"name": "YieldFrom", "kind": "ImportedType", "fullname": "_ast.YieldFrom"}, {"name": "Compare", "kind": "ImportedType", "fullname": "_ast.Compare"}, {"name": "Call", "kind": "ImportedType", "fullname": "_ast.Call"}, {"name": "FormattedValue", "kind": "ImportedType", "fullname": "_ast.FormattedValue"}, {"name": "JoinedStr", "kind": "ImportedType", "fullname": "_ast.JoinedStr"}, {"name": "Constant", "kind": "ImportedType", "fullname": "_ast.Constant"}, {"name": "NamedExpr", "kind": "ImportedType", "fullname": "_ast.NamedExpr"}, {"name": "Attribute", "kind": "ImportedType", "fullname": "_ast.Attribute"}, {"name": "Slice", "kind": "ImportedType", "fullname": "_ast.Slice"}, {"name": "Subscript", "kind": "ImportedType", "fullname": "_ast.Subscript"}, {"name": "Starred", "kind": "ImportedType", "fullname": "_ast.Starred"}, {"name": "Name", "kind": "ImportedType", "fullname": "_ast.Name"}, {"name": "List", "kind": "ImportedType", "fullname": "_ast.List"}, {"name": "Tuple", "kind": "ImportedType", "fullname": "_ast.Tuple"}, {"name": "expr_context", "kind": "ImportedType", "fullname": "_ast.expr_context"}, {"name": "Del", "kind": "ImportedType", "fullname": "_ast.Del"}, {"name": "Load", "kind": "ImportedType", "fullname": "_ast.Load"}, {"name": "Store", "kind": "ImportedType", "fullname": "_ast.Store"}, {"name": "boolop", "kind": "ImportedType", "fullname": "_ast.boolop"}, {"name": "And", "kind": "ImportedType", "fullname": "_ast.And"}, {"name": "Or", "kind": "ImportedType", "fullname": "_ast.Or"}, {"name": "operator", "kind": "ImportedType", "fullname": "_ast.operator"}, {"name": "Add", "kind": "ImportedType", "fullname": "_ast.Add"}, {"name": "BitAnd", "kind": "ImportedType", "fullname": "_ast.BitAnd"}, {"name": "BitOr", "kind": "ImportedType", "fullname": "_ast.BitOr"}, {"name": "BitXor", "kind": "ImportedType", "fullname": "_ast.BitXor"}, {"name": "Div", "kind": "ImportedType", "fullname": "_ast.Div"}, {"name": "FloorDiv", "kind": "ImportedType", "fullname": "_ast.FloorDiv"}, {"name": "LShift", "kind": "ImportedType", "fullname": "_ast.LShift"}, {"name": "Mod", "kind": "ImportedType", "fullname": "_ast.Mod"}, {"name": "Mult", "kind": "ImportedType", "fullname": "_ast.Mult"}, {"name": "MatMult", "kind": "ImportedType", "fullname": "_ast.MatMult"}, {"name": "Pow", "kind": "ImportedType", "fullname": "_ast.Pow"}, {"name": "RShift", "kind": "ImportedType", "fullname": "_ast.RShift"}, {"name": "Sub", "kind": "ImportedType", "fullname": "_ast.Sub"}, {"name": "unaryop", "kind": "ImportedType", "fullname": "_ast.unaryop"}, {"name": "Invert", "kind": "ImportedType", "fullname": "_ast.Invert"}, {"name": "Not", "kind": "ImportedType", "fullname": "_ast.Not"}, {"name": "UAdd", "kind": "ImportedType", "fullname": "_ast.UAdd"}, {"name": "USub", "kind": "ImportedType", "fullname": "_ast.USub"}, {"name": "cmpop", "kind": "ImportedType", "fullname": "_ast.cmpop"}, {"name": "Eq", "kind": "ImportedType", "fullname": "_ast.Eq"}, {"name": "Gt", "kind": "ImportedType", "fullname": "_ast.Gt"}, {"name": "GtE", "kind": "ImportedType", "fullname": "_ast.GtE"}, {"name": "In", "kind": "ImportedType", "fullname": "_ast.In"}, {"name": "Is", "kind": "ImportedType", "fullname": "_ast.Is"}, {"name": "IsNot", "kind": "ImportedType", "fullname": "_ast.IsNot"}, {"name": "Lt", "kind": "ImportedType", "fullname": "_ast.Lt"}, {"name": "LtE", "kind": "ImportedType", "fullname": "_ast.LtE"}, {"name": "NotEq", "kind": "ImportedType", "fullname": "_ast.NotEq"}, {"name": "NotIn", "kind": "ImportedType", "fullname": "_ast.NotIn"}, {"name": "comprehension", "kind": "ImportedType", "fullname": "_ast.comprehension"}, {"name": "excepthandler", "kind": "ImportedType", "fullname": "_ast.excepthandler"}, {"name": "ExceptHandler", "kind": "ImportedType", "fullname": "_ast.ExceptHandler"}, {"name": "arguments", "kind": "ImportedType", "fullname": "_ast.arguments"}, {"name": "arg", "kind": "ImportedType", "fullname": "_ast.arg"}, {"name": "keyword", "kind": "ImportedType", "fullname": "_ast.keyword"}, {"name": "alias", "kind": "ImportedType", "fullname": "_ast.alias"}, {"name": "withitem", "kind": "ImportedType", "fullname": "_ast.withitem"}, {"name": "Match", "kind": "ImportedType", "fullname": "_ast.Match"}, {"name": "pattern", "kind": "ImportedType", "fullname": "_ast.pattern"}, {"name": "match_case", "kind": "ImportedType", "fullname": "_ast.match_case"}, {"name": "MatchValue", "kind": "ImportedType", "fullname": "_ast.MatchValue"}, {"name": "MatchSingleton", "kind": "ImportedType", "fullname": "_ast.MatchSingleton"}, {"name": "MatchSequence", "kind": "ImportedType", "fullname": "_ast.MatchSequence"}, {"name": "MatchStar", "kind": "ImportedType", "fullname": "_ast.MatchStar"}, {"name": "MatchMapping", "kind": "ImportedType", "fullname": "_ast.MatchMapping"}, {"name": "MatchClass", "kind": "ImportedType", "fullname": "_ast.MatchClass"}, {"name": "MatchAs", "kind": "ImportedType", "fullname": "_ast.MatchAs"}, {"name": "MatchOr", "kind": "ImportedType", "fullname": "_ast.MatchOr"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Unused", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "_TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "_ABC", "kind": "LocalType"}, {"name": "Num", "kind": "LocalType"}, {"name": "Str", "kind": "LocalType"}, {"name": "Bytes", "kind": "LocalType"}, {"name": "NameConstant", "kind": "LocalType"}, {"name": "Ellipsis", "kind": "LocalType"}, {"name": "slice", "kind": "LocalType"}, {"name": "ExtSlice", "kind": "LocalType"}, {"name": "Index", "kind": "LocalType"}, {"name": "Suite", "kind": "LocalType"}, {"name": "AugLoad", "kind": "LocalType"}, {"name": "AugStore", "kind": "LocalType"}, {"name": "Param", "kind": "LocalType"}, {"name": "NodeVisitor", "kind": "LocalType"}, {"name": "NodeTransformer", "kind": "LocalType"}, {"name": "_T", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "unparse", "kind": "Other"}, {"name": "copy_location", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "fix_missing_locations", "kind": "Other"}, {"name": "get_docstring", "kind": "Other"}, {"name": "increment_lineno", "kind": "Other"}, {"name": "iter_child_nodes", "kind": "Other"}, {"name": "iter_fields", "kind": "Other"}, {"name": "literal_eval", "kind": "Other"}, {"name": "get_source_segment", "kind": "Other"}, {"name": "walk", "kind": "Other"}, {"name": "main", "kind": "Other"}], "numpy.core.overrides": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "collections", "kind": "Module", "fullname": "collections"}, {"name": "functools", "kind": "Module", "fullname": "functools"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "add_docstring", "kind": "Other"}, {"name": "implement_array_function", "kind": "Other"}, {"name": "_get_implementing_args", "kind": "Other"}, {"name": "getargspec", "kind": "Other"}, {"name": "ARRAY_FUNCTION_ENABLED", "kind": "Other"}, {"name": "array_function_like_doc", "kind": "Other"}, {"name": "set_array_function_like_doc", "kind": "Other"}, {"name": "ArgSpec", "kind": "LocalType"}, {"name": "verify_matching_signatures", "kind": "Other"}, {"name": "set_module", "kind": "Other"}, {"name": "array_function_dispatch", "kind": "Other"}, {"name": "array_function_from_dispatcher", "kind": "Other"}], "numpy._typing._char_codes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}], "numpy._typing._shape": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Tuple", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "_Shape", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}], "numpy._typing._dtype_like": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "List", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Tuple", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "Type", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "np", "kind": "Module", "fullname": "numpy"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "DType", "kind": "Other"}, {"name": "_BoolCodes", "kind": "Other"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_Float16Codes", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Complex64Codes", "kind": "Other"}, {"name": "_Complex128Codes", "kind": "Other"}, {"name": "_ByteCodes", "kind": "Other"}, {"name": "_ShortCodes", "kind": "Other"}, {"name": "_IntCCodes", "kind": "Other"}, {"name": "_IntPCodes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_LongLongCodes", "kind": "Other"}, {"name": "_UByteCodes", "kind": "Other"}, {"name": "_UShortCodes", "kind": "Other"}, {"name": "_UIntCCodes", "kind": "Other"}, {"name": "_UIntPCodes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ULongLongCodes", "kind": "Other"}, {"name": "_HalfCodes", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_LongDoubleCodes", "kind": "Other"}, {"name": "_CSingleCodes", "kind": "Other"}, {"name": "_CDoubleCodes", "kind": "Other"}, {"name": "_CLongDoubleCodes", "kind": "Other"}, {"name": "_DT64Codes", "kind": "Other"}, {"name": "_TD64Codes", "kind": "Other"}, {"name": "_StrCodes", "kind": "Other"}, {"name": "_BytesCodes", "kind": "Other"}, {"name": "_VoidCodes", "kind": "Other"}, {"name": "_ObjectCodes", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_DTypeLikeNested", "kind": "Other"}, {"name": "_DTypeDictBase", "kind": "LocalType"}, {"name": "_DTypeDict", "kind": "LocalType"}, {"name": "_SupportsDType", "kind": "LocalType"}, {"name": "_DTypeLike", "kind": "Other"}, {"name": "_VoidDTypeLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeFloat", "kind": "Other"}, {"name": "_DTypeLikeComplex", "kind": "Other"}, {"name": "_DTypeLikeDT64", "kind": "Other"}, {"name": "_DTypeLikeTD64", "kind": "Other"}, {"name": "_DTypeLikeStr", "kind": "Other"}, {"name": "_DTypeLikeBytes", "kind": "Other"}, {"name": "_DTypeLikeVoid", "kind": "Other"}, {"name": "_DTypeLikeObject", "kind": "Other"}, {"name": "_DTypeLikeComplex_co", "kind": "Other"}], "numpy._typing._array_like": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "annotations", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Protocol", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "runtime_checkable", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "unsignedinteger", "kind": "ImportedType", "fullname": "numpy.unsignedinteger"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "timedelta64", "kind": "ImportedType", "fullname": "numpy.timedelta64"}, {"name": "datetime64", "kind": "ImportedType", "fullname": "numpy.datetime64"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "void", "kind": "ImportedType", "fullname": "numpy.void"}, {"name": "str_", "kind": "ImportedType", "fullname": "numpy.str_"}, {"name": "bytes_", "kind": "ImportedType", "fullname": "numpy.bytes_"}, {"name": "_NestedSequence", "kind": "ImportedType", "fullname": "numpy._typing._nested_sequence._NestedSequence"}, {"name": "_T", "kind": "Other"}, {"name": "_ScalarType", "kind": "Other"}, {"name": "_DType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "_SupportsArray", "kind": "LocalType"}, {"name": "_SupportsArrayFunc", "kind": "LocalType"}, {"name": "_FiniteNestedSequence", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_DualArrayLike", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeUInt_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeVoid_co", "kind": "Other"}, {"name": "_ArrayLikeStr_co", "kind": "Other"}, {"name": "_ArrayLikeBytes_co", "kind": "Other"}, {"name": "_ArrayLikeInt", "kind": "Other"}, {"name": "_UnknownType", "kind": "LocalType"}, {"name": "_ArrayLikeUnknown", "kind": "Other"}], "numpy._typing._ufunc": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "Protocol", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "_CastingKind", "kind": "Other"}, {"name": "_OrderKACF", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ScalarLike_co", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeBool_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_3Tuple", "kind": "Other"}, {"name": "_4Tuple", "kind": "Other"}, {"name": "_NTypes", "kind": "Other"}, {"name": "_IDType", "kind": "Other"}, {"name": "_NameType", "kind": "Other"}, {"name": "_SupportsArrayUFunc", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout1", "kind": "LocalType"}, {"name": "_UFunc_Nin1_Nout2", "kind": "LocalType"}, {"name": "_UFunc_Nin2_Nout2", "kind": "LocalType"}, {"name": "_GUFunc_Nin2_Nout1", "kind": "LocalType"}], "numpy.fft._pocketfft": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_NormKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fft", "kind": "Other"}, {"name": "ifft", "kind": "Other"}, {"name": "rfft", "kind": "Other"}, {"name": "irfft", "kind": "Other"}, {"name": "hfft", "kind": "Other"}, {"name": "ihfft", "kind": "Other"}, {"name": "fftn", "kind": "Other"}, {"name": "ifftn", "kind": "Other"}, {"name": "rfftn", "kind": "Other"}, {"name": "irfftn", "kind": "Other"}, {"name": "fft2", "kind": "Other"}, {"name": "ifft2", "kind": "Other"}, {"name": "rfft2", "kind": "Other"}, {"name": "irfft2", "kind": "Other"}], "numpy.fft.helper": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "integer", "kind": "ImportedType", "fullname": "numpy.integer"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_SCT", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "fftshift", "kind": "Other"}, {"name": "ifftshift", "kind": "Other"}, {"name": "fftfreq", "kind": "Other"}, {"name": "rfftfreq", "kind": "Other"}], "numpy.lib.format": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "EXPECTED_KEYS", "kind": "Other"}, {"name": "MAGIC_PREFIX", "kind": "Other"}, {"name": "MAGIC_LEN", "kind": "Other"}, {"name": "ARRAY_ALIGN", "kind": "Other"}, {"name": "BUFFER_SIZE", "kind": "Other"}, {"name": "magic", "kind": "Other"}, {"name": "read_magic", "kind": "Other"}, {"name": "dtype_to_descr", "kind": "Other"}, {"name": "descr_to_dtype", "kind": "Other"}, {"name": "header_data_from_array_1_0", "kind": "Other"}, {"name": "write_array_header_1_0", "kind": "Other"}, {"name": "write_array_header_2_0", "kind": "Other"}, {"name": "read_array_header_1_0", "kind": "Other"}, {"name": "read_array_header_2_0", "kind": "Other"}, {"name": "write_array", "kind": "Other"}, {"name": "read_array", "kind": "Other"}, {"name": "open_memmap", "kind": "Other"}], "numpy.lib.mixins": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ufunc", "kind": "ImportedType", "fullname": "numpy.ufunc"}, {"name": "__all__", "kind": "Other"}, {"name": "NDArrayOperatorsMixin", "kind": "LocalType"}], "numpy.lib.scimath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "NDArray", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ComplexLike_co", "kind": "Other"}, {"name": "_FloatLike_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "logn", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}], "numpy.lib._version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "NumpyVersion", "kind": "LocalType"}], "math": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsFloat", "kind": "ImportedType", "fullname": "typing.SupportsFloat"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_T_co", "kind": "Other"}, {"name": "_SupportsFloatOrIndex", "kind": "Other"}, {"name": "e", "kind": "Other"}, {"name": "pi", "kind": "Other"}, {"name": "inf", "kind": "Other"}, {"name": "nan", "kind": "Other"}, {"name": "tau", "kind": "Other"}, {"name": "acos", "kind": "Other"}, {"name": "acosh", "kind": "Other"}, {"name": "asin", "kind": "Other"}, {"name": "asinh", "kind": "Other"}, {"name": "atan", "kind": "Other"}, {"name": "atan2", "kind": "Other"}, {"name": "atanh", "kind": "Other"}, {"name": "_SupportsCeil", "kind": "LocalType"}, {"name": "ceil", "kind": "Other"}, {"name": "comb", "kind": "Other"}, {"name": "copysign", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "degrees", "kind": "Other"}, {"name": "dist", "kind": "Other"}, {"name": "erf", "kind": "Other"}, {"name": "erfc", "kind": "Other"}, {"name": "exp", "kind": "Other"}, {"name": "expm1", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "factorial", "kind": "Other"}, {"name": "_SupportsFloor", "kind": "LocalType"}, {"name": "floor", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "frexp", "kind": "Other"}, {"name": "fsum", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "gcd", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "isclose", "kind": "Other"}, {"name": "isinf", "kind": "Other"}, {"name": "isfinite", "kind": "Other"}, {"name": "isnan", "kind": "Other"}, {"name": "isqrt", "kind": "Other"}, {"name": "lcm", "kind": "Other"}, {"name": "ldexp", "kind": "Other"}, {"name": "lgamma", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "log1p", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "modf", "kind": "Other"}, {"name": "nextafter", "kind": "Other"}, {"name": "perm", "kind": "Other"}, {"name": "pow", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "radians", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "_SupportsTrunc", "kind": "LocalType"}, {"name": "trunc", "kind": "Other"}, {"name": "ulp", "kind": "Other"}], "numpy.linalg.linalg": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "L", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Any", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "SupportsInt", "kind": "ImportedType", "fullname": "typing.SupportsInt"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "floating", "kind": "ImportedType", "fullname": "numpy.floating"}, {"name": "complexfloating", "kind": "ImportedType", "fullname": "numpy.complexfloating"}, {"name": "int32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "complex128", "kind": "Other"}, {"name": "LinAlgError", "kind": "ImportedType", "fullname": "numpy.linalg.LinAlgError"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeComplex_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_2Tuple", "kind": "Other"}, {"name": "_ModeKind", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "tensorsolve", "kind": "Other"}, {"name": "solve", "kind": "Other"}, {"name": "tensorinv", "kind": "Other"}, {"name": "inv", "kind": "Other"}, {"name": "matrix_power", "kind": "Other"}, {"name": "cholesky", "kind": "Other"}, {"name": "qr", "kind": "Other"}, {"name": "eigvals", "kind": "Other"}, {"name": "eigvalsh", "kind": "Other"}, {"name": "eig", "kind": "Other"}, {"name": "eigh", "kind": "Other"}, {"name": "svd", "kind": "Other"}, {"name": "cond", "kind": "Other"}, {"name": "matrix_rank", "kind": "Other"}, {"name": "pinv", "kind": "Other"}, {"name": "slogdet", "kind": "Other"}, {"name": "det", "kind": "Other"}, {"name": "lstsq", "kind": "Other"}, {"name": "norm", "kind": "Other"}, {"name": "multi_dot", "kind": "Other"}], "numpy.ma.extras": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "AxisConcatenator", "kind": "ImportedType", "fullname": "numpy.lib.index_tricks.AxisConcatenator"}, {"name": "dot", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "count_masked", "kind": "Other"}, {"name": "masked_all", "kind": "Other"}, {"name": "masked_all_like", "kind": "Other"}, {"name": "_fromnxfunction", "kind": "LocalType"}, {"name": "_fromnxfunction_single", "kind": "LocalType"}, {"name": "_fromnxfunction_seq", "kind": "LocalType"}, {"name": "_fromnxfunction_allargs", "kind": "LocalType"}, {"name": "atleast_1d", "kind": "Other"}, {"name": "atleast_2d", "kind": "Other"}, {"name": "atleast_3d", "kind": "Other"}, {"name": "vstack", "kind": "Other"}, {"name": "row_stack", "kind": "Other"}, {"name": "hstack", "kind": "Other"}, {"name": "column_stack", "kind": "Other"}, {"name": "dstack", "kind": "Other"}, {"name": "stack", "kind": "Other"}, {"name": "hsplit", "kind": "Other"}, {"name": "diagflat", "kind": "Other"}, {"name": "apply_along_axis", "kind": "Other"}, {"name": "apply_over_axes", "kind": "Other"}, {"name": "average", "kind": "Other"}, {"name": "median", "kind": "Other"}, {"name": "compress_nd", "kind": "Other"}, {"name": "compress_rowcols", "kind": "Other"}, {"name": "compress_rows", "kind": "Other"}, {"name": "compress_cols", "kind": "Other"}, {"name": "mask_rows", "kind": "Other"}, {"name": "mask_cols", "kind": "Other"}, {"name": "ediff1d", "kind": "Other"}, {"name": "unique", "kind": "Other"}, {"name": "intersect1d", "kind": "Other"}, {"name": "setxor1d", "kind": "Other"}, {"name": "in1d", "kind": "Other"}, {"name": "isin", "kind": "Other"}, {"name": "union1d", "kind": "Other"}, {"name": "setdiff1d", "kind": "Other"}, {"name": "cov", "kind": "Other"}, {"name": "corrcoef", "kind": "Other"}, {"name": "MAxisConcatenator", "kind": "LocalType"}, {"name": "mr_class", "kind": "LocalType"}, {"name": "mr_", "kind": "Other"}, {"name": "ndenumerate", "kind": "Other"}, {"name": "flatnotmasked_edges", "kind": "Other"}, {"name": "notmasked_edges", "kind": "Other"}, {"name": "flatnotmasked_contiguous", "kind": "Other"}, {"name": "notmasked_contiguous", "kind": "Other"}, {"name": "clump_unmasked", "kind": "Other"}, {"name": "clump_masked", "kind": "Other"}, {"name": "vander", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}], "numpy.ma.core": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float64", "kind": "Other"}, {"name": "amax", "kind": "Other"}, {"name": "amin", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "expand_dims", "kind": "Other"}, {"name": "diff", "kind": "Other"}, {"name": "clip", "kind": "Other"}, {"name": "indices", "kind": "Other"}, {"name": "ones_like", "kind": "Other"}, {"name": "squeeze", "kind": "Other"}, {"name": "zeros_like", "kind": "Other"}, {"name": "angle", "kind": "Other"}, {"name": "_ShapeType", "kind": "Other"}, {"name": "_DType_co", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "MaskType", "kind": "Other"}, {"name": "nomask", "kind": "Other"}, {"name": "MaskedArrayFutureWarning", "kind": "LocalType"}, {"name": "MAError", "kind": "LocalType"}, {"name": "MaskError", "kind": "LocalType"}, {"name": "default_fill_value", "kind": "Other"}, {"name": "minimum_fill_value", "kind": "Other"}, {"name": "maximum_fill_value", "kind": "Other"}, {"name": "set_fill_value", "kind": "Other"}, {"name": "common_fill_value", "kind": "Other"}, {"name": "filled", "kind": "Other"}, {"name": "getdata", "kind": "Other"}, {"name": "get_data", "kind": "Other"}, {"name": "fix_invalid", "kind": "Other"}, {"name": "_MaskedUFunc", "kind": "LocalType"}, {"name": "_MaskedUnaryOperation", "kind": "LocalType"}, {"name": "_MaskedBinaryOperation", "kind": "LocalType"}, {"name": "_DomainedBinaryOperation", "kind": "LocalType"}, {"name": "exp", "kind": "Other"}, {"name": "conjugate", "kind": "Other"}, {"name": "sin", "kind": "Other"}, {"name": "cos", "kind": "Other"}, {"name": "arctan", "kind": "Other"}, {"name": "arcsinh", "kind": "Other"}, {"name": "sinh", "kind": "Other"}, {"name": "cosh", "kind": "Other"}, {"name": "tanh", "kind": "Other"}, {"name": "abs", "kind": "Other"}, {"name": "absolute", "kind": "Other"}, {"name": "fabs", "kind": "Other"}, {"name": "negative", "kind": "Other"}, {"name": "floor", "kind": "Other"}, {"name": "ceil", "kind": "Other"}, {"name": "around", "kind": "Other"}, {"name": "logical_not", "kind": "Other"}, {"name": "sqrt", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "log2", "kind": "Other"}, {"name": "log10", "kind": "Other"}, {"name": "tan", "kind": "Other"}, {"name": "arcsin", "kind": "Other"}, {"name": "arccos", "kind": "Other"}, {"name": "arccosh", "kind": "Other"}, {"name": "arctanh", "kind": "Other"}, {"name": "add", "kind": "Other"}, {"name": "subtract", "kind": "Other"}, {"name": "multiply", "kind": "Other"}, {"name": "arctan2", "kind": "Other"}, {"name": "equal", "kind": "Other"}, {"name": "not_equal", "kind": "Other"}, {"name": "less_equal", "kind": "Other"}, {"name": "greater_equal", "kind": "Other"}, {"name": "less", "kind": "Other"}, {"name": "greater", "kind": "Other"}, {"name": "logical_and", "kind": "Other"}, {"name": "alltrue", "kind": "Other"}, {"name": "logical_or", "kind": "Other"}, {"name": "sometrue", "kind": "Other"}, {"name": "logical_xor", "kind": "Other"}, {"name": "bitwise_and", "kind": "Other"}, {"name": "bitwise_or", "kind": "Other"}, {"name": "bitwise_xor", "kind": "Other"}, {"name": "hypot", "kind": "Other"}, {"name": "divide", "kind": "Other"}, {"name": "true_divide", "kind": "Other"}, {"name": "floor_divide", "kind": "Other"}, {"name": "remainder", "kind": "Other"}, {"name": "fmod", "kind": "Other"}, {"name": "mod", "kind": "Other"}, {"name": "make_mask_descr", "kind": "Other"}, {"name": "getmask", "kind": "Other"}, {"name": "get_mask", "kind": "Other"}, {"name": "getmaskarray", "kind": "Other"}, {"name": "is_mask", "kind": "Other"}, {"name": "make_mask", "kind": "Other"}, {"name": "make_mask_none", "kind": "Other"}, {"name": "mask_or", "kind": "Other"}, {"name": "flatten_mask", "kind": "Other"}, {"name": "masked_where", "kind": "Other"}, {"name": "masked_greater", "kind": "Other"}, {"name": "masked_greater_equal", "kind": "Other"}, {"name": "masked_less", "kind": "Other"}, {"name": "masked_less_equal", "kind": "Other"}, {"name": "masked_not_equal", "kind": "Other"}, {"name": "masked_equal", "kind": "Other"}, {"name": "masked_inside", "kind": "Other"}, {"name": "masked_outside", "kind": "Other"}, {"name": "masked_object", "kind": "Other"}, {"name": "masked_values", "kind": "Other"}, {"name": "masked_invalid", "kind": "Other"}, {"name": "_MaskedPrintOption", "kind": "LocalType"}, {"name": "masked_print_option", "kind": "Other"}, {"name": "flatten_structured_array", "kind": "Other"}, {"name": "MaskedIterator", "kind": "LocalType"}, {"name": "MaskedArray", "kind": "LocalType"}, {"name": "mvoid", "kind": "LocalType"}, {"name": "isMaskedArray", "kind": "Other"}, {"name": "isarray", "kind": "Other"}, {"name": "isMA", "kind": "Other"}, {"name": "MaskedConstant", "kind": "LocalType"}, {"name": "masked", "kind": "Other"}, {"name": "masked_singleton", "kind": "Other"}, {"name": "masked_array", "kind": "Other"}, {"name": "array", "kind": "Other"}, {"name": "is_masked", "kind": "Other"}, {"name": "_extrema_operation", "kind": "LocalType"}, {"name": "min", "kind": "Other"}, {"name": "max", "kind": "Other"}, {"name": "ptp", "kind": "Other"}, {"name": "_frommethod", "kind": "LocalType"}, {"name": "all", "kind": "Other"}, {"name": "anomalies", "kind": "Other"}, {"name": "anom", "kind": "Other"}, {"name": "any", "kind": "Other"}, {"name": "compress", "kind": "Other"}, {"name": "cumprod", "kind": "Other"}, {"name": "cumsum", "kind": "Other"}, {"name": "copy", "kind": "Other"}, {"name": "diagonal", "kind": "Other"}, {"name": "harden_mask", "kind": "Other"}, {"name": "ids", "kind": "Other"}, {"name": "mean", "kind": "Other"}, {"name": "nonzero", "kind": "Other"}, {"name": "prod", "kind": "Other"}, {"name": "product", "kind": "Other"}, {"name": "ravel", "kind": "Other"}, {"name": "repeat", "kind": "Other"}, {"name": "soften_mask", "kind": "Other"}, {"name": "std", "kind": "Other"}, {"name": "sum", "kind": "Other"}, {"name": "swapaxes", "kind": "Other"}, {"name": "trace", "kind": "Other"}, {"name": "var", "kind": "Other"}, {"name": "count", "kind": "Other"}, {"name": "argmin", "kind": "Other"}, {"name": "argmax", "kind": "Other"}, {"name": "minimum", "kind": "Other"}, {"name": "maximum", "kind": "Other"}, {"name": "take", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "argsort", "kind": "Other"}, {"name": "sort", "kind": "Other"}, {"name": "compressed", "kind": "Other"}, {"name": "concatenate", "kind": "Other"}, {"name": "diag", "kind": "Other"}, {"name": "left_shift", "kind": "Other"}, {"name": "right_shift", "kind": "Other"}, {"name": "put", "kind": "Other"}, {"name": "putmask", "kind": "Other"}, {"name": "transpose", "kind": "Other"}, {"name": "reshape", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "ndim", "kind": "Other"}, {"name": "shape", "kind": "Other"}, {"name": "size", "kind": "Other"}, {"name": "where", "kind": "Other"}, {"name": "choose", "kind": "Other"}, {"name": "round_", "kind": "Other"}, {"name": "round", "kind": "Other"}, {"name": "inner", "kind": "Other"}, {"name": "innerproduct", "kind": "Other"}, {"name": "outer", "kind": "Other"}, {"name": "outerproduct", "kind": "Other"}, {"name": "correlate", "kind": "Other"}, {"name": "convolve", "kind": "Other"}, {"name": "allequal", "kind": "Other"}, {"name": "allclose", "kind": "Other"}, {"name": "asarray", "kind": "Other"}, {"name": "asanyarray", "kind": "Other"}, {"name": "fromflex", "kind": "Other"}, {"name": "_convert2ma", "kind": "LocalType"}, {"name": "arange", "kind": "Other"}, {"name": "empty", "kind": "Other"}, {"name": "empty_like", "kind": "Other"}, {"name": "frombuffer", "kind": "Other"}, {"name": "fromfunction", "kind": "Other"}, {"name": "identity", "kind": "Other"}, {"name": "ones", "kind": "Other"}, {"name": "zeros", "kind": "Other"}, {"name": "append", "kind": "Other"}, {"name": "dot", "kind": "Other"}, {"name": "mask_rowcols", "kind": "Other"}], "numpy.polynomial.chebyshev": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "chebtrim", "kind": "Other"}, {"name": "poly2cheb", "kind": "Other"}, {"name": "cheb2poly", "kind": "Other"}, {"name": "chebdomain", "kind": "Other"}, {"name": "chebzero", "kind": "Other"}, {"name": "chebone", "kind": "Other"}, {"name": "chebx", "kind": "Other"}, {"name": "chebline", "kind": "Other"}, {"name": "chebfromroots", "kind": "Other"}, {"name": "chebadd", "kind": "Other"}, {"name": "chebsub", "kind": "Other"}, {"name": "chebmulx", "kind": "Other"}, {"name": "chebmul", "kind": "Other"}, {"name": "chebdiv", "kind": "Other"}, {"name": "chebpow", "kind": "Other"}, {"name": "chebder", "kind": "Other"}, {"name": "chebint", "kind": "Other"}, {"name": "chebval", "kind": "Other"}, {"name": "chebval2d", "kind": "Other"}, {"name": "chebgrid2d", "kind": "Other"}, {"name": "chebval3d", "kind": "Other"}, {"name": "chebgrid3d", "kind": "Other"}, {"name": "chebvander", "kind": "Other"}, {"name": "chebvander2d", "kind": "Other"}, {"name": "chebvander3d", "kind": "Other"}, {"name": "chebfit", "kind": "Other"}, {"name": "chebcompanion", "kind": "Other"}, {"name": "chebroots", "kind": "Other"}, {"name": "chebinterpolate", "kind": "Other"}, {"name": "chebgauss", "kind": "Other"}, {"name": "chebweight", "kind": "Other"}, {"name": "chebpts1", "kind": "Other"}, {"name": "chebpts2", "kind": "Other"}, {"name": "Chebyshev", "kind": "LocalType"}], "numpy.polynomial.hermite": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "float_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "hermtrim", "kind": "Other"}, {"name": "poly2herm", "kind": "Other"}, {"name": "herm2poly", "kind": "Other"}, {"name": "hermdomain", "kind": "Other"}, {"name": "hermzero", "kind": "Other"}, {"name": "hermone", "kind": "Other"}, {"name": "hermx", "kind": "Other"}, {"name": "hermline", "kind": "Other"}, {"name": "hermfromroots", "kind": "Other"}, {"name": "hermadd", "kind": "Other"}, {"name": "hermsub", "kind": "Other"}, {"name": "hermmulx", "kind": "Other"}, {"name": "hermmul", "kind": "Other"}, {"name": "hermdiv", "kind": "Other"}, {"name": "hermpow", "kind": "Other"}, {"name": "hermder", "kind": "Other"}, {"name": "hermint", "kind": "Other"}, {"name": "hermval", "kind": "Other"}, {"name": "hermval2d", "kind": "Other"}, {"name": "hermgrid2d", "kind": "Other"}, {"name": "hermval3d", "kind": "Other"}, {"name": "hermgrid3d", "kind": "Other"}, {"name": "hermvander", "kind": "Other"}, {"name": "hermvander2d", "kind": "Other"}, {"name": "hermvander3d", "kind": "Other"}, {"name": "hermfit", "kind": "Other"}, {"name": "hermcompanion", "kind": "Other"}, {"name": "hermroots", "kind": "Other"}, {"name": "hermgauss", "kind": "Other"}, {"name": "hermweight", "kind": "Other"}, {"name": "Hermite", "kind": "LocalType"}], "numpy.polynomial.hermite_e": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "hermetrim", "kind": "Other"}, {"name": "poly2herme", "kind": "Other"}, {"name": "herme2poly", "kind": "Other"}, {"name": "hermedomain", "kind": "Other"}, {"name": "hermezero", "kind": "Other"}, {"name": "hermeone", "kind": "Other"}, {"name": "hermex", "kind": "Other"}, {"name": "hermeline", "kind": "Other"}, {"name": "hermefromroots", "kind": "Other"}, {"name": "hermeadd", "kind": "Other"}, {"name": "hermesub", "kind": "Other"}, {"name": "hermemulx", "kind": "Other"}, {"name": "hermemul", "kind": "Other"}, {"name": "hermediv", "kind": "Other"}, {"name": "hermepow", "kind": "Other"}, {"name": "hermeder", "kind": "Other"}, {"name": "hermeint", "kind": "Other"}, {"name": "hermeval", "kind": "Other"}, {"name": "hermeval2d", "kind": "Other"}, {"name": "hermegrid2d", "kind": "Other"}, {"name": "hermeval3d", "kind": "Other"}, {"name": "hermegrid3d", "kind": "Other"}, {"name": "hermevander", "kind": "Other"}, {"name": "hermevander2d", "kind": "Other"}, {"name": "hermevander3d", "kind": "Other"}, {"name": "hermefit", "kind": "Other"}, {"name": "hermecompanion", "kind": "Other"}, {"name": "hermeroots", "kind": "Other"}, {"name": "hermegauss", "kind": "Other"}, {"name": "hermeweight", "kind": "Other"}, {"name": "HermiteE", "kind": "LocalType"}], "numpy.polynomial.laguerre": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "lagtrim", "kind": "Other"}, {"name": "poly2lag", "kind": "Other"}, {"name": "lag2poly", "kind": "Other"}, {"name": "lagdomain", "kind": "Other"}, {"name": "lagzero", "kind": "Other"}, {"name": "lagone", "kind": "Other"}, {"name": "lagx", "kind": "Other"}, {"name": "lagline", "kind": "Other"}, {"name": "lagfromroots", "kind": "Other"}, {"name": "lagadd", "kind": "Other"}, {"name": "lagsub", "kind": "Other"}, {"name": "lagmulx", "kind": "Other"}, {"name": "lagmul", "kind": "Other"}, {"name": "lagdiv", "kind": "Other"}, {"name": "lagpow", "kind": "Other"}, {"name": "lagder", "kind": "Other"}, {"name": "lagint", "kind": "Other"}, {"name": "lagval", "kind": "Other"}, {"name": "lagval2d", "kind": "Other"}, {"name": "laggrid2d", "kind": "Other"}, {"name": "lagval3d", "kind": "Other"}, {"name": "laggrid3d", "kind": "Other"}, {"name": "lagvander", "kind": "Other"}, {"name": "lagvander2d", "kind": "Other"}, {"name": "lagvander3d", "kind": "Other"}, {"name": "lagfit", "kind": "Other"}, {"name": "lagcompanion", "kind": "Other"}, {"name": "lagroots", "kind": "Other"}, {"name": "laggauss", "kind": "Other"}, {"name": "lagweight", "kind": "Other"}, {"name": "Laguerre", "kind": "LocalType"}], "numpy.polynomial.legendre": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "legtrim", "kind": "Other"}, {"name": "poly2leg", "kind": "Other"}, {"name": "leg2poly", "kind": "Other"}, {"name": "legdomain", "kind": "Other"}, {"name": "legzero", "kind": "Other"}, {"name": "legone", "kind": "Other"}, {"name": "legx", "kind": "Other"}, {"name": "legline", "kind": "Other"}, {"name": "legfromroots", "kind": "Other"}, {"name": "legadd", "kind": "Other"}, {"name": "legsub", "kind": "Other"}, {"name": "legmulx", "kind": "Other"}, {"name": "legmul", "kind": "Other"}, {"name": "legdiv", "kind": "Other"}, {"name": "legpow", "kind": "Other"}, {"name": "legder", "kind": "Other"}, {"name": "legint", "kind": "Other"}, {"name": "legval", "kind": "Other"}, {"name": "legval2d", "kind": "Other"}, {"name": "leggrid2d", "kind": "Other"}, {"name": "legval3d", "kind": "Other"}, {"name": "leggrid3d", "kind": "Other"}, {"name": "legvander", "kind": "Other"}, {"name": "legvander2d", "kind": "Other"}, {"name": "legvander3d", "kind": "Other"}, {"name": "legfit", "kind": "Other"}, {"name": "legcompanion", "kind": "Other"}, {"name": "legroots", "kind": "Other"}, {"name": "leggauss", "kind": "Other"}, {"name": "legweight", "kind": "Other"}, {"name": "Legendre", "kind": "LocalType"}], "numpy.polynomial.polynomial": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "int_", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "ImportedType", "fullname": "numpy.polynomial._polybase.ABCPolyBase"}, {"name": "trimcoef", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "polytrim", "kind": "Other"}, {"name": "polydomain", "kind": "Other"}, {"name": "polyzero", "kind": "Other"}, {"name": "polyone", "kind": "Other"}, {"name": "polyx", "kind": "Other"}, {"name": "polyline", "kind": "Other"}, {"name": "polyfromroots", "kind": "Other"}, {"name": "polyadd", "kind": "Other"}, {"name": "polysub", "kind": "Other"}, {"name": "polymulx", "kind": "Other"}, {"name": "polymul", "kind": "Other"}, {"name": "polydiv", "kind": "Other"}, {"name": "polypow", "kind": "Other"}, {"name": "polyder", "kind": "Other"}, {"name": "polyint", "kind": "Other"}, {"name": "polyval", "kind": "Other"}, {"name": "polyvalfromroots", "kind": "Other"}, {"name": "polyval2d", "kind": "Other"}, {"name": "polygrid2d", "kind": "Other"}, {"name": "polyval3d", "kind": "Other"}, {"name": "polygrid3d", "kind": "Other"}, {"name": "polyvander", "kind": "Other"}, {"name": "polyvander2d", "kind": "Other"}, {"name": "polyvander3d", "kind": "Other"}, {"name": "polyfit", "kind": "Other"}, {"name": "polyroots", "kind": "Other"}, {"name": "Polynomial", "kind": "LocalType"}], "numpy.random._generator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Literal", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint", "kind": "Other"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_ArrayType", "kind": "Other"}, {"name": "_DTypeLikeFloat32", "kind": "Other"}, {"name": "_DTypeLikeFloat64", "kind": "Other"}, {"name": "Generator", "kind": "LocalType"}, {"name": "default_rng", "kind": "Other"}], "numpy.random._mt19937": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint32", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_MT19937Internal", "kind": "LocalType"}, {"name": "_MT19937State", "kind": "LocalType"}, {"name": "MT19937", "kind": "LocalType"}], "numpy.random._pcg64": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_PCG64Internal", "kind": "LocalType"}, {"name": "_PCG64State", "kind": "LocalType"}, {"name": "PCG64", "kind": "LocalType"}, {"name": "PCG64DXSM", "kind": "LocalType"}], "numpy.random._philox": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_PhiloxInternal", "kind": "LocalType"}, {"name": "_PhiloxState", "kind": "LocalType"}, {"name": "Philox", "kind": "LocalType"}], "numpy.random._sfc64": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "SeedSequence", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.SeedSequence"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_SFC64Internal", "kind": "LocalType"}, {"name": "_SFC64State", "kind": "LocalType"}, {"name": "SFC64", "kind": "LocalType"}], "numpy.random.bit_generator": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "Lock", "kind": "ImportedType", "fullname": "threading.Lock"}, {"name": "Callable", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Any", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypedDict", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_DTypeLikeUint32", "kind": "Other"}, {"name": "_DTypeLikeUint64", "kind": "Other"}, {"name": "_SeedSeqState", "kind": "LocalType"}, {"name": "_Interface", "kind": "LocalType"}, {"name": "ISeedSequence", "kind": "LocalType"}, {"name": "ISpawnableSeedSequence", "kind": "LocalType"}, {"name": "SeedlessSeedSequence", "kind": "LocalType"}, {"name": "SeedSequence", "kind": "LocalType"}, {"name": "BitGenerator", "kind": "LocalType"}], "numpy.random.mtrand": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "Union", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "float32", "kind": "Other"}, {"name": "float64", "kind": "Other"}, {"name": "int8", "kind": "Other"}, {"name": "int16", "kind": "Other"}, {"name": "int32", "kind": "Other"}, {"name": "int64", "kind": "Other"}, {"name": "int_", "kind": "Other"}, {"name": "ndarray", "kind": "ImportedType", "fullname": "numpy.ndarray"}, {"name": "uint", "kind": "Other"}, {"name": "uint8", "kind": "Other"}, {"name": "uint16", "kind": "Other"}, {"name": "uint32", "kind": "Other"}, {"name": "uint64", "kind": "Other"}, {"name": "BitGenerator", "kind": "ImportedType", "fullname": "numpy.random.bit_generator.BitGenerator"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "_ArrayLikeFloat_co", "kind": "Other"}, {"name": "_ArrayLikeInt_co", "kind": "Other"}, {"name": "_DoubleCodes", "kind": "Other"}, {"name": "_DTypeLikeBool", "kind": "Other"}, {"name": "_DTypeLikeInt", "kind": "Other"}, {"name": "_DTypeLikeUInt", "kind": "Other"}, {"name": "_Float32Codes", "kind": "Other"}, {"name": "_Float64Codes", "kind": "Other"}, {"name": "_Int8Codes", "kind": "Other"}, {"name": "_Int16Codes", "kind": "Other"}, {"name": "_Int32Codes", "kind": "Other"}, {"name": "_Int64Codes", "kind": "Other"}, {"name": "_IntCodes", "kind": "Other"}, {"name": "_ShapeLike", "kind": "Other"}, {"name": "_SingleCodes", "kind": "Other"}, {"name": "_SupportsDType", "kind": "ImportedType", "fullname": "numpy._typing._dtype_like._SupportsDType"}, {"name": "_UInt8Codes", "kind": "Other"}, {"name": "_UInt16Codes", "kind": "Other"}, {"name": "_UInt32Codes", "kind": "Other"}, {"name": "_UInt64Codes", "kind": "Other"}, {"name": "_UIntCodes", "kind": "Other"}, {"name": "_DTypeLikeFloat32", "kind": "Other"}, {"name": "_DTypeLikeFloat64", "kind": "Other"}, {"name": "RandomState", "kind": "LocalType"}, {"name": "_rand", "kind": "Other"}, {"name": "beta", "kind": "Other"}, {"name": "binomial", "kind": "Other"}, {"name": "bytes", "kind": "Other"}, {"name": "chisquare", "kind": "Other"}, {"name": "choice", "kind": "Other"}, {"name": "dirichlet", "kind": "Other"}, {"name": "exponential", "kind": "Other"}, {"name": "f", "kind": "Other"}, {"name": "gamma", "kind": "Other"}, {"name": "get_state", "kind": "Other"}, {"name": "geometric", "kind": "Other"}, {"name": "gumbel", "kind": "Other"}, {"name": "hypergeometric", "kind": "Other"}, {"name": "laplace", "kind": "Other"}, {"name": "logistic", "kind": "Other"}, {"name": "lognormal", "kind": "Other"}, {"name": "logseries", "kind": "Other"}, {"name": "multinomial", "kind": "Other"}, {"name": "multivariate_normal", "kind": "Other"}, {"name": "negative_binomial", "kind": "Other"}, {"name": "noncentral_chisquare", "kind": "Other"}, {"name": "noncentral_f", "kind": "Other"}, {"name": "normal", "kind": "Other"}, {"name": "pareto", "kind": "Other"}, {"name": "permutation", "kind": "Other"}, {"name": "poisson", "kind": "Other"}, {"name": "power", "kind": "Other"}, {"name": "rand", "kind": "Other"}, {"name": "randint", "kind": "Other"}, {"name": "randn", "kind": "Other"}, {"name": "random", "kind": "Other"}, {"name": "random_integers", "kind": "Other"}, {"name": "random_sample", "kind": "Other"}, {"name": "rayleigh", "kind": "Other"}, {"name": "seed", "kind": "Other"}, {"name": "set_state", "kind": "Other"}, {"name": "shuffle", "kind": "Other"}, {"name": "standard_cauchy", "kind": "Other"}, {"name": "standard_exponential", "kind": "Other"}, {"name": "standard_gamma", "kind": "Other"}, {"name": "standard_normal", "kind": "Other"}, {"name": "standard_t", "kind": "Other"}, {"name": "triangular", "kind": "Other"}, {"name": "uniform", "kind": "Other"}, {"name": "vonmises", "kind": "Other"}, {"name": "wald", "kind": "Other"}, {"name": "weibull", "kind": "Other"}, {"name": "zipf", "kind": "Other"}, {"name": "sample", "kind": "Other"}, {"name": "ranf", "kind": "Other"}, {"name": "set_bit_generator", "kind": "Other"}, {"name": "get_bit_generator", "kind": "Other"}], "numpy.testing._private.utils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ast", "kind": "Module", "fullname": "ast"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "warnings", "kind": "Module", "fullname": "warnings"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "contextlib", "kind": "Module", "fullname": "contextlib"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "L", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "type_check_only", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "Union", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing.SupportsIndex"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "generic", "kind": "ImportedType", "fullname": "numpy.generic"}, {"name": "dtype", "kind": "ImportedType", "fullname": "numpy.dtype"}, {"name": "number", "kind": "ImportedType", "fullname": "numpy.number"}, {"name": "object_", "kind": "ImportedType", "fullname": "numpy.object_"}, {"name": "bool_", "kind": "ImportedType", "fullname": "numpy.bool_"}, {"name": "_FloatValue", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "_ArrayLikeNumber_co", "kind": "Other"}, {"name": "_ArrayLikeObject_co", "kind": "Other"}, {"name": "_ArrayLikeTD64_co", "kind": "Other"}, {"name": "_ArrayLikeDT64_co", "kind": "Other"}, {"name": "SkipTest", "kind": "ImportedType", "fullname": "unittest.case.SkipTest"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_ET", "kind": "Other"}, {"name": "_FT", "kind": "Other"}, {"name": "_ComparisonFunc", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "KnownFailureException", "kind": "LocalType"}, {"name": "IgnoreException", "kind": "LocalType"}, {"name": "clear_and_catch_warnings", "kind": "LocalType"}, {"name": "_clear_and_catch_warnings_with_records", "kind": "LocalType"}, {"name": "_clear_and_catch_warnings_without_records", "kind": "LocalType"}, {"name": "suppress_warnings", "kind": "LocalType"}, {"name": "verbose", "kind": "Other"}, {"name": "IS_PYPY", "kind": "Other"}, {"name": "IS_PYSTON", "kind": "Other"}, {"name": "HAS_REFCOUNT", "kind": "Other"}, {"name": "HAS_LAPACK64", "kind": "Other"}, {"name": "assert_", "kind": "Other"}, {"name": "memusage", "kind": "Other"}, {"name": "jiffies", "kind": "Other"}, {"name": "build_err_msg", "kind": "Other"}, {"name": "assert_equal", "kind": "Other"}, {"name": "print_assert_equal", "kind": "Other"}, {"name": "assert_almost_equal", "kind": "Other"}, {"name": "assert_approx_equal", "kind": "Other"}, {"name": "assert_array_compare", "kind": "Other"}, {"name": "assert_array_equal", "kind": "Other"}, {"name": "assert_array_almost_equal", "kind": "Other"}, {"name": "assert_array_less", "kind": "Other"}, {"name": "runstring", "kind": "Other"}, {"name": "assert_string_equal", "kind": "Other"}, {"name": "rundocs", "kind": "Other"}, {"name": "raises", "kind": "Other"}, {"name": "assert_raises", "kind": "Other"}, {"name": "assert_raises_regex", "kind": "Other"}, {"name": "decorate_methods", "kind": "Other"}, {"name": "measure", "kind": "Other"}, {"name": "assert_allclose", "kind": "Other"}, {"name": "assert_array_almost_equal_nulp", "kind": "Other"}, {"name": "assert_array_max_ulp", "kind": "Other"}, {"name": "assert_warns", "kind": "Other"}, {"name": "assert_no_warnings", "kind": "Other"}, {"name": "tempdir", "kind": "Other"}, {"name": "temppath", "kind": "Other"}, {"name": "assert_no_gc_cycles", "kind": "Other"}, {"name": "break_cycles", "kind": "Other"}], "unittest": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "FunctionTestCase", "kind": "LocalType"}, {"name": "SkipTest", "kind": "LocalType"}, {"name": "TestCase", "kind": "LocalType"}, {"name": "expectedFailure", "kind": "Other"}, {"name": "skip", "kind": "Other"}, {"name": "skipIf", "kind": "Other"}, {"name": "skipUnless", "kind": "Other"}, {"name": "TestLoader", "kind": "LocalType"}, {"name": "defaultTestLoader", "kind": "Other"}, {"name": "findTestCases", "kind": "Other"}, {"name": "getTestCaseNames", "kind": "Other"}, {"name": "makeSuite", "kind": "Other"}, {"name": "TestProgram", "kind": "LocalType"}, {"name": "main", "kind": "Other"}, {"name": "TestResult", "kind": "LocalType"}, {"name": "TextTestResult", "kind": "LocalType"}, {"name": "TextTestRunner", "kind": "LocalType"}, {"name": "installHandler", "kind": "Other"}, {"name": "registerResult", "kind": "Other"}, {"name": "removeHandler", "kind": "Other"}, {"name": "removeResult", "kind": "Other"}, {"name": "BaseTestSuite", "kind": "LocalType"}, {"name": "TestSuite", "kind": "LocalType"}, {"name": "IsolatedAsyncioTestCase", "kind": "LocalType"}, {"name": "addModuleCleanup", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "load_tests", "kind": "Other"}, {"name": "__dir__", "kind": "Other"}], "numpy._version": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "json", "kind": "Module", "fullname": "json"}, {"name": "version_json", "kind": "Other"}, {"name": "get_versions", "kind": "Other"}], "numpy.matrixlib.defmatrix": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "matrix", "kind": "ImportedType", "fullname": "numpy.matrix"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NDArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "bmat", "kind": "Other"}, {"name": "asmatrix", "kind": "Other"}, {"name": "mat", "kind": "Other"}], "os.path": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "subprocess": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Collection", "kind": "ImportedType", "fullname": "typing.Collection"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_FILE", "kind": "Other"}, {"name": "_InputString", "kind": "Other"}, {"name": "_CMD", "kind": "Other"}, {"name": "_ENV", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_USE_POSIX_SPAWN", "kind": "Other"}, {"name": "CompletedProcess", "kind": "LocalType"}, {"name": "run", "kind": "Other"}, {"name": "call", "kind": "Other"}, {"name": "check_call", "kind": "Other"}, {"name": "check_output", "kind": "Other"}, {"name": "PIPE", "kind": "Other"}, {"name": "STDOUT", "kind": "Other"}, {"name": "DEVNULL", "kind": "Other"}, {"name": "SubprocessError", "kind": "LocalType"}, {"name": "TimeoutExpired", "kind": "LocalType"}, {"name": "CalledProcessError", "kind": "LocalType"}, {"name": "Popen", "kind": "LocalType"}, {"name": "getstatusoutput", "kind": "Other"}, {"name": "getoutput", "kind": "Other"}, {"name": "list2cmdline", "kind": "Other"}], "_ctypes": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "WriteableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "CDLL", "kind": "ImportedType", "fullname": "ctypes.CDLL"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "_T", "kind": "Other"}, {"name": "_CT", "kind": "Other"}, {"name": "FUNCFLAG_CDECL", "kind": "Other"}, {"name": "FUNCFLAG_PYTHONAPI", "kind": "Other"}, {"name": "FUNCFLAG_USE_ERRNO", "kind": "Other"}, {"name": "FUNCFLAG_USE_LASTERROR", "kind": "Other"}, {"name": "RTLD_GLOBAL", "kind": "Other"}, {"name": "RTLD_LOCAL", "kind": "Other"}, {"name": "_CDataMeta", "kind": "LocalType"}, {"name": "_CData", "kind": "LocalType"}, {"name": "_SimpleCData", "kind": "LocalType"}, {"name": "_CanCastTo", "kind": "LocalType"}, {"name": "_PointerLike", "kind": "LocalType"}, {"name": "_Pointer", "kind": "LocalType"}, {"name": "POINTER", "kind": "Other"}, {"name": "pointer", "kind": "Other"}, {"name": "_CArgObject", "kind": "LocalType"}, {"name": "byref", "kind": "Other"}, {"name": "_ECT", "kind": "Other"}, {"name": "_PF", "kind": "Other"}, {"name": "CFuncPtr", "kind": "LocalType"}, {"name": "_CField", "kind": "LocalType"}, {"name": "_StructUnionMeta", "kind": "LocalType"}, {"name": "_StructUnionBase", "kind": "LocalType"}, {"name": "Union", "kind": "LocalType"}, {"name": "Structure", "kind": "LocalType"}, {"name": "Array", "kind": "LocalType"}, {"name": "ArgumentError", "kind": "LocalType"}, {"name": "addressof", "kind": "Other"}, {"name": "alignment", "kind": "Other"}, {"name": "get_errno", "kind": "Other"}, {"name": "resize", "kind": "Other"}, {"name": "set_errno", "kind": "Other"}, {"name": "sizeof", "kind": "Other"}], "time": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "_TimeTuple", "kind": "Other"}, {"name": "altzone", "kind": "Other"}, {"name": "daylight", "kind": "Other"}, {"name": "timezone", "kind": "Other"}, {"name": "tzname", "kind": "Other"}, {"name": "CLOCK_BOOTTIME", "kind": "Other"}, {"name": "CLOCK_MONOTONIC", "kind": "Other"}, {"name": "CLOCK_MONOTONIC_RAW", "kind": "Other"}, {"name": "CLOCK_PROCESS_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_REALTIME", "kind": "Other"}, {"name": "CLOCK_THREAD_CPUTIME_ID", "kind": "Other"}, {"name": "CLOCK_TAI", "kind": "Other"}, {"name": "struct_time", "kind": "LocalType"}, {"name": "asctime", "kind": "Other"}, {"name": "ctime", "kind": "Other"}, {"name": "gmtime", "kind": "Other"}, {"name": "localtime", "kind": "Other"}, {"name": "mktime", "kind": "Other"}, {"name": "sleep", "kind": "Other"}, {"name": "strftime", "kind": "Other"}, {"name": "strptime", "kind": "Other"}, {"name": "time", "kind": "Other"}, {"name": "tzset", "kind": "Other"}, {"name": "_ClockInfo", "kind": "LocalType"}, {"name": "get_clock_info", "kind": "Other"}, {"name": "monotonic", "kind": "Other"}, {"name": "perf_counter", "kind": "Other"}, {"name": "process_time", "kind": "Other"}, {"name": "clock_getres", "kind": "Other"}, {"name": "clock_gettime", "kind": "Other"}, {"name": "clock_settime", "kind": "Other"}, {"name": "clock_gettime_ns", "kind": "Other"}, {"name": "clock_settime_ns", "kind": "Other"}, {"name": "pthread_getcpuclockid", "kind": "Other"}, {"name": "monotonic_ns", "kind": "Other"}, {"name": "perf_counter_ns", "kind": "Other"}, {"name": "process_time_ns", "kind": "Other"}, {"name": "time_ns", "kind": "Other"}, {"name": "thread_time", "kind": "Other"}, {"name": "thread_time_ns", "kind": "Other"}], "sre_compile": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NamedIntConstant", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "SubPattern", "kind": "ImportedType", "fullname": "sre_parse.SubPattern"}, {"name": "Any", "kind": "Other"}, {"name": "MAXCODE", "kind": "Other"}, {"name": "dis", "kind": "Other"}, {"name": "isstring", "kind": "Other"}, {"name": "compile", "kind": "Other"}], "sre_constants": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "LocalType"}, {"name": "_NamedIntConstant", "kind": "LocalType"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}], "codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "Protocol", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "BOM32_BE", "kind": "Other"}, {"name": "BOM32_LE", "kind": "Other"}, {"name": "BOM64_BE", "kind": "Other"}, {"name": "BOM64_LE", "kind": "Other"}, {"name": "_WritableStream", "kind": "LocalType"}, {"name": "_ReadableStream", "kind": "LocalType"}, {"name": "_Stream", "kind": "LocalType"}, {"name": "_Encoder", "kind": "LocalType"}, {"name": "_Decoder", "kind": "LocalType"}, {"name": "_StreamReader", "kind": "LocalType"}, {"name": "_StreamWriter", "kind": "LocalType"}, {"name": "_IncrementalEncoder", "kind": "LocalType"}, {"name": "_IncrementalDecoder", "kind": "LocalType"}, {"name": "CodecInfo", "kind": "LocalType"}, {"name": "getencoder", "kind": "Other"}, {"name": "getdecoder", "kind": "Other"}, {"name": "getincrementalencoder", "kind": "Other"}, {"name": "getincrementaldecoder", "kind": "Other"}, {"name": "getreader", "kind": "Other"}, {"name": "getwriter", "kind": "Other"}, {"name": "open", "kind": "Other"}, {"name": "EncodedFile", "kind": "Other"}, {"name": "iterencode", "kind": "Other"}, {"name": "iterdecode", "kind": "Other"}, {"name": "BOM", "kind": "Other"}, {"name": "BOM_BE", "kind": "Other"}, {"name": "BOM_LE", "kind": "Other"}, {"name": "BOM_UTF8", "kind": "Other"}, {"name": "BOM_UTF16", "kind": "Other"}, {"name": "BOM_UTF16_BE", "kind": "Other"}, {"name": "BOM_UTF16_LE", "kind": "Other"}, {"name": "BOM_UTF32", "kind": "Other"}, {"name": "BOM_UTF32_BE", "kind": "Other"}, {"name": "BOM_UTF32_LE", "kind": "Other"}, {"name": "strict_errors", "kind": "Other"}, {"name": "replace_errors", "kind": "Other"}, {"name": "ignore_errors", "kind": "Other"}, {"name": "xmlcharrefreplace_errors", "kind": "Other"}, {"name": "backslashreplace_errors", "kind": "Other"}, {"name": "namereplace_errors", "kind": "Other"}, {"name": "Codec", "kind": "LocalType"}, {"name": "IncrementalEncoder", "kind": "LocalType"}, {"name": "IncrementalDecoder", "kind": "LocalType"}, {"name": "BufferedIncrementalEncoder", "kind": "LocalType"}, {"name": "BufferedIncrementalDecoder", "kind": "LocalType"}, {"name": "StreamWriter", "kind": "LocalType"}, {"name": "StreamReader", "kind": "LocalType"}, {"name": "StreamReaderWriter", "kind": "LocalType"}, {"name": "StreamRecoder", "kind": "LocalType"}], "importlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Loader", "kind": "LocalType"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "__all__", "kind": "Other"}, {"name": "__import__", "kind": "Other"}, {"name": "import_module", "kind": "Other"}, {"name": "find_loader", "kind": "Other"}, {"name": "invalidate_caches", "kind": "Other"}, {"name": "reload", "kind": "Other"}], "importlib.metadata": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "pathlib", "kind": "Module", "fullname": "pathlib"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrPath", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "MetaPathFinder", "kind": "ImportedType", "fullname": "importlib.abc.MetaPathFinder"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "packages_distributions", "kind": "Other"}, {"name": "PackageNotFoundError", "kind": "LocalType"}, {"name": "_EntryPointBase", "kind": "LocalType"}, {"name": "EntryPoint", "kind": "LocalType"}, {"name": "EntryPoints", "kind": "LocalType"}, {"name": "SelectableGroups", "kind": "LocalType"}, {"name": "PackagePath", "kind": "LocalType"}, {"name": "FileHash", "kind": "LocalType"}, {"name": "Distribution", "kind": "LocalType"}, {"name": "DistributionFinder", "kind": "LocalType"}, {"name": "MetadataPathFinder", "kind": "LocalType"}, {"name": "PathDistribution", "kind": "LocalType"}, {"name": "distribution", "kind": "Other"}, {"name": "distributions", "kind": "Other"}, {"name": "metadata", "kind": "Other"}, {"name": "entry_points", "kind": "Other"}, {"name": "version", "kind": "Other"}, {"name": "files", "kind": "Other"}, {"name": "requires", "kind": "Other"}], "numpy.compat._inspect": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "__all__", "kind": "Other"}, {"name": "ismethod", "kind": "Other"}, {"name": "isfunction", "kind": "Other"}, {"name": "iscode", "kind": "Other"}, {"name": "CO_OPTIMIZED", "kind": "Other"}, {"name": "CO_NEWLOCALS", "kind": "Other"}, {"name": "CO_VARARGS", "kind": "Other"}, {"name": "CO_VARKEYWORDS", "kind": "Other"}, {"name": "getargs", "kind": "Other"}, {"name": "getargspec", "kind": "Other"}, {"name": "getargvalues", "kind": "Other"}, {"name": "joinseq", "kind": "Other"}, {"name": "strseq", "kind": "Other"}, {"name": "formatargspec", "kind": "Other"}, {"name": "formatargvalues", "kind": "Other"}], "functools": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "types", "kind": "Module", "fullname": "types"}, {"name": "IdentityFunction", "kind": "ImportedType", "fullname": "_typeshed.IdentityFunction"}, {"name": "SupportsAllComparisons", "kind": "ImportedType", "fullname": "_typeshed.SupportsAllComparisons"}, {"name": "SupportsItems", "kind": "ImportedType", "fullname": "_typeshed.SupportsItems"}, {"name": "Callable", "kind": "Other"}, {"name": "Hashable", "kind": "ImportedType", "fullname": "typing.Hashable"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Sized", "kind": "ImportedType", "fullname": "typing.Sized"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "TypedDict", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "_AnyCallable", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "reduce", "kind": "Other"}, {"name": "_CacheInfo", "kind": "LocalType"}, {"name": "_CacheParameters", "kind": "LocalType"}, {"name": "_lru_cache_wrapper", "kind": "LocalType"}, {"name": "lru_cache", "kind": "Other"}, {"name": "WRAPPER_ASSIGNMENTS", "kind": "Other"}, {"name": "WRAPPER_UPDATES", "kind": "Other"}, {"name": "update_wrapper", "kind": "Other"}, {"name": "wraps", "kind": "Other"}, {"name": "total_ordering", "kind": "Other"}, {"name": "cmp_to_key", "kind": "Other"}, {"name": "partial", "kind": "LocalType"}, {"name": "_Descriptor", "kind": "Other"}, {"name": "partialmethod", "kind": "LocalType"}, {"name": "_SingleDispatchCallable", "kind": "LocalType"}, {"name": "singledispatch", "kind": "Other"}, {"name": "singledispatchmethod", "kind": "LocalType"}, {"name": "cached_property", "kind": "LocalType"}, {"name": "cache", "kind": "Other"}, {"name": "_make_key", "kind": "Other"}], "numpy.typing": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ArrayLike", "kind": "Other"}, {"name": "DTypeLike", "kind": "Other"}, {"name": "NBitBase", "kind": "ImportedType", "fullname": "numpy._typing.NBitBase"}, {"name": "NDArray", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_docstrings", "kind": "Other"}, {"name": "PytestTester", "kind": "ImportedType", "fullname": "numpy._pytesttester.PytestTester"}, {"name": "test", "kind": "Other"}], "numpy.polynomial._polybase": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "abc", "kind": "Module", "fullname": "abc"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ABCPolyBase", "kind": "LocalType"}], "numpy.polynomial.polyutils": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "RankWarning", "kind": "LocalType"}, {"name": "trimseq", "kind": "Other"}, {"name": "as_series", "kind": "Other"}, {"name": "trimcoef", "kind": "Other"}, {"name": "getdomain", "kind": "Other"}, {"name": "mapparms", "kind": "Other"}, {"name": "mapdomain", "kind": "Other"}, {"name": "format_float", "kind": "Other"}], "threading": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ProfileFunction", "kind": "Other"}, {"name": "TraceFunction", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "final", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_profile_hook", "kind": "Other"}, {"name": "active_count", "kind": "Other"}, {"name": "activeCount", "kind": "Other"}, {"name": "current_thread", "kind": "Other"}, {"name": "currentThread", "kind": "Other"}, {"name": "get_ident", "kind": "Other"}, {"name": "enumerate", "kind": "Other"}, {"name": "main_thread", "kind": "Other"}, {"name": "get_native_id", "kind": "Other"}, {"name": "settrace", "kind": "Other"}, {"name": "setprofile", "kind": "Other"}, {"name": "gettrace", "kind": "Other"}, {"name": "getprofile", "kind": "Other"}, {"name": "stack_size", "kind": "Other"}, {"name": "TIMEOUT_MAX", "kind": "Other"}, {"name": "ThreadError", "kind": "LocalType"}, {"name": "local", "kind": "LocalType"}, {"name": "Thread", "kind": "LocalType"}, {"name": "_DummyThread", "kind": "LocalType"}, {"name": "Lock", "kind": "LocalType"}, {"name": "_RLock", "kind": "LocalType"}, {"name": "RLock", "kind": "Other"}, {"name": "Condition", "kind": "LocalType"}, {"name": "Semaphore", "kind": "LocalType"}, {"name": "BoundedSemaphore", "kind": "LocalType"}, {"name": "Event", "kind": "LocalType"}, {"name": "_excepthook", "kind": "Other"}, {"name": "_ExceptHookArgs", "kind": "ImportedType", "fullname": "_thread._ExceptHookArgs"}, {"name": "excepthook", "kind": "Other"}, {"name": "ExceptHookArgs", "kind": "Other"}, {"name": "Timer", "kind": "LocalType"}, {"name": "Barrier", "kind": "LocalType"}, {"name": "BrokenBarrierError", "kind": "LocalType"}], "numpy.testing._private": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}], "unittest.case": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "logging", "kind": "Module", "fullname": "logging"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "SupportsDunderGE", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderGE"}, {"name": "SupportsDunderGT", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderGT"}, {"name": "SupportsDunderLE", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderLE"}, {"name": "SupportsDunderLT", "kind": "ImportedType", "fullname": "_typeshed.SupportsDunderLT"}, {"name": "SupportsRSub", "kind": "ImportedType", "fullname": "_typeshed.SupportsRSub"}, {"name": "SupportsSub", "kind": "ImportedType", "fullname": "_typeshed.SupportsSub"}, {"name": "Callable", "kind": "Other"}, {"name": "Container", "kind": "ImportedType", "fullname": "typing.Container"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "AbstractSet", "kind": "ImportedType", "fullname": "typing.AbstractSet"}, {"name": "AbstractContextManager", "kind": "ImportedType", "fullname": "contextlib.AbstractContextManager"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "AnyStr", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsAbs", "kind": "ImportedType", "fullname": "typing.SupportsAbs"}, {"name": "SupportsRound", "kind": "ImportedType", "fullname": "typing.SupportsRound"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "WarningMessage", "kind": "ImportedType", "fullname": "warnings.WarningMessage"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "UnionType", "kind": "ImportedType", "fullname": "types.UnionType"}, {"name": "_T", "kind": "Other"}, {"name": "_S", "kind": "Other"}, {"name": "_E", "kind": "Other"}, {"name": "_FT", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "DIFF_OMITTED", "kind": "Other"}, {"name": "_BaseTestCaseContext", "kind": "LocalType"}, {"name": "_AssertLogsContext", "kind": "ImportedType", "fullname": "unittest._log._AssertLogsContext"}, {"name": "_LoggingWatcher", "kind": "ImportedType", "fullname": "unittest._log._LoggingWatcher"}, {"name": "addModuleCleanup", "kind": "Other"}, {"name": "doModuleCleanups", "kind": "Other"}, {"name": "expectedFailure", "kind": "Other"}, {"name": "skip", "kind": "Other"}, {"name": "skipIf", "kind": "Other"}, {"name": "skipUnless", "kind": "Other"}, {"name": "SkipTest", "kind": "LocalType"}, {"name": "_SupportsAbsAndDunderGE", "kind": "LocalType"}, {"name": "_ClassInfo", "kind": "Other"}, {"name": "TestCase", "kind": "LocalType"}, {"name": "FunctionTestCase", "kind": "LocalType"}, {"name": "_AssertRaisesContext", "kind": "LocalType"}, {"name": "_AssertWarnsContext", "kind": "LocalType"}], "warnings": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "warn", "kind": "Other"}, {"name": "warn_explicit", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_W", "kind": "Other"}, {"name": "_ActionKind", "kind": "Other"}, {"name": "filters", "kind": "Other"}, {"name": "showwarning", "kind": "Other"}, {"name": "formatwarning", "kind": "Other"}, {"name": "filterwarnings", "kind": "Other"}, {"name": "simplefilter", "kind": "Other"}, {"name": "resetwarnings", "kind": "Other"}, {"name": "_OptionError", "kind": "LocalType"}, {"name": "WarningMessage", "kind": "LocalType"}, {"name": "catch_warnings", "kind": "LocalType"}], "unittest.loader": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "Any", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_SortComparisonMethod", "kind": "Other"}, {"name": "_SuiteClass", "kind": "Other"}, {"name": "VALID_MODULE_NAME", "kind": "Other"}, {"name": "TestLoader", "kind": "LocalType"}, {"name": "defaultTestLoader", "kind": "Other"}, {"name": "getTestCaseNames", "kind": "Other"}, {"name": "makeSuite", "kind": "Other"}, {"name": "findTestCases", "kind": "Other"}], "unittest.main": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "ModuleType", "kind": "ImportedType", "fullname": "types.ModuleType"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "MAIN_EXAMPLES", "kind": "Other"}, {"name": "MODULE_EXAMPLES", "kind": "Other"}, {"name": "_TestRunner", "kind": "LocalType"}, {"name": "TestProgram", "kind": "LocalType"}, {"name": "main", "kind": "Other"}], "unittest.result": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "OptExcInfo", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_F", "kind": "Other"}, {"name": "STDOUT_LINE", "kind": "Other"}, {"name": "STDERR_LINE", "kind": "Other"}, {"name": "failfast", "kind": "Other"}, {"name": "TestResult", "kind": "LocalType"}], "unittest.runner": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ResultClassType", "kind": "Other"}, {"name": "TextTestResult", "kind": "LocalType"}, {"name": "TextTestRunner", "kind": "LocalType"}], "unittest.signals": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Callable", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "_P", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "installHandler", "kind": "Other"}, {"name": "registerResult", "kind": "Other"}, {"name": "removeResult", "kind": "Other"}, {"name": "removeHandler", "kind": "Other"}], "unittest.suite": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "unittest", "kind": "Module", "fullname": "unittest"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_TestType", "kind": "Other"}, {"name": "BaseTestSuite", "kind": "LocalType"}, {"name": "TestSuite", "kind": "LocalType"}], "unittest.async_case": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Awaitable", "kind": "ImportedType", "fullname": "typing.Awaitable"}, {"name": "Callable", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "ParamSpec", "kind": "ImportedType", "fullname": "typing_extensions.ParamSpec"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "_T", "kind": "Other"}, {"name": "_P", "kind": "Other"}, {"name": "IsolatedAsyncioTestCase", "kind": "LocalType"}], "json": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "SupportsRead", "kind": "ImportedType", "fullname": "_typeshed.SupportsRead"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "JSONDecodeError", "kind": "LocalType"}, {"name": "JSONDecoder", "kind": "LocalType"}, {"name": "JSONEncoder", "kind": "LocalType"}, {"name": "__all__", "kind": "Other"}, {"name": "dumps", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "loads", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "detect_encoding", "kind": "Other"}], "posixpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "AnyOrLiteralStr", "kind": "Other"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "AnyStr", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "supports_unicode_filenames", "kind": "Other"}, {"name": "curdir", "kind": "Other"}, {"name": "pardir", "kind": "Other"}, {"name": "sep", "kind": "Other"}, {"name": "altsep", "kind": "Other"}, {"name": "extsep", "kind": "Other"}, {"name": "pathsep", "kind": "Other"}, {"name": "defpath", "kind": "Other"}, {"name": "devnull", "kind": "Other"}, {"name": "abspath", "kind": "Other"}, {"name": "basename", "kind": "Other"}, {"name": "dirname", "kind": "Other"}, {"name": "expanduser", "kind": "Other"}, {"name": "expandvars", "kind": "Other"}, {"name": "normcase", "kind": "Other"}, {"name": "normpath", "kind": "Other"}, {"name": "commonpath", "kind": "Other"}, {"name": "join", "kind": "Other"}, {"name": "realpath", "kind": "Other"}, {"name": "relpath", "kind": "Other"}, {"name": "split", "kind": "Other"}, {"name": "splitdrive", "kind": "Other"}, {"name": "splitext", "kind": "Other"}, {"name": "isabs", "kind": "Other"}, {"name": "islink", "kind": "Other"}, {"name": "ismount", "kind": "Other"}, {"name": "lexists", "kind": "Other"}], "sre_parse": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Match", "kind": "ImportedType", "fullname": "re.Match"}, {"name": "_Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "MAXGROUPS", "kind": "Other"}, {"name": "MAGIC", "kind": "Other"}, {"name": "error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "MAXREPEAT", "kind": "Other"}, {"name": "OPCODES", "kind": "Other"}, {"name": "ATCODES", "kind": "Other"}, {"name": "CHCODES", "kind": "Other"}, {"name": "OP_IGNORE", "kind": "Other"}, {"name": "OP_LOCALE_IGNORE", "kind": "Other"}, {"name": "OP_UNICODE_IGNORE", "kind": "Other"}, {"name": "AT_MULTILINE", "kind": "Other"}, {"name": "AT_LOCALE", "kind": "Other"}, {"name": "AT_UNICODE", "kind": "Other"}, {"name": "CH_LOCALE", "kind": "Other"}, {"name": "CH_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_TEMPLATE", "kind": "Other"}, {"name": "SRE_FLAG_IGNORECASE", "kind": "Other"}, {"name": "SRE_FLAG_LOCALE", "kind": "Other"}, {"name": "SRE_FLAG_MULTILINE", "kind": "Other"}, {"name": "SRE_FLAG_DOTALL", "kind": "Other"}, {"name": "SRE_FLAG_UNICODE", "kind": "Other"}, {"name": "SRE_FLAG_VERBOSE", "kind": "Other"}, {"name": "SRE_FLAG_DEBUG", "kind": "Other"}, {"name": "SRE_FLAG_ASCII", "kind": "Other"}, {"name": "SRE_INFO_PREFIX", "kind": "Other"}, {"name": "SRE_INFO_LITERAL", "kind": "Other"}, {"name": "SRE_INFO_CHARSET", "kind": "Other"}, {"name": "FAILURE", "kind": "Other"}, {"name": "SUCCESS", "kind": "Other"}, {"name": "ANY", "kind": "Other"}, {"name": "ANY_ALL", "kind": "Other"}, {"name": "ASSERT", "kind": "Other"}, {"name": "ASSERT_NOT", "kind": "Other"}, {"name": "AT", "kind": "Other"}, {"name": "BRANCH", "kind": "Other"}, {"name": "CALL", "kind": "Other"}, {"name": "CATEGORY", "kind": "Other"}, {"name": "CHARSET", "kind": "Other"}, {"name": "BIGCHARSET", "kind": "Other"}, {"name": "GROUPREF", "kind": "Other"}, {"name": "GROUPREF_EXISTS", "kind": "Other"}, {"name": "GROUPREF_IGNORE", "kind": "Other"}, {"name": "IN", "kind": "Other"}, {"name": "IN_IGNORE", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "JUMP", "kind": "Other"}, {"name": "LITERAL", "kind": "Other"}, {"name": "LITERAL_IGNORE", "kind": "Other"}, {"name": "MARK", "kind": "Other"}, {"name": "MAX_UNTIL", "kind": "Other"}, {"name": "MIN_UNTIL", "kind": "Other"}, {"name": "NOT_LITERAL", "kind": "Other"}, {"name": "NOT_LITERAL_IGNORE", "kind": "Other"}, {"name": "NEGATE", "kind": "Other"}, {"name": "RANGE", "kind": "Other"}, {"name": "REPEAT", "kind": "Other"}, {"name": "REPEAT_ONE", "kind": "Other"}, {"name": "SUBPATTERN", "kind": "Other"}, {"name": "MIN_REPEAT_ONE", "kind": "Other"}, {"name": "RANGE_UNI_IGNORE", "kind": "Other"}, {"name": "GROUPREF_LOC_IGNORE", "kind": "Other"}, {"name": "GROUPREF_UNI_IGNORE", "kind": "Other"}, {"name": "IN_LOC_IGNORE", "kind": "Other"}, {"name": "IN_UNI_IGNORE", "kind": "Other"}, {"name": "LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_LOC_IGNORE", "kind": "Other"}, {"name": "NOT_LITERAL_UNI_IGNORE", "kind": "Other"}, {"name": "MIN_REPEAT", "kind": "Other"}, {"name": "MAX_REPEAT", "kind": "Other"}, {"name": "AT_BEGINNING", "kind": "Other"}, {"name": "AT_BEGINNING_LINE", "kind": "Other"}, {"name": "AT_BEGINNING_STRING", "kind": "Other"}, {"name": "AT_BOUNDARY", "kind": "Other"}, {"name": "AT_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_END", "kind": "Other"}, {"name": "AT_END_LINE", "kind": "Other"}, {"name": "AT_END_STRING", "kind": "Other"}, {"name": "AT_LOC_BOUNDARY", "kind": "Other"}, {"name": "AT_LOC_NON_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_BOUNDARY", "kind": "Other"}, {"name": "AT_UNI_NON_BOUNDARY", "kind": "Other"}, {"name": "CATEGORY_DIGIT", "kind": "Other"}, {"name": "CATEGORY_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_SPACE", "kind": "Other"}, {"name": "CATEGORY_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_WORD", "kind": "Other"}, {"name": "CATEGORY_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_NOT_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_LOC_WORD", "kind": "Other"}, {"name": "CATEGORY_LOC_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_DIGIT", "kind": "Other"}, {"name": "CATEGORY_UNI_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_SPACE", "kind": "Other"}, {"name": "CATEGORY_UNI_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_WORD", "kind": "Other"}, {"name": "CATEGORY_UNI_LINEBREAK", "kind": "Other"}, {"name": "CATEGORY_UNI_NOT_LINEBREAK", "kind": "Other"}, {"name": "_NIC", "kind": "ImportedType", "fullname": "sre_constants._NamedIntConstant"}, {"name": "_Error", "kind": "ImportedType", "fullname": "sre_constants.error"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "SPECIAL_CHARS", "kind": "Other"}, {"name": "REPEAT_CHARS", "kind": "Other"}, {"name": "DIGITS", "kind": "Other"}, {"name": "OCTDIGITS", "kind": "Other"}, {"name": "HEXDIGITS", "kind": "Other"}, {"name": "ASCIILETTERS", "kind": "Other"}, {"name": "WHITESPACE", "kind": "Other"}, {"name": "ESCAPES", "kind": "Other"}, {"name": "CATEGORIES", "kind": "Other"}, {"name": "FLAGS", "kind": "Other"}, {"name": "TYPE_FLAGS", "kind": "Other"}, {"name": "GLOBAL_FLAGS", "kind": "Other"}, {"name": "Verbose", "kind": "LocalType"}, {"name": "_State", "kind": "LocalType"}, {"name": "State", "kind": "Other"}, {"name": "_OpSubpatternType", "kind": "Other"}, {"name": "_OpGroupRefExistsType", "kind": "Other"}, {"name": "_OpInType", "kind": "Other"}, {"name": "_OpBranchType", "kind": "Other"}, {"name": "_AvType", "kind": "Other"}, {"name": "_CodeType", "kind": "Other"}, {"name": "SubPattern", "kind": "LocalType"}, {"name": "Tokenizer", "kind": "LocalType"}, {"name": "fix_flags", "kind": "Other"}, {"name": "_TemplateType", "kind": "Other"}, {"name": "_TemplateByteType", "kind": "Other"}, {"name": "parse", "kind": "Other"}, {"name": "parse_template", "kind": "Other"}, {"name": "expand_template", "kind": "Other"}], "_codecs": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "codecs", "kind": "Module", "fullname": "codecs"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_EncodingMap", "kind": "LocalType"}, {"name": "_CharMap", "kind": "Other"}, {"name": "_Handler", "kind": "Other"}, {"name": "_SearchFunction", "kind": "Other"}, {"name": "register", "kind": "Other"}, {"name": "unregister", "kind": "Other"}, {"name": "register_error", "kind": "Other"}, {"name": "lookup_error", "kind": "Other"}, {"name": "_BytesToBytesEncoding", "kind": "Other"}, {"name": "_StrToStrEncoding", "kind": "Other"}, {"name": "encode", "kind": "Other"}, {"name": "decode", "kind": "Other"}, {"name": "lookup", "kind": "Other"}, {"name": "charmap_build", "kind": "Other"}, {"name": "ascii_decode", "kind": "Other"}, {"name": "ascii_encode", "kind": "Other"}, {"name": "charmap_decode", "kind": "Other"}, {"name": "charmap_encode", "kind": "Other"}, {"name": "escape_decode", "kind": "Other"}, {"name": "escape_encode", "kind": "Other"}, {"name": "latin_1_decode", "kind": "Other"}, {"name": "latin_1_encode", "kind": "Other"}, {"name": "raw_unicode_escape_decode", "kind": "Other"}, {"name": "raw_unicode_escape_encode", "kind": "Other"}, {"name": "readbuffer_encode", "kind": "Other"}, {"name": "unicode_escape_decode", "kind": "Other"}, {"name": "unicode_escape_encode", "kind": "Other"}, {"name": "utf_16_be_decode", "kind": "Other"}, {"name": "utf_16_be_encode", "kind": "Other"}, {"name": "utf_16_decode", "kind": "Other"}, {"name": "utf_16_encode", "kind": "Other"}, {"name": "utf_16_ex_decode", "kind": "Other"}, {"name": "utf_16_le_decode", "kind": "Other"}, {"name": "utf_16_le_encode", "kind": "Other"}, {"name": "utf_32_be_decode", "kind": "Other"}, {"name": "utf_32_be_encode", "kind": "Other"}, {"name": "utf_32_decode", "kind": "Other"}, {"name": "utf_32_encode", "kind": "Other"}, {"name": "utf_32_ex_decode", "kind": "Other"}, {"name": "utf_32_le_decode", "kind": "Other"}, {"name": "utf_32_le_encode", "kind": "Other"}, {"name": "utf_7_decode", "kind": "Other"}, {"name": "utf_7_encode", "kind": "Other"}, {"name": "utf_8_decode", "kind": "Other"}, {"name": "utf_8_encode", "kind": "Other"}], "importlib.metadata._meta": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Any", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "_T", "kind": "Other"}, {"name": "PackageMetadata", "kind": "LocalType"}, {"name": "SimplePath", "kind": "LocalType"}], "email.message": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Policy", "kind": "ImportedType", "fullname": "email.policy.Policy"}, {"name": "Any", "kind": "Other"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_T", "kind": "Other"}, {"name": "_PayloadType", "kind": "Other"}, {"name": "_CharsetType", "kind": "Other"}, {"name": "_HeaderType", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "MIMEPart", "kind": "LocalType"}, {"name": "EmailMessage", "kind": "LocalType"}], "pathlib": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "OpenBinaryMode", "kind": "Other"}, {"name": "OpenBinaryModeReading", "kind": "Other"}, {"name": "OpenBinaryModeUpdating", "kind": "Other"}, {"name": "OpenBinaryModeWriting", "kind": "Other"}, {"name": "OpenTextMode", "kind": "Other"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "StrOrBytesPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Generator", "kind": "ImportedType", "fullname": "typing.Generator"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "BufferedRandom", "kind": "ImportedType", "fullname": "io.BufferedRandom"}, {"name": "BufferedReader", "kind": "ImportedType", "fullname": "io.BufferedReader"}, {"name": "BufferedWriter", "kind": "ImportedType", "fullname": "io.BufferedWriter"}, {"name": "FileIO", "kind": "ImportedType", "fullname": "io.FileIO"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "PathLike", "kind": "ImportedType", "fullname": "os.PathLike"}, {"name": "stat_result", "kind": "ImportedType", "fullname": "os.stat_result"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "Any", "kind": "Other"}, {"name": "BinaryIO", "kind": "ImportedType", "fullname": "typing.BinaryIO"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "GenericAlias", "kind": "ImportedType", "fullname": "types.GenericAlias"}, {"name": "__all__", "kind": "Other"}, {"name": "PurePath", "kind": "LocalType"}, {"name": "PurePosixPath", "kind": "LocalType"}, {"name": "PureWindowsPath", "kind": "LocalType"}, {"name": "Path", "kind": "LocalType"}, {"name": "PosixPath", "kind": "LocalType"}, {"name": "WindowsPath", "kind": "LocalType"}], "numpy.compat": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "_inspect", "kind": "Module", "fullname": "numpy.compat._inspect"}, {"name": "py3k", "kind": "Module", "fullname": "numpy.compat.py3k"}, {"name": "getargspec", "kind": "Other"}, {"name": "formatargspec", "kind": "Other"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "pickle", "kind": "Other"}, {"name": "long", "kind": "Other"}, {"name": "integer_types", "kind": "Other"}, {"name": "basestring", "kind": "Other"}, {"name": "unicode", "kind": "Other"}, {"name": "bytes", "kind": "ImportedType", "fullname": "builtins.bytes"}, {"name": "asunicode", "kind": "Other"}, {"name": "asbytes", "kind": "Other"}, {"name": "asstr", "kind": "Other"}, {"name": "isfileobj", "kind": "Other"}, {"name": "open_latin1", "kind": "Other"}, {"name": "sixu", "kind": "Other"}, {"name": "strchar", "kind": "Other"}, {"name": "getexception", "kind": "Other"}, {"name": "asbytes_nested", "kind": "Other"}, {"name": "asunicode_nested", "kind": "Other"}, {"name": "is_pathlib_path", "kind": "Other"}, {"name": "contextlib_nullcontext", "kind": "LocalType"}, {"name": "npy_load_module", "kind": "Other"}, {"name": "os_fspath", "kind": "Other"}, {"name": "os_PathLike", "kind": "Other"}, {"name": "__all__", "kind": "Other"}], "numpy._typing._add_docstring": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "re", "kind": "Module", "fullname": "re"}, {"name": "textwrap", "kind": "Module", "fullname": "textwrap"}, {"name": "NDArray", "kind": "Other"}, {"name": "_docstrings_list", "kind": "Other"}, {"name": "add_newdoc", "kind": "Other"}, {"name": "_parse_docstrings", "kind": "Other"}, {"name": "_docstrings", "kind": "Other"}], "_thread": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "structseq", "kind": "ImportedType", "fullname": "_typeshed.structseq"}, {"name": "Callable", "kind": "Other"}, {"name": "Thread", "kind": "ImportedType", "fullname": "threading.Thread"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "NoReturn", "kind": "Other"}, {"name": "Final", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "_count", "kind": "Other"}, {"name": "LockType", "kind": "LocalType"}, {"name": "start_new_thread", "kind": "Other"}, {"name": "interrupt_main", "kind": "Other"}, {"name": "exit", "kind": "Other"}, {"name": "allocate_lock", "kind": "Other"}, {"name": "get_ident", "kind": "Other"}, {"name": "stack_size", "kind": "Other"}, {"name": "TIMEOUT_MAX", "kind": "Other"}, {"name": "get_native_id", "kind": "Other"}, {"name": "_ExceptHookArgs", "kind": "LocalType"}, {"name": "_excepthook", "kind": "Other"}], "unittest._log": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "logging", "kind": "Module", "fullname": "logging"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "NamedTuple", "kind": "ImportedType", "fullname": "typing.NamedTuple"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "TestCase", "kind": "ImportedType", "fullname": "unittest.case.TestCase"}, {"name": "_L", "kind": "Other"}, {"name": "_LoggingWatcher", "kind": "LocalType"}, {"name": "_AssertLogsContext", "kind": "LocalType"}], "logging": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "threading", "kind": "Module", "fullname": "threading"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "MutableMapping", "kind": "ImportedType", "fullname": "typing.MutableMapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "TextIOWrapper", "kind": "ImportedType", "fullname": "io.TextIOWrapper"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Template", "kind": "ImportedType", "fullname": "string.Template"}, {"name": "struct_time", "kind": "ImportedType", "fullname": "time.struct_time"}, {"name": "FrameType", "kind": "ImportedType", "fullname": "types.FrameType"}, {"name": "TracebackType", "kind": "ImportedType", "fullname": "types.TracebackType"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Generic", "kind": "Other"}, {"name": "TextIO", "kind": "ImportedType", "fullname": "typing.TextIO"}, {"name": "TypeVar", "kind": "ImportedType", "fullname": "typing.TypeVar"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "_SysExcInfoType", "kind": "Other"}, {"name": "_ExcInfoType", "kind": "Other"}, {"name": "_ArgsType", "kind": "Other"}, {"name": "_FilterType", "kind": "Other"}, {"name": "_Level", "kind": "Other"}, {"name": "_FormatStyle", "kind": "Other"}, {"name": "raiseExceptions", "kind": "Other"}, {"name": "logThreads", "kind": "Other"}, {"name": "logMultiprocessing", "kind": "Other"}, {"name": "logProcesses", "kind": "Other"}, {"name": "_srcfile", "kind": "Other"}, {"name": "currentframe", "kind": "Other"}, {"name": "_levelToName", "kind": "Other"}, {"name": "_nameToLevel", "kind": "Other"}, {"name": "Filterer", "kind": "LocalType"}, {"name": "Manager", "kind": "LocalType"}, {"name": "Logger", "kind": "LocalType"}, {"name": "CRITICAL", "kind": "Other"}, {"name": "FATAL", "kind": "Other"}, {"name": "ERROR", "kind": "Other"}, {"name": "WARNING", "kind": "Other"}, {"name": "WARN", "kind": "Other"}, {"name": "INFO", "kind": "Other"}, {"name": "DEBUG", "kind": "Other"}, {"name": "NOTSET", "kind": "Other"}, {"name": "Handler", "kind": "LocalType"}, {"name": "Formatter", "kind": "LocalType"}, {"name": "BufferingFormatter", "kind": "LocalType"}, {"name": "Filter", "kind": "LocalType"}, {"name": "LogRecord", "kind": "LocalType"}, {"name": "_L", "kind": "Other"}, {"name": "LoggerAdapter", "kind": "LocalType"}, {"name": "getLogger", "kind": "Other"}, {"name": "getLoggerClass", "kind": "Other"}, {"name": "getLogRecordFactory", "kind": "Other"}, {"name": "debug", "kind": "Other"}, {"name": "info", "kind": "Other"}, {"name": "warning", "kind": "Other"}, {"name": "warn", "kind": "Other"}, {"name": "error", "kind": "Other"}, {"name": "critical", "kind": "Other"}, {"name": "exception", "kind": "Other"}, {"name": "log", "kind": "Other"}, {"name": "fatal", "kind": "Other"}, {"name": "disable", "kind": "Other"}, {"name": "addLevelName", "kind": "Other"}, {"name": "getLevelName", "kind": "Other"}, {"name": "makeLogRecord", "kind": "Other"}, {"name": "basicConfig", "kind": "Other"}, {"name": "shutdown", "kind": "Other"}, {"name": "setLoggerClass", "kind": "Other"}, {"name": "captureWarnings", "kind": "Other"}, {"name": "setLogRecordFactory", "kind": "Other"}, {"name": "lastResort", "kind": "Other"}, {"name": "_StreamT", "kind": "Other"}, {"name": "StreamHandler", "kind": "LocalType"}, {"name": "FileHandler", "kind": "LocalType"}, {"name": "NullHandler", "kind": "LocalType"}, {"name": "PlaceHolder", "kind": "LocalType"}, {"name": "RootLogger", "kind": "LocalType"}, {"name": "root", "kind": "Other"}, {"name": "PercentStyle", "kind": "LocalType"}, {"name": "StrFormatStyle", "kind": "LocalType"}, {"name": "StringTemplateStyle", "kind": "LocalType"}, {"name": "_STYLES", "kind": "Other"}, {"name": "BASIC_FORMAT", "kind": "Other"}], "_warnings": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "_defaultaction", "kind": "Other"}, {"name": "_onceregistry", "kind": "Other"}, {"name": "filters", "kind": "Other"}, {"name": "warn", "kind": "Other"}, {"name": "warn_explicit", "kind": "Other"}], "json.decoder": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "JSONDecodeError", "kind": "LocalType"}, {"name": "JSONDecoder", "kind": "LocalType"}], "json.encoder": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "Any", "kind": "Other"}, {"name": "ESCAPE", "kind": "Other"}, {"name": "ESCAPE_ASCII", "kind": "Other"}, {"name": "HAS_UTF8", "kind": "Other"}, {"name": "ESCAPE_DCT", "kind": "Other"}, {"name": "INFINITY", "kind": "Other"}, {"name": "py_encode_basestring", "kind": "Other"}, {"name": "py_encode_basestring_ascii", "kind": "Other"}, {"name": "JSONEncoder", "kind": "LocalType"}], "genericpath": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "BytesPath", "kind": "Other"}, {"name": "FileDescriptorOrPath", "kind": "Other"}, {"name": "StrPath", "kind": "Other"}, {"name": "SupportsRichComparisonT", "kind": "Other"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "overload", "kind": "Other"}, {"name": "Literal", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "commonprefix", "kind": "Other"}, {"name": "exists", "kind": "Other"}, {"name": "getsize", "kind": "Other"}, {"name": "isfile", "kind": "Other"}, {"name": "isdir", "kind": "Other"}, {"name": "getatime", "kind": "Other"}, {"name": "getmtime", "kind": "Other"}, {"name": "getctime", "kind": "Other"}, {"name": "samefile", "kind": "Other"}, {"name": "sameopenfile", "kind": "Other"}, {"name": "samestat", "kind": "Other"}], "email": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__path__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "LocalType"}, {"name": "Policy", "kind": "LocalType"}, {"name": "IO", "kind": "ImportedType", "fullname": "typing.IO"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "_ParamType", "kind": "Other"}, {"name": "_ParamsType", "kind": "Other"}, {"name": "message_from_string", "kind": "Other"}, {"name": "message_from_bytes", "kind": "Other"}, {"name": "message_from_file", "kind": "Other"}, {"name": "message_from_binary_file", "kind": "Other"}], "email.charset": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "__all__", "kind": "Other"}, {"name": "QP", "kind": "Other"}, {"name": "BASE64", "kind": "Other"}, {"name": "SHORTEST", "kind": "Other"}, {"name": "Charset", "kind": "LocalType"}, {"name": "add_charset", "kind": "Other"}, {"name": "add_alias", "kind": "Other"}, {"name": "add_codec", "kind": "Other"}], "email.contentmanager": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "ContentManager", "kind": "LocalType"}, {"name": "raw_data_manager", "kind": "Other"}], "email.errors": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "MessageError", "kind": "LocalType"}, {"name": "MessageParseError", "kind": "LocalType"}, {"name": "HeaderParseError", "kind": "LocalType"}, {"name": "BoundaryError", "kind": "LocalType"}, {"name": "MultipartConversionError", "kind": "LocalType"}, {"name": "CharsetError", "kind": "LocalType"}, {"name": "MessageDefect", "kind": "LocalType"}, {"name": "NoBoundaryInMultipartDefect", "kind": "LocalType"}, {"name": "StartBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "FirstHeaderLineIsContinuationDefect", "kind": "LocalType"}, {"name": "MisplacedEnvelopeHeaderDefect", "kind": "LocalType"}, {"name": "MultipartInvariantViolationDefect", "kind": "LocalType"}, {"name": "InvalidMultipartContentTransferEncodingDefect", "kind": "LocalType"}, {"name": "UndecodableBytesDefect", "kind": "LocalType"}, {"name": "InvalidBase64PaddingDefect", "kind": "LocalType"}, {"name": "InvalidBase64CharactersDefect", "kind": "LocalType"}, {"name": "InvalidBase64LengthDefect", "kind": "LocalType"}, {"name": "CloseBoundaryNotFoundDefect", "kind": "LocalType"}, {"name": "MissingHeaderBodySeparatorDefect", "kind": "LocalType"}, {"name": "MalformedHeaderDefect", "kind": "Other"}, {"name": "HeaderDefect", "kind": "LocalType"}, {"name": "InvalidHeaderDefect", "kind": "LocalType"}, {"name": "HeaderMissingRequiredValue", "kind": "LocalType"}, {"name": "NonPrintableDefect", "kind": "LocalType"}, {"name": "ObsoleteHeaderDefect", "kind": "LocalType"}, {"name": "NonASCIILocalPartDefect", "kind": "LocalType"}, {"name": "InvalidDateDefect", "kind": "LocalType"}], "email.policy": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "ABCMeta", "kind": "ImportedType", "fullname": "abc.ABCMeta"}, {"name": "abstractmethod", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "ContentManager", "kind": "ImportedType", "fullname": "email.contentmanager.ContentManager"}, {"name": "MessageDefect", "kind": "ImportedType", "fullname": "email.errors.MessageDefect"}, {"name": "Header", "kind": "ImportedType", "fullname": "email.header.Header"}, {"name": "Message", "kind": "ImportedType", "fullname": "email.message.Message"}, {"name": "Any", "kind": "Other"}, {"name": "Self", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Policy", "kind": "LocalType"}, {"name": "Compat32", "kind": "LocalType"}, {"name": "compat32", "kind": "Other"}, {"name": "EmailPolicy", "kind": "LocalType"}, {"name": "default", "kind": "Other"}, {"name": "SMTP", "kind": "Other"}, {"name": "SMTPUTF8", "kind": "Other"}, {"name": "HTTP", "kind": "Other"}, {"name": "strict", "kind": "Other"}], "numpy.compat.py3k": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "os", "kind": "Module", "fullname": "os"}, {"name": "Path", "kind": "ImportedType", "fullname": "pathlib.Path"}, {"name": "io", "kind": "Module", "fullname": "io"}, {"name": "pickle", "kind": "Other"}, {"name": "long", "kind": "Other"}, {"name": "integer_types", "kind": "Other"}, {"name": "basestring", "kind": "Other"}, {"name": "unicode", "kind": "Other"}, {"name": "bytes", "kind": "ImportedType", "fullname": "builtins.bytes"}, {"name": "asunicode", "kind": "Other"}, {"name": "asbytes", "kind": "Other"}, {"name": "asstr", "kind": "Other"}, {"name": "isfileobj", "kind": "Other"}, {"name": "open_latin1", "kind": "Other"}, {"name": "sixu", "kind": "Other"}, {"name": "strchar", "kind": "Other"}, {"name": "getexception", "kind": "Other"}, {"name": "asbytes_nested", "kind": "Other"}, {"name": "asunicode_nested", "kind": "Other"}, {"name": "is_pathlib_path", "kind": "Other"}, {"name": "contextlib_nullcontext", "kind": "LocalType"}, {"name": "npy_load_module", "kind": "Other"}, {"name": "os_fspath", "kind": "Other"}, {"name": "os_PathLike", "kind": "Other"}], "textwrap": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Callable", "kind": "Other"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "__all__", "kind": "Other"}, {"name": "TextWrapper", "kind": "LocalType"}, {"name": "wrap", "kind": "Other"}, {"name": "fill", "kind": "Other"}, {"name": "shorten", "kind": "Other"}, {"name": "dedent", "kind": "Other"}, {"name": "indent", "kind": "Other"}], "string": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "StrOrLiteralStr", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Sequence", "kind": "ImportedType", "fullname": "typing.Sequence"}, {"name": "Pattern", "kind": "ImportedType", "fullname": "re.Pattern"}, {"name": "RegexFlag", "kind": "ImportedType", "fullname": "re.RegexFlag"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "overload", "kind": "Other"}, {"name": "LiteralString", "kind": "Other"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "ascii_letters", "kind": "Other"}, {"name": "ascii_lowercase", "kind": "Other"}, {"name": "ascii_uppercase", "kind": "Other"}, {"name": "digits", "kind": "Other"}, {"name": "hexdigits", "kind": "Other"}, {"name": "octdigits", "kind": "Other"}, {"name": "punctuation", "kind": "Other"}, {"name": "printable", "kind": "Other"}, {"name": "whitespace", "kind": "Other"}, {"name": "capwords", "kind": "Other"}, {"name": "_TemplateMetaclass", "kind": "Other"}, {"name": "Template", "kind": "LocalType"}, {"name": "Formatter", "kind": "LocalType"}], "email.header": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Charset", "kind": "ImportedType", "fullname": "email.charset.Charset"}, {"name": "Any", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "Header", "kind": "LocalType"}, {"name": "decode_header", "kind": "Other"}, {"name": "make_header", "kind": "Other"}], "pickle": [{"name": "__builtins__", "kind": "Module", "fullname": "builtins"}, {"name": "__name__", "kind": "Other"}, {"name": "__doc__", "kind": "Other"}, {"name": "__file__", "kind": "Other"}, {"name": "__package__", "kind": "Other"}, {"name": "__annotations__", "kind": "Other"}, {"name": "sys", "kind": "Module", "fullname": "sys"}, {"name": "ReadableBuffer", "kind": "Other"}, {"name": "SupportsWrite", "kind": "ImportedType", "fullname": "_typeshed.SupportsWrite"}, {"name": "Callable", "kind": "Other"}, {"name": "Iterable", "kind": "ImportedType", "fullname": "typing.Iterable"}, {"name": "Iterator", "kind": "ImportedType", "fullname": "typing.Iterator"}, {"name": "Mapping", "kind": "ImportedType", "fullname": "typing.Mapping"}, {"name": "Any", "kind": "Other"}, {"name": "ClassVar", "kind": "Other"}, {"name": "Protocol", "kind": "Other"}, {"name": "SupportsBytes", "kind": "ImportedType", "fullname": "typing.SupportsBytes"}, {"name": "SupportsIndex", "kind": "ImportedType", "fullname": "typing_extensions.SupportsIndex"}, {"name": "TypeAlias", "kind": "Other"}, {"name": "final", "kind": "Other"}, {"name": "__all__", "kind": "Other"}, {"name": "HIGHEST_PROTOCOL", "kind": "Other"}, {"name": "DEFAULT_PROTOCOL", "kind": "Other"}, {"name": "bytes_types", "kind": "Other"}, {"name": "_ReadableFileobj", "kind": "LocalType"}, {"name": "PickleBuffer", "kind": "LocalType"}, {"name": "_BufferCallback", "kind": "Other"}, {"name": "dump", "kind": "Other"}, {"name": "dumps", "kind": "Other"}, {"name": "load", "kind": "Other"}, {"name": "loads", "kind": "Other"}, {"name": "PickleError", "kind": "LocalType"}, {"name": "PicklingError", "kind": "LocalType"}, {"name": "UnpicklingError", "kind": "LocalType"}, {"name": "_ReducedType", "kind": "Other"}, {"name": "Pickler", "kind": "LocalType"}, {"name": "Unpickler", "kind": "LocalType"}, {"name": "MARK", "kind": "Other"}, {"name": "STOP", "kind": "Other"}, {"name": "POP", "kind": "Other"}, {"name": "POP_MARK", "kind": "Other"}, {"name": "DUP", "kind": "Other"}, {"name": "FLOAT", "kind": "Other"}, {"name": "INT", "kind": "Other"}, {"name": "BININT", "kind": "Other"}, {"name": "BININT1", "kind": "Other"}, {"name": "LONG", "kind": "Other"}, {"name": "BININT2", "kind": "Other"}, {"name": "NONE", "kind": "Other"}, {"name": "PERSID", "kind": "Other"}, {"name": "BINPERSID", "kind": "Other"}, {"name": "REDUCE", "kind": "Other"}, {"name": "STRING", "kind": "Other"}, {"name": "BINSTRING", "kind": "Other"}, {"name": "SHORT_BINSTRING", "kind": "Other"}, {"name": "UNICODE", "kind": "Other"}, {"name": "BINUNICODE", "kind": "Other"}, {"name": "APPEND", "kind": "Other"}, {"name": "BUILD", "kind": "Other"}, {"name": "GLOBAL", "kind": "Other"}, {"name": "DICT", "kind": "Other"}, {"name": "EMPTY_DICT", "kind": "Other"}, {"name": "APPENDS", "kind": "Other"}, {"name": "GET", "kind": "Other"}, {"name": "BINGET", "kind": "Other"}, {"name": "INST", "kind": "Other"}, {"name": "LONG_BINGET", "kind": "Other"}, {"name": "LIST", "kind": "Other"}, {"name": "EMPTY_LIST", "kind": "Other"}, {"name": "OBJ", "kind": "Other"}, {"name": "PUT", "kind": "Other"}, {"name": "BINPUT", "kind": "Other"}, {"name": "LONG_BINPUT", "kind": "Other"}, {"name": "SETITEM", "kind": "Other"}, {"name": "TUPLE", "kind": "Other"}, {"name": "EMPTY_TUPLE", "kind": "Other"}, {"name": "SETITEMS", "kind": "Other"}, {"name": "BINFLOAT", "kind": "Other"}, {"name": "TRUE", "kind": "Other"}, {"name": "FALSE", "kind": "Other"}, {"name": "PROTO", "kind": "Other"}, {"name": "NEWOBJ", "kind": "Other"}, {"name": "EXT1", "kind": "Other"}, {"name": "EXT2", "kind": "Other"}, {"name": "EXT4", "kind": "Other"}, {"name": "TUPLE1", "kind": "Other"}, {"name": "TUPLE2", "kind": "Other"}, {"name": "TUPLE3", "kind": "Other"}, {"name": "NEWTRUE", "kind": "Other"}, {"name": "NEWFALSE", "kind": "Other"}, {"name": "LONG1", "kind": "Other"}, {"name": "LONG4", "kind": "Other"}, {"name": "BINBYTES", "kind": "Other"}, {"name": "SHORT_BINBYTES", "kind": "Other"}, {"name": "SHORT_BINUNICODE", "kind": "Other"}, {"name": "BINUNICODE8", "kind": "Other"}, {"name": "BINBYTES8", "kind": "Other"}, {"name": "EMPTY_SET", "kind": "Other"}, {"name": "ADDITEMS", "kind": "Other"}, {"name": "FROZENSET", "kind": "Other"}, {"name": "NEWOBJ_EX", "kind": "Other"}, {"name": "STACK_GLOBAL", "kind": "Other"}, {"name": "MEMOIZE", "kind": "Other"}, {"name": "FRAME", "kind": "Other"}, {"name": "BYTEARRAY8", "kind": "Other"}, {"name": "NEXT_BUFFER", "kind": "Other"}, {"name": "READONLY_BUFFER", "kind": "Other"}, {"name": "encode_long", "kind": "Other"}, {"name": "decode_long", "kind": "Other"}, {"name": "_Pickler", "kind": "Other"}, {"name": "_Unpickler", "kind": "Other"}]}} \ No newline at end of file From 3017b72d650bb05a0e7f8e048d0f68e867f145bd Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 15 Nov 2023 08:53:52 +0300 Subject: [PATCH 076/144] Handle zero number of functions --- .../cli/language/python/sbft/SbftGenerateTestsCommand.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 2e5994bcd4..05d0d773e1 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -218,7 +218,11 @@ class SbftGenerateTestsCommand : CliktCommand( companion object { fun separateTimeout(timeout: Long, groups: List>, group: List): Long { - return timeout * group.size / groups.sumOf { it.size } + val totalFunctions = groups.sumOf { it.size } + return if (totalFunctions == 0) + 0 + else + timeout * group.size / totalFunctions } } } From 51a4f8a818ccd999aab7b65283f5ba183034d1e0 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 15 Nov 2023 11:30:28 +0300 Subject: [PATCH 077/144] Update timeout logic --- .../python/sbft/SbftGenerateTestsCommand.kt | 20 ++++++------- .../python/PythonTestGenerationProcessor.kt | 4 +-- .../python/engine/fuzzing/FuzzingEngine.kt | 9 +++--- .../USVMPythonAnalysisResultReceiverImpl.kt | 1 + .../evaluation/PythonCodeSocketExecutor.kt | 18 ++++++++++++ .../org/utbot/python/utils/TimeoutUtils.kt | 28 +++++++++++++++++++ 6 files changed, 62 insertions(+), 18 deletions(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 05d0d773e1..1de4c9907c 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -34,6 +34,7 @@ import org.utbot.python.newtyping.mypy.dropInitFile import org.utbot.python.utils.Fail import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.utils.Success +import org.utbot.python.utils.separateTimeout import java.io.File import kotlin.math.max import kotlin.system.measureTimeMillis @@ -171,11 +172,16 @@ class SbftGenerateTestsCommand : CliktCommand( testFile, ) } + logger.info { "Mypy time: $mypyTime" } val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() - pythonMethodGroups.map { pythonMethods -> - val localTimeout = max(separateTimeout(timeout - mypyTime, pythonMethodGroups, pythonMethods), 0) + val until = max(System.currentTimeMillis() + timeout - mypyTime, 0) + pythonMethodGroups.mapIndexed { index, pythonMethods -> + val localTimeout = pythonMethods.size * separateTimeout( + until, + pythonMethodGroups.take(index).sumOf { it.size }, + pythonMethodGroups.sumOf { it.size }) logger.info { "Timeout for current group: ${localTimeout}ms" } val config = PythonTestGenerationConfig( @@ -215,14 +221,4 @@ class SbftGenerateTestsCommand : CliktCommand( writeToFileAndSave(output, testCode) System.exit(0) } - - companion object { - fun separateTimeout(timeout: Long, groups: List>, group: List): Long { - val totalFunctions = groups.sumOf { it.size } - return if (totalFunctions == 0) - 0 - else - timeout * group.size / totalFunctions - } - } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index dcbe6ed76a..b754488809 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -37,6 +37,7 @@ import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors import org.utbot.python.newtyping.pythonName import org.utbot.python.utils.TemporaryFileManager +import org.utbot.python.utils.separateUntil import java.nio.file.Path import kotlin.io.path.Path import kotlin.io.path.pathString @@ -65,8 +66,7 @@ abstract class PythonTestGenerationProcessor { val until = startTime + configuration.timeout val tests = configuration.testedMethods.mapIndexedNotNull { index, methodHeader -> - val methodsLeft = configuration.testedMethods.size - index - val localUntil = (until - System.currentTimeMillis()) / methodsLeft + System.currentTimeMillis() + val localUntil = separateUntil(until, index, configuration.testedMethods.size) try { val method = findMethodByHeader( mypyConfig.mypyStorage, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 24fcf6586f..f27f10b5d8 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -71,6 +71,7 @@ import org.utbot.python.utils.ExecutionWithTimoutMode import org.utbot.python.utils.TestGenerationLimitManager import org.utbot.python.utils.TimeoutMode import org.utbot.python.utils.camelToSnakeCase +import org.utbot.python.utils.separateUntil import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket import kotlin.random.Random @@ -103,10 +104,9 @@ class FuzzingEngine( fun start() { val modifications = createMethodAnnotationModifications(method, typeStorage) - val now = System.currentTimeMillis() - val timeout = (until - now) / modifications.size - modifications.forEach { (modifiedMethod, additionalVars) -> - generateTests(modifiedMethod, additionalVars, System.currentTimeMillis() + timeout) + modifications.forEachIndexed { index, (modifiedMethod, additionalVars) -> + val localTimeout = separateUntil(until, index, modifications.size) + generateTests(modifiedMethod, additionalVars, localTimeout) } } @@ -182,6 +182,7 @@ class FuzzingEngine( configuration.pythonPath, configuration.sysPathDirectories, configuration.timeoutForRun, + until, it, ) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 23183ad573..336af4c8c4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -64,6 +64,7 @@ class USVMPythonAnalysisResultReceiverImpl( configuration.pythonPath, configuration.sysPathDirectories, configuration.timeoutForRun, + until, it, ) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index 148ad71561..9a60f59151 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -17,6 +17,7 @@ import org.utbot.python.newtyping.pythonDescription import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.utils.isNamed import java.net.SocketException +import kotlin.math.min class PythonCodeSocketExecutor( override val method: PythonMethod, @@ -44,6 +45,23 @@ class PythonCodeSocketExecutor( this.pythonWorker = pythonWorker } + constructor( + method: PythonMethod, + moduleToImport: String, + pythonPath: String, + syspathDirectories: Set, + executionTimeout: Long, + until: Long, + pythonWorker: PythonWorker + ) : this( + method, + moduleToImport, + pythonPath, + syspathDirectories, + min(executionTimeout, until - System.currentTimeMillis()), + pythonWorker + ) + override fun run( fuzzedValues: FunctionArguments, additionalModulesToImport: Set diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt new file mode 100644 index 0000000000..3a951cf27b --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt @@ -0,0 +1,28 @@ +package org.utbot.python.utils + +import kotlin.math.max + +fun separateUntil(until: Long, currentIndex: Int, itemsCount: Int): Long { + return when (val itemsLeft = itemsCount - currentIndex) { + 0 -> 0 + 1 -> until + else -> { + val now = System.currentTimeMillis() + max((until - now) / itemsLeft + now, 0) + } + } +} + +fun separateTimeout(until: Long, currentIndex: Int, itemsCount: Int): Long { + return when (val itemsLeft = itemsCount - currentIndex) { + 0 -> 0 + 1 -> { + val now = System.currentTimeMillis() + until - now + } + else -> { + val now = System.currentTimeMillis() + max((until - now) / itemsLeft, 0) + } + } +} \ No newline at end of file From d0bcb8327a0cab66dff356408d6a1fdcf711f910 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 15 Nov 2023 16:39:07 +0300 Subject: [PATCH 078/144] Fix timeout for usvm receiver --- .../kotlin/org/utbot/python/engine/GlobalPythonEngine.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index ee56215e15..1640e11aa5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -68,7 +68,7 @@ class GlobalPythonEngine( method, configuration, executionStorage, - System.currentTimeMillis() + configuration.timeout + until, ) val config = if (method.containingPythonClass == null) { USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) @@ -102,16 +102,16 @@ class GlobalPythonEngine( isDaemon = true, name = "Fuzzer" ) { - logger.info { " ======= Start fuzzer ======= " } + logger.info { " >>>>>>> Start fuzzer >>>>>>> " } runFuzzing() - logger.info { " ======= Finish fuzzer ======= " } + logger.info { " <<<<<<< Finish fuzzer <<<<<<< " } } val symbolic = thread( start = true, isDaemon = true, name = "Symbolic" ) { - logger.info { " ======= Start symbolic ======= " } + logger.info { " ------- Start symbolic ------- " } runSymbolic() logger.info { " ======= Finish symbolic ======= " } } From 9834adbd107173724122f4b9461f00fa9f4c5b80 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 15 Nov 2023 16:44:00 +0300 Subject: [PATCH 079/144] Filter invalid self objects --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../python/utbot_executor/utbot_executor/executor.py | 12 ++++++++++++ .../python/utbot_executor/utbot_executor/parser.py | 5 +++++ .../src/main/resources/utbot_executor_version | 2 +- 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index a227e315ac..2f31ffa440 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.0" +version = "1.9.1" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index a9e7d3a631..afd48c001e 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -178,6 +178,18 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: args, kwargs = pickle.loads(eval(request.serialized_memory)) logging.debug("Arguments: %s", args) logging.debug("Kwarguments: %s", kwargs) + class_name = request.get_class_name() + if class_name is not None: + real_class = getattr_by_path( + importlib.import_module(request.function_module), + class_name + ) + if not isinstance(args[0], real_class): + error_message = f"Invalid self argument \n{type(args[0])} instead of {class_name}" + logging.debug(error_message) + return ExecutionFailResponse("fail", error_message) + + except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) return ExecutionFailResponse("fail", traceback.format_exc()) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py index a951624bc6..9ef8417fff 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py @@ -22,6 +22,11 @@ class ExecutionRequest: filepath: str coverage_id: str + def get_class_name(self) -> str | None: + if "." in self.function_name: + return self.function_name.split(".")[0] + return None + class ExecutionResponse: status: str diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index abb1658232..ee672d89ab 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.0 \ No newline at end of file +1.9.1 \ No newline at end of file From 9f28561c1c65c4a504722714e3e8365af5dd6277 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Wed, 15 Nov 2023 18:50:15 +0300 Subject: [PATCH 080/144] Updated usvm-python-runner --- utbot-python/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 7aef0136d7..6964bff0d0 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:1e2c90f") + api("org.usvm:usvm-python-runner:c73361f") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") From 6eeac4709bbac219add175c0c819beba2078e4cf Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Wed, 15 Nov 2023 22:16:06 +0300 Subject: [PATCH 081/144] updated usvm runner --- utbot-python/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 6964bff0d0..a5781df37e 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:c73361f") + api("org.usvm:usvm-python-runner:d3b3a68") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") From 47f598511937bf0f439703c9992c2e9860f768da Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 09:09:34 +0300 Subject: [PATCH 082/144] Fix timeout for usvm --- .../main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 1640e11aa5..aa9cccd53b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -83,7 +83,7 @@ class GlobalPythonEngine( usvmPythonConfig, configuration, ) - val usvmConfig = USVMPythonRunConfig(config, configuration.timeout, configuration.timeoutForRun * 3) + val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 3) if (debug) { engine.debugRun(usvmConfig) } else { From f34b4ca6d984c59b4da744b7fe61527bf1406009 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 15:29:17 +0300 Subject: [PATCH 083/144] Update timeout management --- .../python/sbft/SbftGenerateTestsCommand.kt | 13 ++++++++----- .../python/PythonTestGenerationProcessor.kt | 8 +++++--- .../utbot/python/engine/GlobalPythonEngine.kt | 2 ++ .../python/engine/fuzzing/FuzzingEngine.kt | 17 ++++++++++++----- .../USVMPythonAnalysisResultReceiverImpl.kt | 1 - .../evaluation/PythonCodeSocketExecutor.kt | 18 ------------------ .../org/utbot/python/utils/TimeoutUtils.kt | 8 ++++++++ 7 files changed, 35 insertions(+), 32 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 1de4c9907c..080f1f30e6 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -176,12 +176,15 @@ class SbftGenerateTestsCommand : CliktCommand( val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() - val until = max(System.currentTimeMillis() + timeout - mypyTime, 0) +// val until = max(System.currentTimeMillis() + timeout - mypyTime, 0) + val oneFunctionTimeout = (timeout - mypyTime) / pythonMethodGroups.sumOf { it.size } + logger.info { "One function timeout: ${oneFunctionTimeout}ms. x${pythonMethodGroups.sumOf { it.size }}" } pythonMethodGroups.mapIndexed { index, pythonMethods -> - val localTimeout = pythonMethods.size * separateTimeout( - until, - pythonMethodGroups.take(index).sumOf { it.size }, - pythonMethodGroups.sumOf { it.size }) +// val localTimeout = pythonMethods.size * separateTimeout( +// until, +// pythonMethodGroups.take(index).sumOf { it.size }, +// pythonMethodGroups.sumOf { it.size }) + val localTimeout = pythonMethods.size * oneFunctionTimeout logger.info { "Timeout for current group: ${localTimeout}ms" } val config = PythonTestGenerationConfig( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index b754488809..c09105e9a9 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -37,7 +37,7 @@ import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors import org.utbot.python.newtyping.pythonName import org.utbot.python.utils.TemporaryFileManager -import org.utbot.python.utils.separateUntil +import org.utbot.python.utils.convertToTime import java.nio.file.Path import kotlin.io.path.Path import kotlin.io.path.pathString @@ -64,9 +64,11 @@ abstract class PythonTestGenerationProcessor { mypyConfig = mypyConfig, ) - val until = startTime + configuration.timeout +// val until = startTime + configuration.timeout val tests = configuration.testedMethods.mapIndexedNotNull { index, methodHeader -> - val localUntil = separateUntil(until, index, configuration.testedMethods.size) +// val localUntil = separateUntil(until, index, configuration.testedMethods.size) + val localUntil = System.currentTimeMillis() + configuration.timeout / configuration.testedMethods.size + logger.info { "Local timeout ${configuration.timeout / configuration.testedMethods.size}ms. Until ${localUntil.convertToTime()}" } try { val method = findMethodByHeader( mypyConfig.mypyStorage, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index aa9cccd53b..1213174c6e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -20,6 +20,7 @@ import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.mypy.GlobalNamesStorage import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.pythonName +import org.utbot.python.utils.convertToTime import java.io.File import kotlin.concurrent.thread @@ -57,6 +58,7 @@ class GlobalPythonEngine( } private fun runSymbolic(debug: Boolean = false) { + logger.info { "Symbolic until: ${until.convertToTime()}" } val usvmPythonConfig = USVMPythonConfig( StandardLayout(File(configuration.usvmConfig.usvmDirectory)), configuration.usvmConfig.javaCmd, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index f27f10b5d8..1152457ded 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -71,6 +71,7 @@ import org.utbot.python.utils.ExecutionWithTimoutMode import org.utbot.python.utils.TestGenerationLimitManager import org.utbot.python.utils.TimeoutMode import org.utbot.python.utils.camelToSnakeCase +import org.utbot.python.utils.convertToTime import org.utbot.python.utils.separateUntil import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket @@ -103,11 +104,18 @@ class FuzzingEngine( } fun start() { + logger.info { "Fuzzing until: ${until.convertToTime()}" } val modifications = createMethodAnnotationModifications(method, typeStorage) - modifications.forEachIndexed { index, (modifiedMethod, additionalVars) -> - val localTimeout = separateUntil(until, index, modifications.size) - generateTests(modifiedMethod, additionalVars, localTimeout) - } + val now = System.currentTimeMillis() + val filterModifications = modifications + .take(minOf(modifications.size, maxOf(((until - now) / MINIMAL_TIMEOUT_FOR_SUBSTITUTION).toInt(), 1))) + filterModifications + .forEachIndexed { index, (modifiedMethod, additionalVars) -> + logger.info { "Modified method: ${modifiedMethod.methodSignature()}" } + val localUntil = separateUntil(until, index, filterModifications.size) + logger.info { "Fuzzing local until: ${localUntil.convertToTime()}" } + generateTests(modifiedMethod, additionalVars, localUntil) + } } private fun generateTests( @@ -182,7 +190,6 @@ class FuzzingEngine( configuration.pythonPath, configuration.sysPathDirectories, configuration.timeoutForRun, - until, it, ) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 336af4c8c4..23183ad573 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -64,7 +64,6 @@ class USVMPythonAnalysisResultReceiverImpl( configuration.pythonPath, configuration.sysPathDirectories, configuration.timeoutForRun, - until, it, ) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index 9a60f59151..148ad71561 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -17,7 +17,6 @@ import org.utbot.python.newtyping.pythonDescription import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.utils.isNamed import java.net.SocketException -import kotlin.math.min class PythonCodeSocketExecutor( override val method: PythonMethod, @@ -45,23 +44,6 @@ class PythonCodeSocketExecutor( this.pythonWorker = pythonWorker } - constructor( - method: PythonMethod, - moduleToImport: String, - pythonPath: String, - syspathDirectories: Set, - executionTimeout: Long, - until: Long, - pythonWorker: PythonWorker - ) : this( - method, - moduleToImport, - pythonPath, - syspathDirectories, - min(executionTimeout, until - System.currentTimeMillis()), - pythonWorker - ) - override fun run( fuzzedValues: FunctionArguments, additionalModulesToImport: Set diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt index 3a951cf27b..a2dffc8731 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt @@ -1,5 +1,7 @@ package org.utbot.python.utils +import java.text.SimpleDateFormat +import java.util.* import kotlin.math.max fun separateUntil(until: Long, currentIndex: Int, itemsCount: Int): Long { @@ -25,4 +27,10 @@ fun separateTimeout(until: Long, currentIndex: Int, itemsCount: Int): Long { max((until - now) / itemsLeft, 0) } } +} + +fun Long.convertToTime(): String { + val date = Date(this) + val format = SimpleDateFormat("HH:mm:ss.SSS") + return format.format(date) } \ No newline at end of file From 9a4561040ca78a38d3273a0e0b9442c3d45eaea7 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 15:32:00 +0300 Subject: [PATCH 084/144] Update substitution timeout management --- .../utbot/python/engine/fuzzing/FuzzingEngine.kt | 1 + .../typeinference/FunctionAnnotationUtils.kt | 15 ++++++++++++--- .../fuzzing/provider/ReduceValueProvider.kt | 1 + 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 1152457ded..08e6c4d3e1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -79,6 +79,7 @@ import kotlin.random.Random private val logger = KotlinLogging.logger {} private const val RANDOM_TYPE_FREQUENCY = 6 +private const val MINIMAL_TIMEOUT_FOR_SUBSTITUTION = 4_000 // ms class FuzzingEngine( val method: PythonMethod, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt index 53cd92b91e..14ed3c0816 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt @@ -17,11 +17,18 @@ import org.utbot.python.newtyping.general.hasBoundedParameters import org.utbot.python.newtyping.getPythonAttributeByName import org.utbot.python.newtyping.pythonAnyType import org.utbot.python.newtyping.pythonDescription +import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.pythonTypeRepresentation import org.utbot.python.newtyping.utils.isRequired import org.utbot.python.utils.PriorityCartesianProduct private const val MAX_SUBSTITUTIONS = 10 +private val BAD_TYPES = setOf( + "builtins.function", + "builtins.super", + "builtins.type", + "builtins.slice", +) fun getCandidates(param: TypeParameter, typeStorage: PythonTypeHintsStorage): List { val meta = param.pythonDescription() as PythonTypeVarDescription @@ -43,9 +50,11 @@ fun getCandidates(param: TypeParameter, typeStorage: PythonTypeHintsStorage): Li fun generateTypesAfterSubstitution(type: UtType, typeStorage: PythonTypeHintsStorage): List { val params = type.getBoundedParameters() - return PriorityCartesianProduct(params.map { getCandidates(it, typeStorage) }).getSequence().map { subst -> - DefaultSubstitutionProvider.substitute(type, (params zip subst).associate { it }) - }.take(MAX_SUBSTITUTIONS).toList() + return PriorityCartesianProduct(params.map { getCandidates(it, typeStorage) }).getSequence() + .filter { it.all { it.pythonTypeName() !in BAD_TYPES } } + .map { subst -> + DefaultSubstitutionProvider.substitute(type, (params zip subst).associate { it }) + }.take(MAX_SUBSTITUTIONS).toList() } fun substituteTypeParameters( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 5bcf23358a..5602394201 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -33,6 +33,7 @@ object ReduceValueProvider : ValueProvider Date: Thu, 16 Nov 2023 15:33:49 +0300 Subject: [PATCH 085/144] Fix fake node handling --- .../org/utbot/python/fuzzing/PythonApi.kt | 6 +++--- .../inference/baseline/BaselineAlgorithm.kt | 21 ++++++++++++------- .../utils/TestGenerationLimitManager.kt | 6 ++++++ 3 files changed, 23 insertions(+), 10 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 9d657662b6..28e5aa7ca3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -17,8 +17,8 @@ import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm import org.utbot.python.utils.ExecutionWithTimoutMode +import org.utbot.python.utils.FakeWithTimeoutMode import org.utbot.python.utils.TestGenerationLimitManager -import org.utbot.python.utils.TimeoutMode import kotlin.random.Random private val logger = KotlinLogging.logger {} @@ -155,7 +155,7 @@ class PythonFuzzing( } logger.debug { "Fork ended" } } else { - description.limitManager.mode = TimeoutMode + description.limitManager.mode = FakeWithTimeoutMode } } @@ -166,7 +166,7 @@ class PythonFuzzing( if (description.limitManager.isCancelled() || description.parameters.any { it.isAny() }) { forkType(description, stats) if (description.limitManager.isRootManager) { - return TimeoutMode.isCancelled(description.limitManager) + return FakeWithTimeoutMode.isCancelled(description.limitManager) } } return description.limitManager.isCancelled() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index fd1173ce17..6cacd22184 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -49,7 +49,7 @@ class BaselineAlgorithm( private val simpleTypes = simplestTypes(storage) private val mixtureType = createPythonUnionType(simpleTypes) - private val openedStates: MutableMap> = mutableMapOf() + private val expandedStates: MutableMap> = mutableMapOf() private val statistic: MutableMap = mutableMapOf() private val checkedSignatures: MutableSet = mutableSetOf() @@ -60,7 +60,7 @@ class BaselineAlgorithm( val newState = expandState(state, storage, state.anyNodes.map { mixtureType }) if (newState != null) { logger.info("Random type: ${newState.signature.pythonTypeRepresentation()}") - openedStates[newState.signature] = newState to state + expandedStates[newState.signature] = newState to state return newState.signature } return null @@ -97,7 +97,7 @@ class BaselineAlgorithm( logger.info("Checking new state ${newState.signature.pythonTypeRepresentation()}") if (checkSignature(newState.signature as FunctionType, fileForMypyRuns, configFile)) { logger.debug("Found new state!") - openedStates[newState.signature] = newState to state + expandedStates[newState.signature] = newState to state return newState.signature } } else if (state.anyNodes.isEmpty()) { @@ -118,7 +118,7 @@ class BaselineAlgorithm( } fun feedbackState(signature: UtType, feedback: InferredTypeFeedback) { - val stateInfo = openedStates[signature] + val stateInfo = expandedStates[signature] if (stateInfo != null) { val (newState, parent) = stateInfo when (feedback) { @@ -126,9 +126,16 @@ class BaselineAlgorithm( states.add(newState) parent.children += 1 } - InvalidTypeFeedback -> {} + + InvalidTypeFeedback -> { + states.remove(newState) + } + } + expandedStates.remove(signature) + } else if (typesAreEqual(signature, initialState.signature)) { + if (feedback is InvalidTypeFeedback) { + states.remove(initialState) } - openedStates.remove(signature) } } @@ -208,7 +215,7 @@ class BaselineAlgorithm( generalRating: List ): BaselineAlgorithmState { val paramNames = pythonMethodCopy.arguments.map { it.name } - val root = PartialTypeNode(hintCollectorResult.initialSignature, true) + val root = PartialTypeNode(pythonMethodCopy.definition.type, true) val allNodes: MutableSet = mutableSetOf(root) val argumentRootNodes = paramNames.map { hintCollectorResult.parameterToNode[it]!! } argumentRootNodes.forEachIndexed { index, node -> diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt index 77b3354b58..18c3a777c7 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt @@ -77,3 +77,9 @@ object ExecutionWithTimoutMode : LimitManagerMode { return ExecutionMode.isCancelled(manager) || TimeoutMode.isCancelled(manager) } } + +object FakeWithTimeoutMode : LimitManagerMode { + override fun isCancelled(manager: TestGenerationLimitManager): Boolean { + return manager.fakeNodeExecutions <= 0 || TimeoutMode.isCancelled(manager) + } +} From 4484be4cacdbad8f248203d88cad144d53a27ace Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 15:39:03 +0300 Subject: [PATCH 086/144] Add cleaner to sbft --- .../cli/language/python/sbft/SbftGenerateTestsCommand.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 080f1f30e6..9d503e24e7 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -31,12 +31,11 @@ import org.utbot.python.framework.codegen.model.PythonImport import org.utbot.python.newtyping.ast.parseClassDefinition import org.utbot.python.newtyping.ast.parseFunctionDefinition import org.utbot.python.newtyping.mypy.dropInitFile +import org.utbot.python.utils.Cleaner import org.utbot.python.utils.Fail import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.utils.Success -import org.utbot.python.utils.separateTimeout import java.io.File -import kotlin.math.max import kotlin.system.measureTimeMillis private const val DEFAULT_TIMEOUT_IN_MILLIS = 60000L @@ -222,6 +221,8 @@ class SbftGenerateTestsCommand : CliktCommand( .map { renderPythonImport(it) } val testCode = (listOf(importCode.joinToString("\n")) + globalCodeCollection).joinToString("\n\n\n") writeToFileAndSave(output, testCode) + + Cleaner.doCleaning() System.exit(0) } } From f3d390b70bf38418d29c85854e3a1eb0e06207e2 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 16:38:31 +0300 Subject: [PATCH 087/144] Add cleaner to sbft --- .../language/python/sbft/SbftGenerateTestsCommand.kt | 3 ++- .../org/utbot/python/PythonTestGenerationProcessor.kt | 5 +++-- .../kotlin/org/utbot/python/utils/TimeoutUtils.kt | 11 +++-------- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 9d503e24e7..ba2fbbdcca 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -35,6 +35,7 @@ import org.utbot.python.utils.Cleaner import org.utbot.python.utils.Fail import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.utils.Success +import org.utbot.python.utils.separateTimeout import java.io.File import kotlin.system.measureTimeMillis @@ -176,7 +177,7 @@ class SbftGenerateTestsCommand : CliktCommand( val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() // val until = max(System.currentTimeMillis() + timeout - mypyTime, 0) - val oneFunctionTimeout = (timeout - mypyTime) / pythonMethodGroups.sumOf { it.size } + val oneFunctionTimeout = separateTimeout(timeout - mypyTime, pythonMethodGroups.sumOf { it.size }) logger.info { "One function timeout: ${oneFunctionTimeout}ms. x${pythonMethodGroups.sumOf { it.size }}" } pythonMethodGroups.mapIndexed { index, pythonMethods -> // val localTimeout = pythonMethods.size * separateTimeout( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index c09105e9a9..4cf65b1aab 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -38,6 +38,7 @@ import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors import org.utbot.python.newtyping.pythonName import org.utbot.python.utils.TemporaryFileManager import org.utbot.python.utils.convertToTime +import org.utbot.python.utils.separateTimeout import java.nio.file.Path import kotlin.io.path.Path import kotlin.io.path.pathString @@ -57,7 +58,7 @@ abstract class PythonTestGenerationProcessor { } fun testGenerate(mypyConfig: MypyConfig): List { - val startTime = System.currentTimeMillis() +// val startTime = System.currentTimeMillis() val testCaseGenerator = PythonTestCaseGenerator( configuration = configuration, @@ -67,7 +68,7 @@ abstract class PythonTestGenerationProcessor { // val until = startTime + configuration.timeout val tests = configuration.testedMethods.mapIndexedNotNull { index, methodHeader -> // val localUntil = separateUntil(until, index, configuration.testedMethods.size) - val localUntil = System.currentTimeMillis() + configuration.timeout / configuration.testedMethods.size + val localUntil = System.currentTimeMillis() + separateTimeout(configuration.timeout, configuration.testedMethods.size) logger.info { "Local timeout ${configuration.timeout / configuration.testedMethods.size}ms. Until ${localUntil.convertToTime()}" } try { val method = findMethodByHeader( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt index a2dffc8731..416e05f447 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TimeoutUtils.kt @@ -15,16 +15,11 @@ fun separateUntil(until: Long, currentIndex: Int, itemsCount: Int): Long { } } -fun separateTimeout(until: Long, currentIndex: Int, itemsCount: Int): Long { - return when (val itemsLeft = itemsCount - currentIndex) { +fun separateTimeout(timeout: Long, itemsCount: Int): Long { + return when (itemsCount) { 0 -> 0 - 1 -> { - val now = System.currentTimeMillis() - until - now - } else -> { - val now = System.currentTimeMillis() - max((until - now) / itemsLeft, 0) + timeout / itemsCount } } } From ddec0422d333aa394d224023add5cc70299842ba Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 17:39:41 +0300 Subject: [PATCH 088/144] Fix fake node cancellation --- .../kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt | 2 ++ .../org/utbot/python/utils/TestGenerationLimitManager.kt | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 08e6c4d3e1..bb5aa4ddf5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -235,6 +235,8 @@ class FuzzingEngine( description.limitManager.addFakeNodeExecutions() emit(FakeNodeFeedback) return@PythonFuzzing PythonFeedback(control = Control.CONTINUE) + } else { + description.limitManager.restartFakeNode() } val pair = Pair(description, arguments.map { PythonTreeWrapper(it.tree) }) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt index 18c3a777c7..936171a66a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt @@ -9,7 +9,7 @@ class TestGenerationLimitManager( var executions: Int = 150, var invalidExecutions: Int = 10, var cacheNodeExecutions: Int = 20, - var fakeNodeExecutions: Int = 1, + var fakeNodeExecutions: Int = 8, var missedLines: Int? = null, val isRootManager: Boolean = false, ) { @@ -39,6 +39,10 @@ class TestGenerationLimitManager( fakeNodeExecutions -= 1 } + fun restartFakeNode() { + fakeNodeExecutions = initFakeNodeExecutions + } + fun isCancelled(): Boolean { return mode.isCancelled(this) } From 9d1b34a6b56eba463ad2d682feddaaf9dffe3cab Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 18:21:03 +0300 Subject: [PATCH 089/144] Unused timeout redistribution --- .../python/sbft/SbftGenerateTestsCommand.kt | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index ba2fbbdcca..17e4324f92 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -177,14 +177,24 @@ class SbftGenerateTestsCommand : CliktCommand( val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() // val until = max(System.currentTimeMillis() + timeout - mypyTime, 0) - val oneFunctionTimeout = separateTimeout(timeout - mypyTime, pythonMethodGroups.sumOf { it.size }) - logger.info { "One function timeout: ${oneFunctionTimeout}ms. x${pythonMethodGroups.sumOf { it.size }}" } + val startTime = System.currentTimeMillis() + val countOfFunctions = pythonMethodGroups.sumOf { it.size } + val oneFunctionTimeout = separateTimeout(timeout - mypyTime, countOfFunctions) + logger.info { "One function timeout: ${oneFunctionTimeout}ms. x${countOfFunctions}" } pythonMethodGroups.mapIndexed { index, pythonMethods -> // val localTimeout = pythonMethods.size * separateTimeout( // until, // pythonMethodGroups.take(index).sumOf { it.size }, // pythonMethodGroups.sumOf { it.size }) - val localTimeout = pythonMethods.size * oneFunctionTimeout + val usedTime = System.currentTimeMillis() - startTime + val countOfTestedFunctions = pythonMethodGroups.take(index).sumOf { it.size } + val expectedTime = countOfTestedFunctions * oneFunctionTimeout + val localOneFunctionTimeout = if (usedTime < expectedTime) { + separateTimeout(timeout - mypyTime - usedTime, countOfFunctions - countOfTestedFunctions) + } else { + oneFunctionTimeout + } + val localTimeout = pythonMethods.size * localOneFunctionTimeout logger.info { "Timeout for current group: ${localTimeout}ms" } val config = PythonTestGenerationConfig( From 67cfde07b1950e666959a5a6635670e6bfda058f Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 19:10:29 +0300 Subject: [PATCH 090/144] Unused timeout redistribution in one group --- .../python/PythonTestGenerationProcessor.kt | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 4cf65b1aab..45e142af46 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -58,17 +58,24 @@ abstract class PythonTestGenerationProcessor { } fun testGenerate(mypyConfig: MypyConfig): List { -// val startTime = System.currentTimeMillis() - val testCaseGenerator = PythonTestCaseGenerator( configuration = configuration, mypyConfig = mypyConfig, ) -// val until = startTime + configuration.timeout + val oneFunctionTimeout = separateTimeout(configuration.timeout, configuration.testedMethods.size) + val countOfFunctions = configuration.testedMethods.size + val startTime = System.currentTimeMillis() + val tests = configuration.testedMethods.mapIndexedNotNull { index, methodHeader -> -// val localUntil = separateUntil(until, index, configuration.testedMethods.size) - val localUntil = System.currentTimeMillis() + separateTimeout(configuration.timeout, configuration.testedMethods.size) + val usedTime = System.currentTimeMillis() - startTime + val expectedTime = index * oneFunctionTimeout + val localOneFunctionTimeout = if (usedTime < expectedTime) { + separateTimeout(configuration.timeout - usedTime, countOfFunctions - index) + } else { + oneFunctionTimeout + } + val localUntil = System.currentTimeMillis() + localOneFunctionTimeout logger.info { "Local timeout ${configuration.timeout / configuration.testedMethods.size}ms. Until ${localUntil.convertToTime()}" } try { val method = findMethodByHeader( From 5b2ee250732db206f4b65529b0577a4226a73728 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 16 Nov 2023 19:10:47 +0300 Subject: [PATCH 091/144] Select only one function for check-usvm --- .../utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 17e4324f92..34875551e5 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -158,7 +158,7 @@ class SbftGenerateTestsCommand : CliktCommand( return } - val pythonMethodGroups = getPythonMethods().let { if (checkUsvm) it.take(1) else it } + val pythonMethodGroups = getPythonMethods().let { if (checkUsvm) it.take(1).map { it.take(1) } else it } val sysPathDirectories = directoriesForSysPath.map { it.toAbsolutePath() } .toSet() val testFile = TestFileInformation(absPathToSourceFile, sourceFileContent, currentPythonModule.dropInitFile()) From a94c048c524c4dfff9b9610040e865a53a0c444d Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 15 Nov 2023 18:59:08 +0300 Subject: [PATCH 092/144] Support python iterators --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../tests/test_deep_serialization.py | 35 ++++++++++ .../deep_serialization/iterator_wrapper.py | 64 +++++++++++++++++++ .../deep_serialization/json_converter.py | 36 +++++++++-- .../deep_serialization/memory_objects.py | 57 ++++++++++++++++- .../utbot_executor/memory_compressor.py | 7 +- .../src/main/resources/utbot_executor_version | 2 +- .../ExecutionResultDeserializer.kt | 1 + .../serialization/PythonObjectParser.kt | 26 ++++++++ .../python/framework/api/python/PythonTree.kt | 19 ++++++ .../api/python/util/PythonIdUtils.kt | 1 + .../tree/PythonCgMethodConstructor.kt | 58 +++++++++++++++-- .../tree/PythonCgVariableConstructor.kt | 5 ++ .../constructor/visitor/CgPythonRenderer.kt | 14 +++- .../constructor/visitor/CgPythonVisitor.kt | 2 + .../codegen/model/tree/CgPythonElement.kt | 24 ++++--- .../org/utbot/python/fuzzing/PythonApi.kt | 1 + .../fuzzing/provider/IteratorValueProvider.kt | 37 +++++++++++ 18 files changed, 364 insertions(+), 27 deletions(-) create mode 100644 utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 2f31ffa440..f9ea5040b9 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.1" +version = "1.9.2" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py b/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py index 87900ffe47..c01c8a7a25 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py +++ b/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py @@ -29,6 +29,11 @@ def template_test_assert(obj: typing.Any, imports: typing.List[str]): assert obj == get_deserialized_obj(obj, imports) +def template_test_assert_for_generators(obj: typing.Any, imports: typing.List[str]): + items = list(obj) + assert items == list(get_deserialized_obj(iter(items), imports).content) + + @pytest.mark.parametrize( "obj", [ @@ -187,6 +192,36 @@ def test_classes_with_slots(obj: typing.Any, imports: typing.List[str]): template_test_assert(obj, imports) +def square_iter(x: int): + for i in range(x): + yield i ** 2 + + +@pytest.mark.parametrize( + "obj,imports", + [ + ( + range(10), + ["tests.test_deep_serialization", "copyreg"], + ), + ( + map(int, "1 1 2 3 4 12 1 239".split()), + ["tests.test_deep_serialization", "copyreg"], + ), + ( + square_iter(5), + ["tests.test_deep_serialization", "copyreg"], + ), + ( + iter([1, 2, 5]), + ["tests.test_deep_serialization", "copyreg"], + ), + ], +) +def test_base_generators(obj: typing.Any, imports: typing.List[str]): + template_test_assert_for_generators(obj, imports) + + def test_comparable(): obj = EmptyClass() serialized_obj_ids, _, serialized_memory_dump = serialize_objects_dump([obj], True) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py new file mode 100644 index 0000000000..7fb7abb453 --- /dev/null +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py @@ -0,0 +1,64 @@ +from __future__ import annotations +import itertools +import typing + +T = typing.TypeVar("T") + + +class IteratorWrapper: + iterator: typing.Iterator[T] + content: typing.List[T] + + index = -1 + + MAX_SIZE = 1_000 + + def __init__(self, iterator: typing.Iterator[T]) -> None: + self.iterator, iter_copy = itertools.tee(iterator) + self.content = [it[0] for it in zip(iter_copy, range(IteratorWrapper.MAX_SIZE))] + + def build_from_list(self, content: typing.List[T]) -> None: + self.content = content + self.iterator = iter(content) + + @staticmethod + def from_list(content: typing.List[T]) -> IteratorWrapper: + obj = IteratorWrapper.__new__(IteratorWrapper) + obj.build_from_list(content) + return obj + + def __iter__(self): + self.index = -1 + return self + + def __next__(self): + if self.index + 1 >= len(self.content): + raise StopIteration + self.index += 1 + return self.content[self.index] + + def __eq__(self, other) -> bool: + if isinstance(other, IteratorWrapper): + return self.content == other.content + return False + + def __str__(self) -> str: + return f"IteratorWrapper({self.content})" + + def __getstate__(self) -> typing.Dict[str, typing.Any]: + return {"content": self.content} + + def __setstate__(self, state) -> None: + self.build_from_list(state["content"]) + + +if __name__ == "__main__": + import pickle, copy + wrapper = IteratorWrapper(iter([1, 2, 3])) + for i in wrapper: + print(i) + # copy.deepcopy(wrapper) + # print(wrapper.__reduce__()) + # a = pickle.dumps(wrapper) + # print(a) + # print(str(pickle.loads(a))) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py index 3034c72d64..ca412c006d 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py @@ -4,13 +4,15 @@ import pickle import sys from typing import Dict, Iterable, Union + +from utbot_executor.deep_serialization.iterator_wrapper import IteratorWrapper from utbot_executor.deep_serialization.memory_objects import ( MemoryObject, ReprMemoryObject, ListMemoryObject, DictMemoryObject, ReduceMemoryObject, - MemoryDump, + MemoryDump, IteratorMemoryObject, ) from utbot_executor.deep_serialization.utils import PythonId, TypeInfo @@ -26,7 +28,7 @@ def default(self, o): } if isinstance(o, ReprMemoryObject): base_json["value"] = o.value - elif isinstance(o, (ListMemoryObject, DictMemoryObject)): + elif isinstance(o, (ListMemoryObject, DictMemoryObject, IteratorMemoryObject)): base_json["items"] = o.items elif isinstance(o, ReduceMemoryObject): base_json["constructor"] = o.constructor @@ -79,6 +81,14 @@ def as_reduce_object(dct: Dict) -> Union[MemoryObject, Dict]: ) obj.comparable = dct["comparable"] return obj + if dct["strategy"] == "iterator": + obj = IteratorMemoryObject.__new__(IteratorMemoryObject) + obj.items = dct["items"] + obj.typeinfo = TypeInfo( + kind=dct["typeinfo"]["kind"], module=dct["typeinfo"]["module"] + ) + obj.comparable = dct["comparable"] + return obj if dct["strategy"] == "reduce": obj = ReduceMemoryObject.__new__(ReduceMemoryObject) obj.constructor = TypeInfo( @@ -111,15 +121,22 @@ def __init__(self, memory_dump: MemoryDump): def reload_id(self) -> MemoryDump: new_memory_objects: Dict[PythonId, MemoryObject] = {} for id_, obj in self.memory_dump.objects.items(): - new_memory_object = copy.deepcopy(obj) - read_id = self.dump_id_to_real_id[id_] - new_memory_object.obj = self.memory[read_id] + try: + new_memory_object = copy.deepcopy(obj) + except TypeError as _: + new_memory_object = self + real_id = self.dump_id_to_real_id[id_] + new_memory_object.obj = self.memory[real_id] if isinstance(new_memory_object, ReprMemoryObject): pass elif isinstance(new_memory_object, ListMemoryObject): new_memory_object.items = [ self.dump_id_to_real_id[id_] for id_ in new_memory_object.items ] + elif isinstance(new_memory_object, IteratorMemoryObject): + new_memory_object.items = [ + self.dump_id_to_real_id[id_] for id_ in new_memory_object.items + ] elif isinstance(new_memory_object, DictMemoryObject): new_memory_object.items = { self.dump_id_to_real_id[id_key]: self.dump_id_to_real_id[id_value] @@ -136,7 +153,7 @@ def reload_id(self) -> MemoryDump: new_memory_object.dictitems = self.dump_id_to_real_id[ new_memory_object.dictitems ] - new_memory_objects[self.dump_id_to_real_id[id_]] = new_memory_object + new_memory_objects[real_id] = new_memory_object return MemoryDump(new_memory_objects) @staticmethod @@ -185,6 +202,13 @@ def load_object(self, python_id: PythonId) -> object: for key, value in dump_object.items.items(): real_object[self.load_object(key)] = self.load_object(value) + elif isinstance(dump_object, IteratorMemoryObject): + real_object = IteratorWrapper.from_list( + [self.load_object(item) for item in dump_object.items] + ) + id_ = PythonId(str(id(real_object))) + self.dump_id_to_real_id[python_id] = id_ + self.memory[id_] = real_object elif isinstance(dump_object, ReduceMemoryObject): constructor = eval(dump_object.constructor.qualname) args = self.load_object(dump_object.args) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py index e4f591bfd8..2177f551de 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py @@ -8,9 +8,10 @@ import typing from itertools import zip_longest import pickle -from typing import Any, Callable, Dict, List, Optional, Set, Type, Iterable +from typing import Any, Callable, Dict, List, Optional, Set, Type, Iterator, Iterable from utbot_executor.deep_serialization.config import PICKLE_PROTO +from utbot_executor.deep_serialization.iterator_wrapper import IteratorWrapper from utbot_executor.deep_serialization.utils import ( PythonId, get_kind, @@ -32,11 +33,13 @@ class MemoryObject: is_draft: bool deserialized_obj: object obj: object + id_: PythonId | None = None def __init__(self, obj: object) -> None: self.is_draft = True self.typeinfo = get_kind(obj) self.obj = obj + self.id_ = PythonId(str(id(self.obj))) def _initialize( self, deserialized_obj: object = None, comparable: bool = True @@ -49,7 +52,9 @@ def initialize(self) -> None: self._initialize() def id_value(self) -> str: - return str(id(self.obj)) + if self.id_ is not None: + return self.id_ + return PythonId(str(id(self.obj))) def __repr__(self) -> str: if hasattr(self, "obj"): @@ -152,6 +157,45 @@ def __repr__(self) -> str: return f"{self.typeinfo.kind}{self.items}" +class IteratorMemoryObject(MemoryObject): + strategy: str = "iterator" + items: List[PythonId] + + MAX_SIZE = 1_000 + + def __init__(self, iterator_object: object) -> None: + self.items = [] + if not isinstance(iterator_object, IteratorWrapper): + iterator_object = IteratorWrapper(iterator_object) + super().__init__(iterator_object) + + def initialize(self) -> None: + self.obj: IteratorWrapper + serializer = PythonSerializer() + self.comparable = False + + for item in self.obj.content: + elem_id = serializer.write_object_to_memory(item) + self.items.append(elem_id) + + items = [ + serializer.get_by_id(elem_id) + for elem_id in self.items + ] + comparable = all( + item.comparable + for item in items + ) + + deserialized_obj = IteratorWrapper.from_list(items) + super()._initialize(deserialized_obj, comparable) + + def __repr__(self) -> str: + if hasattr(self, "obj"): + return str(self.obj) + return f"{self.typeinfo.kind}{self.items}" + + class ReduceMemoryObject(MemoryObject): strategy: str = "reduce" constructor: TypeInfo @@ -362,6 +406,14 @@ def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: return None +class IteratorMemoryObjectProvider(MemoryObjectProvider): + @staticmethod + def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: + if isinstance(obj, (typing.Iterator, IteratorWrapper)): + return IteratorMemoryObject + return None + + class ReduceMemoryObjectProvider(MemoryObjectProvider): @staticmethod def get_serializer(obj: object) -> Optional[Type[MemoryObject]]: @@ -405,6 +457,7 @@ class PythonSerializer: providers: List[MemoryObjectProvider] = [ ListMemoryObjectProvider, DictMemoryObjectProvider, + IteratorMemoryObjectProvider, ReduceMemoryObjectProvider, ReprMemoryObjectProvider, ReduceExMemoryObjectProvider, diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py index feb6ea869b..8d3ccb5fe7 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/memory_compressor.py @@ -12,6 +12,9 @@ def compress_memory( diff_ids: typing.List[PythonId] = [] for id_ in ids: if id_ in state_before.objects and id_ in state_after.objects: - if state_before.objects[id_].obj != state_after.objects[id_].obj: - diff_ids.append(id_) + try: + if state_before.objects[id_].obj != state_after.objects[id_].obj: + diff_ids.append(id_) + except AttributeError as _: + pass return diff_ids diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index ee672d89ab..6f2d3653d5 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.1 \ No newline at end of file +1.9.2 \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt index b28f16e72f..b37905b7f8 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/ExecutionResultDeserializer.kt @@ -18,6 +18,7 @@ object ExecutionResultDeserializer { .withSubtype(ListMemoryObject::class.java, "list") .withSubtype(DictMemoryObject::class.java, "dict") .withSubtype(ReduceMemoryObject::class.java, "reduce") + .withSubtype(IteratorMemoryObject::class.java, "iterator") ) .addLast(KotlinJsonAdapterFactory()) .build() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt index ae1d1aa253..16bc926393 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt @@ -14,6 +14,7 @@ object PythonObjectParser { .withSubtype(ListMemoryObject::class.java, "list") .withSubtype(DictMemoryObject::class.java, "dict") .withSubtype(ReduceMemoryObject::class.java, "reduce") + .withSubtype(IteratorMemoryObject::class.java, "iterator") ) .addLast(KotlinJsonAdapterFactory()) .build() @@ -81,6 +82,13 @@ class DictMemoryObject( val items: Map, ) : MemoryObject(id, typeinfo, comparable) +class IteratorMemoryObject( + id: String, + typeinfo: TypeInfo, + comparable: Boolean, + val items: List, +) : MemoryObject(id, typeinfo, comparable) + class ReduceMemoryObject( id: String, typeinfo: TypeInfo, @@ -138,6 +146,12 @@ fun PythonTree.PythonTreeNode.toMemoryObject(memoryDump: MemoryDump, reload: Boo DictMemoryObject(id, typeinfo, this.comparable, items) } + is PythonTree.IteratorNode -> { + val items = this.items.entries + .map { it.value.toMemoryObject(memoryDump) } + IteratorMemoryObject(id, typeinfo, this.comparable, items) + } + is PythonTree.ReduceNode -> { val argsIds = PythonTree.ListNode(this.args.withIndex().associate { it.index to it.value }.toMutableMap()) val draft = ReduceMemoryObject( @@ -236,6 +250,18 @@ fun MemoryObject.toPythonTree( draft } + is IteratorMemoryObject -> { + val draft = PythonTree.IteratorNode(id, mutableMapOf()) + + visited[this.id] = draft + + items.mapIndexed { index, valueId -> + val value = memoryDump.getById(valueId).toPythonTree(memoryDump, visited) + draft.items[index] = value + } + draft + } + is ReduceMemoryObject -> { val stateObjsDraft = memoryDump.getById(state) val customState = stateObjsDraft !is DictMemoryObject diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt index 794c502127..44c1f6004a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt @@ -4,6 +4,7 @@ import org.utbot.python.framework.api.python.util.pythonBoolClassId import org.utbot.python.framework.api.python.util.pythonDictClassId import org.utbot.python.framework.api.python.util.pythonFloatClassId import org.utbot.python.framework.api.python.util.pythonIntClassId +import org.utbot.python.framework.api.python.util.pythonIteratorClassId import org.utbot.python.framework.api.python.util.pythonListClassId import org.utbot.python.framework.api.python.util.pythonNoneClassId import org.utbot.python.framework.api.python.util.pythonObjectClassId @@ -213,6 +214,24 @@ object PythonTree { } } + class IteratorNode( + id: Long, + val items: MutableMap + ) : PythonTreeNode(id, pythonIteratorClassId) { + constructor(items: MutableMap) : this(PythonIdGenerator.createId(), items) + + override val children: List + get() = items.values.toList() + + override fun typeEquals(other: Any?): Boolean { + return if (other is ListNode) + children.zip(other.children).all { + it.first.typeEquals(it.second) + } + else false + } + } + class ReduceNode( id: Long, type: PythonClassId, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt index 5cd07a09f5..9cdc967d8f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt @@ -20,4 +20,5 @@ val pythonSetClassId = PythonClassId("builtins.set") val pythonBytearrayClassId = PythonClassId("builtins.bytearray") val pythonBytesClassId = PythonClassId("builtins.bytes") val pythonExceptionClassId = PythonClassId("builtins.Exception") +val pythonIteratorClassId = PythonClassId("typing.Iterator") val pythonRePatternClassId = PythonClassId("re.Pattern") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt index d31cf52346..73096c063c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt @@ -5,7 +5,6 @@ import org.utbot.framework.codegen.domain.context.CgContext import org.utbot.framework.codegen.domain.models.CgDocumentationComment import org.utbot.framework.codegen.domain.models.CgFieldAccess import org.utbot.framework.codegen.domain.models.CgGetLength -import org.utbot.framework.codegen.domain.models.CgLiteral import org.utbot.framework.codegen.domain.models.CgMethodTestSet import org.utbot.framework.codegen.domain.models.CgMultilineComment import org.utbot.framework.codegen.domain.models.CgParameterDeclaration @@ -339,6 +338,39 @@ class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(contex pythonAssertElementsByKey(expectedNode, expectedCollection, actual, iterator, elementName) } + private fun pythonAssertIterators( + expectedNode: PythonTree.IteratorNode, + expected: CgValue, + actual: CgVariable, + ) { + val zip = CgPythonZip( + actual, + variableConstructor.getOrCreateVariable(PythonTreeModel(expectedNode)), + ) + val index = newVar(pythonNoneClassId, "pair") { + CgPythonRepr(pythonNoneClassId, "None") + } + forEachLoop { + innerBlock { + condition = index + iterable = zip + testFrameworkManager.assertEquals( + CgPythonIndex( + pythonIntClassId, + index, + CgPythonRepr(pythonIntClassId, "1") + ), + CgPythonIndex( + pythonIntClassId, + index, + CgPythonRepr(pythonIntClassId, "0") + ) + ) + statements = currentBlock + } + } + } + private fun pythonDeepTreeEquals( expectedNode: PythonTree.PythonTreeNode, expected: CgValue, @@ -358,10 +390,18 @@ class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(contex } else { variableConstructor.getOrCreateVariable(PythonTreeModel(expectedNode)) } - testFrameworkManager.assertEquals( - expectedValue, - actual, - ) + if (expectedNode is PythonTree.IteratorNode) { + pythonAssertIterators( + expectedNode, + expected, + actual + ) + } else { + testFrameworkManager.assertEquals( + expectedValue, + actual, + ) + } return } when (expectedNode) { @@ -405,6 +445,14 @@ class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(contex ) } + is PythonTree.IteratorNode -> { + pythonAssertIterators( + expectedNode, + expected, + actual + ) + } + is PythonTree.ReduceNode -> { if (expectedNode.state.isNotEmpty()) { expectedNode.state.forEach { (field, value) -> diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt index 6c9369c619..c6937f7092 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt @@ -97,6 +97,11 @@ class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor( } } + is PythonTree.IteratorNode -> { + val items = objectNode.items.values.map { pythonBuildObject(it) } + Pair(CgPythonIterator(items.map {it.first}), items.flatMap { it.second }) + } + is PythonTree.ReduceNode -> { if (assistant.memoryObjects.containsKey(id)) { val tree = assistant.memoryObjectsModels[id] diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt index cc7e868cce..efd00881a6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonRenderer.kt @@ -1,8 +1,6 @@ package org.utbot.python.framework.codegen.model.constructor.visitor import org.apache.commons.text.StringEscapeUtils -import org.utbot.common.WorkaroundReason -import org.utbot.common.workaround import org.utbot.python.framework.codegen.model.PythonImport import org.utbot.python.framework.codegen.model.PythonSysPathImport import org.utbot.framework.codegen.domain.RegularImport @@ -537,6 +535,12 @@ internal class CgPythonRenderer( print(")") } + override fun visit(element: CgPythonZip) { + print("zip(") + listOf(element.first, element.second).renderSeparated() + print(")") + } + override fun visit(element: CgPythonList) { print("[") element.elements.renderSeparated() @@ -566,6 +570,12 @@ internal class CgPythonRenderer( } } + override fun visit(element: CgPythonIterator) { + print("iter([") + element.elements.renderSeparated() + print("])") + } + override fun visit(element: CgPythonTree) { element.value.accept(this) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt index de93c4de42..d7540e30ec 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/visitor/CgPythonVisitor.kt @@ -14,7 +14,9 @@ interface CgPythonVisitor : CgVisitor { fun visit(element: CgPythonTuple): R fun visit(element: CgPythonList): R fun visit(element: CgPythonSet): R + fun visit(element: CgPythonIterator): R fun visit(element: CgPythonTree): R fun visit(element: CgPythonWith): R fun visit(element: CgPythonNamedArgument): R + fun visit(element: CgPythonZip): R } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt index 140eed8183..ee99e35997 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt @@ -1,20 +1,12 @@ package org.utbot.python.framework.codegen.model.tree -import org.utbot.framework.codegen.domain.models.CgAnnotation -import org.utbot.framework.codegen.domain.models.CgDocumentationComment import org.utbot.framework.codegen.domain.models.CgElement import org.utbot.framework.codegen.domain.models.CgExpression import org.utbot.framework.codegen.domain.models.CgLiteral -import org.utbot.framework.codegen.domain.models.CgMethod -import org.utbot.framework.codegen.domain.models.CgMethodCall -import org.utbot.framework.codegen.domain.models.CgParameterDeclaration import org.utbot.framework.codegen.domain.models.CgStatement -import org.utbot.framework.codegen.domain.models.CgTestMethod -import org.utbot.framework.codegen.domain.models.CgTestMethodType import org.utbot.framework.codegen.domain.models.CgValue import org.utbot.framework.codegen.domain.models.CgVariable import org.utbot.framework.codegen.renderer.CgVisitor -import org.utbot.framework.codegen.tree.VisibilityModifier import org.utbot.framework.plugin.api.ClassId import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree @@ -37,6 +29,8 @@ interface CgPythonElement : CgElement { is CgPythonTree -> visitor.visit(element) is CgPythonWith -> visitor.visit(element) is CgPythonNamedArgument -> visitor.visit(element) + is CgPythonIterator -> visitor.visit(element) + is CgPythonZip -> visitor.visit(element) else -> throw IllegalArgumentException("Can not visit element of type ${element::class}") } } else { @@ -95,6 +89,14 @@ class CgPythonRange( ) } +class CgPythonZip( + val first: CgValue, + val second: CgValue +): CgValue, CgPythonElement { + override val type: ClassId + get() = PythonClassId("builtins.zip") +} + class CgPythonList( val elements: List ) : CgValue, CgPythonElement { @@ -119,6 +121,12 @@ class CgPythonDict( override val type: PythonClassId = pythonDictClassId } +class CgPythonIterator( + val elements: List +) : CgValue, CgPythonElement { + override val type: PythonClassId = pythonIteratorClassId +} + data class CgPythonWith( val expression: CgExpression, val target: CgExpression?, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 28e5aa7ca3..d458d95a0a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -84,6 +84,7 @@ fun pythonDefaultValueProviders(typeStorage: PythonTypeHintsStorage) = listOf( RePatternValueProvider, ConstantValueProvider, TypeAliasValueProvider, + IteratorValueProvider, SubtypeValueProvider(typeStorage) ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt new file mode 100644 index 0000000000..e5483e4d5f --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt @@ -0,0 +1,37 @@ +package org.utbot.python.fuzzing.provider + +import org.utbot.fuzzing.Routine +import org.utbot.fuzzing.Seed +import org.utbot.fuzzing.ValueProvider +import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.framework.api.python.util.pythonIteratorClassId +import org.utbot.python.fuzzing.PythonFuzzedValue +import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utbot.python.newtyping.pythonTypeName +import org.utbot.python.newtyping.pythonTypeRepresentation + +object IteratorValueProvider : ValueProvider { + override fun accept(type: UtType): Boolean { + return type.pythonTypeName() == pythonIteratorClassId.canonicalName + } + + override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + val param = type.pythonAnnotationParameters() + yield( + Seed.Collection( + construct = Routine.Collection { + PythonFuzzedValue( + PythonTree.IteratorNode( + emptyMap().toMutableMap(), + ), + "%var% = ${type.pythonTypeRepresentation()}" + ) + }, + modify = Routine.ForEach(param) { self, i, values -> + (self.tree as PythonTree.IteratorNode).items[i] = values.first().tree + } + )) + } +} \ No newline at end of file From de8b0fab7f912fdbe3500a9c45879c4a5b46364e Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 20 Nov 2023 17:14:54 +0300 Subject: [PATCH 093/144] Add provider for Optional --- .../org/utbot/python/fuzzing/PythonApi.kt | 1 + .../fuzzing/provider/OptionalValueProvider.kt | 28 +++++++++++++++++++ .../fuzzing/provider/UnionValueProvider.kt | 3 +- 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index d458d95a0a..600b6851b6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -77,6 +77,7 @@ fun pythonDefaultValueProviders(typeStorage: PythonTypeHintsStorage) = listOf( DictValueProvider, TupleValueProvider, TupleFixSizeValueProvider, + OptionalValueProvider, UnionValueProvider, BytesValueProvider, BytearrayValueProvider, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt new file mode 100644 index 0000000000..de741012aa --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt @@ -0,0 +1,28 @@ +package org.utbot.python.fuzzing.provider + +import org.utbot.fuzzing.Routine +import org.utbot.fuzzing.Seed +import org.utbot.fuzzing.ValueProvider +import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.PythonFuzzedValue +import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.newtyping.PythonNoneTypeDescription +import org.utbot.python.newtyping.PythonUnionTypeDescription +import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.pythonAnnotationParameters + +object OptionalValueProvider : ValueProvider { + override fun accept(type: UtType): Boolean { + return type.meta is PythonUnionTypeDescription && type.parameters.any { it.meta is PythonNoneTypeDescription } + } + + override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + val params = type.pythonAnnotationParameters() + params.forEach { unionParam -> + yield(Seed.Recursive( + construct = Routine.Create(listOf(unionParam)) { v -> v.first() }, + empty = Routine.Empty { PythonFuzzedValue(PythonTree.fromNone()) } + )) + } + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt index 86388e67ea..e47811376a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt @@ -6,13 +6,14 @@ import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.newtyping.PythonNoneTypeDescription import org.utbot.python.newtyping.PythonUnionTypeDescription import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonAnnotationParameters object UnionValueProvider : ValueProvider { override fun accept(type: UtType): Boolean { - return type.meta is PythonUnionTypeDescription + return type.meta is PythonUnionTypeDescription && type.parameters.all { it.meta !is PythonNoneTypeDescription } } override fun generate(description: PythonMethodDescription, type: UtType) = sequence { From 8d4fd1ac08b68a4e52a3251dc9fbc2a2fa8bd9d6 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 20 Nov 2023 17:15:52 +0300 Subject: [PATCH 094/144] Use __new__ constructor in empty reduce object --- .../python/engine/fuzzing/FuzzingEngine.kt | 2 +- .../fuzzing/provider/ReduceValueProvider.kt | 34 +++++++++++++++---- .../utils/TestGenerationLimitManager.kt | 2 +- 3 files changed, 29 insertions(+), 9 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index bb5aa4ddf5..dfe5982875 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -232,7 +232,7 @@ class FuzzingEngine( if (arguments.any { PythonTree.containsFakeNode(it.tree) }) { logger.debug { "FakeNode in Python model" } - description.limitManager.addFakeNodeExecutions() +// description.limitManager.addFakeNodeExecutions() emit(FakeNodeFeedback) return@PythonFuzzing PythonFeedback(control = Control.CONTINUE) } else { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 5602394201..6de708a687 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -53,7 +53,7 @@ object ReduceValueProvider : ValueProvider> + modifications: Sequence>, + description: PythonMethodDescription, ): Seed.Recursive { - val description = constructorFunction.pythonDescription() as PythonCallableTypeDescription - val positionalArgs = description.argumentKinds.count { it == PythonCallableTypeDescription.ArgKind.ARG_POS } + val typeDescription = constructorFunction.pythonDescription() as PythonCallableTypeDescription + val positionalArgs = typeDescription.argumentKinds.count { it == PythonCallableTypeDescription.ArgKind.ARG_POS } val arguments = constructorFunction.arguments.take(positionalArgs) val nonSelfArgs = arguments.drop(1) @@ -112,14 +113,33 @@ object ReduceValueProvider : ValueProvider> + modifications: Sequence>, + description: PythonMethodDescription, ): Sequence> = sequence { val constructors = emptyList().toMutableList() if (constructor.type.pythonTypeName() == "Overload") { @@ -132,7 +152,7 @@ object ReduceValueProvider : ValueProvider Date: Mon, 20 Nov 2023 17:57:31 +0300 Subject: [PATCH 095/144] Update fake node limit --- .../kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt | 2 +- .../kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index dfe5982875..bb5aa4ddf5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -232,7 +232,7 @@ class FuzzingEngine( if (arguments.any { PythonTree.containsFakeNode(it.tree) }) { logger.debug { "FakeNode in Python model" } -// description.limitManager.addFakeNodeExecutions() + description.limitManager.addFakeNodeExecutions() emit(FakeNodeFeedback) return@PythonFuzzing PythonFeedback(control = Control.CONTINUE) } else { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt index ad50ee1dae..8d40d19a5d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/utils/TestGenerationLimitManager.kt @@ -9,7 +9,7 @@ class TestGenerationLimitManager( var executions: Int = 150, var invalidExecutions: Int = 10, var cacheNodeExecutions: Int = 20, - var fakeNodeExecutions: Int = 10, + var fakeNodeExecutions: Int = 40, var missedLines: Int? = null, val isRootManager: Boolean = false, ) { From 188e9f20db0a3f5c109b6203791bdc07ac300752 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 21 Nov 2023 15:08:21 +0300 Subject: [PATCH 096/144] Add stop iteration check --- .../utbot/python/framework/api/python/PythonTree.kt | 4 ++++ .../python/framework/api/python/util/PythonIdUtils.kt | 1 + .../constructor/tree/PythonCgMethodConstructor.kt | 11 +++++++++++ 3 files changed, 16 insertions(+) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt index 44c1f6004a..d883080877 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt @@ -21,6 +21,9 @@ import java.util.concurrent.atomic.AtomicLong object PythonTree { + + val MAX_ITERATOR_SIZE = 1000 + fun isRecursiveObject(tree: PythonTreeNode): Boolean { return isRecursiveObjectDFS(tree, mutableSetOf()) } @@ -218,6 +221,7 @@ object PythonTree { id: Long, val items: MutableMap ) : PythonTreeNode(id, pythonIteratorClassId) { + constructor(items: MutableMap) : this(PythonIdGenerator.createId(), items) override val children: List diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt index 9cdc967d8f..01d3b66e82 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonIdUtils.kt @@ -22,3 +22,4 @@ val pythonBytesClassId = PythonClassId("builtins.bytes") val pythonExceptionClassId = PythonClassId("builtins.Exception") val pythonIteratorClassId = PythonClassId("typing.Iterator") val pythonRePatternClassId = PythonClassId("re.Pattern") +val pythonStopIterationClassId = PythonClassId("builtins.StopIteration") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt index 73096c063c..aebb74cc8f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt @@ -21,6 +21,7 @@ import org.utbot.python.framework.api.python.* import org.utbot.python.framework.api.python.util.pythonExceptionClassId import org.utbot.python.framework.api.python.util.pythonIntClassId import org.utbot.python.framework.api.python.util.pythonNoneClassId +import org.utbot.python.framework.api.python.util.pythonStopIterationClassId import org.utbot.python.framework.codegen.PythonCgLanguageAssistant import org.utbot.python.framework.codegen.model.constructor.util.importIfNeeded import org.utbot.python.framework.codegen.model.tree.* @@ -369,6 +370,16 @@ class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(contex statements = currentBlock } } + if (expectedNode.items.size < PythonTree.MAX_ITERATOR_SIZE) { + testFrameworkManager.expectException(pythonStopIterationClassId) { + +CgPythonFunctionCall( + PythonClassId("builtins.next"), + "next", + listOf(actual) + ) + emptyLineIfNeeded() + } + } } private fun pythonDeepTreeEquals( From e6d27ca395e960f7a94ad9886cab01747dfdf55a Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 21 Nov 2023 15:08:42 +0300 Subject: [PATCH 097/144] Update constructor generation --- .../fuzzing/provider/ReduceValueProvider.kt | 98 +++++++++++++------ 1 file changed, 69 insertions(+), 29 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 6de708a687..f740f4d3da 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -73,21 +73,21 @@ object ReduceValueProvider : ValueProvider p.getPythonAttributes().any { it.meta.name == initMethodName } } - val newParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == newMethodName } } - val initMethods = type.getPythonAttributeByName(description.pythonTypeStorage, initMethodName) - val newMethods = type.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) - if (initParent <= newParent && initMethods != null) { - listOf(initMethods) - } else if (newMethods != null) { - listOf(newMethods) - } else { - emptyList() // probably not reachable (because of class object) - } + val mro = typeDescr.mro(description.pythonTypeStorage, type) + val initParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == initMethodName } } + val newParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == newMethodName } } + val initMethods = type.getPythonAttributeByName(description.pythonTypeStorage, initMethodName) + val newMethods = type.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) + if (initParent <= newParent && initMethods != null) { + listOf(initMethods) + } else if (newMethods != null) { + listOf(newMethods) } else { - emptyList() + emptyList() // probably not reachable (because of class object) } + } else { + emptyList() + } } private fun constructObject( @@ -96,22 +96,8 @@ object ReduceValueProvider : ValueProvider>, description: PythonMethodDescription, ): Seed.Recursive { - val typeDescription = constructorFunction.pythonDescription() as PythonCallableTypeDescription - val positionalArgs = typeDescription.argumentKinds.count { it == PythonCallableTypeDescription.ArgKind.ARG_POS } - val arguments = constructorFunction.arguments.take(positionalArgs) - val nonSelfArgs = arguments.drop(1) - return Seed.Recursive( - construct = Routine.Create(nonSelfArgs) { v -> - PythonFuzzedValue( - PythonTree.ReduceNode( - PythonClassId(type.pythonModuleName(), type.pythonName()), - PythonClassId(type.pythonModuleName(), type.pythonName()), - v.map { it.tree }, - ), - "%var% = ${type.pythonTypeRepresentation()}" - ) - }, + construct = buildConstructor(type, constructorFunction, description), modify = modifications, empty = Routine.Empty { PythonFuzzedValue(buildEmptyValue(type, description)) } ) @@ -120,7 +106,7 @@ object ReduceValueProvider : ValueProvider { + if (constructorFunction.pythonName().endsWith("__new__") && constructorFunction.arguments.any { it.isAny() }) { + val newMethodName = "__new__" + val newMethod = type.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) + val newMethodArgs = (newMethod?.type as FunctionType?)?.arguments + return if (newMethodArgs != null && newMethodArgs.size == 1) { + val classId = PythonClassId(type.pythonModuleName(), type.pythonName()) + Routine.Create(newMethodArgs) { v -> + PythonFuzzedValue( + PythonTree.ReduceNode( + classId, + PythonClassId(type.pythonModuleName(), "${type.pythonName()}.__new__"), + listOf(PythonTree.PrimitiveNode(classId, classId.name)), + ), + "%var% = ${type.pythonTypeRepresentation()}" + ) + } + } else { + val classId = PythonClassId(type.pythonModuleName(), type.pythonName()) + Routine.Create(listOf(pythonNoneType)) { v -> + PythonFuzzedValue( + PythonTree.ReduceNode( + classId, + PythonClassId(pythonObjectClassId.name, "${type.pythonName()}.__new__"), + listOf(PythonTree.PrimitiveNode(classId, classId.name)), + ), + "%var% = ${type.pythonTypeRepresentation()}" + ) + } + } + } else { + val typeDescription = constructorFunction.pythonDescription() as PythonCallableTypeDescription + val positionalArgs = typeDescription.argumentKinds.count { it == PythonCallableTypeDescription.ArgKind.ARG_POS } + val arguments = constructorFunction.arguments.take(positionalArgs) + val nonSelfArgs = arguments.drop(1) + return Routine.Create(nonSelfArgs) { v -> + PythonFuzzedValue( + PythonTree.ReduceNode( + PythonClassId(type.pythonModuleName(), type.pythonName()), + PythonClassId(type.pythonModuleName(), type.pythonName()), + v.map { it.tree }, + ), + "%var% = ${type.pythonTypeRepresentation()}" + ) + } + } + } + + + private fun callConstructors( type: UtType, constructor: PythonDefinition, From 6cd18c8178141ec1a1e8f08e11add84c5bbed1b5 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 21 Nov 2023 17:46:51 +0300 Subject: [PATCH 098/144] Fix FakeNode in ComplexValueProvider --- .../fuzzing/provider/ComplexValueProvider.kt | 42 ++++++++++--------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt index c756cd20eb..c736add44b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt @@ -24,6 +24,14 @@ object ComplexValueProvider : ValueProvider - val real = v[0].tree as PythonTree.PrimitiveNode - val imag = v[1].tree as PythonTree.PrimitiveNode - val repr = "complex(real=${real.repr}, imag=${imag.repr})" - PythonFuzzedValue( - PythonTree.PrimitiveNode( - pythonComplexClassId, - repr - ), - "%var% = $repr" - ) + if (v[0].tree is PythonTree.FakeNode || v[1].tree is PythonTree.FakeNode) { + emptyValue + } else { + val real = v[0].tree as PythonTree.PrimitiveNode + val imag = v[1].tree as PythonTree.PrimitiveNode + val repr = "complex(real=${real.repr}, imag=${imag.repr})" + PythonFuzzedValue( + PythonTree.PrimitiveNode( + pythonComplexClassId, + repr + ), + "%var% = $repr" + ) + } }, - empty = Routine.Empty { - PythonFuzzedValue( - PythonTree.PrimitiveNode( - pythonComplexClassId, - "complex()" - ), - "%var% = ${type.pythonTypeRepresentation()}" - ) - } + empty = Routine.Empty { emptyValue } )) } } \ No newline at end of file From b49f34f8cd3609fc88657ee0c1d6629b149b58cf Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 23 Nov 2023 11:58:51 +0300 Subject: [PATCH 099/144] Support staticmethod decorators --- .../plugin/python/PythonDialogProcessor.kt | 16 +- .../org/utbot/intellij/plugin/python/Utils.kt | 10 +- .../python/PythonTestGenerationProcessor.kt | 39 ++- .../kotlin/org/utbot/python/UTPythonAPI.kt | 253 ++++++++++++++++-- .../utbot/python/engine/GlobalPythonEngine.kt | 4 +- .../python/engine/fuzzing/FuzzingEngine.kt | 6 +- .../typeinference/FunctionAnnotationUtils.kt | 50 +--- .../evaluation/PythonCodeSocketExecutor.kt | 2 +- .../codegen/model/PythonCodeGenerator.kt | 2 +- .../utbot/python/newtyping/ast/ParseUtils.kt | 27 +- .../ast/visitor/hints/HintCollector.kt | 9 +- .../inference/TypeInferenceProcessor.kt | 10 +- .../inference/baseline/BaselineAlgorithm.kt | 7 +- .../utbot/python/newtyping/mypy/RunDMypy.kt | 2 +- 14 files changed, 326 insertions(+), 111 deletions(-) diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt index 7ce9a5c84b..e360628261 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/PythonDialogProcessor.kt @@ -29,6 +29,7 @@ import org.utbot.common.PathUtil.toPath import org.utbot.framework.plugin.api.util.LockFile import org.utbot.intellij.plugin.settings.Settings import org.utbot.intellij.plugin.ui.utils.showErrorDialogLater +import org.utbot.python.PyDecorator import org.utbot.python.PythonMethodHeader import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.utils.RequirementsInstaller @@ -178,10 +179,17 @@ object PythonDialogProcessor { val moduleFilename = it.containingFile.virtualFile?.canonicalPath ?: "" val containingClassId = it.containingClass?.qualifiedName?.let{ cls -> PythonClassId(cls) } PythonMethodHeader( - functionName, - moduleFilename, - containingClassId, - ) + functionName, + moduleFilename, + containingClassId, + it.decoratorList?.decorators?.mapNotNull { decorator -> + decorator.name?.let { name -> + PyDecorator.decoratorByName( + name + ) + } + } ?: emptyList() + ) } .toSet() .toList() diff --git a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt index 783126ffcc..21fa5b9969 100644 --- a/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt +++ b/utbot-intellij-python/src/main/kotlin/org/utbot/intellij/plugin/python/Utils.kt @@ -52,10 +52,12 @@ fun checkModuleIsInstalled(pythonPath: String, moduleName: String): Boolean { return RequirementsUtils.requirementsAreInstalled(pythonPath, listOf(moduleName)) } -fun fineFunction(function: PyFunction): Boolean = - !listOf("__init__", "__new__").contains(function.name) && - function.decoratorList?.decorators?.isNotEmpty() != true // TODO: add processing of simple decorators - //(function.parent !is PyDecorator || (function.parent as PyDecorator).isBuiltin) +fun fineFunction(function: PyFunction): Boolean { + val hasNotConstructorName = !listOf("__init__", "__new__").contains(function.name) + val decoratorNames = function.decoratorList?.decorators?.mapNotNull { it?.qualifiedName } + val knownDecorators = decoratorNames?.all { it.toString() in listOf("staticmethod") } ?: true + return hasNotConstructorName && knownDecorators +} fun fineClass(pyClass: PyClass): Boolean = getAncestors(pyClass).dropLast(1).all { it !is PyClass && it !is PyFunction } && diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 45e142af46..3b71df037e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -117,7 +117,7 @@ abstract class PythonTestGenerationProcessor { val methodIds = testSets.associate { testSet -> testSet.method to PythonMethodId( classId, - testSet.method.name, + testSet.method.renderMethodName(), RawPythonAnnotation(pythonAnyClassId.name), testSet.method.arguments.map { argument -> argument.annotation?.let { annotation -> @@ -233,7 +233,7 @@ abstract class PythonTestGenerationProcessor { ): PythonMethod { var containingClass: CompositeType? = null val containingClassName = method.containingPythonClassId?.simpleName - val functionDef = if (containingClassName == null) { + val definition = if (containingClassName == null) { mypyStorage.definitions[curModule]!![method.name]!!.getUtBotDefinition()!! } else { containingClass = @@ -241,19 +241,34 @@ abstract class PythonTestGenerationProcessor { mypyStorage.definitions[curModule]!![containingClassName]!!.type.asUtBotType.getPythonAttributes().first { it.meta.name == method.name } - } as? PythonFunctionDefinition ?: throw SelectedMethodIsNotAFunctionDefinition(method.name) - + } val parsedFile = PythonParser(sourceFileContent).Module() val funcDef = PythonCode.findFunctionDefinition(parsedFile, method) + val decorators = funcDef.decorators.map { PyDecorator.decoratorByName(it.name.toString()) } + + if (definition is PythonFunctionDefinition) { + return PythonBaseMethod( + name = method.name, + moduleFilename = method.moduleFilename, + containingPythonClass = containingClass, + codeAsString = funcDef.body.source, + definition = definition, + ast = funcDef.body + ) + } else if (decorators == listOf(PyDecorator.StaticMethod)) { + return PythonDecoratedMethod( + name = method.name, + moduleFilename = method.moduleFilename, + containingPythonClass = containingClass, + codeAsString = funcDef.body.source, + definition = definition, + ast = funcDef.body, + decorator = method.decorators.first() + ) + } else { + throw SelectedMethodIsNotAFunctionDefinition(method.name) + } - return PythonMethod( - name = method.name, - moduleFilename = method.moduleFilename, - containingPythonClass = containingClass, - codeAsString = funcDef.body.source, - definition = functionDef, - ast = funcDef.body - ) } private fun relativizePaths(rootPath: Path?, paths: Set): Set = diff --git a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt index ecdbe9de48..cb43166c6f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -9,7 +9,9 @@ import org.utbot.python.framework.api.python.PythonTreeModel import org.utbot.python.framework.api.python.util.pythonAnyClassId import org.utbot.python.newtyping.* import org.utbot.python.newtyping.general.CompositeType +import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.utils.isNamed +import org.utbot.python.newtyping.utils.isRequired data class PythonArgument( val name: String, @@ -20,19 +22,45 @@ data class PythonArgument( class PythonMethodHeader( val name: String, val moduleFilename: String, - val containingPythonClassId: PythonClassId? + val containingPythonClassId: PythonClassId?, + val decorators: List = emptyList(), ) -class PythonMethod( - val name: String, - val moduleFilename: String, - val containingPythonClass: CompositeType?, - val codeAsString: String, - var definition: PythonFunctionDefinition, + +interface PythonMethod { + val name: String + val moduleFilename: String + val containingPythonClass: CompositeType? + val codeAsString: String val ast: Block -) { - fun methodSignature(): String = "$name(" + arguments.joinToString(", ") { + fun methodSignature(): String + val hasThisArgument: Boolean + val arguments: List + val argumentsWithoutSelf: List + val thisObjectName: String? + val argumentsNames: List + val argumentsNamesWithoutSelf: List + + val methodType: FunctionType + val methodMeta: PythonDefinitionDescription + + fun makeCopyWithNewType(newFunctionType: FunctionType): PythonMethod + fun createShortForm(): Pair? + fun changeDefinition(signature: FunctionType) + + fun renderMethodName(): String +} + +class PythonBaseMethod( + override val name: String, + override val moduleFilename: String, + override val containingPythonClass: CompositeType?, + override val codeAsString: String, + private var definition: PythonFunctionDefinition, + override val ast: Block +) : PythonMethod { + override fun methodSignature(): String = "$name(" + arguments.joinToString(", ") { "${it.name}: ${it.annotation ?: pythonAnyClassId.name}" } + ")" @@ -40,29 +68,173 @@ class PythonMethod( Check that the first argument is `self` of `cls`. TODO: We should support `@property` decorator */ - val hasThisArgument: Boolean + override val hasThisArgument: Boolean get() = containingPythonClass != null && definition.meta.args.any { it.isSelf } - val arguments: List + override val arguments: List + get() { + val meta = definition.type.pythonDescription() as PythonCallableTypeDescription + return (definition.type.arguments).mapIndexed { index, type -> + PythonArgument( + meta.argumentNames[index]!!, + type.pythonTypeRepresentation(), // TODO: improve pythonTypeRepresentation + isNamed(meta.argumentKinds[index]) + ) + } + } + + override val argumentsWithoutSelf: List + get() = if (hasThisArgument) arguments.drop(1) else arguments + + override val thisObjectName: String? + get() = if (hasThisArgument) arguments[0].name else null + + override val argumentsNames: List + get() = arguments.map { it.name } + + override val argumentsNamesWithoutSelf: List + get() = argumentsNames.drop(if (hasThisArgument) 1 else 0) + + override val methodType: FunctionType = definition.type + + override val methodMeta: PythonDefinitionDescription = definition.meta + + override fun makeCopyWithNewType(newFunctionType: FunctionType): PythonMethod { + val newDefinition = PythonFunctionDefinition(definition.meta, newFunctionType) + return PythonBaseMethod(name, moduleFilename, containingPythonClass, codeAsString, newDefinition, ast) + } + + override fun createShortForm(): Pair? { + val meta = methodType.pythonDescription() as PythonCallableTypeDescription + val argKinds = meta.argumentKinds + if (argKinds.any { !isRequired(it) }) { + val originalDef = definition + val shortType = meta.removeNotRequiredArgs(originalDef.type) + val shortMeta = PythonFuncItemDescription( + originalDef.meta.name, + originalDef.meta.args.filterIndexed { index, _ -> isRequired(argKinds[index]) } + ) + val additionalVars = originalDef.meta.args + .filterIndexed { index, _ -> !isRequired(argKinds[index]) } + .mapIndexed { index, arg -> + "${arg.name}: ${argumentsWithoutSelf[index].annotation ?: pythonAnyType.pythonTypeRepresentation()}" + } + .joinToString(separator = "\n", prefix = "\n") + val shortDef = PythonFunctionDefinition(shortMeta, shortType) + val shortMethod = PythonBaseMethod( + name, + moduleFilename, + containingPythonClass, + codeAsString, + shortDef, + ast + ) + return Pair(shortMethod, additionalVars) + } + return null + } + + fun changeDefinition(newDefinition: PythonDefinition) { + require(newDefinition is PythonFunctionDefinition) + definition = newDefinition + } + + override fun changeDefinition(signature: FunctionType) { + val newDefinition = PythonFunctionDefinition( + definition.meta, + signature + ) + changeDefinition(newDefinition) + } + + override fun renderMethodName(): String { + return name + } +} + +class PythonDecoratedMethod( + override val name: String, + override val moduleFilename: String, + override val containingPythonClass: CompositeType?, + override val codeAsString: String, + private var definition: PythonDefinition, + override val ast: Block, + val decorator: PyDecorator, +) : PythonMethod { + override val methodType: FunctionType = definition.type as FunctionType + override val methodMeta: PythonDefinitionDescription = definition.meta + val typeMeta: PythonCallableTypeDescription = definition.type.pythonDescription() as PythonCallableTypeDescription + + fun changeDefinition(newDefinition: PythonDefinition) { + require(checkDefinition(newDefinition)) { error("Cannot test non-function object") } + definition = newDefinition + } + + override fun changeDefinition(signature: FunctionType) { + val newDefinition = PythonDefinition( + methodMeta, + signature + ) + checkDefinition(newDefinition) + changeDefinition(newDefinition) + } + + override fun renderMethodName(): String { + return decorator.generateCallableName(this) + } + + override fun makeCopyWithNewType(newFunctionType: FunctionType): PythonMethod { + val newDefinition = PythonDefinition(methodMeta, newFunctionType) + return PythonDecoratedMethod( + name, moduleFilename, containingPythonClass, codeAsString, newDefinition, ast, decorator + ) + } + + override fun createShortForm(): Pair? = null + + init { + assert(checkDefinition(definition)) { error("Cannot test non-function object") } + } + override fun methodSignature(): String = "${decorator.generateCallableName(this)}(" + arguments.joinToString(", ") { + "${it.name}: ${it.annotation ?: pythonAnyClassId.name}" + } + ")" + + /* + Check that the first argument is `self` of `cls`. + */ + override val hasThisArgument: Boolean + get() = containingPythonClass != null && decorator.hasSelfArgument() + + override val arguments: List get() { - val meta = definition.type.pythonDescription() as PythonCallableTypeDescription - return (definition.type.arguments).mapIndexed { index, type -> + return (methodType.arguments).mapIndexed { index, type -> PythonArgument( - meta.argumentNames[index]!!, + typeMeta.argumentNames[index] ?: "arg$index", type.pythonTypeRepresentation(), // TODO: improve pythonTypeRepresentation - isNamed(meta.argumentKinds[index]) + isNamed(typeMeta.argumentKinds[index]) ) } } - val argumentsWithoutSelf: List + override val argumentsWithoutSelf: List get() = if (hasThisArgument) arguments.drop(1) else arguments - val thisObjectName: String? + override val thisObjectName: String? get() = if (hasThisArgument) arguments[0].name else null - val argumentsNames: List - get() = arguments.map { it.name }.drop(if (hasThisArgument) 1 else 0) + override val argumentsNames: List + get() = arguments.map { it.name } + + override val argumentsNamesWithoutSelf: List + get() = argumentsNames.drop(if (hasThisArgument) 1 else 0) + + companion object { + fun checkDefinition(definition: PythonDefinition): Boolean { + val type = definition.type + val meta = definition.type.pythonDescription() + return type is FunctionType && meta is PythonCallableTypeDescription + } + } } data class PythonTestSet( @@ -80,4 +252,47 @@ data class FunctionArguments( val names: List, ) { val allArguments: List = (listOf(thisObject) + arguments).filterNotNull() +} + +sealed interface PyDecorator { + fun generateCallableName(method: PythonMethod, baseName: String? = null): String + fun hasSelfArgument(): Boolean + val type: PythonClassId + + object StaticMethod : PyDecorator { + override fun generateCallableName(method: PythonMethod, baseName: String?) = + "${method.containingPythonClass!!.pythonName()}.${method.name}" + + override fun hasSelfArgument() = false + + override val type: PythonClassId = PythonClassId("staticmethod") + } + + object ClassMethod : PyDecorator { + override fun generateCallableName(method: PythonMethod, baseName: String?) = + "${method.containingPythonClass!!.pythonName()}.${method.name}" + + override fun hasSelfArgument() = true + + override val type: PythonClassId = PythonClassId("classmethod") + } + + class UnknownDecorator( + override val type: PythonClassId, + ) : PyDecorator { + override fun generateCallableName(method: PythonMethod, baseName: String?) = + baseName ?: method.name + + override fun hasSelfArgument() = true + } + + companion object { + fun decoratorByName(decoratorName: String): PyDecorator { + return when (decoratorName) { + "classmethod" -> ClassMethod + "staticmethod" -> StaticMethod + else -> UnknownDecorator(PythonClassId(decoratorName)) + } + } + } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 1213174c6e..8a54f8679a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -78,7 +78,7 @@ class GlobalPythonEngine( USVMPythonMethodConfig( configuration.testFileInformation.moduleName, method.name, - method.containingPythonClass.pythonName() + method.containingPythonClass!!.pythonName() ) } val engine = SymbolicEngine( @@ -153,7 +153,7 @@ class GlobalPythonEngine( } ?: emptyMap() val namesStorage = GlobalNamesStorage(mypyStorage) - val hintCollector = HintCollector(method.definition, typeStorage, mypyExpressionTypes, namesStorage, moduleName) + val hintCollector = HintCollector(method, typeStorage, mypyExpressionTypes, namesStorage, moduleName) val visitor = Visitor(listOf(hintCollector, constantCollector)) visitor.visit(method.ast) return hintCollector diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index bb5aa4ddf5..490fba98f5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -206,11 +206,11 @@ class FuzzingEngine( Trie(PyInstruction::id), Random(0), TestGenerationLimitManager(ExecutionWithTimoutMode, until, isRootManager = true), - method.definition.type, + method.methodType, ) try { - val parameters = method.definition.type.arguments + val parameters = method.methodType.arguments if (parameters.isEmpty()) { val result = fuzzingResultHandler(pmd, emptyList(), parameters, manager) result?.let { @@ -397,7 +397,7 @@ class FuzzingEngine( thisObject, method.thisObjectName, modelList, - method.argumentsNames + method.argumentsNamesWithoutSelf ) try { val coverageId = CoverageIdGenerator.createId() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt index 14ed3c0816..7702129565 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt @@ -1,13 +1,9 @@ package org.utbot.python.engine.fuzzing.typeinference import org.utbot.python.PythonMethod -import org.utbot.python.newtyping.PythonCallableTypeDescription -import org.utbot.python.newtyping.PythonFuncItemDescription -import org.utbot.python.newtyping.PythonFunctionDefinition import org.utbot.python.newtyping.PythonSubtypeChecker import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.PythonTypeVarDescription -import org.utbot.python.newtyping.general.CompositeType import org.utbot.python.newtyping.general.DefaultSubstitutionProvider import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.general.TypeParameter @@ -15,11 +11,8 @@ import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.general.getBoundedParameters import org.utbot.python.newtyping.general.hasBoundedParameters import org.utbot.python.newtyping.getPythonAttributeByName -import org.utbot.python.newtyping.pythonAnyType import org.utbot.python.newtyping.pythonDescription import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -import org.utbot.python.newtyping.utils.isRequired import org.utbot.python.utils.PriorityCartesianProduct private const val MAX_SUBSTITUTIONS = 10 @@ -66,51 +59,14 @@ fun substituteTypeParameters( } ?: listOf(null) return newClasses.flatMap { newClass -> val funcType = newClass?.getPythonAttributeByName(typeStorage, method.name)?.type as? FunctionType - ?: method.definition.type + ?: method.methodType val newFuncTypes = generateTypesAfterSubstitution(funcType, typeStorage) newFuncTypes.map { newFuncType -> - val def = PythonFunctionDefinition(method.definition.meta, newFuncType as FunctionType) - PythonMethod( - method.name, - method.moduleFilename, - newClass as? CompositeType, - method.codeAsString, - def, - method.ast - ) + method.makeCopyWithNewType(newFuncType as FunctionType) } }.take(MAX_SUBSTITUTIONS) } -fun createShortForm(method: PythonMethod): Pair? { - val meta = method.definition.type.pythonDescription() as PythonCallableTypeDescription - val argKinds = meta.argumentKinds - if (argKinds.any { !isRequired(it) }) { - val originalDef = method.definition - val shortType = meta.removeNotRequiredArgs(originalDef.type) - val shortMeta = PythonFuncItemDescription( - originalDef.meta.name, - originalDef.meta.args.filterIndexed { index, _ -> isRequired(argKinds[index]) } - ) - val additionalVars = originalDef.meta.args - .filterIndexed { index, _ -> !isRequired(argKinds[index]) } - .mapIndexed { index, arg -> - "${arg.name}: ${method.argumentsWithoutSelf[index].annotation ?: pythonAnyType.pythonTypeRepresentation()}" - } - .joinToString(separator = "\n", prefix = "\n") - val shortDef = PythonFunctionDefinition(shortMeta, shortType) - val shortMethod = PythonMethod( - method.name, - method.moduleFilename, - method.containingPythonClass, - method.codeAsString, - shortDef, - method.ast - ) - return Pair(shortMethod, additionalVars) - } - return null -} data class ModifiedAnnotation( val method: PythonMethod, @@ -123,7 +79,7 @@ fun createMethodAnnotationModifications( ): List { return substituteTypeParameters(method, typeStorage).flatMap { newMethod -> listOfNotNull( - createShortForm(newMethod), + newMethod.createShortForm(), (newMethod to "") ) }.map { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index 148ad71561..8b6a7f5427 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -59,7 +59,7 @@ class PythonCodeSocketExecutor( ): PythonEvaluationResult { val (arguments, memory) = serializeObjects(fuzzedValues.allArguments.map { it.tree }) - val meta = method.definition.type.pythonDescription() as PythonCallableTypeDescription + val meta = method.methodType.pythonDescription() as PythonCallableTypeDescription val argKinds = meta.argumentKinds val namedArgs = meta.argumentNames .filterIndexed { index, _ -> !isNamed(argKinds[index]) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt index 454ddac11c..963881a023 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt @@ -106,7 +106,7 @@ class PythonCodeGenerator( imports.forEach { renderer.renderPythonImport(it) } - val paramNames = method.definition.meta.args.map { it.name } + val paramNames = method.argumentsNamesWithoutSelf val parameters = paramNames.map { argument -> "${argument}: ${methodAnnotations[argument]?.pythonTypeRepresentation() ?: pythonAnyType.pythonTypeRepresentation()}" } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ParseUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ParseUtils.kt index 67fe571639..eb1fb54d15 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ParseUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/ParseUtils.kt @@ -4,7 +4,7 @@ import org.parsers.python.Node import org.parsers.python.PythonConstants import org.parsers.python.ast.* -data class ParsedFunctionDefinition(val name: Name, val body: Block) +data class ParsedFunctionDefinition(val name: Name, val body: Block, val decorators: List) data class ParsedClassDefinition(val name: Name, val body: Block) data class ParsedForStatement(val forVariable: ForVariable, val iterable: Node) sealed class ForVariable @@ -30,11 +30,13 @@ data class ParsedDotName(val head: Node, val tail: Node) data class ParsedFunctionCall(val function: Node, val args: List) data class ParsedComparison(val cases: List) data class PrimitiveComparison(val left: Node, val op: Delimiter, val right: Node) +data class ParsedDecorator(val name: Name, val arguments: InvocationArguments? = null) fun parseFunctionDefinition(node: FunctionDefinition): ParsedFunctionDefinition? { val name = (node.children().first { it is Name } ?: return null) as Name val body = (node.children().find { it is Block } ?: return null) as Block - return ParsedFunctionDefinition(name, body) + val decoratorNodes = node.children().filterIsInstance().firstOrNull() + return ParsedFunctionDefinition(name, body, parseDecorators(decoratorNodes)) } fun parseClassDefinition(node: ClassDefinition): ParsedClassDefinition? { @@ -189,4 +191,23 @@ fun parseComparison(node: Comparison): ParsedComparison { primitives.add(PrimitiveComparison(children[i], children[i + 1] as Delimiter, children[i + 2])) } return ParsedComparison(primitives) -} \ No newline at end of file +} + +fun parseDecorators(decoratorNodes: Decorators?): List { + return decoratorNodes?.children()?.let { + val decoratorIndexes = + it.mapIndexedNotNull { index, node -> if (node is Delimiter && node.tokenType == PythonConstants.TokenType.AT) index + 1 else null } + decoratorIndexes.mapNotNull { index -> + val decorator = it[index] + when (decorator) { + is Name -> ParsedDecorator(decorator) + is FunctionCall -> { + val name = decorator.children().filterIsInstance().first() + val args = decorator.children().filterIsInstance().first() + ParsedDecorator(name, args) + } + else -> null + } + } + } ?: emptyList() +} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt index 2e0adb4482..06cbbf57ba 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/HintCollector.kt @@ -3,6 +3,7 @@ package org.utbot.python.newtyping.ast.visitor.hints import org.parsers.python.Node import org.parsers.python.PythonConstants import org.parsers.python.ast.* +import org.utbot.python.PythonMethod import org.utbot.python.newtyping.* import org.utbot.python.newtyping.ast.* import org.utbot.python.newtyping.ast.visitor.Collector @@ -15,14 +16,14 @@ import org.utbot.python.newtyping.mypy.GlobalNamesStorage import java.util.* class HintCollector( - private val function: PythonFunctionDefinition, + private val function: PythonMethod, private val storage: PythonTypeHintsStorage, private val mypyTypes: Map, UtType>, private val globalNamesStorage: GlobalNamesStorage, private val moduleOfSources: String ) : Collector() { private val parameterToNode: Map = - (function.meta.args.map { it.name } zip function.type.arguments).associate { + (function.argumentsNames zip function.methodType.arguments).associate { it.first to HintCollectorNode(it.second) } private val astNodeToHintCollectorNode: MutableMap = mutableMapOf() @@ -30,7 +31,7 @@ class HintCollector( private val blockStack = Stack() init { - val argNames = function.meta.args.map { it.name } + val argNames = function.argumentsNames assert(argNames.all { it != "" }) identificationToNode[null] = mutableMapOf() argNames.forEach { @@ -45,7 +46,7 @@ class HintCollector( if (!allNodes.contains(it.value)) collectAllNodes(it.value, allNodes) } - result = HintCollectorResult(parameterToNode, function.type, allNodes) + result = HintCollectorResult(parameterToNode, function.methodType, allNodes) } private fun collectAllNodes(cur: HintCollectorNode, visited: MutableSet) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt index be372bde78..e62c6efce1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt @@ -4,7 +4,7 @@ import kotlinx.coroutines.runBlocking import org.parsers.python.PythonParser import org.parsers.python.ast.ClassDefinition import org.parsers.python.ast.FunctionDefinition -import org.utbot.python.PythonMethod +import org.utbot.python.PythonBaseMethod import org.utbot.python.newtyping.* import org.utbot.python.newtyping.ast.parseClassDefinition import org.utbot.python.newtyping.ast.parseFunctionDefinition @@ -84,7 +84,7 @@ class TypeInferenceProcessor( } val namesStorage = GlobalNamesStorage(mypyBuild) val collector = - HintCollector(pythonMethod.definition, typeStorage, mypyExpressionTypes, namesStorage, moduleOfSourceFile) + HintCollector(pythonMethod, typeStorage, mypyExpressionTypes, namesStorage, moduleOfSourceFile) val visitor = Visitor(listOf(collector)) visitor.visit(pythonMethod.ast) @@ -122,7 +122,7 @@ class TypeInferenceProcessor( } } - private fun getPythonMethod(mypyInfoBuild: MypyInfoBuild, typeStorage: PythonTypeHintsStorage): Optional { + private fun getPythonMethod(mypyInfoBuild: MypyInfoBuild, typeStorage: PythonTypeHintsStorage): Optional { if (className == null) { val funcDef = parsedFile.children().firstNotNullOfOrNull { node -> val res = (node as? FunctionDefinition)?.let { parseFunctionDefinition(it) } @@ -133,7 +133,7 @@ class TypeInferenceProcessor( mypyInfoBuild.definitions[moduleOfSourceFile]!![functionName]!!.getUtBotDefinition() as? PythonFunctionDefinition ?: return Fail("$functionName is not a function") - val result = PythonMethod( + val result = PythonBaseMethod( functionName, path.toString(), null, @@ -160,7 +160,7 @@ class TypeInferenceProcessor( println(defOfFunc.type.pythonTypeRepresentation()) - val result = PythonMethod( + val result = PythonBaseMethod( functionName, path.toString(), typeOfClass, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index 6cacd22184..227d0aa0e2 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -187,10 +187,7 @@ class BaselineAlgorithm( } private fun checkSignature(signature: FunctionType, fileForMypyRuns: File, configFile: File): Boolean { - pythonMethodCopy.definition = PythonFunctionDefinition( - pythonMethodCopy.definition.meta, - signature - ) + pythonMethodCopy.changeDefinition(signature) return checkSuggestedSignatureWithDMypy( pythonMethodCopy, directoriesForSysPath, @@ -215,7 +212,7 @@ class BaselineAlgorithm( generalRating: List ): BaselineAlgorithmState { val paramNames = pythonMethodCopy.arguments.map { it.name } - val root = PartialTypeNode(pythonMethodCopy.definition.type, true) + val root = PartialTypeNode(pythonMethodCopy.methodType, true) val allNodes: MutableSet = mutableSetOf(root) val argumentRootNodes = paramNames.map { hintCollectorResult.parameterToNode[it]!! } argumentRootNodes.forEachIndexed { index, node -> diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt index 882df30812..aec2fa1cac 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/mypy/RunDMypy.kt @@ -41,7 +41,7 @@ fun checkSuggestedSignatureWithDMypy( timeout: Long? = null ): Boolean { val annotationMap = - (method.definition.meta.args.map { it.name } zip method.definition.type.arguments).associate { + (method.argumentsNames zip method.methodType.arguments).associate { Pair(it.first, it.second) } val mypyCode = generateMypyCheckCode(method, annotationMap, directoriesForSysPath, moduleToImport, namesInModule, additionalVars) From 6e0ac634ddc85567767ca30221fa7bef9b173cd0 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 23 Nov 2023 11:58:51 +0300 Subject: [PATCH 100/144] Fix exception in removing arguments function --- .../org/utbot/python/newtyping/PythonType.kt | 32 +++++++++++-------- .../python/PythonTestGenerationProcessor.kt | 2 +- .../kotlin/org/utbot/python/UTPythonAPI.kt | 2 +- 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt index e806d76f7b..0a8db02014 100644 --- a/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt +++ b/utbot-python-types/src/main/kotlin/org/utbot/python/newtyping/PythonType.kt @@ -228,22 +228,26 @@ class PythonCallableTypeDescription( } } - fun removeNotRequiredArgs(type: UtType): FunctionType { + fun removeNotRequiredArgs(type: UtType): FunctionType? { val functionType = castToCompatibleTypeApi(type) - return createPythonCallableType( - functionType.parameters.size, - argumentKinds.filter { isRequired(it) }, - argumentNames.filterIndexed { index, _ -> isRequired(argumentKinds[index]) } - ) { self -> - val substitution = (functionType.parameters zip self.parameters).associate { - Pair(it.first as TypeParameter, it.second) + try { + return createPythonCallableType( + functionType.parameters.size, + argumentKinds.filter { isRequired(it) }, + argumentNames.filterIndexed { index, _ -> isRequired(argumentKinds[index]) } + ) { self -> + val substitution = (functionType.parameters zip self.parameters).associate { + Pair(it.first as TypeParameter, it.second) + } + FunctionTypeCreator.InitializationData( + functionType.arguments + .filterIndexed { index, _ -> isRequired(argumentKinds[index]) } + .map { DefaultSubstitutionProvider.substitute(it, substitution) }, + DefaultSubstitutionProvider.substitute(functionType.returnValue, substitution) + ) } - FunctionTypeCreator.InitializationData( - functionType.arguments - .filterIndexed { index, _ -> isRequired(argumentKinds[index]) } - .map { DefaultSubstitutionProvider.substitute(it, substitution) }, - DefaultSubstitutionProvider.substitute(functionType.returnValue, substitution) - ) + } catch (_: ClassCastException) { + return null } } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 3b71df037e..ded08c9825 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -263,7 +263,7 @@ abstract class PythonTestGenerationProcessor { codeAsString = funcDef.body.source, definition = definition, ast = funcDef.body, - decorator = method.decorators.first() + decorator = decorators.first() ) } else { throw SelectedMethodIsNotAFunctionDefinition(method.name) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt index cb43166c6f..735cea815e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -109,7 +109,7 @@ class PythonBaseMethod( val argKinds = meta.argumentKinds if (argKinds.any { !isRequired(it) }) { val originalDef = definition - val shortType = meta.removeNotRequiredArgs(originalDef.type) + val shortType = meta.removeNotRequiredArgs(originalDef.type) ?: return null val shortMeta = PythonFuncItemDescription( originalDef.meta.name, originalDef.meta.args.filterIndexed { index, _ -> isRequired(argKinds[index]) } From 38be05b149e671a3eed0a10844a9d1daf4845e99 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 23 Nov 2023 14:38:53 +0300 Subject: [PATCH 101/144] Add command line argument for including mypy timeout --- .../python/sbft/SbftGenerateTestsCommand.kt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 34875551e5..42fe2ac2ee 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -85,6 +85,11 @@ class SbftGenerateTestsCommand : CliktCommand( help = "Specify the maximum time in milliseconds to spend on one function run ($DEFAULT_TIMEOUT_FOR_ONE_RUN_IN_MILLIS by default)." ).long().default(DEFAULT_TIMEOUT_FOR_ONE_RUN_IN_MILLIS) + private val includeMypyAnalysisTime by option( + "--include-mypy-analysis-time", + help = "Include mypy static analysis time in the total timeout." + ).flag(default = false) + private val runtimeExceptionTestsBehaviour by option("--runtime-exception-behaviour", help = "PASS or FAIL") .choice("PASS", "FAIL") .default("FAIL") @@ -176,21 +181,17 @@ class SbftGenerateTestsCommand : CliktCommand( val globalImportCollection = mutableSetOf() val globalCodeCollection = mutableListOf() -// val until = max(System.currentTimeMillis() + timeout - mypyTime, 0) val startTime = System.currentTimeMillis() val countOfFunctions = pythonMethodGroups.sumOf { it.size } - val oneFunctionTimeout = separateTimeout(timeout - mypyTime, countOfFunctions) + val timeoutAfterMypy = if (includeMypyAnalysisTime) timeout - mypyTime else timeout + val oneFunctionTimeout = separateTimeout(timeoutAfterMypy, countOfFunctions) logger.info { "One function timeout: ${oneFunctionTimeout}ms. x${countOfFunctions}" } pythonMethodGroups.mapIndexed { index, pythonMethods -> -// val localTimeout = pythonMethods.size * separateTimeout( -// until, -// pythonMethodGroups.take(index).sumOf { it.size }, -// pythonMethodGroups.sumOf { it.size }) val usedTime = System.currentTimeMillis() - startTime val countOfTestedFunctions = pythonMethodGroups.take(index).sumOf { it.size } val expectedTime = countOfTestedFunctions * oneFunctionTimeout val localOneFunctionTimeout = if (usedTime < expectedTime) { - separateTimeout(timeout - mypyTime - usedTime, countOfFunctions - countOfTestedFunctions) + separateTimeout(timeoutAfterMypy - usedTime, countOfFunctions - countOfTestedFunctions) } else { oneFunctionTimeout } From 7aee0929b8353130f209b4b05c43228264036b5c Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 24 Nov 2023 09:45:03 +0300 Subject: [PATCH 102/144] Fix mypy check code generation --- .../python/framework/codegen/model/PythonCodeGenerator.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt index 963881a023..6df2bcab87 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/PythonCodeGenerator.kt @@ -106,7 +106,7 @@ class PythonCodeGenerator( imports.forEach { renderer.renderPythonImport(it) } - val paramNames = method.argumentsNamesWithoutSelf + val paramNames = method.argumentsNames val parameters = paramNames.map { argument -> "${argument}: ${methodAnnotations[argument]?.pythonTypeRepresentation() ?: pythonAnyType.pythonTypeRepresentation()}" } @@ -121,7 +121,7 @@ class PythonCodeGenerator( additionalVars, "", functionName, - ) + method.codeAsString.split("\n").map { " $it" } + ) + method.codeAsString.split("\n") return mypyCheckCode.joinToString("\n") } } \ No newline at end of file From 35011d7f967e1a9e297e9d42565288cd4e608561 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 24 Nov 2023 13:11:25 +0300 Subject: [PATCH 103/144] Support SIGTERM cancellation --- .../python/sbft/SbftGenerateTestsCommand.kt | 50 ++++++++++++++----- .../python/PythonTestGenerationProcessor.kt | 3 ++ .../utbot/python/engine/GlobalPythonEngine.kt | 4 +- .../python/engine/fuzzing/FuzzingEngine.kt | 2 +- .../USVMPythonAnalysisResultReceiverImpl.kt | 40 ++++++++------- .../org/utbot/python/fuzzing/PythonApi.kt | 5 ++ 6 files changed, 71 insertions(+), 33 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 42fe2ac2ee..f68c5cb217 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -37,6 +37,7 @@ import org.utbot.python.utils.RequirementsInstaller import org.utbot.python.utils.Success import org.utbot.python.utils.separateTimeout import java.io.File +import java.util.concurrent.atomic.AtomicBoolean import kotlin.system.measureTimeMillis private const val DEFAULT_TIMEOUT_IN_MILLIS = 60000L @@ -140,6 +141,39 @@ class SbftGenerateTestsCommand : CliktCommand( return methods + listOf(functions) } + private val globalImportCollection = mutableSetOf() + private val globalCodeCollection = mutableListOf() + + private val shutdown: AtomicBoolean = AtomicBoolean(false) + private val alreadySaved: AtomicBoolean = AtomicBoolean(false) + + private fun shutdownHook() { + Runtime.getRuntime().addShutdownHook(object : Thread() { + override fun run() { + shutdown.set(true) + try { + if (!alreadySaved.get()) { + saveTestsEndExit() + } + } catch (_: InterruptedException) { + logger.warn { "Interrupted exception" } + } + } + }) + } + + private fun saveTestsEndExit() { + logger.info("Saving tests...") + val importCode = globalImportCollection + .sortedBy { it.order } + .map { renderPythonImport(it) } + val testCode = (listOf(importCode.joinToString("\n")) + globalCodeCollection).joinToString("\n\n\n") + writeToFileAndSave(output, testCode) + + Cleaner.doCleaning() + alreadySaved.set(true) + } + override fun run() { absPathToSourceFile = sourceFile.toAbsolutePath() sourceFileContent = File(absPathToSourceFile).readText() @@ -179,8 +213,8 @@ class SbftGenerateTestsCommand : CliktCommand( } logger.info { "Mypy time: $mypyTime" } - val globalImportCollection = mutableSetOf() - val globalCodeCollection = mutableListOf() + shutdownHook() + val startTime = System.currentTimeMillis() val countOfFunctions = pythonMethodGroups.sumOf { it.size } val timeoutAfterMypy = if (includeMypyAnalysisTime) timeout - mypyTime else timeout @@ -208,7 +242,7 @@ class SbftGenerateTestsCommand : CliktCommand( testFramework = testFramework, testSourceRootPath = null, withMinimization = !doNotMinimize, - isCanceled = { false }, + isCanceled = { shutdown.get() }, runtimeExceptionTestsBehaviour = RuntimeExceptionTestsBehaviour.valueOf(runtimeExceptionTestsBehaviour), coverageMeasureMode = PythonCoverageMode.parse(coverageMeasureMode), sendCoverageContinuously = !doNotSendCoverageContinuously, @@ -227,14 +261,6 @@ class SbftGenerateTestsCommand : CliktCommand( globalImportCollection.addAll(imports) } } - logger.info("Saving tests...") - val importCode = globalImportCollection - .sortedBy { it.order } - .map { renderPythonImport(it) } - val testCode = (listOf(importCode.joinToString("\n")) + globalCodeCollection).joinToString("\n\n\n") - writeToFileAndSave(output, testCode) - - Cleaner.doCleaning() - System.exit(0) + saveTestsEndExit() } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index ded08c9825..47855c0dfd 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -68,6 +68,9 @@ abstract class PythonTestGenerationProcessor { val startTime = System.currentTimeMillis() val tests = configuration.testedMethods.mapIndexedNotNull { index, methodHeader -> + if (configuration.isCanceled()) { + return emptyList() + } val usedTime = System.currentTimeMillis() - startTime val expectedTime = index * oneFunctionTimeout val localOneFunctionTimeout = if (usedTime < expectedTime) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 8a54f8679a..08da58fc50 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -101,7 +101,7 @@ class GlobalPythonEngine( fun run() { val fuzzing = thread( start = true, - isDaemon = true, + isDaemon = false, name = "Fuzzer" ) { logger.info { " >>>>>>> Start fuzzer >>>>>>> " } @@ -110,7 +110,7 @@ class GlobalPythonEngine( } val symbolic = thread( start = true, - isDaemon = true, + isDaemon = false, name = "Symbolic" ) { logger.info { " ------- Start symbolic ------- " } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 490fba98f5..489d58b0f5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -218,7 +218,7 @@ class FuzzingEngine( } } else { try { - PythonFuzzing(typeStorage, typeInferenceAlgorithm) { description, arguments -> + PythonFuzzing(typeStorage, typeInferenceAlgorithm, isCancelled) { description, arguments -> if (isCancelled()) { logger.debug { "Fuzzing process was interrupted" } manager.disconnect() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 23183ad573..f491a7c385 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -48,25 +48,29 @@ class USVMPythonAnalysisResultReceiverImpl( connect() } - fun connect() { - serverSocket = ServerSocket(0) - manager = - PythonWorkerManager( - serverSocket, - configuration.pythonPath, - until, - configuration.coverageMeasureMode, - configuration.sendCoverageContinuously, - ) { - PythonCodeSocketExecutor( - method, - configuration.testFileInformation.moduleName, + private fun connect() { + try { + serverSocket = ServerSocket(0) + manager = + PythonWorkerManager( + serverSocket, configuration.pythonPath, - configuration.sysPathDirectories, - configuration.timeoutForRun, - it, - ) - } + until, + configuration.coverageMeasureMode, + configuration.sendCoverageContinuously, + ) { + PythonCodeSocketExecutor( + method, + configuration.testFileInformation.moduleName, + configuration.pythonPath, + configuration.sysPathDirectories, + configuration.timeoutForRun, + it, + ) + } + } catch (_: TimeoutException) { + close() + } } fun close() { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 600b6851b6..aa6772a112 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -104,6 +104,7 @@ fun pythonAnyTypeValueProviders() = listOf( class PythonFuzzing( private val pythonTypeStorage: PythonTypeHintsStorage, private val typeInferenceAlgorithm: BaselineAlgorithm, + private val globalIsCancelled: () -> Boolean, val execute: suspend (description: PythonMethodDescription, values: List) -> PythonFeedback, ) : Fuzzing { @@ -165,6 +166,10 @@ class PythonFuzzing( description: PythonMethodDescription, stats: Statistic ): Boolean { + if (globalIsCancelled()) { + logger.warn { "Cancellation in fuzzing" } + return true + } if (description.limitManager.isCancelled() || description.parameters.any { it.isAny() }) { forkType(description, stats) if (description.limitManager.isRootManager) { From 8b8abcdc0ddb9fc6dc3285afde253ceabe9bc973 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 24 Nov 2023 13:18:42 +0300 Subject: [PATCH 104/144] Update usvm-python-runner version --- utbot-python/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index a5781df37e..9d29beb8d5 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:d3b3a68") + api("org.usvm:usvm-python-runner:7b35ce5") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") From fabd51b6ab10cd7ab3b94924b5aeb2840fc5f182 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Mon, 27 Nov 2023 13:33:05 +0300 Subject: [PATCH 105/144] Updated usvm-python-runner + small fixes --- .../python/sbft/SbftGenerateTestsCommand.kt | 1 + utbot-python/build.gradle.kts | 2 +- .../utbot/python/engine/GlobalPythonEngine.kt | 4 ++-- .../USVMPythonAnalysisResultReceiverImpl.kt | 3 ++- .../engine/symbolic/USVMPythonConfig.kt | 20 ------------------- .../python/engine/symbolic/UsvmConfig.kt | 1 - 6 files changed, 6 insertions(+), 25 deletions(-) delete mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt delete mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index f68c5cb217..d61d958911 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -172,6 +172,7 @@ class SbftGenerateTestsCommand : CliktCommand( Cleaner.doCleaning() alreadySaved.set(true) + System.exit(0) } override fun run() { diff --git a/utbot-python/build.gradle.kts b/utbot-python/build.gradle.kts index 9d29beb8d5..3d0e0a3cbd 100644 --- a/utbot-python/build.gradle.kts +++ b/utbot-python/build.gradle.kts @@ -10,7 +10,7 @@ dependencies { api(project(":utbot-python-parser")) api(project(":utbot-python-types")) api(project(":utbot-python-executor")) - api("org.usvm:usvm-python-runner:7b35ce5") + api("org.usvm:usvm-python-runner:b087c5c") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1") implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 08da58fc50..4c0eb054ce 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -85,7 +85,7 @@ class GlobalPythonEngine( usvmPythonConfig, configuration, ) - val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 3) + val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 2) if (debug) { engine.debugRun(usvmConfig) } else { @@ -158,4 +158,4 @@ class GlobalPythonEngine( visitor.visit(method.ast) return hintCollector } -} \ No newline at end of file +} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index f491a7c385..39fae8526f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -80,6 +80,7 @@ class USVMPythonAnalysisResultReceiverImpl( fun receivePickledInputValuesWithFeedback(pickledTuple: String): ExecutionFeedback? { try { + // logger.info("Receiving $pickledTuple") val coverageId = CoverageIdGenerator.createId() return when ( val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) @@ -177,4 +178,4 @@ class USVMPythonAnalysisResultReceiverImpl( executionStorage.saveSymbolicExecution(it) } } -} \ No newline at end of file +} diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt deleted file mode 100644 index 5340f8a02c..0000000000 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonConfig.kt +++ /dev/null @@ -1,20 +0,0 @@ -package org.utbot.python.engine.symbolic - -//data class USVMPythonConfig( -// val distributionPath: String, -// val mypyBuildDir: String, -//) -// -//sealed class USVMPythonCallableConfig -// -//data class USVMPythonFunctionConfig( -// val module: String, -// val name: String, -//): USVMPythonCallableConfig() -// -//data class USVMPythonRunConfig( -// val callableConfig: USVMPythonCallableConfig, -// val timeoutMs: Long, -// val timeoutPerRunMs: Long, -//) - diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt deleted file mode 100644 index 406142b8c7..0000000000 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/UsvmConfig.kt +++ /dev/null @@ -1 +0,0 @@ -package org.utbot.python.engine.symbolic From de27381d26251d86c23ed7498f66f1badbbdd320 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 27 Nov 2023 11:38:20 +0300 Subject: [PATCH 106/144] Add param to skip state assertions --- .../python/sbft/SbftGenerateTestsCommand.kt | 7 ++ .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/__main__.py | 29 +++++--- .../utbot_executor/utbot_executor/config.py | 30 ++++++++ .../utbot_executor/utbot_executor/executor.py | 23 ++++--- .../utbot_executor/utbot_executor/listener.py | 69 ++++++++++--------- .../python/PythonTestGenerationConfig.kt | 3 +- .../python/engine/fuzzing/FuzzingEngine.kt | 1 + .../USVMPythonAnalysisResultReceiverImpl.kt | 1 + .../python/evaluation/PythonWorkerManager.kt | 33 +++++---- 10 files changed, 132 insertions(+), 66 deletions(-) create mode 100644 utbot-python-executor/src/main/python/utbot_executor/utbot_executor/config.py diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index d61d958911..3d069ec3c5 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -106,6 +106,12 @@ class SbftGenerateTestsCommand : CliktCommand( .split(",") .default(PythonTestGenerationConfig.defaultProhibitedExceptions) + private val doNotGenerateStateAssertions by option( + "--do-not-generate-state-assertions", + help = "Do not generate state assertions for all functions excluding functions with None return value." + ) + .flag(default = false) + private val javaCmd by option( "--java-cmd", help = "(required) Path to Java command (ONLY FOR USVM)." @@ -251,6 +257,7 @@ class SbftGenerateTestsCommand : CliktCommand( usvmConfig = UsvmConfig(javaCmd, usvmDirectory), prohibitedExceptions = if (prohibitedExceptions == listOf("-")) emptyList() else prohibitedExceptions, checkUsvm = checkUsvm, + doNotGenerateStateAssertions = doNotGenerateStateAssertions, ) val processor = SbftCliProcessor(config) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index f9ea5040b9..8d4479eae2 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.2" +version = "1.9.2.dev1" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py index c9356cdcdb..ddf0a4d31e 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py @@ -1,12 +1,15 @@ import argparse import logging +from utbot_executor.config import Config, HostConfig, CoverageConfig, LoggingConfig from utbot_executor.listener import PythonExecuteServer from utbot_executor.utils import TraceMode -def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode, send_coverage: bool): - server = PythonExecuteServer(hostname, port, coverage_hostname, coverage_port, trace_mode, send_coverage) +def main( + config: Config +): + server = PythonExecuteServer(config) server.run() @@ -28,9 +31,8 @@ def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, t parser.add_argument( "--coverage_type", choices=["lines", "instructions"], default="instructions" ) - parser.add_argument( - "--send_coverage", action=argparse.BooleanOptionalAction - ) + parser.add_argument("--send_coverage", action=argparse.BooleanOptionalAction) + parser.add_argument("--do_not_generate_state_assertions", type=bool, default=False) args = parser.parse_args() loglevel = { @@ -45,6 +47,17 @@ def main(hostname: str, port: int, coverage_hostname: str, coverage_port: int, t datefmt="%m/%d/%Y %H:%M:%S", level=loglevel, ) - trace_mode = TraceMode.Lines if args.coverage_type == "lines" else TraceMode.Instructions - send_coverage = args.send_coverage - main(args.hostname, args.port, args.coverage_hostname, args.coverage_port, trace_mode, send_coverage) + trace_mode = ( + TraceMode.Lines if args.coverage_type == "lines" else TraceMode.Instructions + ) + + config = Config( + server=HostConfig(args.hostname, args.port), + coverage=CoverageConfig( + HostConfig(args.coverage_hostname, args.coverage_port), trace_mode, args.send_coverage + ), + logging=LoggingConfig(args.logfile, loglevel), + state_assertions=not args.do_not_generate_state_assertions + ) + + main(config) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/config.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/config.py new file mode 100644 index 0000000000..f4d8ff3d2a --- /dev/null +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/config.py @@ -0,0 +1,30 @@ +import dataclasses + +from utbot_executor.utils import TraceMode + + +@dataclasses.dataclass +class HostConfig: + hostname: str + port: int + + +@dataclasses.dataclass +class CoverageConfig: + server: HostConfig + trace_mode: TraceMode + send_coverage: bool + + +@dataclasses.dataclass +class LoggingConfig: + logfile: str | None + loglevel: int + + +@dataclasses.dataclass +class Config: + server: HostConfig + coverage: CoverageConfig + logging: LoggingConfig + state_assertions: bool diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index afd48c001e..519d4ce43e 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -8,8 +8,9 @@ import sys import traceback import types -from typing import Any, Callable, Dict, Iterable, List, Tuple +from typing import Any, Dict, Iterable, List, Tuple +from utbot_executor.config import CoverageConfig from utbot_executor.deep_serialization.deep_serialization import serialize_memory_dump, \ serialize_objects_dump from utbot_executor.deep_serialization.json_converter import DumpLoader, deserialize_memory_objects @@ -23,7 +24,7 @@ suppress_stdout as __suppress_stdout, get_instructions, filter_instructions, - TraceMode, UtInstruction, + UtInstruction, ) __all__ = ['PythonExecutor'] @@ -47,11 +48,12 @@ def _load_objects(objs: List[Any]) -> MemoryDump: class PythonExecutor: - def __init__(self, coverage_hostname: str, coverage_port: int, trace_mode: TraceMode, send_coverage: bool): - self.coverage_hostname = coverage_hostname - self.coverage_port = coverage_port - self.trace_mode = trace_mode - self.send_coverage = send_coverage + def __init__(self, coverage_config: CoverageConfig, state_asserts: bool): + self.coverage_hostname = coverage_config.server.hostname + self.coverage_port = coverage_config.server.port + self.trace_mode = coverage_config.trace_mode + self.send_coverage = coverage_config.send_coverage + self.state_asserts = state_asserts @staticmethod def add_syspaths(syspaths: Iterable[str]): @@ -145,6 +147,7 @@ def run_reduce_function(self, request: ExecutionRequest) -> ExecutionResponse: _coverage_sender, self.trace_mode, ), + state_asserts=self.state_asserts, ) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) @@ -251,6 +254,7 @@ def _run_calculate_function_value( fullpath: str, state_init: str, tracer: UtTracer, + state_asserts: bool, ) -> ExecutionResponse: """ Calculate function evaluation result. @@ -285,7 +289,10 @@ def _run_calculate_function_value( args_ids, kwargs_ids, result_id, state_after, serialized_state_after = _serialize_state(args, kwargs, __result) ids = args_ids + list(kwargs_ids.values()) - diff_ids = compress_memory(ids, state_before, state_after) + if state_asserts or __result is None: + diff_ids = compress_memory(ids, state_before, state_after) + else: + diff_ids = [] return ExecutionSuccessResponse( status="success", diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py index a1c91e8c00..8401b7b5f8 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py @@ -2,83 +2,86 @@ import os import socket import traceback - +from utbot_executor.config import Config from utbot_executor.deep_serialization.memory_objects import PythonSerializer -from utbot_executor.parser import parse_request, serialize_response, ExecutionFailResponse from utbot_executor.executor import PythonExecutor -from utbot_executor.utils import TraceMode +from utbot_executor.parser import ( + parse_request, + serialize_response, + ExecutionFailResponse, +) RECV_SIZE = 2**15 class PythonExecuteServer: - def __init__( - self, - hostname: str, - port: int, - coverage_hostname: str, - coverage_port: int, - trace_mode: TraceMode, - send_coverage: bool - ): - logging.info('PythonExecutor is creating...') + def __init__(self, config: Config): + logging.info("PythonExecutor is creating...") self.clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) - self.clientsocket.connect((hostname, port)) - self.executor = PythonExecutor(coverage_hostname, coverage_port, trace_mode, send_coverage) + self.clientsocket.connect((config.server.hostname, config.server.port)) + self.executor = PythonExecutor( + config.coverage.server.hostname, + config.coverage.server.port, + config.coverage.trace_mode, + config.coverage.send_coverage, + ) + self.config = config def run(self) -> None: - logging.info('PythonExecutor is ready...') + logging.info("PythonExecutor is ready...") try: self.handler() finally: self.clientsocket.close() def handler(self) -> None: - logging.info('Start working...') + logging.info("Start working...") while True: command = self.clientsocket.recv(4) - if command == b'STOP': + if command == b"STOP": break - if command == b'DATA': + if command == b"DATA": message_size = int(self.clientsocket.recv(16).decode()) - logging.debug('Got message size: %d bytes', message_size) + logging.debug("Got message size: %d bytes", message_size) message_body = bytearray() while len(message_body) < message_size: message = self.clientsocket.recv( - min(RECV_SIZE, message_size - len(message_body)) - ) + min(RECV_SIZE, message_size - len(message_body)) + ) message_body += message - logging.debug('Message: %s, size: %d', message, len(message)) + logging.debug("Message: %s, size: %d", message, len(message)) logging.debug( - 'Update content, current size: %d / %d bytes', + "Update content, current size: %d / %d bytes", len(message_body), message_size, ) try: request = parse_request(message_body.decode()) - logging.debug('Parsed request: %s', request) + logging.debug("Parsed request: %s", request) response = self.executor.run_function(request) except Exception as ex: - logging.debug('Exception: %s', traceback.format_exc()) - response = ExecutionFailResponse('fail', traceback.format_exc()) + logging.debug("Exception: %s", traceback.format_exc()) + response = ExecutionFailResponse("fail", traceback.format_exc()) - logging.debug('Response: %s', response) + logging.debug("Response: %s", response) try: serialized_response = serialize_response(response) except Exception as ex: - serialized_response = serialize_response(ExecutionFailResponse('fail', '')) + serialized_response = serialize_response( + ExecutionFailResponse("fail", "") + ) finally: PythonSerializer().clear() - logging.debug('Serialized response: %s', serialized_response) + logging.debug("Serialized response: %s", serialized_response) bytes_data = serialized_response.encode() - logging.debug('Encoded response: %s', bytes_data) + logging.debug("Encoded response: %s", bytes_data) response_size = str(len(bytes_data)) self.clientsocket.send((response_size + os.linesep).encode()) @@ -86,5 +89,5 @@ def handler(self) -> None: while len(bytes_data) > sent_size: sent_size += self.clientsocket.send(bytes_data[sent_size:]) - logging.debug('Sent all data') - logging.info('All done...') + logging.debug("Sent all data") + logging.info("All done...") diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt index 6be202a5ee..608a8fc7cf 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationConfig.kt @@ -33,6 +33,7 @@ class PythonTestGenerationConfig( val usvmConfig: UsvmConfig = UsvmConfig.defaultConfig, val prohibitedExceptions: List = defaultProhibitedExceptions, val checkUsvm: Boolean = false, + val doNotGenerateStateAssertions: Boolean = false, ) { companion object { val defaultProhibitedExceptions = listOf( @@ -55,7 +56,7 @@ data class UsvmConfig( ) { companion object { val usvmDirectory = - "/home/vyacheslav/IdeaProjects/NewUTBot/UTBotJava/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/usvm-python" + "utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/usvm-python" val usvmJavaCmd = "${System.getProperty("java.home")}/bin/java" val defaultConfig = UsvmConfig(usvmJavaCmd, usvmDirectory) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 489d58b0f5..80ed440b55 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -184,6 +184,7 @@ class FuzzingEngine( until, configuration.coverageMeasureMode, configuration.sendCoverageContinuously, + configuration.doNotGenerateStateAssertions, ) { PythonCodeSocketExecutor( method, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 39fae8526f..7e9b46391d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -58,6 +58,7 @@ class USVMPythonAnalysisResultReceiverImpl( until, configuration.coverageMeasureMode, configuration.sendCoverageContinuously, + configuration.doNotGenerateStateAssertions, ) { PythonCodeSocketExecutor( method, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 686fd12956..72170ee372 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -1,18 +1,18 @@ package org.utbot.python.evaluation import mu.KotlinLogging +import org.apache.logging.log4j.LogManager import org.utbot.framework.plugin.api.TimeoutException import org.utbot.python.FunctionArguments +import org.utbot.python.coverage.PythonCoverageMode import org.utbot.python.utils.TemporaryFileManager import org.utbot.python.utils.getResult import org.utbot.python.utils.startProcess import java.lang.Long.max import java.net.ServerSocket import java.net.Socket -import java.net.SocketTimeoutException -import org.apache.logging.log4j.LogManager -import org.utbot.python.coverage.PythonCoverageMode import java.net.SocketException +import java.net.SocketTimeoutException private val logger = KotlinLogging.logger {} @@ -22,6 +22,7 @@ class PythonWorkerManager( val until: Long, private val coverageMeasureMode: PythonCoverageMode = PythonCoverageMode.Instructions, private val sendCoverageContinuously: Boolean = true, + private val doNotGenerateStateAssertions: Boolean, val pythonCodeExecutorConstructor: (PythonWorker) -> PythonCodeExecutor, ) { var timeout: Long = 0 @@ -45,18 +46,20 @@ class PythonWorkerManager( if (serverSocket.isClosed) { serverSocket.accept() } - process = startProcess(listOf( - pythonPath, - "-m", "utbot_executor", - "localhost", - serverSocket.localPort.toString(), - coverageReceiver.address().first, - coverageReceiver.address().second, - "--logfile", logfile.absolutePath, - "--loglevel", logLevel, // "DEBUG", "INFO", "WARNING", "ERROR" - "--coverage_type", coverageMeasureMode.toString(), // "lines", "instructions" - sendCoverageContinuously.toSendCoverageContinuouslyString(), // "--send_coverage", "--no-send_coverage" - )) + process = startProcess( + listOf( + pythonPath, + "-m", "utbot_executor", + "localhost", + serverSocket.localPort.toString(), + coverageReceiver.address().first, + coverageReceiver.address().second, + "--logfile", logfile.absolutePath, + "--loglevel", logLevel, // "DEBUG", "INFO", "WARNING", "ERROR" + "--coverage_type", coverageMeasureMode.toString(), // "lines", "instructions" + sendCoverageContinuously.toSendCoverageContinuouslyString(), // "--send_coverage", "--no-send_coverage" + ) + if (doNotGenerateStateAssertions) listOf("--do_not_generate_state_assertions") else emptyList() + ) timeout = max(until - processStartTime, 0) if (this::workerSocket.isInitialized && !workerSocket.isClosed) { workerSocket.close() From 43b8f275db9056847c318cdb5754d773b3d40f1d Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 27 Nov 2023 14:20:04 +0300 Subject: [PATCH 107/144] Add param to skip state assertions: update executor --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../main/python/utbot_executor/utbot_executor/__main__.py | 6 ++---- .../main/python/utbot_executor/utbot_executor/listener.py | 6 ++---- .../src/main/resources/utbot_executor_version | 2 +- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 8d4479eae2..320aee15ed 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.2.dev1" +version = "1.9.4" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py index ddf0a4d31e..05abeb22c1 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py @@ -6,10 +6,8 @@ from utbot_executor.utils import TraceMode -def main( - config: Config -): - server = PythonExecuteServer(config) +def main(executor_config: Config): + server = PythonExecuteServer(executor_config) server.run() diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py index 8401b7b5f8..282215960a 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/listener.py @@ -20,10 +20,8 @@ def __init__(self, config: Config): self.clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.clientsocket.connect((config.server.hostname, config.server.port)) self.executor = PythonExecutor( - config.coverage.server.hostname, - config.coverage.server.port, - config.coverage.trace_mode, - config.coverage.send_coverage, + config.coverage, + config.state_assertions, ) self.config = config diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 6f2d3653d5..70b02ffc1b 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.2 \ No newline at end of file +1.9.4 \ No newline at end of file From 2251018b52334a06ae491288acd3fa1bede8d949 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 27 Nov 2023 14:57:13 +0300 Subject: [PATCH 108/144] Add param to skip state assertions: fix argument parsing --- .../language/python/sbft/SbftGenerateTestsCommand.kt | 2 +- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../python/utbot_executor/utbot_executor/__main__.py | 4 ++-- .../python/utbot_executor/utbot_executor/executor.py | 10 +++++----- .../src/main/resources/utbot_executor_version | 2 +- .../utbot/python/evaluation/PythonWorkerManager.kt | 11 ++++++++++- 6 files changed, 20 insertions(+), 11 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 3d069ec3c5..54c6372b36 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -178,7 +178,7 @@ class SbftGenerateTestsCommand : CliktCommand( Cleaner.doCleaning() alreadySaved.set(true) - System.exit(0) +// System.exit(0) } override fun run() { diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 320aee15ed..6afda53f21 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.4" +version = "1.9.5" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py index 05abeb22c1..752a1df3cf 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/__main__.py @@ -30,7 +30,7 @@ def main(executor_config: Config): "--coverage_type", choices=["lines", "instructions"], default="instructions" ) parser.add_argument("--send_coverage", action=argparse.BooleanOptionalAction) - parser.add_argument("--do_not_generate_state_assertions", type=bool, default=False) + parser.add_argument("--generate_state_assertions", action=argparse.BooleanOptionalAction) args = parser.parse_args() loglevel = { @@ -55,7 +55,7 @@ def main(executor_config: Config): HostConfig(args.coverage_hostname, args.coverage_port), trace_mode, args.send_coverage ), logging=LoggingConfig(args.logfile, loglevel), - state_assertions=not args.do_not_generate_state_assertions + state_assertions=args.generate_state_assertions ) main(config) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 519d4ce43e..21de3aa9cf 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -48,12 +48,12 @@ def _load_objects(objs: List[Any]) -> MemoryDump: class PythonExecutor: - def __init__(self, coverage_config: CoverageConfig, state_asserts: bool): + def __init__(self, coverage_config: CoverageConfig, state_assertions: bool): self.coverage_hostname = coverage_config.server.hostname self.coverage_port = coverage_config.server.port self.trace_mode = coverage_config.trace_mode self.send_coverage = coverage_config.send_coverage - self.state_asserts = state_asserts + self.state_assertions = state_assertions @staticmethod def add_syspaths(syspaths: Iterable[str]): @@ -147,7 +147,7 @@ def run_reduce_function(self, request: ExecutionRequest) -> ExecutionResponse: _coverage_sender, self.trace_mode, ), - state_asserts=self.state_asserts, + state_assertions=self.state_assertions, ) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) @@ -254,7 +254,7 @@ def _run_calculate_function_value( fullpath: str, state_init: str, tracer: UtTracer, - state_asserts: bool, + state_assertions: bool, ) -> ExecutionResponse: """ Calculate function evaluation result. @@ -289,7 +289,7 @@ def _run_calculate_function_value( args_ids, kwargs_ids, result_id, state_after, serialized_state_after = _serialize_state(args, kwargs, __result) ids = args_ids + list(kwargs_ids.values()) - if state_asserts or __result is None: + if state_assertions or __result is None: diff_ids = compress_memory(ids, state_before, state_after) else: diff_ids = [] diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 70b02ffc1b..6ecac68129 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.4 \ No newline at end of file +1.9.5 \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 72170ee372..f74490b811 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -58,7 +58,8 @@ class PythonWorkerManager( "--loglevel", logLevel, // "DEBUG", "INFO", "WARNING", "ERROR" "--coverage_type", coverageMeasureMode.toString(), // "lines", "instructions" sendCoverageContinuously.toSendCoverageContinuouslyString(), // "--send_coverage", "--no-send_coverage" - ) + if (doNotGenerateStateAssertions) listOf("--do_not_generate_state_assertions") else emptyList() + doNotGenerateStateAssertions.toGenerateStateAssertionsString() // "--generate_state_assertions", "--no-generate_state_assertions" + ) ) timeout = max(until - processStartTime, 0) if (this::workerSocket.isInitialized && !workerSocket.isClosed) { @@ -160,5 +161,13 @@ class PythonWorkerManager( "--no-send_coverage" } } + + fun Boolean.toGenerateStateAssertionsString(): String { + return if (this) { + "--no-generate_state_assertions" + } else { + "--generate_state_assertions" + } + } } } \ No newline at end of file From 065642a1956db8d467380bc8af654bfbdaad1ff7 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 27 Nov 2023 15:13:47 +0300 Subject: [PATCH 109/144] Add exit(0) --- .../python/sbft/SbftGenerateTestsCommand.kt | 25 +++++++++++++------ 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 54c6372b36..f595ea1d70 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -38,6 +38,7 @@ import org.utbot.python.utils.Success import org.utbot.python.utils.separateTimeout import java.io.File import java.util.concurrent.atomic.AtomicBoolean +import kotlin.system.exitProcess import kotlin.system.measureTimeMillis private const val DEFAULT_TIMEOUT_IN_MILLIS = 60000L @@ -153,22 +154,29 @@ class SbftGenerateTestsCommand : CliktCommand( private val shutdown: AtomicBoolean = AtomicBoolean(false) private val alreadySaved: AtomicBoolean = AtomicBoolean(false) - private fun shutdownHook() { - Runtime.getRuntime().addShutdownHook(object : Thread() { + private val shutdownThread = + object : Thread() { override fun run() { shutdown.set(true) try { if (!alreadySaved.get()) { - saveTestsEndExit() + saveTests() } } catch (_: InterruptedException) { logger.warn { "Interrupted exception" } } } - }) + } + + private fun addShutdownHook() { + Runtime.getRuntime().addShutdownHook(shutdownThread) + } + + private fun removeShutdownHook() { + Runtime.getRuntime().removeShutdownHook(shutdownThread) } - private fun saveTestsEndExit() { + private fun saveTests() { logger.info("Saving tests...") val importCode = globalImportCollection .sortedBy { it.order } @@ -178,7 +186,6 @@ class SbftGenerateTestsCommand : CliktCommand( Cleaner.doCleaning() alreadySaved.set(true) -// System.exit(0) } override fun run() { @@ -220,7 +227,7 @@ class SbftGenerateTestsCommand : CliktCommand( } logger.info { "Mypy time: $mypyTime" } - shutdownHook() + addShutdownHook() val startTime = System.currentTimeMillis() val countOfFunctions = pythonMethodGroups.sumOf { it.size } @@ -269,6 +276,8 @@ class SbftGenerateTestsCommand : CliktCommand( globalImportCollection.addAll(imports) } } - saveTestsEndExit() + saveTests() + removeShutdownHook() + exitProcess(0) } } From 07630cd74961b6bc4683a3abc84b6fec5ca0f3fe Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 27 Nov 2023 17:10:44 +0300 Subject: [PATCH 110/144] Add import for exceptions --- .../constructor/tree/PythonTestFrameworkManager.kt | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt index cce442c13a..2bd9e38bb2 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonTestFrameworkManager.kt @@ -1,9 +1,13 @@ package org.utbot.python.framework.codegen.model.constructor.tree -import org.utbot.framework.codegen.domain.context.TestClassContext import org.utbot.framework.codegen.domain.context.CgContext -import org.utbot.framework.codegen.domain.models.* -import org.utbot.framework.codegen.domain.models.AnnotationTarget.* +import org.utbot.framework.codegen.domain.context.TestClassContext +import org.utbot.framework.codegen.domain.models.AnnotationTarget.Method +import org.utbot.framework.codegen.domain.models.CgEqualTo +import org.utbot.framework.codegen.domain.models.CgLiteral +import org.utbot.framework.codegen.domain.models.CgNamedAnnotationArgument +import org.utbot.framework.codegen.domain.models.CgValue +import org.utbot.framework.codegen.domain.models.CgVariable import org.utbot.framework.codegen.services.framework.TestFrameworkManager import org.utbot.framework.plugin.api.ClassId import org.utbot.python.framework.api.python.PythonClassId @@ -25,6 +29,7 @@ internal class PytestManager(context: CgContext) : TestFrameworkManager(context) require(testFramework is Pytest) { "According to settings, Pytest was expected, but got: $testFramework" } require(exception is PythonClassId) { "Exceptions must be PythonClassId" } context.importIfNeeded(PythonClassId("pytest.raises")) + importIfNeeded(exception) val withExpression = CgPythonFunctionCall( pythonNoneClassId, "pytest.raises", @@ -119,6 +124,7 @@ internal class UnittestManager(context: CgContext) : TestFrameworkManager(contex override fun expectException(exception: ClassId, block: () -> Unit) { require(testFramework is Unittest) { "According to settings, Unittest was expected, but got: $testFramework" } require(exception is PythonClassId) { "Exceptions must be PythonClassId" } + importIfNeeded(exception) val withExpression = CgPythonFunctionCall( pythonNoneClassId, "self.assertRaises", From f4af7afc35452c4afc47cca1df2cc66949c933b2 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 27 Nov 2023 17:52:12 +0300 Subject: [PATCH 111/144] Fix state assertions for pickled objects --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../src/main/python/utbot_executor/utbot_executor/executor.py | 1 + utbot-python-executor/src/main/resources/utbot_executor_version | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 6afda53f21..f6a7e7fa48 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.5" +version = "1.9.6" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index 21de3aa9cf..e4ac6ea8b6 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -218,6 +218,7 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: _coverage_sender, self.trace_mode, ), + state_assertions=self.state_assertions ) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 6ecac68129..b4cac6fa40 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.5 \ No newline at end of file +1.9.6 \ No newline at end of file From 68cebed68057dd309c4fa1f23eaeb18427edca57 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 28 Nov 2023 18:14:40 +0300 Subject: [PATCH 112/144] Remove excess backslash for line separator --- .../utbot/python/evaluation/serialization/PythonObjectParser.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt index 16bc926393..b5bf6a9d7c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt @@ -111,7 +111,7 @@ fun PythonTree.PythonTreeNode.toMemoryObject(memoryDump: MemoryDump, reload: Boo id, typeinfo, this.comparable, - this.repr.replace("\n", "\\\n").replace("\r", "\\\r") + this.repr.replace("\n", "\\n").replace("\r", "\\r") ) } From 4374a26c318e98e91412d8bc26a8872150f0d632 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 29 Nov 2023 11:07:46 +0300 Subject: [PATCH 113/144] Fix isRecursiveObject --- .../org/utbot/python/framework/api/python/PythonTree.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt index d883080877..b36cff779d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt @@ -28,14 +28,13 @@ object PythonTree { return isRecursiveObjectDFS(tree, mutableSetOf()) } - private fun isRecursiveObjectDFS(tree: PythonTreeNode, visited: MutableSet): Boolean { + private fun isRecursiveObjectDFS(tree: PythonTreeNode, visited: Set): Boolean { if (tree is PrimitiveNode) { return false } if (visited.contains(tree)) return true - visited.add(tree) - return tree.children.any { isRecursiveObjectDFS(it, visited) } + return tree.children.any { isRecursiveObjectDFS(it, visited + tree) } } fun containsFakeNode(tree: PythonTreeNode): Boolean { From d9c0d49f3b6b435cce198b037fb90e083e39486b Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 29 Nov 2023 13:36:07 +0300 Subject: [PATCH 114/144] Update fuzzing strategy for Dict and Set --- .../fuzzing/provider/DictValueProvider.kt | 37 ++++++------------- .../fuzzing/provider/SetValueProvider.kt | 31 +++++----------- 2 files changed, 21 insertions(+), 47 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt index 22accbbf78..538e7730ba 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt @@ -20,36 +20,23 @@ object DictValueProvider : ValueProvider>().toMutableList() - modifications.add(Routine.Call(params) { instance, arguments -> - val key = arguments[0].tree - val value = arguments[1].tree - val dict = instance.tree as PythonTree.DictNode - if (dict.items.keys.toList().contains(key)) { - dict.items.replace(key, value) - } else { - dict.items[key] = value - } - }) - modifications.add(Routine.Call(listOf(params[0])) { instance, arguments -> - val key = arguments[0].tree - val dict = instance.tree as PythonTree.DictNode - if (dict.items.keys.toList().contains(key)) { - dict.items.remove(key) - } - }) - yield(Seed.Recursive( - construct = Routine.Create(emptyList()) { v -> + yield(Seed.Collection( + construct = Routine.Collection { _ -> PythonFuzzedValue( PythonTree.DictNode(mutableMapOf()), "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = modifications.asSequence(), - empty = Routine.Empty { PythonFuzzedValue( - PythonTree.DictNode(emptyMap().toMutableMap()), - "%var% = ${type.pythonTypeRepresentation()}" - )} + modify = Routine.ForEach(params) { instance, _, arguments -> + val key = arguments[0].tree + val value = arguments[1].tree + val dict = instance.tree as PythonTree.DictNode + if (dict.items.keys.toList().contains(key)) { + dict.items.replace(key, value) + } else { + dict.items[key] = value + } + }, )) } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt index c6f7e6aef7..df65f7ef97 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt @@ -20,31 +20,18 @@ object SetValueProvider : ValueProvider>().toMutableList() - modifications.add(Routine.Call(params) { instance, arguments -> - val set = instance.tree as PythonTree.SetNode - set.items.add(arguments.first().tree) - }) - modifications.add(Routine.Call(params) { instance, arguments -> - val set = instance.tree as PythonTree.SetNode - val value = arguments.first().tree - if (set.items.contains(value)) { - set.items.remove(value) - } - }) - yield(Seed.Recursive( - construct = Routine.Create(emptyList()) { - val items = emptySet().toMutableSet() + yield(Seed.Collection( + construct = Routine.Collection { _ -> PythonFuzzedValue( - PythonTree.SetNode(items), - "%var% = ${type.pythonTypeRepresentation()}", + PythonTree.SetNode(mutableSetOf()), + "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = modifications.asSequence(), - empty = Routine.Empty { PythonFuzzedValue( - PythonTree.SetNode(emptySet().toMutableSet()), - "%var% = ${type.pythonTypeRepresentation()}", - )} + modify = Routine.ForEach(params) { instance, _, arguments -> + val item = arguments[0].tree + val set = instance.tree as PythonTree.SetNode + set.items.add(item) + }, )) } } \ No newline at end of file From 63e428258a180cad4b5e6ef66ce16e06e131e380 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 29 Nov 2023 19:24:41 +0300 Subject: [PATCH 115/144] Improve fuzzing process for generics --- .../python/engine/fuzzing/FuzzingEngine.kt | 25 +++--- .../typeinference/FunctionAnnotationUtils.kt | 5 +- .../org/utbot/python/fuzzing/PythonApi.kt | 33 +++++++- .../inference/TypeInferenceProcessor.kt | 24 ++++-- .../inference/baseline/BaselineAlgorithm.kt | 82 +++++++++++++------ .../inference/baseline/StateExpansion.kt | 5 +- .../inference/baseline/Structures.kt | 3 +- 7 files changed, 125 insertions(+), 52 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 80ed440b55..3d7ecd935f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -56,10 +56,12 @@ import org.utbot.python.fuzzing.PythonMethodDescription import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.constants.ConstantCollector import org.utbot.python.newtyping.ast.visitor.hints.HintCollector +import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm +import org.utbot.python.newtyping.inference.baseline.MethodAndVars import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.MypyReportLine import org.utbot.python.newtyping.mypy.getErrorNumber @@ -72,14 +74,13 @@ import org.utbot.python.utils.TestGenerationLimitManager import org.utbot.python.utils.TimeoutMode import org.utbot.python.utils.camelToSnakeCase import org.utbot.python.utils.convertToTime -import org.utbot.python.utils.separateUntil import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket import kotlin.random.Random private val logger = KotlinLogging.logger {} private const val RANDOM_TYPE_FREQUENCY = 6 -private const val MINIMAL_TIMEOUT_FOR_SUBSTITUTION = 4_000 // ms +private const val MINIMAL_TIMEOUT_FOR_SUBSTITUTION = 7_000 // ms class FuzzingEngine( val method: PythonMethod, @@ -110,18 +111,16 @@ class FuzzingEngine( val now = System.currentTimeMillis() val filterModifications = modifications .take(minOf(modifications.size, maxOf(((until - now) / MINIMAL_TIMEOUT_FOR_SUBSTITUTION).toInt(), 1))) - filterModifications - .forEachIndexed { index, (modifiedMethod, additionalVars) -> - logger.info { "Modified method: ${modifiedMethod.methodSignature()}" } - val localUntil = separateUntil(until, index, filterModifications.size) - logger.info { "Fuzzing local until: ${localUntil.convertToTime()}" } - generateTests(modifiedMethod, additionalVars, localUntil) + .map { (modifiedMethod, additionalVars) -> + logger.info { "Substitution: ${modifiedMethod.methodSignature()}" } + MethodAndVars(modifiedMethod, additionalVars) } + generateTests(method, filterModifications, until) } private fun generateTests( method: PythonMethod, - additionalVars: String, + methodModifications: List, until: Long, ) { val timeoutLimitManager = TestGenerationLimitManager( @@ -140,7 +139,8 @@ class FuzzingEngine( typeStorage, hintCollector.result, configuration.pythonPath, - method, + MethodAndVars(method, ""), + methodModifications, configuration.sysPathDirectories, configuration.testFileInformation.moduleName, namesInModule, @@ -151,7 +151,6 @@ class FuzzingEngine( getOffsetLine(sourceFileContent, method.ast.endOffset) ), mypyStorage.buildRoot.configFile, - additionalVars, randomTypeFrequency = RANDOM_TYPE_FREQUENCY, dMypyTimeout = configuration.timeoutForRun, ) @@ -200,6 +199,8 @@ class FuzzingEngine( } logger.debug { "Executor manager was created successfully" } + val initialType = typeInferenceAlgorithm.expandState() as FunctionType + val pmd = PythonMethodDescription( method.name, constants, @@ -207,7 +208,7 @@ class FuzzingEngine( Trie(PyInstruction::id), Random(0), TestGenerationLimitManager(ExecutionWithTimoutMode, until, isRootManager = true), - method.methodType, + initialType, ) try { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt index 7702129565..64928d2c57 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/typeinference/FunctionAnnotationUtils.kt @@ -21,6 +21,9 @@ private val BAD_TYPES = setOf( "builtins.super", "builtins.type", "builtins.slice", + "builtins.range", + "builtins.memoryview", + "builtins.object", ) fun getCandidates(param: TypeParameter, typeStorage: PythonTypeHintsStorage): List { @@ -44,7 +47,7 @@ fun getCandidates(param: TypeParameter, typeStorage: PythonTypeHintsStorage): Li fun generateTypesAfterSubstitution(type: UtType, typeStorage: PythonTypeHintsStorage): List { val params = type.getBoundedParameters() return PriorityCartesianProduct(params.map { getCandidates(it, typeStorage) }).getSequence() - .filter { it.all { it.pythonTypeName() !in BAD_TYPES } } + .filter { types -> types.all { it.pythonTypeName() !in BAD_TYPES } } .map { subst -> DefaultSubstitutionProvider.substitute(type, (params zip subst).associate { it }) }.take(MAX_SUBSTITUTIONS).toList() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index aa6772a112..900b8bf920 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -2,20 +2,46 @@ package org.utbot.python.fuzzing import mu.KotlinLogging import org.utbot.fuzzer.FuzzedContext -import org.utbot.fuzzing.* +import org.utbot.fuzzing.Control +import org.utbot.fuzzing.Description +import org.utbot.fuzzing.Feedback +import org.utbot.fuzzing.Fuzzing +import org.utbot.fuzzing.Seed +import org.utbot.fuzzing.Statistic import org.utbot.fuzzing.utils.Trie import org.utbot.python.coverage.PyInstruction import org.utbot.python.engine.ExecutionFeedback import org.utbot.python.framework.api.python.PythonTree -import org.utbot.python.fuzzing.provider.* +import org.utbot.python.fuzzing.provider.BoolValueProvider +import org.utbot.python.fuzzing.provider.BytearrayValueProvider +import org.utbot.python.fuzzing.provider.BytesValueProvider +import org.utbot.python.fuzzing.provider.ComplexValueProvider +import org.utbot.python.fuzzing.provider.ConstantValueProvider +import org.utbot.python.fuzzing.provider.DictValueProvider +import org.utbot.python.fuzzing.provider.FloatValueProvider +import org.utbot.python.fuzzing.provider.IntValueProvider +import org.utbot.python.fuzzing.provider.IteratorValueProvider +import org.utbot.python.fuzzing.provider.ListValueProvider +import org.utbot.python.fuzzing.provider.NoneValueProvider +import org.utbot.python.fuzzing.provider.OptionalValueProvider +import org.utbot.python.fuzzing.provider.RePatternValueProvider +import org.utbot.python.fuzzing.provider.ReduceValueProvider +import org.utbot.python.fuzzing.provider.SetValueProvider +import org.utbot.python.fuzzing.provider.StrValueProvider +import org.utbot.python.fuzzing.provider.SubtypeValueProvider +import org.utbot.python.fuzzing.provider.TupleFixSizeValueProvider +import org.utbot.python.fuzzing.provider.TupleValueProvider +import org.utbot.python.fuzzing.provider.TypeAliasValueProvider +import org.utbot.python.fuzzing.provider.UnionValueProvider import org.utbot.python.fuzzing.provider.utils.isAny -import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.inference.InferredTypeFeedback import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm +import org.utbot.python.newtyping.pythonTypeRepresentation import org.utbot.python.utils.ExecutionWithTimoutMode import org.utbot.python.utils.FakeWithTimeoutMode import org.utbot.python.utils.TestGenerationLimitManager @@ -167,7 +193,6 @@ class PythonFuzzing( stats: Statistic ): Boolean { if (globalIsCancelled()) { - logger.warn { "Cancellation in fuzzing" } return true } if (description.limitManager.isCancelled() || description.parameters.any { it.isAny() }) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt index e62c6efce1..ebc37a76be 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/TypeInferenceProcessor.kt @@ -5,17 +5,31 @@ import org.parsers.python.PythonParser import org.parsers.python.ast.ClassDefinition import org.parsers.python.ast.FunctionDefinition import org.utbot.python.PythonBaseMethod -import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.PythonFunctionDefinition +import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.parseClassDefinition import org.utbot.python.newtyping.ast.parseFunctionDefinition import org.utbot.python.newtyping.ast.visitor.Visitor import org.utbot.python.newtyping.ast.visitor.hints.HintCollector import org.utbot.python.newtyping.general.CompositeType import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.getPythonAttributeByName import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm -import org.utbot.python.newtyping.mypy.* +import org.utbot.python.newtyping.inference.baseline.MethodAndVars +import org.utbot.python.newtyping.mypy.GlobalNamesStorage +import org.utbot.python.newtyping.mypy.MypyBuildDirectory +import org.utbot.python.newtyping.mypy.MypyInfoBuild +import org.utbot.python.newtyping.mypy.dropInitFile +import org.utbot.python.newtyping.mypy.getErrorNumber +import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors +import org.utbot.python.newtyping.pythonTypeRepresentation import org.utbot.python.newtyping.utils.getOffsetLine -import org.utbot.python.utils.* +import org.utbot.python.utils.Cleaner +import org.utbot.python.utils.Fail +import org.utbot.python.utils.Optional +import org.utbot.python.utils.RequirementsUtils +import org.utbot.python.utils.Success +import org.utbot.python.utils.TemporaryFileManager import java.io.File import java.nio.file.Path import java.nio.file.Paths @@ -92,7 +106,8 @@ class TypeInferenceProcessor( typeStorage, collector.result, pythonPath, - pythonMethod, + MethodAndVars(pythonMethod, ""), + emptyList(), directoriesForSysPath, moduleOfSourceFile, namesInModule, @@ -103,7 +118,6 @@ class TypeInferenceProcessor( getOffsetLine(sourceFileContent, pythonMethod.ast.endOffset) ), mypyBuild.buildRoot.configFile, - "", dMypyTimeout = null ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt index 227d0aa0e2..3c4198ec1a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/BaselineAlgorithm.kt @@ -2,12 +2,24 @@ package org.utbot.python.newtyping.inference.baseline import mu.KotlinLogging import org.utbot.python.PythonMethod -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.ast.visitor.hints.* +import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utbot.python.newtyping.ast.visitor.hints.EdgeSource +import org.utbot.python.newtyping.ast.visitor.hints.HintCollectorNode +import org.utbot.python.newtyping.ast.visitor.hints.HintCollectorResult +import org.utbot.python.newtyping.ast.visitor.hints.HintEdgeWithBound +import org.utbot.python.newtyping.createPythonUnionType import org.utbot.python.newtyping.general.FunctionType import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.inference.* +import org.utbot.python.newtyping.inference.InferredTypeFeedback +import org.utbot.python.newtyping.inference.InvalidTypeFeedback +import org.utbot.python.newtyping.inference.SuccessFeedback +import org.utbot.python.newtyping.inference.TypeInferenceAlgorithm +import org.utbot.python.newtyping.inference.addEdge +import org.utbot.python.newtyping.inference.collectBoundsFromComponent +import org.utbot.python.newtyping.inference.visitNodesByReverseEdges import org.utbot.python.newtyping.mypy.checkSuggestedSignatureWithDMypy +import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utbot.python.newtyping.typesAreEqual import org.utbot.python.newtyping.utils.weightedRandom import org.utbot.python.utils.TemporaryFileManager import java.io.File @@ -23,25 +35,35 @@ private val EDGES_TO_LINK = listOf( private val logger = KotlinLogging.logger {} +data class MethodAndVars( + val method: PythonMethod, + val additionalVars: String, +) + class BaselineAlgorithm( private val storage: PythonTypeHintsStorage, - private val hintCollectorResult: HintCollectorResult, + hintCollectorResult: HintCollectorResult, private val pythonPath: String, - private val pythonMethodCopy: PythonMethod, + private val pythonMethod: MethodAndVars, + methodModifications: List = emptyList(), private val directoriesForSysPath: Set, private val moduleToImport: String, private val namesInModule: Collection, private val initialErrorNumber: Int, private val configFile: File, - private val additionalVars: String, private val randomTypeFrequency: Int = 0, private val dMypyTimeout: Long? ) : TypeInferenceAlgorithm() { private val random = Random(0) + private val initialPythonMethod: PythonMethod = pythonMethod.method + private val generalRating = createGeneralTypeRating(hintCollectorResult, storage) - private val initialState = getInitialState(hintCollectorResult, generalRating) - private val states: MutableList = mutableListOf(initialState) + private val initialStates = methodModifications.ifEmpty { listOf(pythonMethod) } .map { + getInitialState(hintCollectorResult, generalRating, it.method.argumentsNames, it.method.methodType, it.additionalVars) + } + private val initialState = initialStates.first() + private val states: MutableList = initialStates.toMutableList() private val fileForMypyRuns = TemporaryFileManager.assignTemporaryFile(tag = "mypy.py") private var iterationCounter = 0 private var randomTypeCounter = 0 @@ -95,23 +117,26 @@ class BaselineAlgorithm( val newState = expandState(state, storage) if (newState != null) { logger.info("Checking new state ${newState.signature.pythonTypeRepresentation()}") - if (checkSignature(newState.signature as FunctionType, fileForMypyRuns, configFile)) { + if (checkSignature(newState.signature as FunctionType, newState.additionalVars, fileForMypyRuns, configFile)) { logger.debug("Found new state!") expandedStates[newState.signature] = newState to state return newState.signature } } else if (state.anyNodes.isEmpty()) { if (state.signature in checkedSignatures) { + logger.debug("Good type ${state.signature.pythonTypeRepresentation()}") return state.signature } - logger.info("Checking ${state.signature.pythonTypeRepresentation()}") - if (checkSignature(state.signature as FunctionType, fileForMypyRuns, configFile)) { + logger.debug("Checking ${state.signature.pythonTypeRepresentation()}") + if (checkSignature(state.signature as FunctionType, state.additionalVars, fileForMypyRuns, configFile)) { + logger.debug("${state.signature.pythonTypeRepresentation()} is good") checkedSignatures.add(state.signature) return state.signature } else { states.remove(state) } } else { + logger.debug("Remove ${state.signature.pythonTypeRepresentation()} because of any nodes") states.remove(state) } return expandState() @@ -119,22 +144,25 @@ class BaselineAlgorithm( fun feedbackState(signature: UtType, feedback: InferredTypeFeedback) { val stateInfo = expandedStates[signature] + val lauded = statistic[signature] != 0 if (stateInfo != null) { val (newState, parent) = stateInfo - when (feedback) { - SuccessFeedback -> { + when { + feedback is SuccessFeedback || lauded -> { states.add(newState) parent.children += 1 } - InvalidTypeFeedback -> { + feedback is InvalidTypeFeedback -> { states.remove(newState) } } expandedStates.remove(signature) - } else if (typesAreEqual(signature, initialState.signature)) { - if (feedback is InvalidTypeFeedback) { - states.remove(initialState) + } else if (feedback is InvalidTypeFeedback && !lauded) { + initialStates.forEach { + if (typesAreEqual(signature, it.signature)) { + states.remove(it) + } } } } @@ -168,7 +196,7 @@ class BaselineAlgorithm( annotationHandler(initialState.signature) } logger.info("Checking ${newState.signature.pythonTypeRepresentation()}") - if (checkSignature(newState.signature as FunctionType, fileForMypyRuns, configFile)) { + if (checkSignature(newState.signature as FunctionType, newState.additionalVars, fileForMypyRuns, configFile)) { logger.debug("Found new state!") when (annotationHandler(newState.signature)) { SuccessFeedback -> { @@ -186,10 +214,10 @@ class BaselineAlgorithm( return iterationCounter } - private fun checkSignature(signature: FunctionType, fileForMypyRuns: File, configFile: File): Boolean { - pythonMethodCopy.changeDefinition(signature) + private fun checkSignature(signature: FunctionType, newAdditionalVars: String, fileForMypyRuns: File, configFile: File): Boolean { + val methodCopy = initialPythonMethod.makeCopyWithNewType(signature) return checkSuggestedSignatureWithDMypy( - pythonMethodCopy, + methodCopy, directoriesForSysPath, moduleToImport, namesInModule, @@ -197,7 +225,7 @@ class BaselineAlgorithm( pythonPath, configFile, initialErrorNumber, - additionalVars, + newAdditionalVars, timeout = dMypyTimeout ) } @@ -209,10 +237,12 @@ class BaselineAlgorithm( private fun getInitialState( hintCollectorResult: HintCollectorResult, - generalRating: List + generalRating: List, + paramNames: List, + methodType: FunctionType, + additionalVars: String = "", ): BaselineAlgorithmState { - val paramNames = pythonMethodCopy.arguments.map { it.name } - val root = PartialTypeNode(pythonMethodCopy.methodType, true) + val root = PartialTypeNode(methodType, true) val allNodes: MutableSet = mutableSetOf(root) val argumentRootNodes = paramNames.map { hintCollectorResult.parameterToNode[it]!! } argumentRootNodes.forEachIndexed { index, node -> @@ -228,7 +258,7 @@ class BaselineAlgorithm( ) addEdge(edge) } - return BaselineAlgorithmState(allNodes, generalRating, storage) + return BaselineAlgorithmState(allNodes, generalRating, storage, additionalVars) } fun laudType(type: FunctionType) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt index 71a49943c3..59b0e88268 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/StateExpansion.kt @@ -5,8 +5,7 @@ import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.inference.addEdge import org.utbot.python.newtyping.pythonAnnotationParameters import org.utbot.python.newtyping.pythonDescription -import java.util.LinkedList -import java.util.Queue +import java.util.* fun expandState(state: BaselineAlgorithmState, typeStorage: PythonTypeHintsStorage): BaselineAlgorithmState? { if (state.anyNodes.isEmpty()) @@ -48,7 +47,7 @@ private fun expandNodes( addEdge(newEdge) } } - return BaselineAlgorithmState(newNodeMap.values.toSet() + allNewNodes, generalRating, storage) + return BaselineAlgorithmState(newNodeMap.values.toSet() + allNewNodes, generalRating, storage, state.additionalVars) } private fun expansionBFS( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt index 6c78170a00..97338bf590 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/inference/baseline/Structures.kt @@ -31,7 +31,8 @@ class BaselineAlgorithmEdge( class BaselineAlgorithmState( val nodes: Set, val generalRating: List, - typeStorage: PythonTypeHintsStorage + typeStorage: PythonTypeHintsStorage, + val additionalVars: String = "", ) { val signature: UtType get() = nodes.find { it.isRoot }!!.partialType From b4464490cb33baf794d3a0e74419935e9d876e45 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 29 Nov 2023 19:48:20 +0300 Subject: [PATCH 116/144] Improve fuzzing process for generics: decree MINIMAL_TIMEOUT_FOR_SUBSTITUTION --- .../kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 3d7ecd935f..0fa490edf3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -80,7 +80,7 @@ import kotlin.random.Random private val logger = KotlinLogging.logger {} private const val RANDOM_TYPE_FREQUENCY = 6 -private const val MINIMAL_TIMEOUT_FOR_SUBSTITUTION = 7_000 // ms +private const val MINIMAL_TIMEOUT_FOR_SUBSTITUTION = 4_000 // ms class FuzzingEngine( val method: PythonMethod, From b51d1b8ae830553154610f295847f5be9a906d7f Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 30 Nov 2023 13:11:33 +0300 Subject: [PATCH 117/144] Supported inner classes --- .../python/sbft/SbftGenerateTestsCommand.kt | 22 +++++++++----- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/parser.py | 4 +-- .../src/main/resources/utbot_executor_version | 2 +- .../python/utbot_mypy_runner/pyproject.toml | 2 +- .../utbot_mypy_runner/extract_annotations.py | 18 +++++------ .../utbot_mypy_runner/nodes.py | 30 +++++++++++++------ .../main/resources/utbot_mypy_runner_version | 2 +- .../python/PythonTestGenerationProcessor.kt | 2 +- .../org/utbot/python/code/PythonCodeAPI.kt | 11 +++++-- .../python/engine/fuzzing/FuzzingEngine.kt | 2 +- .../framework/api/python/util/PythonUtils.kt | 4 ++- 12 files changed, 62 insertions(+), 39 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index f595ea1d70..3dece97aa2 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -26,6 +26,7 @@ import org.utbot.python.code.PythonCode import org.utbot.python.coverage.CoverageOutputFormat import org.utbot.python.coverage.PythonCoverageMode import org.utbot.python.framework.api.python.PythonClassId +import org.utbot.python.framework.api.python.pythonBuiltinsModuleName import org.utbot.python.framework.codegen.model.Pytest import org.utbot.python.framework.codegen.model.PythonImport import org.utbot.python.newtyping.ast.parseClassDefinition @@ -136,15 +137,20 @@ class SbftGenerateTestsCommand : CliktCommand( .mapNotNull { parseFunctionDefinition(it) } .map { PythonMethodHeader(it.name.toString(), absPathToSourceFile, null) } val methods = topLevelClasses - .mapNotNull { parseClassDefinition(it) } - .map { cls -> - PythonCode.getClassMethods(cls.body) - .mapNotNull { parseFunctionDefinition(it) } - .map { function -> - val parsedClassName = PythonClassId(cls.name.toString()) - PythonMethodHeader(function.name.toString(), absPathToSourceFile, parsedClassName) - } + .mapNotNull { cls -> + val parsedClass = parseClassDefinition(cls) ?: return@mapNotNull null + val innerClasses = PythonCode.getInnerClasses(cls) + (listOf(parsedClass to null) + innerClasses.mapNotNull { innerClass -> parseClassDefinition(innerClass)?.let { it to parsedClass } }).map { (cls, parent) -> + PythonCode.getClassMethods(cls.body) + .mapNotNull { parseFunctionDefinition(it) } + .map { function -> + val clsName = (parent?.let { "${it.name}." } ?: "") + cls.name.toString() + val parsedClassName = PythonClassId(pythonBuiltinsModuleName, clsName) + PythonMethodHeader(function.name.toString(), absPathToSourceFile, parsedClassName) + } + } } + .flatten() return methods + listOf(functions) } diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index f6a7e7fa48..8df5d36014 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.6" +version = "1.9.7" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py index 9ef8417fff..36e2023e27 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/parser.py @@ -1,7 +1,7 @@ import dataclasses import enum import json -from typing import Dict, List, Union, Tuple, Literal +from typing import Dict, List, Union class MemoryMode(enum.StrEnum): @@ -24,7 +24,7 @@ class ExecutionRequest: def get_class_name(self) -> str | None: if "." in self.function_name: - return self.function_name.split(".")[0] + return self.function_name.rsplit(".", 1)[0] return None diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index b4cac6fa40..0b9006ea85 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.6 \ No newline at end of file +1.9.7 \ No newline at end of file diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml b/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml index f46aa4f534..7a805fe64b 100644 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot_mypy_runner" -version = "0.2.15" +version = "0.2.16" description = "" authors = ["Ekaterina Tochilina "] readme = "README.md" diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py index 5bf3b57aaa..90a0f8b5c3 100644 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/extract_annotations.py @@ -1,15 +1,13 @@ import json -import typing as tp -from collections import defaultdict - import mypy.nodes import mypy.types - -import utbot_mypy_runner.mypy_main as mypy_main +import typing as tp import utbot_mypy_runner.expression_traverser as expression_traverser +import utbot_mypy_runner.mypy_main as mypy_main import utbot_mypy_runner.names -from utbot_mypy_runner.utils import get_borders +from collections import defaultdict from utbot_mypy_runner.nodes import * +from utbot_mypy_runner.utils import get_borders class ExpressionType: @@ -87,14 +85,14 @@ def get_result_from_mypy_build(build_result: mypy_main.build.BuildResult, source only_types = mypy_file.path not in source_paths try: - definition = get_definition_from_symbol_node(symbol_table_node, Meta(module), only_types) + definitions = get_definition_from_symbol_node(symbol_table_node, Meta(module), name, only_types) except NoTypeVarBindingException: # Bad definition, like this one: # https://github.com/sqlalchemy/sqlalchemy/blob/rel_2_0_20/lib/sqlalchemy/orm/mapped_collection.py#L521 - definition = None + definitions = {} - if definition is not None: - annotation_dict[module][name] = definition + for def_name, definition in definitions.items(): + annotation_dict[module][def_name] = definition def processor(line, col, end_line, end_col, type_, meta): expression_types[module_for_types].append( diff --git a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py index 5530d4979f..18262195d7 100644 --- a/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py +++ b/utbot-python-types/src/main/python/utbot_mypy_runner/utbot_mypy_runner/nodes.py @@ -1,11 +1,9 @@ -import typing as tp -from collections import defaultdict import copy -import sys - import mypy.nodes import mypy.types - +import sys +import typing as tp +from collections import defaultdict added_keys: tp.List[str] = [] annotation_node_dict: tp.Dict[str, "AnnotationNode"] = {} @@ -563,10 +561,24 @@ def get_definition_from_node(node: mypy.nodes.Node, meta: Meta, only_types: bool def get_definition_from_symbol_node( table_node: mypy.nodes.SymbolTableNode, meta: Meta, + base_name: str, only_types: bool = False -) -> tp.Optional[Definition]: +) -> tp.Dict[str, Definition]: if table_node.node is None or not (table_node.node.fullname.startswith(meta.module_name)) \ or not isinstance(table_node.node, mypy.nodes.Node): # this check is only for mypy - return None - - return get_definition_from_node(table_node.node, meta, only_types) + return {} + + definitions = {} + base_def = get_definition_from_node(table_node.node, meta, only_types) + if base_def is not None: + definitions[base_name] = base_def + + try: + defn = table_node.node.defn + if isinstance(defn, mypy.nodes.ClassDef): + for inner_class in filter(lambda x: isinstance(x, mypy.nodes.ClassDef), table_node.node.defn.defs.body): + definitions[f"{base_name}.{inner_class.name}"] = get_definition_from_node(inner_class.info, meta, only_types) + except AttributeError: + pass + + return definitions diff --git a/utbot-python-types/src/main/resources/utbot_mypy_runner_version b/utbot-python-types/src/main/resources/utbot_mypy_runner_version index 797eef9607..d84abc1685 100644 --- a/utbot-python-types/src/main/resources/utbot_mypy_runner_version +++ b/utbot-python-types/src/main/resources/utbot_mypy_runner_version @@ -1 +1 @@ -0.2.15 \ No newline at end of file +0.2.16 \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 47855c0dfd..5e2e4b9757 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -171,7 +171,7 @@ abstract class PythonTestGenerationProcessor { abstract fun processCoverageInfo(testSets: List) private fun getContainingClassName(testSets: List): String { - val containingClasses = testSets.map { it.method.containingPythonClass?.pythonName() ?: "TopLevelFunctions" } + val containingClasses = testSets.map { it.method.containingPythonClass?.pythonName()?.replace(".", "") ?: "TopLevelFunctions" } return containingClasses.toSet().first() } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/code/PythonCodeAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/code/PythonCodeAPI.kt index aa8d2ed873..10cd2c6031 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/code/PythonCodeAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/code/PythonCodeAPI.kt @@ -2,8 +2,8 @@ package org.utbot.python.code import org.parsers.python.ast.Block import org.parsers.python.ast.ClassDefinition -import org.parsers.python.ast.Module import org.parsers.python.ast.FunctionDefinition +import org.parsers.python.ast.Module import org.utbot.python.PythonMethodHeader import org.utbot.python.newtyping.ast.ParsedFunctionDefinition import org.utbot.python.newtyping.ast.parseClassDefinition @@ -19,8 +19,12 @@ object PythonCode { return parsedFile.children().filterIsInstance() } - fun getClassMethods(class_: Block): List { - return class_.children().filterIsInstance() + fun getInnerClasses(classDef: ClassDefinition): List { + return classDef.children().filterIsInstance().flatMap {it.children() }.filterIsInstance() + } + + fun getClassMethods(classBlock: Block): List { + return classBlock.children().filterIsInstance() } fun findFunctionDefinition(parsedFile: Module, method: PythonMethodHeader): ParsedFunctionDefinition { @@ -32,6 +36,7 @@ object PythonCode { } ?: throw Exception("Couldn't find top-level function ${method.name}") } else { getTopLevelClasses(parsedFile) + .flatMap { listOf(it) + getInnerClasses(it) } .mapNotNull { parseClassDefinition(it) } .flatMap { getClassMethods(it.body) } .mapNotNull { parseFunctionDefinition(it) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 0fa490edf3..ceb198ef6e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -199,7 +199,7 @@ class FuzzingEngine( } logger.debug { "Executor manager was created successfully" } - val initialType = typeInferenceAlgorithm.expandState() as FunctionType + val initialType = (typeInferenceAlgorithm.expandState() ?: method.methodType) as FunctionType val pmd = PythonMethodDescription( method.name, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonUtils.kt index d4237e9614..fc7fccf1b1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/util/PythonUtils.kt @@ -13,7 +13,9 @@ fun String.toSnakeCase(): String { else if (c.isUpperCase()) { (if (index > 0) "_" else "") + c.lowercase() } else c - }.joinToString("") + } + .joinToString("") + .replace(".", "") } fun String.toPythonRepr(): String { From 1fa6b37b65c75f8bfae51947abcfc39faad4f3f3 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 30 Nov 2023 13:19:23 +0300 Subject: [PATCH 118/144] Update tests in utbot-executor --- .../python/utbot_executor/tests/pytest.ini | 2 - .../tests/test_deep_serialization.py | 99 ++++++++++--------- .../utbot_executor/tests/test_executor.py | 38 +++++++ .../tests/test_python_executor.py | 33 +++++++ 4 files changed, 122 insertions(+), 50 deletions(-) delete mode 100644 utbot-python-executor/src/main/python/utbot_executor/tests/pytest.ini create mode 100644 utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py create mode 100644 utbot-python-executor/src/main/python/utbot_executor/tests/test_python_executor.py diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/pytest.ini b/utbot-python-executor/src/main/python/utbot_executor/tests/pytest.ini deleted file mode 100644 index d7d93225a4..0000000000 --- a/utbot-python-executor/src/main/python/utbot_executor/tests/pytest.ini +++ /dev/null @@ -1,2 +0,0 @@ -[pytest] -python_files = test_*.py *_test.py *_tests.py \ No newline at end of file diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py b/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py index c01c8a7a25..154af2809f 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py +++ b/utbot-python-executor/src/main/python/utbot_executor/tests/test_deep_serialization.py @@ -54,6 +54,9 @@ def template_test_assert_for_generators(obj: typing.Any, imports: typing.List[st ((1, 2, 3),), (tuple(),), (pickle.dumps(((2, [1, 2]), {})),), + ("123\n \t ",), + (b"123\n \t ",), + ("\n 123\n \t \n",), ], ) def test_primitives(obj: typing.Any): @@ -85,12 +88,12 @@ class MyDataClass: "obj,imports", [ ( - MyDataClass(1, "a", [1, 2], {"a": b"c"}), - ["tests.test_deep_serialization"], + MyDataClass(1, "a", [1, 2], {"a": b"c"}), + ["tests.test_deep_serialization"], ), ( - MyDataClass(1, "a--------------\n\t", [], {}), - ["tests.test_deep_serialization"], + MyDataClass(1, "a--------------\n\t", [], {}), + ["tests.test_deep_serialization"], ), ], ) @@ -109,10 +112,10 @@ def __eq__(self, other): if not isinstance(other, MyClass): return False return ( - self.a == other.a - and self.b == other.b - and self.c == other.c - and self.d == other.d + self.a == other.a + and self.b == other.b + and self.c == other.c + and self.d == other.d ) @@ -133,12 +136,12 @@ def __eq__(self, other): "obj,imports", [ ( - MyClass(1, "a", [1, 2], {"a": b"c"}), - ["tests.test_deep_serialization"], + MyClass(1, "a", [1, 2], {"a": b"c"}), + ["tests.test_deep_serialization"], ), ( - MyClass(1, "a--------------\n\t", [], {}), - ["tests.test_deep_serialization"], + MyClass(1, "a--------------\n\t", [], {}), + ["tests.test_deep_serialization"], ), (EmptyClass(), ["tests.test_deep_serialization"]), (EmptyInitClass(), ["tests.test_deep_serialization"]), @@ -161,10 +164,10 @@ def __eq__(self, other): if not isinstance(other, MyClassWithSlots): return False return ( - self.a == other.a - and self.b == other.b - and self.c == other.c - and self.d == other.d + self.a == other.a + and self.b == other.b + and self.c == other.c + and self.d == other.d ) def __str__(self): @@ -179,12 +182,12 @@ def __setstate__(self, state): "obj,imports", [ ( - MyClassWithSlots(1, "a", [1, 2], {"a": b"c"}), - ["tests.test_deep_serialization", "copyreg"], + MyClassWithSlots(1, "a", [1, 2], {"a": b"c"}), + ["tests.test_deep_serialization", "copyreg"], ), ( - MyClassWithSlots(1, "a--------------\n\t", [], {}), - ["tests.test_deep_serialization", "copyreg"], + MyClassWithSlots(1, "a--------------\n\t", [], {}), + ["tests.test_deep_serialization", "copyreg"], ), ], ) @@ -194,27 +197,27 @@ def test_classes_with_slots(obj: typing.Any, imports: typing.List[str]): def square_iter(x: int): for i in range(x): - yield i ** 2 + yield i**2 @pytest.mark.parametrize( "obj,imports", [ ( - range(10), - ["tests.test_deep_serialization", "copyreg"], + range(10), + ["tests.test_deep_serialization", "copyreg"], ), ( - map(int, "1 1 2 3 4 12 1 239".split()), - ["tests.test_deep_serialization", "copyreg"], + map(int, "1 1 2 3 4 12 1 239".split()), + ["tests.test_deep_serialization", "copyreg"], ), ( - square_iter(5), - ["tests.test_deep_serialization", "copyreg"], + square_iter(5), + ["tests.test_deep_serialization", "copyreg"], ), ( - iter([1, 2, 5]), - ["tests.test_deep_serialization", "copyreg"], + iter([1, 2, 5]), + ["tests.test_deep_serialization", "copyreg"], ), ], ) @@ -230,7 +233,7 @@ def test_comparable(): def test_complex(): - obj = complex(real=float('-inf'), imag=float('nan')) + obj = complex(real=float("-inf"), imag=float("nan")) serialized_obj_ids, _, serialized_memory_dump = serialize_objects_dump([obj], True) memory_dump = json_converter.deserialize_memory_objects(serialized_memory_dump) assert not memory_dump.objects[serialized_obj_ids[0]].comparable @@ -241,7 +244,7 @@ class A: def __init__(self, c): self.c = c - obj = A(complex(real=float('-inf'), imag=float('nan'))) + obj = A(complex(real=float("-inf"), imag=float("nan"))) serialized_obj_ids, _, serialized_memory_dump = serialize_objects_dump([obj], True) memory_dump = json_converter.deserialize_memory_objects(serialized_memory_dump) deserialized_obj = memory_dump.objects[serialized_obj_ids[0]] @@ -371,16 +374,16 @@ def test_recursive_object(): "obj,imports", [ ( - collections.Counter("abcababa"), - ["tests.test_deep_serialization", "collections"], + collections.Counter("abcababa"), + ["tests.test_deep_serialization", "collections"], ), ( - collections.UserDict({1: "a"}), - ["tests.test_deep_serialization", "collections"], + collections.UserDict({1: "a"}), + ["tests.test_deep_serialization", "collections"], ), ( - collections.deque([1, 2, 3]), - ["tests.test_deep_serialization", "collections"], + collections.deque([1, 2, 3]), + ["tests.test_deep_serialization", "collections"], ), ], ) @@ -411,20 +414,20 @@ def test_strategy(obj: typing.Any, strategy: str): [ (re.compile(r"\d+jflsf"), ["tests.test_deep_serialization", "re"]), ( - collections.abc.KeysView, - ["tests.test_deep_serialization", "collections"], + collections.abc.KeysView, + ["tests.test_deep_serialization", "collections"], ), ( - collections.abc.KeysView({}), - [ - "tests.test_deep_serialization", - "collections", - "collections.abc", - ], + collections.abc.KeysView({}), + [ + "tests.test_deep_serialization", + "collections", + "collections.abc", + ], ), ( - importlib.metadata.SelectableGroups([["1", "2"]]), - ["tests.test_deep_serialization", "importlib.metadata"], + importlib.metadata.SelectableGroups([["1", "2"]]), + ["tests.test_deep_serialization", "importlib.metadata"], ), ], ) @@ -438,7 +441,7 @@ def test_corner_cases(obj: typing.Any, imports: typing.List[str]): @pytest.mark.skipif( sys.version_info.major <= 3 and sys.version_info.minor < 11, reason="typing.TypeVarTuple (PEP 646) has been added in Python 3.11", - ) +) def test_type_var_tuple(): globals()["T2"] = typing.TypeVarTuple("T2") obj = typing.TypeVarTuple("T2") diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py b/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py new file mode 100644 index 0000000000..d2edcccdac --- /dev/null +++ b/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py @@ -0,0 +1,38 @@ +from utbot_executor.deep_serialization.deep_serialization import serialize_objects_dump +from utbot_executor.deep_serialization.memory_objects import ReprMemoryObject + + +def test_serialize_state(): + args = ["\n 123 \n"] + kwargs = {} + result = None + + _, state, serialized_state = serialize_objects_dump(args + list(kwargs) + [result]) + + serialized_arg = list(state.objects.values())[0] + assert isinstance(serialized_arg, ReprMemoryObject) + assert serialized_arg.value == "'\\n 123 \\n'" + + +def test_serialize_state_1(): + args = ["0\n 123 \n"] + kwargs = {} + result = None + + _, state, serialized_state = serialize_objects_dump(args + list(kwargs) + [result]) + + serialized_arg = list(state.objects.values())[0] + assert isinstance(serialized_arg, ReprMemoryObject) + assert serialized_arg.value == "'0\\n 123 \\n'" + + +def test_serialize_state_2(): + args = ["\\\n Adds new strings"] + kwargs = {} + result = None + + _, state, serialized_state = serialize_objects_dump(args + list(kwargs) + [result]) + + serialized_arg = list(state.objects.values())[0] + assert isinstance(serialized_arg, ReprMemoryObject) + assert serialized_arg.value == "'\\\\\\n Adds new strings'" diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/test_python_executor.py b/utbot-python-executor/src/main/python/utbot_executor/tests/test_python_executor.py new file mode 100644 index 0000000000..1199de52e5 --- /dev/null +++ b/utbot-python-executor/src/main/python/utbot_executor/tests/test_python_executor.py @@ -0,0 +1,33 @@ +from utbot_executor.config import CoverageConfig, HostConfig +from utbot_executor.executor import PythonExecutor +import random + +from utbot_executor.parser import ( + ExecutionRequest, + parse_request, + ExecutionSuccessResponse, +) +from utbot_executor.utils import TraceMode + +random.seed(239) + + +def _generate_host_config() -> HostConfig: + return HostConfig("localhost", random.randint(10**5, 10**6)) + + +def _generate_coverage_config() -> CoverageConfig: + return CoverageConfig(_generate_host_config(), TraceMode.Instructions, True) + + +def _read_request() -> ExecutionRequest: + with open("example_input.json", "r") as fin: + text = "\n".join(fin.readlines()) + return parse_request(text) + + +def test_python_executor(): + executor = PythonExecutor(_generate_coverage_config(), False) + request = _read_request() + resource = executor.run_function(request) + assert isinstance(resource.status, ExecutionSuccessResponse) From 00bb95456be2946c2474f5e52ae81ca21efc47f1 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 30 Nov 2023 14:07:38 +0300 Subject: [PATCH 119/144] Fix serialization problem with incomparable keys in dict --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../deep_serialization/memory_objects.py | 10 ++++------ .../src/main/resources/utbot_executor_version | 2 +- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 8df5d36014..011f7ac0ca 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.7" +version = "1.9.8" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py index 2177f551de..230191be7a 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py @@ -1,15 +1,13 @@ from __future__ import annotations -import copyreg import inspect import logging +import pickle import re import sys import typing from itertools import zip_longest -import pickle -from typing import Any, Callable, Dict, List, Optional, Set, Type, Iterator, Iterable - +from typing import Any, Callable, Dict, List, Optional, Set, Type, Iterable from utbot_executor.deep_serialization.config import PICKLE_PROTO from utbot_executor.deep_serialization.iterator_wrapper import IteratorWrapper from utbot_executor.deep_serialization.utils import ( @@ -145,8 +143,8 @@ def initialize(self) -> None: deserialized_obj = self.deserialized_obj equals_len = len(self.obj) == len(deserialized_obj) comparable = equals_len and all( - serializer.get_by_id(value_id).comparable - for value_id in self.items.values() + serializer.get_by_id(value_id).comparable and serializer.get_by_id(key_id).comparable + for key_id, value_id in self.items.items() ) super()._initialize(deserialized_obj, comparable) diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 0b9006ea85..f5f0aa630f 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.7 \ No newline at end of file +1.9.8 \ No newline at end of file From f38f44f22bc027880ab1ca877b85fcbd5736f6eb Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 1 Dec 2023 10:48:32 +0300 Subject: [PATCH 120/144] Fix constructor name for inner classes --- .../python/sbft/SbftGenerateTestsCommand.kt | 2 +- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/tests/test_executor.py | 17 ++++++++++++++++- .../utbot_executor/deep_serialization/utils.py | 4 ++-- .../src/main/resources/utbot_executor_version | 2 +- 5 files changed, 21 insertions(+), 6 deletions(-) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index 3dece97aa2..fe318c6adf 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -151,7 +151,7 @@ class SbftGenerateTestsCommand : CliktCommand( } } .flatten() - return methods + listOf(functions) + return (methods + listOf(functions)).filter { it.isNotEmpty() } } private val globalImportCollection = mutableSetOf() diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 011f7ac0ca..f349d9c8e9 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.8" +version = "1.9.9" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py b/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py index d2edcccdac..c4f9ec57b8 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/tests/test_executor.py @@ -1,5 +1,8 @@ from utbot_executor.deep_serialization.deep_serialization import serialize_objects_dump -from utbot_executor.deep_serialization.memory_objects import ReprMemoryObject +from utbot_executor.deep_serialization.memory_objects import ( + ReprMemoryObject, + ReduceMemoryObject, +) def test_serialize_state(): @@ -36,3 +39,15 @@ def test_serialize_state_2(): serialized_arg = list(state.objects.values())[0] assert isinstance(serialized_arg, ReprMemoryObject) assert serialized_arg.value == "'\\\\\\n Adds new strings'" + + +class A: + class B: + def __init__(self, x): + self.x = x + + +def test_serialize_inner_class(): + b = A.B(1) + serialized_b = ReduceMemoryObject(b) + assert "A.B" in serialized_b.constructor.qualname diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py index da06aaeb0a..2d268c769d 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/utils.py @@ -1,10 +1,10 @@ from __future__ import annotations + import dataclasses import importlib import logging import pickle from typing import NewType - from utbot_executor.deep_serialization.config import PICKLE_PROTO PythonId = NewType("PythonId", str) @@ -89,7 +89,7 @@ def get_constructor_info(constructor: object, obj: object) -> TypeInfo: result = TypeInfo(constructor.__module__, constructor.__qualname__) if result.kind == "object.__new__" and obj.__new__.__module__ is None: - result = TypeInfo(obj.__module__, f"{obj.__class__.__name__}.__new__") + result = TypeInfo(obj.__module__, f"{obj.__class__.__qualname__}.__new__") return result diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index f5f0aa630f..c70654ddb0 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.8 \ No newline at end of file +1.9.9 \ No newline at end of file From 809d6e809c29967bd50af300ee1efdde512363b6 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 1 Dec 2023 11:36:00 +0300 Subject: [PATCH 121/144] Change coverage format for minimization --- .../org/utbot/python/coverage/CoverageApi.kt | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt index 34403ad42a..a9fe85b3d6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/coverage/CoverageApi.kt @@ -36,6 +36,18 @@ data class PyInstruction( constructor(lineNumber: Int, id: Long) : this(lineNumber, id.floorDiv(2).toPair().second, id % 2 == 1L) } +data class PyInstructionEdge( + val instruction1: PyInstruction, + val instruction2: PyInstruction, +) : Instruction( + "", + "", + instruction2.pyLineNumber, + (instruction1.id to instruction2.id).toCoverageId() +) { + override fun toString(): String = "$instruction1 -> $instruction2" +} + fun Boolean.toLong() = if (this) 1L else 0L fun String.toPyInstruction(): PyInstruction? { @@ -61,8 +73,17 @@ fun String.toPyInstruction(): PyInstruction? { } fun buildCoverage(coveredStatements: List, missedStatements: List): Coverage { + return buildEdgeCoverage(coveredStatements, missedStatements) +// return Coverage( +// coveredInstructions = coveredStatements, +// instructionsCount = (coveredStatements.size + missedStatements.size).toLong(), +// missedInstructions = missedStatements +// ) +} + +fun buildEdgeCoverage(coveredStatements: List, missedStatements: List): Coverage { return Coverage( - coveredInstructions = coveredStatements, + coveredInstructions = coveredStatements.windowed(2, 1).map { PyInstructionEdge(it[0], it[1]) }, instructionsCount = (coveredStatements.size + missedStatements.size).toLong(), missedInstructions = missedStatements ) From 4a346555a82a302590f348f60f6e4665d83b55bf Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 1 Dec 2023 15:36:03 +0300 Subject: [PATCH 122/144] Activated fuzzing for tp.Any inside objects --- .../org/utbot/python/fuzzing/PythonApi.kt | 63 +++++++++++--- .../fuzzing/provider/BoolValueProvider.kt | 13 ++- .../provider/BytearrayValueProvider.kt | 15 ++-- .../fuzzing/provider/BytesValueProvider.kt | 15 ++-- .../fuzzing/provider/ComplexValueProvider.kt | 15 ++-- .../fuzzing/provider/ConstantValueProvider.kt | 11 ++- .../fuzzing/provider/DictValueProvider.kt | 18 ++-- .../fuzzing/provider/FloatValueProvider.kt | 13 +-- .../fuzzing/provider/IntValueProvider.kt | 14 ++-- .../fuzzing/provider/IteratorValueProvider.kt | 18 ++-- .../fuzzing/provider/ListValueProvider.kt | 18 ++-- .../fuzzing/provider/NoneValueProvider.kt | 12 +-- .../fuzzing/provider/OptionalValueProvider.kt | 17 ++-- .../provider/RePatternValueProvider.kt | 20 ++--- .../fuzzing/provider/ReduceValueProvider.kt | 84 ++++++++++++------- .../fuzzing/provider/SetValueProvider.kt | 18 ++-- .../fuzzing/provider/StrValueProvider.kt | 16 ++-- .../fuzzing/provider/SubtypeValueProvider.kt | 29 ++++--- .../provider/TupleFixSizeValueProvider.kt | 23 ++--- .../fuzzing/provider/TupleValueProvider.kt | 36 +++++--- .../provider/TypeAliasValueProvider.kt | 21 +++-- .../fuzzing/provider/UnionValueProvider.kt | 17 ++-- .../fuzzing/provider/utils/ProviderUtils.kt | 21 ++--- .../newtyping/ast/visitor/hints/Protocols.kt | 6 -- 24 files changed, 296 insertions(+), 237 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 900b8bf920..676dddebaf 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -8,10 +8,12 @@ import org.utbot.fuzzing.Feedback import org.utbot.fuzzing.Fuzzing import org.utbot.fuzzing.Seed import org.utbot.fuzzing.Statistic +import org.utbot.fuzzing.ValueProvider import org.utbot.fuzzing.utils.Trie import org.utbot.python.coverage.PyInstruction import org.utbot.python.engine.ExecutionFeedback import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.provider.BoolValueProvider import org.utbot.python.fuzzing.provider.BytearrayValueProvider import org.utbot.python.fuzzing.provider.BytesValueProvider @@ -41,6 +43,9 @@ import org.utbot.python.newtyping.inference.InferredTypeFeedback import org.utbot.python.newtyping.inference.InvalidTypeFeedback import org.utbot.python.newtyping.inference.SuccessFeedback import org.utbot.python.newtyping.inference.baseline.BaselineAlgorithm +import org.utbot.python.newtyping.pythonModuleName +import org.utbot.python.newtyping.pythonName +import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.pythonTypeRepresentation import org.utbot.python.utils.ExecutionWithTimoutMode import org.utbot.python.utils.FakeWithTimeoutMode @@ -49,12 +54,33 @@ import kotlin.random.Random private val logger = KotlinLogging.logger {} +typealias PythonValueProvider = ValueProvider + data class PythonFuzzedConcreteValue( val type: UtType, val value: Any, val fuzzedContext: FuzzedContext = FuzzedContext.Unknown, ) +data class FuzzedUtType( + val utType: UtType, + val fuzzAny: Boolean = false, +) { + fun activateAny() = FuzzedUtType(utType, true) + + fun isAny(): Boolean = utType.isAny() + fun pythonName(): String = utType.pythonName() + fun pythonTypeName(): String = utType.pythonTypeName() + fun pythonModuleName(): String = utType.pythonModuleName() + fun pythonTypeRepresentation(): String = utType.pythonTypeRepresentation() + + companion object { + fun Collection.toFuzzed() = this.map { it.toFuzzed() } + fun UtType.toFuzzed() = FuzzedUtType(this) + fun Collection.activateAny() = this.map { it.activateAny() } + } +} + class PythonMethodDescription( val name: String, val concreteValues: Collection = emptyList(), @@ -63,7 +89,7 @@ class PythonMethodDescription( val random: Random, val limitManager: TestGenerationLimitManager, val type: FunctionType, -) : Description(type.arguments) +) : Description(type.arguments.toFuzzed()) data class PythonExecutionResult( val executionFeedback: ExecutionFeedback, @@ -75,7 +101,7 @@ data class PythonFeedback( val result: Trie.Node = Trie.emptyNode(), val typeInferenceFeedback: InferredTypeFeedback = InvalidTypeFeedback, val fromCache: Boolean = false, -) : Feedback { +) : Feedback { fun fromCache(): PythonFeedback { return PythonFeedback( control = control, @@ -132,10 +158,10 @@ class PythonFuzzing( private val typeInferenceAlgorithm: BaselineAlgorithm, private val globalIsCancelled: () -> Boolean, val execute: suspend (description: PythonMethodDescription, values: List) -> PythonFeedback, -) : Fuzzing { +) : Fuzzing { - private fun generateDefault(description: PythonMethodDescription, type: UtType)= sequence { - pythonDefaultValueProviders(pythonTypeStorage).asSequence().forEach { provider -> + private fun generateDefault(providers: List, description: PythonMethodDescription, type: FuzzedUtType)= sequence { + providers.asSequence().forEach { provider -> if (provider.accept(type)) { logger.debug { "Provider ${provider.javaClass.simpleName} accepts type ${type.pythonTypeRepresentation()}" } yieldAll(provider.generate(description, type)) @@ -143,16 +169,27 @@ class PythonFuzzing( } } - override fun generate(description: PythonMethodDescription, type: UtType): Sequence> { - var providers = emptyList>().asSequence() + private fun generateAnyProviders(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + pythonAnyTypeValueProviders().asSequence().forEach { provider -> + logger.debug { "Provider ${provider.javaClass.simpleName} accepts type ${type.pythonTypeRepresentation()} with activated any" } + yieldAll(provider.generate(description, type)) + } + } + + override fun generate(description: PythonMethodDescription, type: FuzzedUtType): Sequence> { + val providers = mutableSetOf>() if (type.isAny()) { - logger.debug("Any does not have provider") + if (type.fuzzAny) { + providers += generateAnyProviders(description, type) + } else { + logger.debug("Any does not have provider") + } } else { - providers += generateDefault(description, type) + providers += generateDefault(pythonDefaultValueProviders(pythonTypeStorage), description, type) } - return providers + return providers.asSequence() } override suspend fun handle(description: PythonMethodDescription, values: List): PythonFeedback { @@ -166,7 +203,7 @@ class PythonFuzzing( return result } - private suspend fun forkType(description: PythonMethodDescription, stats: Statistic) { + private suspend fun forkType(description: PythonMethodDescription, stats: Statistic) { val type: UtType? = typeInferenceAlgorithm.expandState() if (type != null) { val d = PythonMethodDescription( @@ -190,12 +227,12 @@ class PythonFuzzing( override suspend fun isCancelled( description: PythonMethodDescription, - stats: Statistic + stats: Statistic ): Boolean { if (globalIsCancelled()) { return true } - if (description.limitManager.isCancelled() || description.parameters.any { it.isAny() }) { + if (description.limitManager.isCancelled()) {// || description.parameters.any { it.isAny() }) { forkType(description, stats) if (description.limitManager.isRootManager) { return FakeWithTimeoutMode.isCancelled(description.limitManager) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt index 17dbf7c2ef..945272d609 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BoolValueProvider.kt @@ -1,28 +1,27 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.fuzzing.seeds.Bool import org.utbot.fuzzing.seeds.KnownValue import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonBoolClassId +import org.utbot.python.fuzzing.FuzzedUtType import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName -object BoolValueProvider : ValueProvider{ - override fun accept(type: UtType): Boolean { +object BoolValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonBoolClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { yieldBool(Bool.TRUE()) { true } yieldBool(Bool.FALSE()) { false } } - private suspend fun > SequenceScope>.yieldBool(value: T, block: T.() -> Boolean) { + private suspend fun > SequenceScope>.yieldBool(value: T, block: T.() -> Boolean) { yield(Seed.Known(value) { PythonFuzzedValue( PythonTree.fromBool(block(it)), diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytearrayValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytearrayValueProvider.kt index 96f093c465..9c6b2765c3 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytearrayValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytearrayValueProvider.kt @@ -2,26 +2,25 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonBytearrayClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utbot.python.fuzzing.PythonValueProvider -object BytearrayValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object BytearrayValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonBytearrayClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { yield(Seed.Recursive( construct = Routine.Create( listOf( description.pythonTypeStorage.pythonInt, - ) + ).toFuzzed() ) { v -> val value = v.first().tree as PythonTree.PrimitiveNode PythonFuzzedValue( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytesValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytesValueProvider.kt index 9516a5c5a6..ba107fe158 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytesValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/BytesValueProvider.kt @@ -2,26 +2,25 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonBytesClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation +import org.utbot.python.fuzzing.PythonValueProvider -object BytesValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object BytesValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonBytesClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { yield(Seed.Recursive( construct = Routine.Create( listOf( description.pythonTypeStorage.pythonInt, - ) + ).toFuzzed() ) { v -> val value = v.first().tree as PythonTree.PrimitiveNode PythonFuzzedValue( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt index c736add44b..3f8a65e0af 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ComplexValueProvider.kt @@ -2,22 +2,21 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonComplexClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.createPythonUnionType -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -object ComplexValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object ComplexValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonComplexClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { val numberType = createPythonUnionType( listOf( description.pythonTypeStorage.pythonFloat, @@ -37,7 +36,7 @@ object ComplexValueProvider : ValueProvider if (v[0].tree is PythonTree.FakeNode || v[1].tree is PythonTree.FakeNode) { emptyValue diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt index 794c9c02d5..9201a17d94 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ConstantValueProvider.kt @@ -1,21 +1,20 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.value.TypesFromJSONStorage -object ConstantValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object ConstantValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return TypesFromJSONStorage.getTypesFromJsonStorage().containsKey(type.pythonTypeName()) } - override fun generate(description: PythonMethodDescription, type: UtType): Sequence> = + override fun generate(description: PythonMethodDescription, type: FuzzedUtType): Sequence> = sequence { val storage = TypesFromJSONStorage.getTypesFromJsonStorage() storage.values.forEach { values -> diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt index 538e7730ba..352e12ce80 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt @@ -2,23 +2,23 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonDictClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -object DictValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object DictValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonDictClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val params = type.pythonAnnotationParameters() + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val params = type.utType.pythonAnnotationParameters() yield(Seed.Collection( construct = Routine.Collection { _ -> @@ -27,7 +27,7 @@ object DictValueProvider : ValueProvider + modify = Routine.ForEach(params.toFuzzed().activateAny()) { instance, _, arguments -> val key = arguments[0].tree val value = arguments[1].tree val dict = instance.tree as PythonTree.DictNode diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt index 496ac4b67a..d6089aa2fa 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/FloatValueProvider.kt @@ -1,28 +1,29 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.fuzzing.seeds.IEEE754Value import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonFloatClassId import org.utbot.python.framework.api.python.util.pythonIntClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedConcreteValue import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonTypeName import java.math.BigDecimal import java.math.BigInteger -object FloatValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object FloatValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonFloatClassId.canonicalName } private fun getFloatConstants(concreteValues: Collection): List { return concreteValues - .filter { accept(it.type) } + .filter { accept(it.type.toFuzzed()) } .map { fuzzedValue -> (fuzzedValue.value as BigDecimal).let { IEEE754Value.fromValue(it.toDouble()) @@ -40,7 +41,7 @@ object FloatValueProvider : ValueProvider> = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType): Sequence> = sequence { val floatConstants = getFloatConstants(description.concreteValues) val intConstants = getIntConstants(description.concreteValues) val constants = floatConstants + intConstants + listOf(0, 1).map { IEEE754Value.fromValue(it.toDouble()) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt index cf4f6d36dc..3f4dd7e989 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IntValueProvider.kt @@ -3,26 +3,26 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Configuration import org.utbot.fuzzing.Mutation import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.fuzzing.seeds.BitVectorValue import org.utbot.fuzzing.seeds.KnownValue import org.utbot.fuzzing.seeds.Signed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonIntClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedConcreteValue import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName import java.math.BigInteger import kotlin.random.Random -object IntValueProvider : ValueProvider { +object IntValueProvider : PythonValueProvider { private val randomStubWithNoUsage = Random(0) private val configurationStubWithNoUsage = Configuration() - override fun accept(type: UtType): Boolean { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonIntClassId.canonicalName } @@ -34,7 +34,7 @@ object IntValueProvider : ValueProvider): List { return concreteValues - .filter { accept(it.type) } + .filter { accept(it.type.toFuzzed()) } .map { fuzzedValue -> (fuzzedValue.value as BigInteger).let { BitVectorValue.fromBigInteger(it) @@ -42,7 +42,7 @@ object IntValueProvider : ValueProvider> { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence> { val bits = 128 val integerConstants = getIntConstants(description.concreteValues) val modifiedConstants = integerConstants.flatMap { value -> diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt index e5483e4d5f..bba92c7e19 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt @@ -2,23 +2,23 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonIteratorClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -object IteratorValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object IteratorValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonIteratorClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val param = type.pythonAnnotationParameters() + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val param = type.utType.pythonAnnotationParameters() yield( Seed.Collection( construct = Routine.Collection { @@ -29,7 +29,7 @@ object IteratorValueProvider : ValueProvider + modify = Routine.ForEach(param.toFuzzed().activateAny()) { self, i, values -> (self.tree as PythonTree.IteratorNode).items[i] = values.first().tree } )) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt index 94c23cf191..8372266822 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt @@ -2,23 +2,23 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonListClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -object ListValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object ListValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonListClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val param = type.pythonAnnotationParameters() + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val param = type.utType.pythonAnnotationParameters() yield( Seed.Collection( construct = Routine.Collection { @@ -29,7 +29,7 @@ object ListValueProvider : ValueProvider + modify = Routine.ForEach(param.toFuzzed().activateAny()) { self, i, values -> (self.tree as PythonTree.ListNode).items[i] = values.first().tree } )) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt index 9d16d2db3f..3ea60ccfb4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/NoneValueProvider.kt @@ -1,19 +1,19 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.PythonNoneTypeDescription -import org.utbot.python.newtyping.general.UtType -object NoneValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { - return type.meta is PythonNoneTypeDescription +object NoneValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { + return type.utType.meta is PythonNoneTypeDescription } - override fun generate(description: PythonMethodDescription, type: UtType): Sequence> = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType): Sequence> = sequence { yield(Seed.Simple(PythonFuzzedValue(PythonTree.fromNone(), "%var% = None"))) } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt index de741012aa..1dd43c6a11 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt @@ -2,23 +2,24 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.PythonNoneTypeDescription import org.utbot.python.newtyping.PythonUnionTypeDescription -import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonAnnotationParameters -object OptionalValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { - return type.meta is PythonUnionTypeDescription && type.parameters.any { it.meta is PythonNoneTypeDescription } +object OptionalValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { + return type.utType.meta is PythonUnionTypeDescription && type.utType.parameters.any { it.meta is PythonNoneTypeDescription } } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val params = type.pythonAnnotationParameters() - params.forEach { unionParam -> + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val params = type.utType.pythonAnnotationParameters() + params.toFuzzed().forEach { unionParam -> yield(Seed.Recursive( construct = Routine.Create(listOf(unionParam)) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.fromNone()) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/RePatternValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/RePatternValueProvider.kt index 4a47f7575d..aaf2075391 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/RePatternValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/RePatternValueProvider.kt @@ -2,34 +2,28 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider -import org.utbot.fuzzing.seeds.Bool -import org.utbot.fuzzing.seeds.KnownValue import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree -import org.utbot.python.framework.api.python.util.pythonBoolClassId import org.utbot.python.framework.api.python.util.pythonRePatternClassId import org.utbot.python.framework.api.python.util.toPythonRepr +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.fuzzing.provider.utils.generateSummary -import org.utbot.python.fuzzing.provider.utils.isAny +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.makeRawString -import org.utbot.python.fuzzing.provider.utils.transformRawString -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName -object RePatternValueProvider : ValueProvider{ - override fun accept(type: UtType): Boolean { +object RePatternValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonRePatternClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { yield(Seed.Recursive( construct = Routine.Create( listOf( description.pythonTypeStorage.pythonStr, - ) + ).toFuzzed() ) { v -> val value = v.first().tree as PythonTree.PrimitiveNode val rawValue = value.repr.toPythonRepr().makeRawString() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index f740f4d3da..61e05463bb 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -2,12 +2,27 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree -import org.utbot.python.framework.api.python.util.* +import org.utbot.python.framework.api.python.util.pythonBoolClassId +import org.utbot.python.framework.api.python.util.pythonBytearrayClassId +import org.utbot.python.framework.api.python.util.pythonBytesClassId +import org.utbot.python.framework.api.python.util.pythonComplexClassId +import org.utbot.python.framework.api.python.util.pythonDictClassId +import org.utbot.python.framework.api.python.util.pythonFloatClassId +import org.utbot.python.framework.api.python.util.pythonIntClassId +import org.utbot.python.framework.api.python.util.pythonListClassId +import org.utbot.python.framework.api.python.util.pythonObjectClassId +import org.utbot.python.framework.api.python.util.pythonRePatternClassId +import org.utbot.python.framework.api.python.util.pythonSetClassId +import org.utbot.python.framework.api.python.util.pythonStrClassId +import org.utbot.python.framework.api.python.util.pythonTupleClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.isAny import org.utbot.python.fuzzing.provider.utils.isCallable import org.utbot.python.fuzzing.provider.utils.isConcreteType @@ -15,11 +30,18 @@ import org.utbot.python.fuzzing.provider.utils.isMagic import org.utbot.python.fuzzing.provider.utils.isPrivate import org.utbot.python.fuzzing.provider.utils.isProperty import org.utbot.python.fuzzing.provider.utils.isProtected -import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.PythonCallableTypeDescription +import org.utbot.python.newtyping.PythonCompositeTypeDescription +import org.utbot.python.newtyping.PythonDefinition import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.getPythonAttributeByName +import org.utbot.python.newtyping.getPythonAttributes +import org.utbot.python.newtyping.pythonDescription +import org.utbot.python.newtyping.pythonName +import org.utbot.python.newtyping.pythonNoneType +import org.utbot.python.newtyping.pythonTypeName -object ReduceValueProvider : ValueProvider { +object ReduceValueProvider : PythonValueProvider { private val unsupportedTypes = listOf( pythonRePatternClassId.canonicalName, pythonListClassId.canonicalName, @@ -36,19 +58,19 @@ object ReduceValueProvider : ValueProvider>().toMutableList() + val modifications = emptyList>().toMutableList() modifications.addAll(fields.map { field -> - Routine.Call(listOf(field.type)) { instance, arguments -> + Routine.Call(listOf(field.type).toFuzzed().activateAny()) { instance, arguments -> val obj = instance.tree as PythonTree.ReduceNode obj.state[field.meta.name] = arguments.first().tree } @@ -57,27 +79,27 @@ object ReduceValueProvider : ValueProvider { + private fun findFields(description: PythonMethodDescription, type: FuzzedUtType): List { // TODO: here we need to use same as .getPythonAttributeByName but without name // TODO: now we do not have fields from parents // TODO: here we should use only attributes from __slots__ - return type.getPythonAttributes().filter { attr -> + return type.utType.getPythonAttributes().filter { attr -> !attr.isMagic() && !attr.isProtected() && !attr.isPrivate() && !attr.isProperty() && !attr.isCallable( description.pythonTypeStorage ) } } - private fun findConstructors(description: PythonMethodDescription, type: UtType): List { + private fun findConstructors(description: PythonMethodDescription, type: FuzzedUtType): List { val initMethodName = "__init__" val newMethodName = "__new__" - val typeDescr = type.pythonDescription() + val typeDescr = type.utType.pythonDescription() return if (typeDescr is PythonCompositeTypeDescription) { - val mro = typeDescr.mro(description.pythonTypeStorage, type) + val mro = typeDescr.mro(description.pythonTypeStorage, type.utType) val initParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == initMethodName } } val newParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == newMethodName } } - val initMethods = type.getPythonAttributeByName(description.pythonTypeStorage, initMethodName) - val newMethods = type.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) + val initMethods = type.utType.getPythonAttributeByName(description.pythonTypeStorage, initMethodName) + val newMethods = type.utType.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) if (initParent <= newParent && initMethods != null) { listOf(initMethods) } else if (newMethods != null) { @@ -91,11 +113,11 @@ object ReduceValueProvider : ValueProvider>, + modifications: Sequence>, description: PythonMethodDescription, - ): Seed.Recursive { + ): Seed.Recursive { return Seed.Recursive( construct = buildConstructor(type, constructorFunction, description), modify = modifications, @@ -104,11 +126,11 @@ object ReduceValueProvider : ValueProvider { + ): Routine.Create { if (constructorFunction.pythonName().endsWith("__new__") && constructorFunction.arguments.any { it.isAny() }) { val newMethodName = "__new__" - val newMethod = type.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) + val newMethod = type.utType.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) val newMethodArgs = (newMethod?.type as FunctionType?)?.arguments return if (newMethodArgs != null && newMethodArgs.size == 1) { val classId = PythonClassId(type.pythonModuleName(), type.pythonName()) - Routine.Create(newMethodArgs) { v -> + Routine.Create(newMethodArgs.toFuzzed().activateAny()) { v -> PythonFuzzedValue( PythonTree.ReduceNode( classId, @@ -144,7 +166,7 @@ object ReduceValueProvider : ValueProvider + Routine.Create(listOf(pythonNoneType).toFuzzed()) { v -> PythonFuzzedValue( PythonTree.ReduceNode( classId, @@ -160,7 +182,7 @@ object ReduceValueProvider : ValueProvider + return Routine.Create(nonSelfArgs.toFuzzed()) { v -> PythonFuzzedValue( PythonTree.ReduceNode( PythonClassId(type.pythonModuleName(), type.pythonName()), @@ -176,11 +198,11 @@ object ReduceValueProvider : ValueProvider>, + modifications: Sequence>, description: PythonMethodDescription, - ): Sequence> = sequence { + ): Sequence> = sequence { val constructors = emptyList().toMutableList() if (constructor.type.pythonTypeName() == "Overload") { constructor.type.parameters.forEach { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt index df65f7ef97..1a4f54dde4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt @@ -2,23 +2,23 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonSetClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonTypeName -import org.utbot.python.newtyping.pythonTypeRepresentation -object SetValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object SetValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonSetClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val params = type.pythonAnnotationParameters() + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val params = type.utType.pythonAnnotationParameters() yield(Seed.Collection( construct = Routine.Collection { _ -> @@ -27,7 +27,7 @@ object SetValueProvider : ValueProvider + modify = Routine.ForEach(params.toFuzzed().activateAny()) { instance, _, arguments -> val item = arguments[0].tree val set = instance.tree as PythonTree.SetNode set.items.add(item) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt index 2f035ca942..d6a30864b9 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt @@ -1,30 +1,30 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.fuzzing.seeds.KnownValue import org.utbot.fuzzing.seeds.RegexValue import org.utbot.fuzzing.seeds.StringValue import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonStrClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedConcreteValue import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.generateSummary import org.utbot.python.fuzzing.provider.utils.isPattern import org.utbot.python.fuzzing.provider.utils.transformQuotationMarks import org.utbot.python.fuzzing.provider.utils.transformRawString -import org.utbot.python.newtyping.general.UtType -import org.utbot.python.newtyping.pythonTypeName -object StrValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object StrValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonStrClassId.canonicalName } private fun getConstants(concreteValues: Collection): List { return concreteValues - .filter { accept(it.type) } + .filter { accept(it.type.toFuzzed()) } .map { it.value as String } } @@ -40,7 +40,7 @@ object StrValueProvider : ValueProvider> SequenceScope>.yieldStrings(value: T, block: T.() -> Any) { + private suspend fun > SequenceScope>.yieldStrings(value: T, block: T.() -> Any) { yield(Seed.Known(value) { PythonFuzzedValue( PythonTree.fromString(block(it).toString()), diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt index 5b7289f6c9..fd5d1b12e1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt @@ -2,22 +2,27 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.fuzzing.provider.utils.isConcreteType -import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.PythonConcreteCompositeTypeDescription +import org.utbot.python.newtyping.PythonProtocolDescription import org.utbot.python.newtyping.PythonSubtypeChecker.Companion.checkIfRightIsSubtypeOfLeft +import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.general.DefaultSubstitutionProvider -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.pythonAnyType +import org.utbot.python.newtyping.pythonDescription class SubtypeValueProvider( private val typeStorage: PythonTypeHintsStorage -) : ValueProvider { - override fun accept(type: UtType): Boolean { - return type.meta is PythonProtocolDescription || - ((type.meta as? PythonConcreteCompositeTypeDescription)?.isAbstract == true) +) : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { + return type.utType.meta is PythonProtocolDescription || + ((type.utType.meta as? PythonConcreteCompositeTypeDescription)?.isAbstract == true) } private val concreteTypes = typeStorage.simpleTypes.filter { @@ -26,14 +31,14 @@ class SubtypeValueProvider( DefaultSubstitutionProvider.substituteAll(it, it.parameters.map { pythonAnyType }) } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val subtypes = concreteTypes.filter { checkIfRightIsSubtypeOfLeft(type, it, typeStorage) } + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val subtypes = concreteTypes.filter { checkIfRightIsSubtypeOfLeft(type.utType, it, typeStorage) } subtypes.forEach { subtype -> yield( Seed.Recursive( - construct = Routine.Create(listOf(subtype)) { v -> v.first() }, - empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } - )) + construct = Routine.Create(listOf(subtype).toFuzzed()) { v -> v.first() }, + empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } + )) } } } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt index 3e39163faa..16d91dbcab 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt @@ -2,31 +2,32 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.PythonTupleTypeDescription -import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonAnnotationParameters -import org.utbot.python.newtyping.pythonTypeRepresentation -object TupleFixSizeValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { - return type.meta is PythonTupleTypeDescription +object TupleFixSizeValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { + return type.utType.meta is PythonTupleTypeDescription } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val params = type.pythonAnnotationParameters() + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val params = type.utType.pythonAnnotationParameters() val length = params.size - val modifications = emptyList>().toMutableList() + val modifications = emptyList>().toMutableList() for (i in 0 until length) { - modifications.add(Routine.Call(listOf(params[i])) { instance, arguments -> + modifications.add(Routine.Call(listOf(params[i]).toFuzzed().activateAny()) { instance, arguments -> (instance.tree as PythonTree.TupleNode).items[i] = arguments.first().tree }) } yield(Seed.Recursive( - construct = Routine.Create(params) { v -> + construct = Routine.Create(params.toFuzzed().activateAny()) { v -> PythonFuzzedValue( PythonTree.TupleNode(v.withIndex().associate { it.index to it.value.tree }.toMutableMap()), "%var% = ${type.pythonTypeRepresentation()}" diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt index a0ac24de31..3a10773fe8 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt @@ -2,23 +2,27 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonTupleClassId +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.fuzzing.provider.utils.getSuitableConstantsFromCode -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.UtType +import org.utbot.python.fuzzing.PythonValueProvider +import org.utbot.python.newtyping.PythonSubtypeChecker +import org.utbot.python.newtyping.pythonAnnotationParameters +import org.utbot.python.newtyping.pythonAnyType +import org.utbot.python.newtyping.typesAreEqual -object TupleValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { +object TupleValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { return type.pythonTypeName() == pythonTupleClassId.canonicalName } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { yieldAll(getConstants(description, type)) - val param = type.pythonAnnotationParameters() + val param = type.utType.pythonAnnotationParameters() yield( Seed.Collection( construct = Routine.Collection { @@ -29,15 +33,25 @@ object TupleValueProvider : ValueProvider + modify = Routine.ForEach(param.toFuzzed().activateAny()) { self, i, values -> (self.tree as PythonTree.TupleNode).items[i] = values.first().tree } )) } - private fun getConstants(description: PythonMethodDescription, type: UtType): List> { - if (!typesAreEqual(type.parameters.first(), pythonAnyType)) + private fun getConstants(description: PythonMethodDescription, type: FuzzedUtType): List> { + if (!typesAreEqual(type.utType.parameters.first(), pythonAnyType)) return getSuitableConstantsFromCode(description, type) return emptyList() } + private fun getSuitableConstantsFromCode(description: PythonMethodDescription, type: FuzzedUtType): List> { + return description.concreteValues.filter { + PythonSubtypeChecker.checkIfRightIsSubtypeOfLeft(type.utType, it.type, description.pythonTypeStorage) + }.mapNotNull { value -> + PythonTree.fromParsedConstant(Pair(value.type, value.value))?.let { + Seed.Simple(PythonFuzzedValue(it)) + } + } + } + } \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt index ffc4a4621c..d8d3883156 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt @@ -2,24 +2,27 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.PythonTypeAliasDescription -import org.utbot.python.newtyping.general.UtType -object TypeAliasValueProvider : ValueProvider { - - override fun accept(type: UtType): Boolean { - return type.meta is PythonTypeAliasDescription +object TypeAliasValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { + return type.utType.meta is PythonTypeAliasDescription } - override fun generate(description: PythonMethodDescription, type: UtType): Sequence> { - val compositeType = PythonTypeAliasDescription.castToCompatibleTypeApi(type) + override fun generate( + description: PythonMethodDescription, + type: FuzzedUtType + ): Sequence> { + val compositeType = PythonTypeAliasDescription.castToCompatibleTypeApi(type.utType) return sequenceOf( Seed.Recursive( - construct = Routine.Create(listOf(compositeType.members[0])) { v -> v.first() }, + construct = Routine.Create(listOf(compositeType.members[0]).toFuzzed()) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } ) ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt index e47811376a..fd6fcacc4d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt @@ -2,25 +2,26 @@ package org.utbot.python.fuzzing.provider import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed -import org.utbot.fuzzing.ValueProvider import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription +import org.utbot.python.fuzzing.PythonValueProvider import org.utbot.python.newtyping.PythonNoneTypeDescription import org.utbot.python.newtyping.PythonUnionTypeDescription -import org.utbot.python.newtyping.general.UtType import org.utbot.python.newtyping.pythonAnnotationParameters -object UnionValueProvider : ValueProvider { - override fun accept(type: UtType): Boolean { - return type.meta is PythonUnionTypeDescription && type.parameters.all { it.meta !is PythonNoneTypeDescription } +object UnionValueProvider : PythonValueProvider { + override fun accept(type: FuzzedUtType): Boolean { + return type.utType.meta is PythonUnionTypeDescription && type.utType.parameters.all { it.meta !is PythonNoneTypeDescription } } - override fun generate(description: PythonMethodDescription, type: UtType) = sequence { - val params = type.pythonAnnotationParameters() + override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { + val params = type.utType.pythonAnnotationParameters() params.forEach { unionParam -> yield(Seed.Recursive( - construct = Routine.Create(listOf(unionParam)) { v -> v.first() }, + construct = Routine.Create(listOf(unionParam).toFuzzed()) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } )) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt index 633956d31e..30204cdae4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/utils/ProviderUtils.kt @@ -1,26 +1,17 @@ package org.utbot.python.fuzzing.provider.utils -import org.utbot.fuzzing.Seed -import org.utbot.python.framework.api.python.PythonTree -import org.utbot.python.fuzzing.PythonFuzzedValue -import org.utbot.python.fuzzing.PythonMethodDescription -import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.PythonAnyTypeDescription +import org.utbot.python.newtyping.PythonConcreteCompositeTypeDescription +import org.utbot.python.newtyping.PythonDefinition +import org.utbot.python.newtyping.PythonTypeHintsStorage +import org.utbot.python.newtyping.PythonVariableDescription import org.utbot.python.newtyping.general.UtType +import org.utbot.python.newtyping.getPythonAttributeByName fun UtType.isAny(): Boolean { return meta is PythonAnyTypeDescription } -fun getSuitableConstantsFromCode(description: PythonMethodDescription, type: UtType): List> { - return description.concreteValues.filter { - PythonSubtypeChecker.checkIfRightIsSubtypeOfLeft(type, it.type, description.pythonTypeStorage) - }.mapNotNull { value -> - PythonTree.fromParsedConstant(Pair(value.type, value.value))?.let { - Seed.Simple(PythonFuzzedValue(it)) - } - } -} - fun isConcreteType(type: UtType): Boolean { return (type.meta as? PythonConcreteCompositeTypeDescription)?.isAbstract == false } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/Protocols.kt b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/Protocols.kt index 157881d647..2c2e888487 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/Protocols.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/newtyping/ast/visitor/hints/Protocols.kt @@ -1,11 +1,5 @@ package org.utbot.python.newtyping.ast.visitor.hints -import org.utbot.python.newtyping.* -import org.utbot.python.newtyping.general.CompositeTypeCreator -import org.utbot.python.newtyping.general.FunctionTypeCreator -import org.utbot.python.newtyping.general.Name -import org.utbot.python.newtyping.general.UtType - enum class Operation(val method: String) { Add("__add__"), Sub("__sub__"), From fc391da5d81c686b0654244d414d05d317dcc5b6 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 1 Dec 2023 17:45:03 +0300 Subject: [PATCH 123/144] Remove instructions minimization --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/executor.py | 2 +- .../utbot_executor/ut_tracer.py | 32 ++++++++++++------- .../src/main/resources/utbot_executor_version | 2 +- 4 files changed, 23 insertions(+), 15 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index f349d9c8e9..ae7376bcf3 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.9" +version = "1.9.10" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index e4ac6ea8b6..deb5148786 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -280,7 +280,7 @@ def _run_calculate_function_value( logging.debug("Coverage: %s", __tracer.counts) logging.debug("Fullpath: %s", fullpath) - __stmts_with_def = [UtInstruction(__start, 0, True)] + list(__tracer.counts.keys()) + __stmts_with_def = [UtInstruction(__start, 0, True)] + __tracer.instructions __missed_filtered = [x for x in __all_code_stmts if x not in __stmts_with_def] logging.debug("Covered lines: %s", __stmts_with_def) logging.debug("Missed lines: %s", __missed_filtered) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index eb0d6d5b41..ff5f17310c 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -1,5 +1,3 @@ -import dis -import inspect import logging import os import pathlib @@ -19,7 +17,14 @@ def _modname(path): class UtCoverageSender: - def __init__(self, coverage_id: str, host: str, port: int, use_thread: bool = False, send_coverage: bool = True): + def __init__( + self, + coverage_id: str, + host: str, + port: int, + use_thread: bool = False, + send_coverage: bool = True, + ): self.coverage_id = coverage_id self.host = host self.port = port @@ -59,7 +64,9 @@ def put_message(self, key: str): class PureSender(UtCoverageSender): def __init__(self): - super().__init__("000000", "localhost", 0, use_thread=False, send_coverage=False) + super().__init__( + "000000", "localhost", 0, use_thread=False, send_coverage=False + ) class UtTracer: @@ -72,6 +79,7 @@ def __init__( ): self.tested_file = tested_file self.counts: dict[UtInstruction, int] = {} + self.instructions: list[UtInstruction] = [] self.localtrace = self.localtrace_count self.globaltrace = self.globaltrace_lt self.ignore_dirs = ignore_dirs @@ -88,10 +96,6 @@ def runfunc(self, func, /, *args, **kw): sys.settrace(None) return result - def coverage(self, filename: str) -> typing.List[int]: - filename = _modname(filename) - return [line for file, line in self.counts.keys() if file == filename] - def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename lineno = frame.f_lineno @@ -108,15 +112,18 @@ def localtrace_count(self, frame, why, arg): except Exception: pass self.counts[key] = self.counts.get(key, 0) + 1 + self.instructions.append(key) return self.localtrace def globaltrace_lt(self, frame, why, arg): - if why == 'call': + if why == "call": if self.mode == TraceMode.Instructions: frame.f_trace_opcodes = True frame.f_trace_lines = False - filename = frame.f_globals.get('__file__', None) - if filename and all(not filename.startswith(d + os.sep) for d in self.ignore_dirs): + filename = frame.f_globals.get("__file__", None) + if filename and all( + not filename.startswith(d + os.sep) for d in self.ignore_dirs + ): modulename = _modname(filename) if modulename is not None: return self.localtrace @@ -140,10 +147,11 @@ def f(x): def g(x): xs = [[j for j in range(i)] for i in range(10)] return x * 2 + return g1(x) * g(x) + 2 if __name__ == "__main__": tracer = UtTracer(pathlib.Path(__file__), [], PureSender()) tracer.runfunc(f, 2) - print(tracer.counts) \ No newline at end of file + print(tracer.counts) diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index c70654ddb0..95c1eb6854 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.9 \ No newline at end of file +1.9.10 \ No newline at end of file From d624f95b0fa64400a4121c850d68d60f0293f20b Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Fri, 1 Dec 2023 18:04:37 +0300 Subject: [PATCH 124/144] Skip coverage sending during tracing --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/ut_tracer.py | 12 ++++++------ .../src/main/resources/utbot_executor_version | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index ae7376bcf3..4d28a28072 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.10" +version = "1.9.11" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index ff5f17310c..79f8392cd4 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -105,12 +105,12 @@ def localtrace_count(self, frame, why, arg): else: offset = 0 key = UtInstruction(lineno, offset, frame.f_code == self.f_code) - if key not in self.counts: - message = key.serialize() - try: - self.sender.put_message(message) - except Exception: - pass + # if key not in self.counts: + # message = key.serialize() + # try: + # self.sender.put_message(message) + # except Exception: + # pass self.counts[key] = self.counts.get(key, 0) + 1 self.instructions.append(key) return self.localtrace diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 95c1eb6854..7a7e46a38c 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.10 \ No newline at end of file +1.9.11 \ No newline at end of file From efdf9efd5287e316e0d677dd5ba3ab5d099c3034 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 4 Dec 2023 09:06:06 +0300 Subject: [PATCH 125/144] Remove test generation for timeouts --- .../utbot/python/engine/fuzzing/FuzzingEngine.kt | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index ceb198ef6e..58d37f4ee5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -417,19 +417,7 @@ class FuzzingEngine( } is PythonEvaluationTimeout -> { - val coveredInstructions = - manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) - val utTimeoutException = handleTimeoutResult(arguments, description, coveredInstructions) - val trieNode: Trie.Node = - if (coveredInstructions.isEmpty()) - Trie.emptyNode() - else - description.tracer.add(coveredInstructions) - description.limitManager.addInvalidExecution() - PythonExecutionResult( - utTimeoutException, - PythonFeedback(control = Control.PASS, result = trieNode, SuccessFeedback) - ) + null } is PythonEvaluationSuccess -> { From 1bb4b3444fb45ed6570c4eb179b80cf8bc8e0472 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 4 Dec 2023 09:10:15 +0300 Subject: [PATCH 126/144] Used activation of any providers only if current type allows it --- .../main/kotlin/org/utbot/python/fuzzing/PythonApi.kt | 10 ++++++---- .../utbot/python/fuzzing/provider/DictValueProvider.kt | 4 ++-- .../python/fuzzing/provider/IteratorValueProvider.kt | 4 ++-- .../utbot/python/fuzzing/provider/ListValueProvider.kt | 4 ++-- .../python/fuzzing/provider/OptionalValueProvider.kt | 5 +++-- .../utbot/python/fuzzing/provider/SetValueProvider.kt | 4 ++-- .../python/fuzzing/provider/SubtypeValueProvider.kt | 3 ++- .../fuzzing/provider/TupleFixSizeValueProvider.kt | 6 +++--- .../python/fuzzing/provider/TupleValueProvider.kt | 4 ++-- .../python/fuzzing/provider/TypeAliasValueProvider.kt | 3 ++- .../python/fuzzing/provider/UnionValueProvider.kt | 3 ++- 11 files changed, 28 insertions(+), 22 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt index 676dddebaf..3e86c2ef4e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/PythonApi.kt @@ -66,7 +66,6 @@ data class FuzzedUtType( val utType: UtType, val fuzzAny: Boolean = false, ) { - fun activateAny() = FuzzedUtType(utType, true) fun isAny(): Boolean = utType.isAny() fun pythonName(): String = utType.pythonName() @@ -75,9 +74,12 @@ data class FuzzedUtType( fun pythonTypeRepresentation(): String = utType.pythonTypeRepresentation() companion object { - fun Collection.toFuzzed() = this.map { it.toFuzzed() } - fun UtType.toFuzzed() = FuzzedUtType(this) + fun FuzzedUtType.activateAny() = FuzzedUtType(this.utType, true) + fun FuzzedUtType.activateAnyIf(parent: FuzzedUtType) = FuzzedUtType(this.utType, parent.fuzzAny) fun Collection.activateAny() = this.map { it.activateAny() } + fun Collection.activateAnyIf(parent: FuzzedUtType) = this.map { it.activateAnyIf(parent) } + fun UtType.toFuzzed() = FuzzedUtType(this) + fun Collection.toFuzzed() = this.map { it.toFuzzed() } } } @@ -232,7 +234,7 @@ class PythonFuzzing( if (globalIsCancelled()) { return true } - if (description.limitManager.isCancelled()) {// || description.parameters.any { it.isAny() }) { + if (description.limitManager.isCancelled() || description.parameters.any { it.isAny() }) { forkType(description, stats) if (description.limitManager.isRootManager) { return FakeWithTimeoutMode.isCancelled(description.limitManager) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt index 352e12ce80..89c29a70c4 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/DictValueProvider.kt @@ -5,7 +5,7 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonDictClassId import org.utbot.python.fuzzing.FuzzedUtType -import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -27,7 +27,7 @@ object DictValueProvider : PythonValueProvider { "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = Routine.ForEach(params.toFuzzed().activateAny()) { instance, _, arguments -> + modify = Routine.ForEach(params.toFuzzed().activateAnyIf(type)) { instance, _, arguments -> val key = arguments[0].tree val value = arguments[1].tree val dict = instance.tree as PythonTree.DictNode diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt index bba92c7e19..026e9e1d10 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/IteratorValueProvider.kt @@ -5,7 +5,7 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonIteratorClassId import org.utbot.python.fuzzing.FuzzedUtType -import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -29,7 +29,7 @@ object IteratorValueProvider : PythonValueProvider { "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = Routine.ForEach(param.toFuzzed().activateAny()) { self, i, values -> + modify = Routine.ForEach(param.toFuzzed().activateAnyIf(type)) { self, i, values -> (self.tree as PythonTree.IteratorNode).items[i] = values.first().tree } )) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt index 8372266822..ae19ff30f1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ListValueProvider.kt @@ -5,7 +5,7 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonListClassId import org.utbot.python.fuzzing.FuzzedUtType -import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -29,7 +29,7 @@ object ListValueProvider : PythonValueProvider { "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = Routine.ForEach(param.toFuzzed().activateAny()) { self, i, values -> + modify = Routine.ForEach(param.toFuzzed().activateAnyIf(type)) { self, i, values -> (self.tree as PythonTree.ListNode).items[i] = values.first().tree } )) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt index 1dd43c6a11..121bf97b00 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/OptionalValueProvider.kt @@ -4,6 +4,7 @@ import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -19,9 +20,9 @@ object OptionalValueProvider : PythonValueProvider { override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { val params = type.utType.pythonAnnotationParameters() - params.toFuzzed().forEach { unionParam -> + params.forEach { unionParam -> yield(Seed.Recursive( - construct = Routine.Create(listOf(unionParam)) { v -> v.first() }, + construct = Routine.Create(listOf(unionParam).toFuzzed().activateAnyIf(type)) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.fromNone()) } )) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt index 1a4f54dde4..37d8ca0b92 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SetValueProvider.kt @@ -5,7 +5,7 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonSetClassId import org.utbot.python.fuzzing.FuzzedUtType -import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -27,7 +27,7 @@ object SetValueProvider : PythonValueProvider { "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = Routine.ForEach(params.toFuzzed().activateAny()) { instance, _, arguments -> + modify = Routine.ForEach(params.toFuzzed().activateAnyIf(type)) { instance, _, arguments -> val item = arguments[0].tree val set = instance.tree as PythonTree.SetNode set.items.add(item) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt index fd5d1b12e1..00d37b1e7e 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/SubtypeValueProvider.kt @@ -4,6 +4,7 @@ import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -36,7 +37,7 @@ class SubtypeValueProvider( subtypes.forEach { subtype -> yield( Seed.Recursive( - construct = Routine.Create(listOf(subtype).toFuzzed()) { v -> v.first() }, + construct = Routine.Create(listOf(subtype).toFuzzed().activateAnyIf(type)) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } )) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt index 16d91dbcab..e8de4c6f95 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleFixSizeValueProvider.kt @@ -4,7 +4,7 @@ import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.FuzzedUtType -import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -22,12 +22,12 @@ object TupleFixSizeValueProvider : PythonValueProvider { val length = params.size val modifications = emptyList>().toMutableList() for (i in 0 until length) { - modifications.add(Routine.Call(listOf(params[i]).toFuzzed().activateAny()) { instance, arguments -> + modifications.add(Routine.Call(listOf(params[i]).toFuzzed().activateAnyIf(type)) { instance, arguments -> (instance.tree as PythonTree.TupleNode).items[i] = arguments.first().tree }) } yield(Seed.Recursive( - construct = Routine.Create(params.toFuzzed().activateAny()) { v -> + construct = Routine.Create(params.toFuzzed().activateAnyIf(type)) { v -> PythonFuzzedValue( PythonTree.TupleNode(v.withIndex().associate { it.index to it.value.tree }.toMutableMap()), "%var% = ${type.pythonTypeRepresentation()}" diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt index 3a10773fe8..e7de9bfa6b 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TupleValueProvider.kt @@ -5,7 +5,7 @@ import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.framework.api.python.util.pythonTupleClassId import org.utbot.python.fuzzing.FuzzedUtType -import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -33,7 +33,7 @@ object TupleValueProvider : PythonValueProvider { "%var% = ${type.pythonTypeRepresentation()}" ) }, - modify = Routine.ForEach(param.toFuzzed().activateAny()) { self, i, values -> + modify = Routine.ForEach(param.toFuzzed().activateAnyIf(type)) { self, i, values -> (self.tree as PythonTree.TupleNode).items[i] = values.first().tree } )) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt index d8d3883156..cf46ce04ca 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/TypeAliasValueProvider.kt @@ -4,6 +4,7 @@ import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -22,7 +23,7 @@ object TypeAliasValueProvider : PythonValueProvider { val compositeType = PythonTypeAliasDescription.castToCompatibleTypeApi(type.utType) return sequenceOf( Seed.Recursive( - construct = Routine.Create(listOf(compositeType.members[0]).toFuzzed()) { v -> v.first() }, + construct = Routine.Create(listOf(compositeType.members[0]).toFuzzed().activateAnyIf(type)) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } ) ) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt index fd6fcacc4d..7316f99deb 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/UnionValueProvider.kt @@ -4,6 +4,7 @@ import org.utbot.fuzzing.Routine import org.utbot.fuzzing.Seed import org.utbot.python.framework.api.python.PythonTree import org.utbot.python.fuzzing.FuzzedUtType +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -21,7 +22,7 @@ object UnionValueProvider : PythonValueProvider { val params = type.utType.pythonAnnotationParameters() params.forEach { unionParam -> yield(Seed.Recursive( - construct = Routine.Create(listOf(unionParam).toFuzzed()) { v -> v.first() }, + construct = Routine.Create(listOf(unionParam).toFuzzed().activateAnyIf(type)) { v -> v.first() }, empty = Routine.Empty { PythonFuzzedValue(PythonTree.FakeNode) } )) } From 3b975d2e1e81171999980131b5fc92ed3315411c Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 4 Dec 2023 09:11:22 +0300 Subject: [PATCH 127/144] Change ReduceValueProvider --- .../fuzzing/provider/ReduceValueProvider.kt | 107 +++++++++++------- 1 file changed, 65 insertions(+), 42 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 61e05463bb..57df113263 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -19,6 +19,7 @@ import org.utbot.python.framework.api.python.util.pythonStrClassId import org.utbot.python.framework.api.python.util.pythonTupleClassId import org.utbot.python.fuzzing.FuzzedUtType import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAny +import org.utbot.python.fuzzing.FuzzedUtType.Companion.activateAnyIf import org.utbot.python.fuzzing.FuzzedUtType.Companion.toFuzzed import org.utbot.python.fuzzing.PythonFuzzedValue import org.utbot.python.fuzzing.PythonMethodDescription @@ -34,6 +35,7 @@ import org.utbot.python.newtyping.PythonCallableTypeDescription import org.utbot.python.newtyping.PythonCompositeTypeDescription import org.utbot.python.newtyping.PythonDefinition import org.utbot.python.newtyping.general.FunctionType +import org.utbot.python.newtyping.general.getBoundedParameters import org.utbot.python.newtyping.getPythonAttributeByName import org.utbot.python.newtyping.getPythonAttributes import org.utbot.python.newtyping.pythonDescription @@ -66,16 +68,18 @@ object ReduceValueProvider : PythonValueProvider { override fun generate(description: PythonMethodDescription, type: FuzzedUtType) = sequence { val fields = findFields(description, type) - findConstructors(description, type) + val modifications = emptyList>().toMutableList() + modifications.addAll(fields.map { field -> + Routine.Call(listOf(field.type).toFuzzed().activateAnyIf(type)) { instance, arguments -> + val obj = instance.tree as PythonTree.ReduceNode + obj.state[field.meta.name] = arguments.first().tree + } + }) + + val (constructors, newType) = findConstructors(description, type) + constructors .forEach { - val modifications = emptyList>().toMutableList() - modifications.addAll(fields.map { field -> - Routine.Call(listOf(field.type).toFuzzed().activateAny()) { instance, arguments -> - val obj = instance.tree as PythonTree.ReduceNode - obj.state[field.meta.name] = arguments.first().tree - } - }) - yieldAll(callConstructors(type, it, modifications.asSequence(), description)) + yieldAll(callConstructors(newType, it, modifications.asSequence(), description)) } } @@ -90,7 +94,14 @@ object ReduceValueProvider : PythonValueProvider { } } - private fun findConstructors(description: PythonMethodDescription, type: FuzzedUtType): List { + /* + * 1. Annotated __init__ without functional arguments and mro(__init__) <= mro(__new__) -> listOf(__init__) + * 2. Not 1 and annotated __new__ without functional arguments -> listOf(__new__) + * 3. Not 1 and not 2 and __init__ without tp.Any -> listOf(__init__) + * 4. Not 1 and not 2 and not 3 and type is not generic -> listOf(__init__, __new__) + activateAny + * 5. emptyList() + */ + private fun findConstructors(description: PythonMethodDescription, type: FuzzedUtType): Pair, FuzzedUtType> { val initMethodName = "__init__" val newMethodName = "__new__" val typeDescr = type.utType.pythonDescription() @@ -98,17 +109,51 @@ object ReduceValueProvider : PythonValueProvider { val mro = typeDescr.mro(description.pythonTypeStorage, type.utType) val initParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == initMethodName } } val newParent = mro.indexOfFirst { p -> p.getPythonAttributes().any { it.meta.name == newMethodName } } - val initMethods = type.utType.getPythonAttributeByName(description.pythonTypeStorage, initMethodName) - val newMethods = type.utType.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) - if (initParent <= newParent && initMethods != null) { - listOf(initMethods) - } else if (newMethods != null) { - listOf(newMethods) + val initMethod = type.utType.getPythonAttributeByName(description.pythonTypeStorage, initMethodName) + val newMethod = type.utType.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) + + val initWithoutCallable = initMethod?.isCallable(description.pythonTypeStorage) ?: false + val newWithoutCallable = newMethod?.isCallable(description.pythonTypeStorage) ?: false + + val initWithoutAny = (initMethod?.type as? FunctionType)?.arguments?.drop(1)?.all { !it.isAny() } ?: false + val newWithoutAny = (initMethod?.type as? FunctionType)?.arguments?.drop(1)?.all { !it.isAny() } ?: false + + val isGeneric = type.utType.getBoundedParameters().isNotEmpty() + + if (initParent <= newParent && initMethod != null && initWithoutCallable && initWithoutAny) { + listOf(initMethod) to type + } else if (newMethod != null && newWithoutCallable && newWithoutAny) { + listOf(newMethod) to type + } else if (initMethod != null && initWithoutAny) { + listOf(initMethod) to type + } else if (!isGeneric) { + listOfNotNull(initMethod, newMethod) to type.activateAny() } else { - emptyList() // probably not reachable (because of class object) + emptyList() to type } } else { - emptyList() + emptyList() to type + } + } + + private fun callConstructors( + type: FuzzedUtType, + constructor: PythonDefinition, + modifications: Sequence>, + description: PythonMethodDescription, + ): Sequence> = sequence { + val constructors = emptyList().toMutableList() + if (constructor.type.pythonTypeName() == "Overload") { + constructor.type.parameters.forEach { + if (it is FunctionType) { + constructors.add(it) + } + } + } else { + constructors.add(constructor.type as FunctionType) + } + constructors.forEach { + yield(constructObject(type, it, modifications, description)) } } @@ -154,7 +199,7 @@ object ReduceValueProvider : PythonValueProvider { val newMethodArgs = (newMethod?.type as FunctionType?)?.arguments return if (newMethodArgs != null && newMethodArgs.size == 1) { val classId = PythonClassId(type.pythonModuleName(), type.pythonName()) - Routine.Create(newMethodArgs.toFuzzed().activateAny()) { v -> + Routine.Create(newMethodArgs.toFuzzed().activateAnyIf(type)) { _ -> PythonFuzzedValue( PythonTree.ReduceNode( classId, @@ -182,7 +227,7 @@ object ReduceValueProvider : PythonValueProvider { val positionalArgs = typeDescription.argumentKinds.count { it == PythonCallableTypeDescription.ArgKind.ARG_POS } val arguments = constructorFunction.arguments.take(positionalArgs) val nonSelfArgs = arguments.drop(1) - return Routine.Create(nonSelfArgs.toFuzzed()) { v -> + return Routine.Create(nonSelfArgs.toFuzzed().activateAnyIf(type)) { v -> PythonFuzzedValue( PythonTree.ReduceNode( PythonClassId(type.pythonModuleName(), type.pythonName()), @@ -195,26 +240,4 @@ object ReduceValueProvider : PythonValueProvider { } } - - - private fun callConstructors( - type: FuzzedUtType, - constructor: PythonDefinition, - modifications: Sequence>, - description: PythonMethodDescription, - ): Sequence> = sequence { - val constructors = emptyList().toMutableList() - if (constructor.type.pythonTypeName() == "Overload") { - constructor.type.parameters.forEach { - if (it is FunctionType) { - constructors.add(it) - } - } - } else { - constructors.add(constructor.type as FunctionType) - } - constructors.forEach { - yield(constructObject(type, it, modifications, description)) - } - } } \ No newline at end of file From d8cc1548b53a065927d119caa090881732722b59 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 4 Dec 2023 22:06:01 +0300 Subject: [PATCH 128/144] Fix tracing for iterator return value and code style --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/utbot_executor/executor.py | 159 ++++++++++-------- .../utbot_executor/ut_tracer.py | 10 +- .../src/main/resources/utbot_executor_version | 2 +- 4 files changed, 102 insertions(+), 71 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 4d28a28072..7a60fe9ae7 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.11" +version = "1.9.13" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index deb5148786..aaf2dcc85d 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -11,14 +11,27 @@ from typing import Any, Dict, Iterable, List, Tuple from utbot_executor.config import CoverageConfig -from utbot_executor.deep_serialization.deep_serialization import serialize_memory_dump, \ - serialize_objects_dump -from utbot_executor.deep_serialization.json_converter import DumpLoader, deserialize_memory_objects -from utbot_executor.deep_serialization.memory_objects import MemoryDump, PythonSerializer +from utbot_executor.deep_serialization.deep_serialization import ( + serialize_memory_dump, + serialize_objects_dump, +) +from utbot_executor.deep_serialization.json_converter import ( + DumpLoader, + deserialize_memory_objects, +) +from utbot_executor.deep_serialization.memory_objects import ( + MemoryDump, + PythonSerializer, +) from utbot_executor.deep_serialization.utils import PythonId, getattr_by_path from utbot_executor.memory_compressor import compress_memory -from utbot_executor.parser import ExecutionRequest, ExecutionResponse, ExecutionFailResponse, ExecutionSuccessResponse, \ - MemoryMode +from utbot_executor.parser import ( + ExecutionRequest, + ExecutionResponse, + ExecutionFailResponse, + ExecutionSuccessResponse, + MemoryMode, +) from utbot_executor.ut_tracer import UtTracer, UtCoverageSender from utbot_executor.utils import ( suppress_stdout as __suppress_stdout, @@ -27,10 +40,12 @@ UtInstruction, ) -__all__ = ['PythonExecutor'] +__all__ = ["PythonExecutor"] -def _update_states(init_memory_dump: MemoryDump, before_memory_dump: MemoryDump) -> MemoryDump: +def _update_states( + init_memory_dump: MemoryDump, before_memory_dump: MemoryDump +) -> MemoryDump: for id_, obj in before_memory_dump.objects.items(): if id_ in init_memory_dump.objects: init_memory_dump.objects[id_].comparable = obj.comparable @@ -64,12 +79,14 @@ def add_syspaths(syspaths: Iterable[str]): @staticmethod def add_imports(imports: Iterable[str]): for module in imports: - for i in range(1, module.count('.') + 2): - submodule_name = '.'.join(module.split('.', maxsplit=i)[:i]) + for i in range(1, module.count(".") + 2): + submodule_name = ".".join(module.split(".", maxsplit=i)[:i]) logging.debug("Submodule #%d: %s", i, submodule_name) if submodule_name not in globals(): try: - globals()[submodule_name] = importlib.import_module(submodule_name) + globals()[submodule_name] = importlib.import_module( + submodule_name + ) except ModuleNotFoundError: logging.warning("Import submodule %s failed", submodule_name) logging.debug("Submodule #%d: OK", i) @@ -105,18 +122,22 @@ def run_reduce_function(self, request: ExecutionRequest) -> ExecutionResponse: try: function = getattr_by_path( - importlib.import_module(request.function_module), - request.function_name - ) + importlib.import_module(request.function_module), request.function_name + ) if not isinstance(function, types.FunctionType): return ExecutionFailResponse( - "fail", - f"Invalid function path {request.function_module}.{request.function_name}" - ) + "fail", + f"Invalid function path {request.function_module}.{request.function_name}", + ) logging.debug("Function initialized") - args = [loader.load_object(PythonId(arg_id)) for arg_id in request.arguments_ids] + args = [ + loader.load_object(PythonId(arg_id)) for arg_id in request.arguments_ids + ] logging.debug("Arguments: %s", args) - kwargs = {name: loader.load_object(PythonId(kwarg_id)) for name, kwarg_id in request.kwarguments_ids.items()} + kwargs = { + name: loader.load_object(PythonId(kwarg_id)) + for name, kwarg_id in request.kwarguments_ids.items() + } logging.debug("Kwarguments: %s", kwargs) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) @@ -169,13 +190,12 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: try: function = getattr_by_path( - importlib.import_module(request.function_module), - request.function_name + importlib.import_module(request.function_module), request.function_name ) if not isinstance(function, types.FunctionType): return ExecutionFailResponse( "fail", - f"Invalid function path {request.function_module}.{request.function_name}" + f"Invalid function path {request.function_module}.{request.function_name}", ) logging.debug("Function initialized") args, kwargs = pickle.loads(eval(request.serialized_memory)) @@ -184,15 +204,13 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: class_name = request.get_class_name() if class_name is not None: real_class = getattr_by_path( - importlib.import_module(request.function_module), - class_name + importlib.import_module(request.function_module), class_name ) if not isinstance(args[0], real_class): error_message = f"Invalid self argument \n{type(args[0])} instead of {class_name}" logging.debug(error_message) return ExecutionFailResponse("fail", error_message) - except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) return ExecutionFailResponse("fail", traceback.format_exc()) @@ -218,7 +236,7 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: _coverage_sender, self.trace_mode, ), - state_assertions=self.state_assertions + state_assertions=self.state_assertions, ) except Exception as _: logging.debug("Error \n%s", traceback.format_exc()) @@ -228,10 +246,10 @@ def run_pickle_function(self, request: ExecutionRequest) -> ExecutionResponse: def _serialize_state( - args: List[Any], - kwargs: Dict[str, Any], - result: Any = None, - ) -> Tuple[List[PythonId], Dict[str, PythonId], PythonId, MemoryDump, str]: + args: List[Any], + kwargs: Dict[str, Any], + result: Any = None, +) -> Tuple[List[PythonId], Dict[str, PythonId], PythonId, MemoryDump, str]: """Serialize objects from args, kwargs and result. Returns: tuple of args ids, kwargs ids, result id and serialized memory.""" @@ -240,24 +258,24 @@ def _serialize_state( ids, memory, serialized_memory = serialize_objects_dump(all_arguments, True) return ( - ids[:len(args)], - dict(zip(kwargs.keys(), ids[len(args):len(args)+len(kwargs)])), - ids[-1], - copy.deepcopy(memory), - serialized_memory, - ) + ids[: len(args)], + dict(zip(kwargs.keys(), ids[len(args) : len(args) + len(kwargs)])), + ids[-1], + copy.deepcopy(memory), + serialized_memory, + ) def _run_calculate_function_value( - function: types.FunctionType, - args: List[Any], - kwargs: Dict[str, Any], - fullpath: str, - state_init: str, - tracer: UtTracer, - state_assertions: bool, - ) -> ExecutionResponse: - """ Calculate function evaluation result. + function: types.FunctionType, + args: List[Any], + kwargs: Dict[str, Any], + fullpath: str, + state_init: str, + tracer: UtTracer, + state_assertions: bool, +) -> ExecutionResponse: + """Calculate function evaluation result. Return serialized data: status, coverage info, object ids and memory.""" @@ -265,17 +283,27 @@ def _run_calculate_function_value( __is_exception = False - _, __start = inspect.getsourcelines(function) - __all_code_stmts = filter_instructions(get_instructions(function.__code__), tracer.mode) + __source_lines, __start = inspect.getsourcelines(function) + __end = __start + len(__source_lines) + __all_code_stmts = filter_instructions( + get_instructions(function.__code__), tracer.mode + ) __tracer = tracer - try: - with __suppress_stdout(): - __result = __tracer.runfunc(function, *args, **kwargs) - except Exception as __exception: - __result = __exception - __is_exception = True + with __suppress_stdout(): + try: + __result = __tracer.runfunc(function, __tracer.DEFAULT_LINE_FILTER, *args, **kwargs) + except Exception as __exception: + __result = __exception + __is_exception = True + ( + args_ids, + kwargs_ids, + result_id, + state_after, + serialized_state_after, + ) = __tracer.runfunc(_serialize_state, (__start, __end), args, kwargs, __result) logging.debug("Function call finished: %s", __result) logging.debug("Coverage: %s", __tracer.counts) @@ -288,7 +316,6 @@ def _run_calculate_function_value( __str_statements = [x.serialize() for x in __stmts_with_def] __str_missed_statements = [x.serialize() for x in __missed_filtered] - args_ids, kwargs_ids, result_id, state_after, serialized_state_after = _serialize_state(args, kwargs, __result) ids = args_ids + list(kwargs_ids.values()) if state_assertions or __result is None: diff_ids = compress_memory(ids, state_before, state_after) @@ -296,15 +323,15 @@ def _run_calculate_function_value( diff_ids = [] return ExecutionSuccessResponse( - status="success", - is_exception=__is_exception, - statements=__str_statements, - missed_statements=__str_missed_statements, - state_init=state_init, - state_before=serialized_state_before, - state_after=serialized_state_after, - diff_ids=diff_ids, - args_ids=args_ids, - kwargs_ids=kwargs_ids, - result_id=result_id, - ) + status="success", + is_exception=__is_exception, + statements=__str_statements, + missed_statements=__str_missed_statements, + state_init=state_init, + state_before=serialized_state_before, + state_after=serialized_state_after, + diff_ids=diff_ids, + args_ids=args_ids, + kwargs_ids=kwargs_ids, + result_id=result_id, + ) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 79f8392cd4..1b15bcde13 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -1,4 +1,5 @@ import logging +import math import os import pathlib import queue @@ -70,6 +71,7 @@ def __init__(self): class UtTracer: + DEFAULT_LINE_FILTER = (-math.inf, math.inf) def __init__( self, tested_file: pathlib.Path, @@ -85,8 +87,10 @@ def __init__( self.ignore_dirs = ignore_dirs self.sender = sender self.mode = mode + self.line_filter = UtTracer.DEFAULT_LINE_FILTER - def runfunc(self, func, /, *args, **kw): + def runfunc(self, func, line_filter, /, *args, **kw): + self.line_filter = line_filter result = None sys.settrace(self.globaltrace) self.f_code = func.__code__ @@ -99,7 +103,7 @@ def runfunc(self, func, /, *args, **kw): def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename lineno = frame.f_lineno - if pathlib.Path(filename) == self.tested_file and lineno is not None: + if pathlib.Path(filename) == self.tested_file and lineno is not None and self.line_filter[0] <= lineno <= self.line_filter[1]: if self.mode == TraceMode.Instructions and frame.f_lasti is not None: offset = frame.f_lasti else: @@ -153,5 +157,5 @@ def g(x): if __name__ == "__main__": tracer = UtTracer(pathlib.Path(__file__), [], PureSender()) - tracer.runfunc(f, 2) + tracer.runfunc(f, tracer.DEFAULT_LINE_FILTER, 2) print(tracer.counts) diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 7a7e46a38c..716691477b 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.11 \ No newline at end of file +1.9.13 \ No newline at end of file From 48792b38a7fb3494fb86884aa4fe304ae7aa5ff1 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Mon, 4 Dec 2023 22:18:04 +0300 Subject: [PATCH 129/144] Filter sys path imports --- .../utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt index fe318c6adf..bd873cc00f 100644 --- a/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt +++ b/utbot-cli-python/src/main/kotlin/org/utbot/cli/language/python/sbft/SbftGenerateTestsCommand.kt @@ -29,6 +29,7 @@ import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.pythonBuiltinsModuleName import org.utbot.python.framework.codegen.model.Pytest import org.utbot.python.framework.codegen.model.PythonImport +import org.utbot.python.framework.codegen.model.PythonSysPathImport import org.utbot.python.newtyping.ast.parseClassDefinition import org.utbot.python.newtyping.ast.parseFunctionDefinition import org.utbot.python.newtyping.mypy.dropInitFile @@ -185,6 +186,7 @@ class SbftGenerateTestsCommand : CliktCommand( private fun saveTests() { logger.info("Saving tests...") val importCode = globalImportCollection + .filterNot { it is PythonSysPathImport } .sortedBy { it.order } .map { renderPythonImport(it) } val testCode = (listOf(importCode.joinToString("\n")) + globalCodeCollection).joinToString("\n\n\n") From d5d305d369adab225492a2ba0e80528f1597e03f Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 5 Dec 2023 09:00:58 +0300 Subject: [PATCH 130/144] Set custom max length of regex value --- .../org/utbot/python/fuzzing/provider/StrValueProvider.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt index d6a30864b9..51cf2b62cd 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/StrValueProvider.kt @@ -50,7 +50,8 @@ object StrValueProvider : PythonValueProvider { val regexConstants = getRegexConstants(description.concreteValues) regexConstants.forEach { - yieldStrings(RegexValue(it, description.random), StringValue::value) + val maxLength = listOf(16, 256, 2048).random(description.random).coerceAtLeast(it.length) + yieldStrings(RegexValue(it, description.random, maxLength), StringValue::value) } } From e75e92f1708949143f10eb45f1b2da81cde5014a Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 5 Dec 2023 10:52:14 +0300 Subject: [PATCH 131/144] Fix timeout evaluation in fuzzing --- .../kotlin/org/utbot/python/PythonTestCaseGenerator.kt | 4 +++- .../org/utbot/python/engine/fuzzing/FuzzingEngine.kt | 8 +++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt index 4823fc56e8..0c5486133f 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestCaseGenerator.kt @@ -5,6 +5,7 @@ import org.utbot.framework.minimization.minimizeExecutions import org.utbot.framework.plugin.api.UtClusterInfo import org.utbot.framework.plugin.api.UtError import org.utbot.framework.plugin.api.UtExecutionSuccess +import org.utbot.framework.plugin.api.UtTimeoutException import org.utbot.python.engine.GlobalPythonEngine import org.utbot.python.framework.api.python.PythonUtExecution @@ -48,7 +49,8 @@ class PythonTestCaseGenerator( errors: List, clusterInfo: UtClusterInfo, ): PythonTestSet { - val (emptyCoverageExecutions, coverageExecutions) = executions.partition { it.coverage == null } + val notTimeout = executions.filter { it.result !is UtTimeoutException } + val (emptyCoverageExecutions, coverageExecutions) = notTimeout.partition { it.coverage == null } val (successfulExecutions, failedExecutions) = coverageExecutions.partition { it.result is UtExecutionSuccess } val minimized = if (withMinimization) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 58d37f4ee5..47618fb4a1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -417,7 +417,13 @@ class FuzzingEngine( } is PythonEvaluationTimeout -> { - null + val utTimeoutException = handleTimeoutResult(arguments, description, emptyList()) + val trieNode: Trie.Node = Trie.emptyNode() + description.limitManager.addInvalidExecution() + PythonExecutionResult( + utTimeoutException, + PythonFeedback(control = Control.PASS, result = trieNode, SuccessFeedback) + ) } is PythonEvaluationSuccess -> { From 846b0b55c70b6af6b094631fd66f8593b551626a Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Tue, 5 Dec 2023 10:53:43 +0300 Subject: [PATCH 132/144] Fix activation any for class fields --- .../org/utbot/python/fuzzing/provider/ReduceValueProvider.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 57df113263..186e5d3217 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -70,7 +70,7 @@ object ReduceValueProvider : PythonValueProvider { val fields = findFields(description, type) val modifications = emptyList>().toMutableList() modifications.addAll(fields.map { field -> - Routine.Call(listOf(field.type).toFuzzed().activateAnyIf(type)) { instance, arguments -> + Routine.Call(listOf(field.type).toFuzzed().activateAny()) { instance, arguments -> val obj = instance.tree as PythonTree.ReduceNode obj.state[field.meta.name] = arguments.first().tree } From 62c9ffd296dcb8954013301cb7ca52ad88ca3476 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 6 Dec 2023 12:43:25 +0300 Subject: [PATCH 133/144] Update tracing --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../utbot_executor/ut_tracer.py | 30 ++++++++++--------- .../src/main/resources/utbot_executor_version | 2 +- .../USVMPythonAnalysisResultReceiverImpl.kt | 3 +- 4 files changed, 20 insertions(+), 17 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 7a60fe9ae7..e876e3b2b2 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.13" +version = "1.9.14" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py index 1b15bcde13..bb72d56b33 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py @@ -103,35 +103,37 @@ def runfunc(self, func, line_filter, /, *args, **kw): def localtrace_count(self, frame, why, arg): filename = frame.f_code.co_filename lineno = frame.f_lineno - if pathlib.Path(filename) == self.tested_file and lineno is not None and self.line_filter[0] <= lineno <= self.line_filter[1]: + if ( + pathlib.Path(filename) == self.tested_file + and lineno is not None + and self.line_filter[0] <= lineno <= self.line_filter[1] + ): if self.mode == TraceMode.Instructions and frame.f_lasti is not None: offset = frame.f_lasti else: offset = 0 key = UtInstruction(lineno, offset, frame.f_code == self.f_code) - # if key not in self.counts: - # message = key.serialize() - # try: - # self.sender.put_message(message) - # except Exception: - # pass self.counts[key] = self.counts.get(key, 0) + 1 self.instructions.append(key) return self.localtrace def globaltrace_lt(self, frame, why, arg): if why == "call": - if self.mode == TraceMode.Instructions: - frame.f_trace_opcodes = True - frame.f_trace_lines = False - filename = frame.f_globals.get("__file__", None) - if filename and all( - not filename.startswith(d + os.sep) for d in self.ignore_dirs - ): + filename = frame.f_code.co_filename + if filename and filename == str(self.tested_file.resolve()): + if self.mode == TraceMode.Instructions: + frame.f_trace_opcodes = True + frame.f_trace_lines = False + elif self.mode == TraceMode.Lines: + frame.f_trace_opcodes = False + frame.f_trace_lines = True + modulename = _modname(filename) if modulename is not None: return self.localtrace else: + frame.f_trace_opcodes = False + frame.f_trace_lines = False return None diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 716691477b..27b9c6f7aa 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.13 \ No newline at end of file +1.9.14 \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 7e9b46391d..2f8ffe0496 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -32,6 +32,7 @@ import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket import java.net.SocketException import java.util.concurrent.TimeoutException +import kotlin.math.min private val logger = KotlinLogging.logger {} @@ -65,7 +66,7 @@ class USVMPythonAnalysisResultReceiverImpl( configuration.testFileInformation.moduleName, configuration.pythonPath, configuration.sysPathDirectories, - configuration.timeoutForRun, + min(configuration.timeoutForRun, System.currentTimeMillis() - until), it, ) } From 7148d930b56dbaffdfb1bde88476c9073cce98e6 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 6 Dec 2023 12:59:59 +0300 Subject: [PATCH 134/144] Add timeout correction --- .../kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt | 3 ++- .../engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 47618fb4a1..95fdee405c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -76,6 +76,7 @@ import org.utbot.python.utils.camelToSnakeCase import org.utbot.python.utils.convertToTime import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket +import kotlin.math.min import kotlin.random.Random private val logger = KotlinLogging.logger {} @@ -190,7 +191,7 @@ class FuzzingEngine( configuration.testFileInformation.moduleName, configuration.pythonPath, configuration.sysPathDirectories, - configuration.timeoutForRun, + min(configuration.timeoutForRun, until - System.currentTimeMillis()), it, ) } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 2f8ffe0496..5de80d1744 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -66,7 +66,7 @@ class USVMPythonAnalysisResultReceiverImpl( configuration.testFileInformation.moduleName, configuration.pythonPath, configuration.sysPathDirectories, - min(configuration.timeoutForRun, System.currentTimeMillis() - until), + min(configuration.timeoutForRun, until - System.currentTimeMillis()), it, ) } From e1f03cebbb5403223ea52fcf9c99bbf7de18e66b Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Wed, 6 Dec 2023 00:37:07 +0300 Subject: [PATCH 135/144] Fixed losses of symbolic executions --- .../utbot/python/engine/GlobalPythonEngine.kt | 56 +++++++------- .../python/engine/symbolic/SymbolicEngine.kt | 4 +- .../USVMPythonAnalysisResultReceiverImpl.kt | 74 +++++++++++-------- .../evaluation/PythonCodeSocketExecutor.kt | 8 ++ .../python/evaluation/PythonWorkerManager.kt | 1 + .../python/evaluation/UtExecutorThread.kt | 7 ++ 6 files changed, 93 insertions(+), 57 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 4c0eb054ce..59aa6e8086 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -1,5 +1,6 @@ package org.utbot.python.engine +import kotlinx.coroutines.runBlocking import mu.KotlinLogging import org.usvm.runner.StandardLayout import org.usvm.runner.USVMPythonConfig @@ -66,36 +67,39 @@ class GlobalPythonEngine( configuration.sysPathDirectories, extractVenvConfig(configuration.pythonPath) ) - val receiver = USVMPythonAnalysisResultReceiverImpl( - method, - configuration, - executionStorage, - until, - ) - val config = if (method.containingPythonClass == null) { - USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) - } else { - USVMPythonMethodConfig( - configuration.testFileInformation.moduleName, - method.name, - method.containingPythonClass!!.pythonName() + runBlocking { + val receiver = USVMPythonAnalysisResultReceiverImpl( + method, + configuration, + executionStorage, + until, + this ) - } - val engine = SymbolicEngine( - usvmPythonConfig, - configuration, - ) - val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 2) - if (debug) { - engine.debugRun(usvmConfig) - } else { - engine.analyze( - usvmConfig, - receiver + val config = if (method.containingPythonClass == null) { + USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) + } else { + USVMPythonMethodConfig( + configuration.testFileInformation.moduleName, + method.name, + method.containingPythonClass!!.pythonName() + ) + } + val engine = SymbolicEngine( + usvmPythonConfig, + configuration, ) + val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 2) + if (debug) { + engine.debugRun(usvmConfig) + } else { + engine.analyze( + usvmConfig, + receiver + ) + } + receiver.close() } logger.info { "Symbolic: stop receiver" } - receiver.close() } fun run() { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt index 85b5ad2ee1..890b2e5dd7 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicEngine.kt @@ -6,7 +6,6 @@ import org.usvm.runner.PythonSymbolicAnalysisRunnerImpl import org.usvm.runner.USVMPythonConfig import org.usvm.runner.USVMPythonRunConfig import org.utbot.python.PythonTestGenerationConfig -import org.utbot.python.engine.ExecutionStorage private val logger = KotlinLogging.logger {} @@ -14,6 +13,7 @@ interface SymbolicEngineApi { fun analyze(runConfig: USVMPythonRunConfig, receiver: USVMPythonAnalysisResultReceiverImpl) } +/* class DummySymbolicEngine( val configuration: PythonTestGenerationConfig, val executionStorage: ExecutionStorage, @@ -29,8 +29,8 @@ class DummySymbolicEngine( Thread.sleep(100) } } - } +*/ class SymbolicEngine( val usvmPythonConfig: USVMPythonConfig, diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 5de80d1744..94884fdd62 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -1,5 +1,9 @@ package org.utbot.python.engine.symbolic +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.launch +import kotlinx.coroutines.sync.Mutex +import kotlinx.coroutines.sync.withLock import mu.KotlinLogging import org.usvm.runner.USVMPythonAnalysisResultReceiver import org.utbot.framework.plugin.api.DocRegularStmt @@ -41,6 +45,7 @@ class USVMPythonAnalysisResultReceiverImpl( val configuration: PythonTestGenerationConfig, val executionStorage: ExecutionStorage, val until: Long, + private val coroutineScope: CoroutineScope ) : USVMPythonAnalysisResultReceiver() { private lateinit var serverSocket: ServerSocket private lateinit var manager: PythonWorkerManager @@ -80,39 +85,48 @@ class USVMPythonAnalysisResultReceiverImpl( serverSocket.close() } - fun receivePickledInputValuesWithFeedback(pickledTuple: String): ExecutionFeedback? { - try { - // logger.info("Receiving $pickledTuple") - val coverageId = CoverageIdGenerator.createId() - return when ( - val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) - ) { - is PythonEvaluationError -> { - val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") - val utError = UtError( - "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", - Throwable(stackTraceMessage) - ) - logger.debug(stackTraceMessage) - InvalidExecution(utError) - } + private val mutex = Mutex() + + suspend fun receivePickledInputValuesWithFeedback(pickledTuple: String): ExecutionFeedback? { + if (System.currentTimeMillis() >= until) + return null + mutex.withLock { + try { + logger.info("Running $pickledTuple") + val coverageId = CoverageIdGenerator.createId() + return when ( + val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) + ) { + is PythonEvaluationError -> { + logger.info("PythonEvaluationError") + val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") + val utError = UtError( + "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", + Throwable(stackTraceMessage) + ) + logger.debug(stackTraceMessage) + InvalidExecution(utError) + } - is PythonEvaluationTimeout -> { + is PythonEvaluationTimeout -> { // val coveredInstructions = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) // handleTimeoutResult(method, coveredInstructions) - null - } + logger.info("PythonEvaluationTimeout") + null + } - is PythonEvaluationSuccess -> { - handleSuccessResult(method, evaluationResult) + is PythonEvaluationSuccess -> { + logger.info("PythonEvaluationSuccess") + handleSuccessResult(method, evaluationResult) + } } + } catch (_: TimeoutException) { + logger.debug { "Symbolic process was interrupted by timeout" } + return null + } catch (_: SocketException) { + connect() + return null } - } catch (_: TimeoutException) { - logger.debug { "Symbolic process was interrupted by timeout" } - return null - } catch (_: SocketException) { - connect() - return null } } @@ -176,8 +190,10 @@ class USVMPythonAnalysisResultReceiverImpl( override fun receivePickledInputValues(pickledTuple: String) { logger.debug { "SYMBOLIC: $pickledTuple" } - receivePickledInputValuesWithFeedback(pickledTuple)?.let { - executionStorage.saveSymbolicExecution(it) + coroutineScope.launch { + receivePickledInputValuesWithFeedback(pickledTuple)?.let { + executionStorage.saveSymbolicExecution(it) + } } } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index 8b6a7f5427..b9a650148a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -1,5 +1,6 @@ package org.utbot.python.evaluation +import mu.KotlinLogging import org.utbot.python.FunctionArguments import org.utbot.python.PythonMethod import org.utbot.python.evaluation.serialization.ExecutionRequest @@ -18,6 +19,8 @@ import org.utbot.python.newtyping.pythonTypeName import org.utbot.python.newtyping.utils.isNamed import java.net.SocketException +private val logger = KotlinLogging.logger {} + class PythonCodeSocketExecutor( override val method: PythonMethod, override val moduleToImport: String, @@ -139,13 +142,18 @@ class PythonCodeSocketExecutor( coverageId, ) val message = ExecutionRequestSerializer.serializeRequest(request) ?: error("Cannot serialize request to python executor") + logger.info("Serialized request") try { pythonWorker.sendData(message) } catch (_: SocketException) { return parseExecutionResult(FailExecution("Send data error")) } + logger.info("Sent data") val (status, response) = UtExecutorThread.run(pythonWorker, executionTimeout) + + logger.info("Got response") + return when (status) { UtExecutorThread.Status.TIMEOUT -> { PythonEvaluationTimeout() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index f74490b811..1aaac2ceb5 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -121,6 +121,7 @@ class PythonWorkerManager( pickledArguments: String, coverageId: String ): PythonEvaluationResult { + logger.info("Here!") val evaluationResult = try { codeExecutor.runWithCoverage(pickledArguments, coverageId) } catch (_: SocketTimeoutException) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt index 5cbaa96914..0ed5009591 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt @@ -1,11 +1,13 @@ package org.utbot.python.evaluation +import mu.KotlinLogging import java.net.SocketException import java.util.concurrent.Callable import java.util.concurrent.Executors import java.util.concurrent.TimeUnit import java.util.concurrent.TimeoutException +private val logger = KotlinLogging.logger {} class UtExecutorThread { enum class Status { @@ -18,12 +20,17 @@ class UtExecutorThread { val executor = Executors.newSingleThreadExecutor() val future = executor.submit(Task(worker)) + logger.info("Running with timeout $executionTimeout") + val result = try { Status.OK to future.get(executionTimeout, TimeUnit.MILLISECONDS) } catch (ex: TimeoutException) { future.cancel(true) Status.TIMEOUT to null } + + logger.info("Stopped running. Result: ${result.first}") + executor.shutdown() return result } From fae321e3bf9ed670680ca730bbc3614c49054aa7 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Wed, 6 Dec 2023 02:03:14 +0300 Subject: [PATCH 136/144] fix --- .../utbot/python/engine/GlobalPythonEngine.kt | 16 ++++++++-------- .../USVMPythonAnalysisResultReceiverImpl.kt | 2 +- .../python/evaluation/PythonWorkerManager.kt | 3 ++- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 59aa6e8086..5b13a72b75 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -67,14 +67,14 @@ class GlobalPythonEngine( configuration.sysPathDirectories, extractVenvConfig(configuration.pythonPath) ) + val receiver = USVMPythonAnalysisResultReceiverImpl( + method, + configuration, + executionStorage, + until, + ) runBlocking { - val receiver = USVMPythonAnalysisResultReceiverImpl( - method, - configuration, - executionStorage, - until, - this - ) + receiver.coroutineScope = this val config = if (method.containingPythonClass == null) { USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) } else { @@ -97,9 +97,9 @@ class GlobalPythonEngine( receiver ) } - receiver.close() } logger.info { "Symbolic: stop receiver" } + receiver.close() } fun run() { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 94884fdd62..06b251ad2a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -45,10 +45,10 @@ class USVMPythonAnalysisResultReceiverImpl( val configuration: PythonTestGenerationConfig, val executionStorage: ExecutionStorage, val until: Long, - private val coroutineScope: CoroutineScope ) : USVMPythonAnalysisResultReceiver() { private lateinit var serverSocket: ServerSocket private lateinit var manager: PythonWorkerManager + lateinit var coroutineScope: CoroutineScope init { connect() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 1aaac2ceb5..2267c40172 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -85,8 +85,9 @@ class PythonWorkerManager( } fun disconnect() { + println("Destroying") workerSocket.close() - process.destroy() + process.destroyForcibly() } private fun reconnect() { From d107f1163721032c2b46e66cf7162e7d648133a0 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Wed, 6 Dec 2023 14:38:50 +0300 Subject: [PATCH 137/144] Separated symbolic receiver and symbolic evaluator --- .../utbot/python/engine/GlobalPythonEngine.kt | 58 +++--- .../symbolic/SymbolicExecutionEvaluator.kt | 181 +++++++++++++++++ .../USVMPythonAnalysisResultReceiverImpl.kt | 187 +----------------- .../evaluation/PythonCodeSocketExecutor.kt | 4 - .../python/evaluation/PythonWorkerManager.kt | 2 - .../python/evaluation/UtExecutorThread.kt | 4 +- 6 files changed, 215 insertions(+), 221 deletions(-) create mode 100644 utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt index 5b13a72b75..ae1982ac8c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/GlobalPythonEngine.kt @@ -1,6 +1,5 @@ package org.utbot.python.engine -import kotlinx.coroutines.runBlocking import mu.KotlinLogging import org.usvm.runner.StandardLayout import org.usvm.runner.USVMPythonConfig @@ -13,6 +12,7 @@ import org.utbot.python.PythonMethod import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.engine.fuzzing.FuzzingEngine import org.utbot.python.engine.symbolic.SymbolicEngine +import org.utbot.python.engine.symbolic.SymbolicExecutionEvaluator import org.utbot.python.engine.symbolic.USVMPythonAnalysisResultReceiverImpl import org.utbot.python.newtyping.PythonTypeHintsStorage import org.utbot.python.newtyping.ast.visitor.Visitor @@ -67,39 +67,41 @@ class GlobalPythonEngine( configuration.sysPathDirectories, extractVenvConfig(configuration.pythonPath) ) - val receiver = USVMPythonAnalysisResultReceiverImpl( + val runner = SymbolicExecutionEvaluator( method, configuration, executionStorage, - until, + until ) - runBlocking { - receiver.coroutineScope = this - val config = if (method.containingPythonClass == null) { - USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) - } else { - USVMPythonMethodConfig( - configuration.testFileInformation.moduleName, - method.name, - method.containingPythonClass!!.pythonName() - ) - } - val engine = SymbolicEngine( - usvmPythonConfig, - configuration, + runner.start() + val receiver = USVMPythonAnalysisResultReceiverImpl(runner.executionQueue) + val config = if (method.containingPythonClass == null) { + USVMPythonFunctionConfig(configuration.testFileInformation.moduleName, method.name) + } else { + USVMPythonMethodConfig( + configuration.testFileInformation.moduleName, + method.name, + method.containingPythonClass!!.pythonName() + ) + } + val engine = SymbolicEngine( + usvmPythonConfig, + configuration, + ) + val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 2) + if (debug) { + engine.debugRun(usvmConfig) + } else { + engine.analyze( + usvmConfig, + receiver ) - val usvmConfig = USVMPythonRunConfig(config, until - System.currentTimeMillis(), configuration.timeoutForRun * 2) - if (debug) { - engine.debugRun(usvmConfig) - } else { - engine.analyze( - usvmConfig, - receiver - ) - } } - logger.info { "Symbolic: stop receiver" } - receiver.close() + logger.info { "Symbolic: stopped receiver" } + runner.receiverFinished = true + runner.join() + runner.close() + logger.info { "Symbolic: stopped runner" } } fun run() { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt new file mode 100644 index 0000000000..27d6bc3c7d --- /dev/null +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt @@ -0,0 +1,181 @@ +package org.utbot.python.engine.symbolic + +import mu.KotlinLogging +import org.utbot.framework.plugin.api.* +import org.utbot.python.PythonMethod +import org.utbot.python.PythonTestGenerationConfig +import org.utbot.python.coverage.CoverageIdGenerator +import org.utbot.python.coverage.buildCoverage +import org.utbot.python.engine.* +import org.utbot.python.engine.utils.transformModelList +import org.utbot.python.evaluation.* +import org.utbot.python.evaluation.serialization.toPythonTree +import org.utbot.python.framework.api.python.PythonSymbolicUtExecution +import org.utbot.python.framework.api.python.PythonTreeModel +import org.utbot.python.utils.camelToSnakeCase +import org.utbot.summary.fuzzer.names.TestSuggestedInfo +import java.net.ServerSocket +import java.net.SocketException +import java.util.* +import java.util.concurrent.TimeoutException +import kotlin.math.min + +private val logger = KotlinLogging.logger {} + +class SymbolicExecutionEvaluator( + val method: PythonMethod, + val configuration: PythonTestGenerationConfig, + val executionStorage: ExecutionStorage, + val until: Long, + var receiverFinished: Boolean = false +): Thread() { + private lateinit var serverSocket: ServerSocket + private lateinit var manager: PythonWorkerManager + val executionQueue: MutableList = Collections.synchronizedList(mutableListOf()) + + init { + connect() + } + + private fun connect() { + try { + serverSocket = ServerSocket(0) + manager = + PythonWorkerManager( + serverSocket, + configuration.pythonPath, + until, + configuration.coverageMeasureMode, + configuration.sendCoverageContinuously, + configuration.doNotGenerateStateAssertions, + ) { + PythonCodeSocketExecutor( + method, + configuration.testFileInformation.moduleName, + configuration.pythonPath, + configuration.sysPathDirectories, + min(configuration.timeoutForRun, until - System.currentTimeMillis()), + it, + ) + } + } catch (_: TimeoutException) { + close() + } + } + + + private fun receivePickledInputValuesWithFeedback(pickledTuple: String): ExecutionFeedback? { + if (System.currentTimeMillis() >= until) + return null + try { + logger.debug("SYMBOLIC running $pickledTuple") + val coverageId = CoverageIdGenerator.createId() + return when ( + val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) + ) { + is PythonEvaluationError -> { + val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") + val utError = UtError( + "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", + Throwable(stackTraceMessage) + ) + logger.debug(stackTraceMessage) + InvalidExecution(utError) + } + + is PythonEvaluationTimeout -> { +// val coveredInstructions = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) +// handleTimeoutResult(method, coveredInstructions) + null + } + + is PythonEvaluationSuccess -> { + handleSuccessResult(method, evaluationResult) + } + } + } catch (_: TimeoutException) { + logger.debug { "Symbolic process was interrupted by timeout" } + return null + } catch (_: SocketException) { + connect() + return null + } + } + + private fun suggestExecutionName( + method: PythonMethod, + executionResult: UtExecutionResult + ): TestSuggestedInfo { + val testSuffix = when (executionResult) { + is UtExecutionSuccess -> { + // can be improved + method.name + } + is UtExecutionFailure -> "${method.name}_with_exception" + else -> method.name + } + val testName = "test_$testSuffix" + return TestSuggestedInfo( + testName, + testName, + ) + } + + private fun handleSuccessResult( + method: PythonMethod, + evaluationResult: PythonEvaluationSuccess + ): ExecutionFeedback { + val summary = emptyList() // TODO: improve + val hasThisObject = method.hasThisArgument + val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) + + if (evaluationResult.isException && (resultModel.type.name in configuration.prohibitedExceptions)) { // wrong type (sometimes mypy fails) + val errorMessage = "Evaluation with prohibited exception. Error: $resultModel" + logger.debug { errorMessage } + return TypeErrorFeedback(errorMessage) + } + val executionResult = + if (evaluationResult.isException) { + UtImplicitlyThrownException(Throwable(resultModel.type.toString()), false) + } + else { + UtExecutionSuccess(PythonTreeModel(resultModel)) + } + val testMethodName = suggestExecutionName(method, executionResult) + + val (beforeThisObject, beforeModelList) = transformModelList(hasThisObject, evaluationResult.stateBefore, evaluationResult.modelListIds) + val (afterThisObject, afterModelList) = transformModelList(hasThisObject, evaluationResult.stateAfter, evaluationResult.modelListIds) + + val utFuzzedExecution = PythonSymbolicUtExecution( + stateBefore = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), + stateAfter = EnvironmentModels(afterThisObject, afterModelList, emptyMap(), executableToCall = null), + diffIds = evaluationResult.diffIds, + result = executionResult, + coverage = buildCoverage(evaluationResult.coveredStatements, evaluationResult.missedStatements), + testMethodName = testMethodName.testName?.camelToSnakeCase(), + displayName = testMethodName.displayName, + summary = summary.map { DocRegularStmt(it) }, + arguments = method.argumentsWithoutSelf, + ) + return ValidExecution(utFuzzedExecution) + } + + fun close() { + manager.shutdown() + serverSocket.close() + } + + override fun run() { + while (System.currentTimeMillis() < until && (!receiverFinished || executionQueue.isNotEmpty())) { + val pickledTuple = if (executionQueue.isNotEmpty()) { + executionQueue.removeFirst() + } else { + sleep(10) + continue + } + receivePickledInputValuesWithFeedback(pickledTuple)?.let { + executionStorage.saveSymbolicExecution(it) + } + } + } +} \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt index 06b251ad2a..8b88731e40 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/USVMPythonAnalysisResultReceiverImpl.kt @@ -1,199 +1,16 @@ package org.utbot.python.engine.symbolic -import kotlinx.coroutines.CoroutineScope -import kotlinx.coroutines.launch -import kotlinx.coroutines.sync.Mutex -import kotlinx.coroutines.sync.withLock import mu.KotlinLogging import org.usvm.runner.USVMPythonAnalysisResultReceiver -import org.utbot.framework.plugin.api.DocRegularStmt -import org.utbot.framework.plugin.api.EnvironmentModels -import org.utbot.framework.plugin.api.UtError -import org.utbot.framework.plugin.api.UtExecutionFailure -import org.utbot.framework.plugin.api.UtExecutionResult -import org.utbot.framework.plugin.api.UtExecutionSuccess -import org.utbot.framework.plugin.api.UtImplicitlyThrownException -import org.utbot.python.PythonMethod -import org.utbot.python.PythonTestGenerationConfig -import org.utbot.python.coverage.CoverageIdGenerator -import org.utbot.python.coverage.buildCoverage -import org.utbot.python.engine.ExecutionFeedback -import org.utbot.python.engine.ExecutionStorage -import org.utbot.python.engine.InvalidExecution -import org.utbot.python.engine.TypeErrorFeedback -import org.utbot.python.engine.ValidExecution -import org.utbot.python.engine.utils.transformModelList -import org.utbot.python.evaluation.PythonCodeSocketExecutor -import org.utbot.python.evaluation.PythonEvaluationError -import org.utbot.python.evaluation.PythonEvaluationSuccess -import org.utbot.python.evaluation.PythonEvaluationTimeout -import org.utbot.python.evaluation.PythonWorkerManager -import org.utbot.python.evaluation.serialization.toPythonTree -import org.utbot.python.framework.api.python.PythonSymbolicUtExecution -import org.utbot.python.framework.api.python.PythonTreeModel -import org.utbot.python.utils.camelToSnakeCase -import org.utbot.summary.fuzzer.names.TestSuggestedInfo -import java.net.ServerSocket -import java.net.SocketException -import java.util.concurrent.TimeoutException -import kotlin.math.min private val logger = KotlinLogging.logger {} class USVMPythonAnalysisResultReceiverImpl( - val method: PythonMethod, - val configuration: PythonTestGenerationConfig, - val executionStorage: ExecutionStorage, - val until: Long, + private val threadSafeQueue: MutableList ) : USVMPythonAnalysisResultReceiver() { - private lateinit var serverSocket: ServerSocket - private lateinit var manager: PythonWorkerManager - lateinit var coroutineScope: CoroutineScope - - init { - connect() - } - - private fun connect() { - try { - serverSocket = ServerSocket(0) - manager = - PythonWorkerManager( - serverSocket, - configuration.pythonPath, - until, - configuration.coverageMeasureMode, - configuration.sendCoverageContinuously, - configuration.doNotGenerateStateAssertions, - ) { - PythonCodeSocketExecutor( - method, - configuration.testFileInformation.moduleName, - configuration.pythonPath, - configuration.sysPathDirectories, - min(configuration.timeoutForRun, until - System.currentTimeMillis()), - it, - ) - } - } catch (_: TimeoutException) { - close() - } - } - - fun close() { - manager.shutdown() - serverSocket.close() - } - - private val mutex = Mutex() - - suspend fun receivePickledInputValuesWithFeedback(pickledTuple: String): ExecutionFeedback? { - if (System.currentTimeMillis() >= until) - return null - mutex.withLock { - try { - logger.info("Running $pickledTuple") - val coverageId = CoverageIdGenerator.createId() - return when ( - val evaluationResult = manager.runWithCoverage(pickledTuple, coverageId) - ) { - is PythonEvaluationError -> { - logger.info("PythonEvaluationError") - val stackTraceMessage = evaluationResult.stackTrace.joinToString("\n") - val utError = UtError( - "Error evaluation: ${evaluationResult.status}, ${evaluationResult.message}\n${stackTraceMessage}", - Throwable(stackTraceMessage) - ) - logger.debug(stackTraceMessage) - InvalidExecution(utError) - } - - is PythonEvaluationTimeout -> { -// val coveredInstructions = manager.coverageReceiver.coverageStorage.getOrDefault(coverageId, mutableListOf()) -// handleTimeoutResult(method, coveredInstructions) - logger.info("PythonEvaluationTimeout") - null - } - - is PythonEvaluationSuccess -> { - logger.info("PythonEvaluationSuccess") - handleSuccessResult(method, evaluationResult) - } - } - } catch (_: TimeoutException) { - logger.debug { "Symbolic process was interrupted by timeout" } - return null - } catch (_: SocketException) { - connect() - return null - } - } - } - - private fun suggestExecutionName( - method: PythonMethod, - executionResult: UtExecutionResult - ): TestSuggestedInfo { - val testSuffix = when (executionResult) { - is UtExecutionSuccess -> { - // can be improved - method.name - } - is UtExecutionFailure -> "${method.name}_with_exception" - else -> method.name - } - val testName = "test_$testSuffix" - return TestSuggestedInfo( - testName, - testName, - ) - } - - private fun handleSuccessResult( - method: PythonMethod, - evaluationResult: PythonEvaluationSuccess - ): ExecutionFeedback { - val summary = emptyList() // TODO: improve - val hasThisObject = method.hasThisArgument - val resultModel = evaluationResult.stateAfter.getById(evaluationResult.resultId).toPythonTree(evaluationResult.stateAfter) - - if (evaluationResult.isException && (resultModel.type.name in configuration.prohibitedExceptions)) { // wrong type (sometimes mypy fails) - val errorMessage = "Evaluation with prohibited exception. Error: $resultModel" - logger.debug { errorMessage } - return TypeErrorFeedback(errorMessage) - } - val executionResult = - if (evaluationResult.isException) { - UtImplicitlyThrownException(Throwable(resultModel.type.toString()), false) - } - else { - UtExecutionSuccess(PythonTreeModel(resultModel)) - } - val testMethodName = suggestExecutionName(method, executionResult) - - val (beforeThisObject, beforeModelList) = transformModelList(hasThisObject, evaluationResult.stateBefore, evaluationResult.modelListIds) - val (afterThisObject, afterModelList) = transformModelList(hasThisObject, evaluationResult.stateAfter, evaluationResult.modelListIds) - - val utFuzzedExecution = PythonSymbolicUtExecution( - stateBefore = EnvironmentModels(beforeThisObject, beforeModelList, emptyMap(), executableToCall = null), - stateAfter = EnvironmentModels(afterThisObject, afterModelList, emptyMap(), executableToCall = null), - diffIds = evaluationResult.diffIds, - result = executionResult, - coverage = buildCoverage(evaluationResult.coveredStatements, evaluationResult.missedStatements), - testMethodName = testMethodName.testName?.camelToSnakeCase(), - displayName = testMethodName.displayName, - summary = summary.map { DocRegularStmt(it) }, - arguments = method.argumentsWithoutSelf, - ) - return ValidExecution(utFuzzedExecution) - } override fun receivePickledInputValues(pickledTuple: String) { logger.debug { "SYMBOLIC: $pickledTuple" } - coroutineScope.launch { - receivePickledInputValuesWithFeedback(pickledTuple)?.let { - executionStorage.saveSymbolicExecution(it) - } - } + threadSafeQueue.add(pickledTuple) } } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt index b9a650148a..f1d49a984c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonCodeSocketExecutor.kt @@ -142,18 +142,14 @@ class PythonCodeSocketExecutor( coverageId, ) val message = ExecutionRequestSerializer.serializeRequest(request) ?: error("Cannot serialize request to python executor") - logger.info("Serialized request") try { pythonWorker.sendData(message) } catch (_: SocketException) { return parseExecutionResult(FailExecution("Send data error")) } - logger.info("Sent data") val (status, response) = UtExecutorThread.run(pythonWorker, executionTimeout) - logger.info("Got response") - return when (status) { UtExecutorThread.Status.TIMEOUT -> { PythonEvaluationTimeout() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt index 2267c40172..2444ae985a 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/PythonWorkerManager.kt @@ -85,7 +85,6 @@ class PythonWorkerManager( } fun disconnect() { - println("Destroying") workerSocket.close() process.destroyForcibly() } @@ -122,7 +121,6 @@ class PythonWorkerManager( pickledArguments: String, coverageId: String ): PythonEvaluationResult { - logger.info("Here!") val evaluationResult = try { codeExecutor.runWithCoverage(pickledArguments, coverageId) } catch (_: SocketTimeoutException) { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt index 0ed5009591..fef2c59715 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/UtExecutorThread.kt @@ -20,7 +20,7 @@ class UtExecutorThread { val executor = Executors.newSingleThreadExecutor() val future = executor.submit(Task(worker)) - logger.info("Running with timeout $executionTimeout") + logger.debug("Running with timeout $executionTimeout") val result = try { Status.OK to future.get(executionTimeout, TimeUnit.MILLISECONDS) @@ -29,7 +29,7 @@ class UtExecutorThread { Status.TIMEOUT to null } - logger.info("Stopped running. Result: ${result.first}") + logger.debug("Stopped running. Result: {}", result.first) executor.shutdown() return result From 672abad3f418dae53b8d1fb45258f60c715dcd22 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 6 Dec 2023 21:40:20 +0300 Subject: [PATCH 138/144] Fix TimeoutException --- .../symbolic/SymbolicExecutionEvaluator.kt | 22 +++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt index 27d6bc3c7d..6c2632182c 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/symbolic/SymbolicExecutionEvaluator.kt @@ -1,14 +1,29 @@ package org.utbot.python.engine.symbolic import mu.KotlinLogging -import org.utbot.framework.plugin.api.* +import org.utbot.framework.plugin.api.DocRegularStmt +import org.utbot.framework.plugin.api.EnvironmentModels +import org.utbot.framework.plugin.api.TimeoutException +import org.utbot.framework.plugin.api.UtError +import org.utbot.framework.plugin.api.UtExecutionFailure +import org.utbot.framework.plugin.api.UtExecutionResult +import org.utbot.framework.plugin.api.UtExecutionSuccess +import org.utbot.framework.plugin.api.UtImplicitlyThrownException import org.utbot.python.PythonMethod import org.utbot.python.PythonTestGenerationConfig import org.utbot.python.coverage.CoverageIdGenerator import org.utbot.python.coverage.buildCoverage -import org.utbot.python.engine.* +import org.utbot.python.engine.ExecutionFeedback +import org.utbot.python.engine.ExecutionStorage +import org.utbot.python.engine.InvalidExecution +import org.utbot.python.engine.TypeErrorFeedback +import org.utbot.python.engine.ValidExecution import org.utbot.python.engine.utils.transformModelList -import org.utbot.python.evaluation.* +import org.utbot.python.evaluation.PythonCodeSocketExecutor +import org.utbot.python.evaluation.PythonEvaluationError +import org.utbot.python.evaluation.PythonEvaluationSuccess +import org.utbot.python.evaluation.PythonEvaluationTimeout +import org.utbot.python.evaluation.PythonWorkerManager import org.utbot.python.evaluation.serialization.toPythonTree import org.utbot.python.framework.api.python.PythonSymbolicUtExecution import org.utbot.python.framework.api.python.PythonTreeModel @@ -17,7 +32,6 @@ import org.utbot.summary.fuzzer.names.TestSuggestedInfo import java.net.ServerSocket import java.net.SocketException import java.util.* -import java.util.concurrent.TimeoutException import kotlin.math.min private val logger = KotlinLogging.logger {} From b3d120e5c62cd3364eaa00e643f16f94563b6ec5 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 6 Dec 2023 21:40:55 +0300 Subject: [PATCH 139/144] Refactor ReduceValueProvider --- .../fuzzing/provider/ReduceValueProvider.kt | 33 ++++++++----------- 1 file changed, 14 insertions(+), 19 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt index 186e5d3217..532ebd405d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/fuzzing/provider/ReduceValueProvider.kt @@ -35,11 +35,9 @@ import org.utbot.python.newtyping.PythonCallableTypeDescription import org.utbot.python.newtyping.PythonCompositeTypeDescription import org.utbot.python.newtyping.PythonDefinition import org.utbot.python.newtyping.general.FunctionType -import org.utbot.python.newtyping.general.getBoundedParameters import org.utbot.python.newtyping.getPythonAttributeByName import org.utbot.python.newtyping.getPythonAttributes import org.utbot.python.newtyping.pythonDescription -import org.utbot.python.newtyping.pythonName import org.utbot.python.newtyping.pythonNoneType import org.utbot.python.newtyping.pythonTypeName @@ -118,18 +116,14 @@ object ReduceValueProvider : PythonValueProvider { val initWithoutAny = (initMethod?.type as? FunctionType)?.arguments?.drop(1)?.all { !it.isAny() } ?: false val newWithoutAny = (initMethod?.type as? FunctionType)?.arguments?.drop(1)?.all { !it.isAny() } ?: false - val isGeneric = type.utType.getBoundedParameters().isNotEmpty() - if (initParent <= newParent && initMethod != null && initWithoutCallable && initWithoutAny) { listOf(initMethod) to type } else if (newMethod != null && newWithoutCallable && newWithoutAny) { listOf(newMethod) to type } else if (initMethod != null && initWithoutAny) { listOf(initMethod) to type - } else if (!isGeneric) { - listOfNotNull(initMethod, newMethod) to type.activateAny() } else { - emptyList() to type + listOfNotNull(initMethod, newMethod) to type.activateAny() } } else { emptyList() to type @@ -142,15 +136,15 @@ object ReduceValueProvider : PythonValueProvider { modifications: Sequence>, description: PythonMethodDescription, ): Sequence> = sequence { - val constructors = emptyList().toMutableList() + val constructors = emptyList>().toMutableList() if (constructor.type.pythonTypeName() == "Overload") { constructor.type.parameters.forEach { if (it is FunctionType) { - constructors.add(it) + constructors.add(it to constructor.meta.name) } } } else { - constructors.add(constructor.type as FunctionType) + constructors.add(constructor.type as FunctionType to constructor.meta.name) } constructors.forEach { yield(constructObject(type, it, modifications, description)) @@ -159,7 +153,7 @@ object ReduceValueProvider : PythonValueProvider { private fun constructObject( type: FuzzedUtType, - constructorFunction: FunctionType, + constructorFunction: Pair, modifications: Sequence>, description: PythonMethodDescription, ): Seed.Recursive { @@ -190,16 +184,16 @@ object ReduceValueProvider : PythonValueProvider { private fun buildConstructor( type: FuzzedUtType, - constructorFunction: FunctionType, + constructor: Pair, description: PythonMethodDescription, ): Routine.Create { - if (constructorFunction.pythonName().endsWith("__new__") && constructorFunction.arguments.any { it.isAny() }) { - val newMethodName = "__new__" - val newMethod = type.utType.getPythonAttributeByName(description.pythonTypeStorage, newMethodName) - val newMethodArgs = (newMethod?.type as FunctionType?)?.arguments - return if (newMethodArgs != null && newMethodArgs.size == 1) { + val (constructorFunction, constructorName) = constructor + val newMethodName = "__new__" + if (constructorName == newMethodName) { + val newMethodArgs = constructorFunction.arguments + return if (newMethodArgs.size == 1) { val classId = PythonClassId(type.pythonModuleName(), type.pythonName()) - Routine.Create(newMethodArgs.toFuzzed().activateAnyIf(type)) { _ -> + Routine.Create(listOf(pythonNoneType).toFuzzed()) { _ -> PythonFuzzedValue( PythonTree.ReduceNode( classId, @@ -210,12 +204,13 @@ object ReduceValueProvider : PythonValueProvider { ) } } else { + // TODO: remove it val classId = PythonClassId(type.pythonModuleName(), type.pythonName()) Routine.Create(listOf(pythonNoneType).toFuzzed()) { v -> PythonFuzzedValue( PythonTree.ReduceNode( classId, - PythonClassId(pythonObjectClassId.name, "${type.pythonName()}.__new__"), + PythonClassId(pythonObjectClassId.name, "${pythonObjectClassId.name}.__new__"), listOf(PythonTree.PrimitiveNode(classId, classId.name)), ), "%var% = ${type.pythonTypeRepresentation()}" From 89d6e69edeca4fac2b9555af070cde6554970306 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Wed, 6 Dec 2023 21:42:00 +0300 Subject: [PATCH 140/144] Fix iterator with exception serialization --- .../main/python/utbot_executor/pyproject.toml | 2 +- .../deep_serialization/iterator_wrapper.py | 26 +++++++++++----- .../deep_serialization/json_converter.py | 10 +++++-- .../deep_serialization/memory_objects.py | 2 ++ .../utbot_executor/utbot_executor/executor.py | 30 +++++++++++++------ .../src/main/resources/utbot_executor_version | 2 +- .../python/engine/fuzzing/FuzzingEngine.kt | 2 +- .../serialization/PythonObjectParser.kt | 5 ++-- .../python/framework/api/python/PythonTree.kt | 6 ++-- .../tree/PythonCgMethodConstructor.kt | 29 ++++++++++++++---- .../tree/PythonCgVariableConstructor.kt | 19 ++++++++++-- .../codegen/model/tree/CgPythonElement.kt | 11 +++++-- 12 files changed, 106 insertions(+), 38 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index e876e3b2b2..37ffffe7c5 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.14" +version = "1.9.15" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py index 7fb7abb453..7bb7161521 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/iterator_wrapper.py @@ -15,16 +15,27 @@ class IteratorWrapper: def __init__(self, iterator: typing.Iterator[T]) -> None: self.iterator, iter_copy = itertools.tee(iterator) - self.content = [it[0] for it in zip(iter_copy, range(IteratorWrapper.MAX_SIZE))] - - def build_from_list(self, content: typing.List[T]) -> None: + self.content = [] + self.stop_exception = StopIteration + + pair_iter = zip(iter_copy, range(IteratorWrapper.MAX_SIZE)) + while True: + try: + it = next(pair_iter) + self.content.append(it[0]) + except Exception as exc: + self.stop_exception = exc + break + + def build_from_list(self, content: typing.List[T], stop_exception: Exception = StopIteration) -> None: self.content = content self.iterator = iter(content) + self.stop_exception = stop_exception @staticmethod - def from_list(content: typing.List[T]) -> IteratorWrapper: + def from_list(content: typing.List[T], stop_iteration: Exception = StopIteration) -> IteratorWrapper: obj = IteratorWrapper.__new__(IteratorWrapper) - obj.build_from_list(content) + obj.build_from_list(content, stop_iteration) return obj def __iter__(self): @@ -46,14 +57,13 @@ def __str__(self) -> str: return f"IteratorWrapper({self.content})" def __getstate__(self) -> typing.Dict[str, typing.Any]: - return {"content": self.content} + return {"content": self.content, "stop_exception": self.stop_exception} def __setstate__(self, state) -> None: - self.build_from_list(state["content"]) + self.build_from_list(state["content"], state["stop_exception"]) if __name__ == "__main__": - import pickle, copy wrapper = IteratorWrapper(iter([1, 2, 3])) for i in wrapper: print(i) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py index ca412c006d..d84b397a61 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py @@ -1,7 +1,6 @@ import copy import importlib import json -import pickle import sys from typing import Dict, Iterable, Union @@ -28,8 +27,11 @@ def default(self, o): } if isinstance(o, ReprMemoryObject): base_json["value"] = o.value - elif isinstance(o, (ListMemoryObject, DictMemoryObject, IteratorMemoryObject)): + elif isinstance(o, (ListMemoryObject, DictMemoryObject)): base_json["items"] = o.items + elif isinstance(o, IteratorMemoryObject): + base_json["items"] = o.items + base_json["exception"] = o.exception elif isinstance(o, ReduceMemoryObject): base_json["constructor"] = o.constructor base_json["args"] = o.args @@ -84,6 +86,7 @@ def as_reduce_object(dct: Dict) -> Union[MemoryObject, Dict]: if dct["strategy"] == "iterator": obj = IteratorMemoryObject.__new__(IteratorMemoryObject) obj.items = dct["items"] + obj.exception = dct["exception"] obj.typeinfo = TypeInfo( kind=dct["typeinfo"]["kind"], module=dct["typeinfo"]["module"] ) @@ -204,7 +207,8 @@ def load_object(self, python_id: PythonId) -> object: real_object[self.load_object(key)] = self.load_object(value) elif isinstance(dump_object, IteratorMemoryObject): real_object = IteratorWrapper.from_list( - [self.load_object(item) for item in dump_object.items] + [self.load_object(item) for item in dump_object.items], + eval(dump_object.exception.qualname) ) id_ = PythonId(str(id(real_object))) self.dump_id_to_real_id[python_id] = id_ diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py index 230191be7a..48c61ca7bb 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py @@ -158,6 +158,7 @@ def __repr__(self) -> str: class IteratorMemoryObject(MemoryObject): strategy: str = "iterator" items: List[PythonId] + exception: TypeInfo MAX_SIZE = 1_000 @@ -175,6 +176,7 @@ def initialize(self) -> None: for item in self.obj.content: elem_id = serializer.write_object_to_memory(item) self.items.append(elem_id) + self.exception = get_kind(self.obj.stop_exception) items = [ serializer.get_by_id(elem_id) diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py index aaf2dcc85d..ecc5eedf88 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/executor.py @@ -293,17 +293,29 @@ def _run_calculate_function_value( with __suppress_stdout(): try: - __result = __tracer.runfunc(function, __tracer.DEFAULT_LINE_FILTER, *args, **kwargs) + __result = __tracer.runfunc( + function, __tracer.DEFAULT_LINE_FILTER, *args, **kwargs + ) except Exception as __exception: __result = __exception __is_exception = True - ( - args_ids, - kwargs_ids, - result_id, - state_after, - serialized_state_after, - ) = __tracer.runfunc(_serialize_state, (__start, __end), args, kwargs, __result) + try: + ( + args_ids, + kwargs_ids, + result_id, + state_after, + serialized_state_after, + ) = __tracer.runfunc( + _serialize_state, (__start, __end), args, kwargs, __result + ) + except Exception as __exception: + _, _, e_traceback = sys.exc_info() + e_filename = e_traceback.tb_frame.f_code.co_filename + if e_filename == fullpath: + __result = __exception + __is_exception = True + logging.debug("Function call finished: %s", __result) logging.debug("Coverage: %s", __tracer.counts) @@ -317,7 +329,7 @@ def _run_calculate_function_value( __str_missed_statements = [x.serialize() for x in __missed_filtered] ids = args_ids + list(kwargs_ids.values()) - if state_assertions or __result is None: + if (state_assertions or __result is None) and not inspect.isgenerator(__result): diff_ids = compress_memory(ids, state_before, state_after) else: diff_ids = [] diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index 27b9c6f7aa..b146d3268f 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.14 \ No newline at end of file +1.9.15 \ No newline at end of file diff --git a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt index 95fdee405c..18fbbda640 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/engine/fuzzing/FuzzingEngine.kt @@ -80,7 +80,7 @@ import kotlin.math.min import kotlin.random.Random private val logger = KotlinLogging.logger {} -private const val RANDOM_TYPE_FREQUENCY = 6 +private const val RANDOM_TYPE_FREQUENCY = 4 private const val MINIMAL_TIMEOUT_FOR_SUBSTITUTION = 4_000 // ms class FuzzingEngine( diff --git a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt index b5bf6a9d7c..cdcd366fba 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/evaluation/serialization/PythonObjectParser.kt @@ -87,6 +87,7 @@ class IteratorMemoryObject( typeinfo: TypeInfo, comparable: Boolean, val items: List, + val exception: TypeInfo, ) : MemoryObject(id, typeinfo, comparable) class ReduceMemoryObject( @@ -149,7 +150,7 @@ fun PythonTree.PythonTreeNode.toMemoryObject(memoryDump: MemoryDump, reload: Boo is PythonTree.IteratorNode -> { val items = this.items.entries .map { it.value.toMemoryObject(memoryDump) } - IteratorMemoryObject(id, typeinfo, this.comparable, items) + IteratorMemoryObject(id, typeinfo, this.comparable, items, TypeInfo(this.exception.moduleName, this.exception.typeName)) } is PythonTree.ReduceNode -> { @@ -251,7 +252,7 @@ fun MemoryObject.toPythonTree( } is IteratorMemoryObject -> { - val draft = PythonTree.IteratorNode(id, mutableMapOf()) + val draft = PythonTree.IteratorNode(id, mutableMapOf(), PythonClassId(exception.module, exception.kind)) visited[this.id] = draft diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt index b36cff779d..489292fe87 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/api/python/PythonTree.kt @@ -9,6 +9,7 @@ import org.utbot.python.framework.api.python.util.pythonListClassId import org.utbot.python.framework.api.python.util.pythonNoneClassId import org.utbot.python.framework.api.python.util.pythonObjectClassId import org.utbot.python.framework.api.python.util.pythonSetClassId +import org.utbot.python.framework.api.python.util.pythonStopIterationClassId import org.utbot.python.framework.api.python.util.pythonStrClassId import org.utbot.python.framework.api.python.util.pythonTupleClassId import org.utbot.python.framework.api.python.util.toPythonRepr @@ -218,10 +219,11 @@ object PythonTree { class IteratorNode( id: Long, - val items: MutableMap + val items: MutableMap, + val exception: PythonClassId = pythonStopIterationClassId, ) : PythonTreeNode(id, pythonIteratorClassId) { - constructor(items: MutableMap) : this(PythonIdGenerator.createId(), items) + constructor(items: MutableMap, stopException: PythonClassId = pythonStopIterationClassId) : this(PythonIdGenerator.createId(), items, stopException) override val children: List get() = items.values.toList() diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt index aebb74cc8f..1fa576e4bc 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgMethodConstructor.kt @@ -16,15 +16,32 @@ import org.utbot.framework.codegen.domain.models.CgVariable import org.utbot.framework.codegen.domain.models.convertDocToCg import org.utbot.framework.codegen.tree.CgMethodConstructor import org.utbot.framework.codegen.tree.buildTestMethod -import org.utbot.framework.plugin.api.* -import org.utbot.python.framework.api.python.* +import org.utbot.framework.plugin.api.ExecutableId +import org.utbot.framework.plugin.api.FieldId +import org.utbot.framework.plugin.api.InstrumentedProcessDeathException +import org.utbot.framework.plugin.api.MethodId +import org.utbot.framework.plugin.api.TimeoutException +import org.utbot.framework.plugin.api.UtExecution +import org.utbot.framework.plugin.api.UtExecutionFailure +import org.utbot.framework.plugin.api.UtModel +import org.utbot.framework.plugin.api.UtTimeoutException +import org.utbot.python.framework.api.python.PythonClassId +import org.utbot.python.framework.api.python.PythonMethodId +import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.framework.api.python.PythonTreeModel +import org.utbot.python.framework.api.python.PythonUtExecution import org.utbot.python.framework.api.python.util.pythonExceptionClassId import org.utbot.python.framework.api.python.util.pythonIntClassId import org.utbot.python.framework.api.python.util.pythonNoneClassId -import org.utbot.python.framework.api.python.util.pythonStopIterationClassId import org.utbot.python.framework.codegen.PythonCgLanguageAssistant import org.utbot.python.framework.codegen.model.constructor.util.importIfNeeded -import org.utbot.python.framework.codegen.model.tree.* +import org.utbot.python.framework.codegen.model.tree.CgPythonFunctionCall +import org.utbot.python.framework.codegen.model.tree.CgPythonIndex +import org.utbot.python.framework.codegen.model.tree.CgPythonNamedArgument +import org.utbot.python.framework.codegen.model.tree.CgPythonRange +import org.utbot.python.framework.codegen.model.tree.CgPythonRepr +import org.utbot.python.framework.codegen.model.tree.CgPythonTree +import org.utbot.python.framework.codegen.model.tree.CgPythonZip class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(context) { private val maxDepth: Int = 5 @@ -345,8 +362,8 @@ class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(contex actual: CgVariable, ) { val zip = CgPythonZip( - actual, variableConstructor.getOrCreateVariable(PythonTreeModel(expectedNode)), + actual, ) val index = newVar(pythonNoneClassId, "pair") { CgPythonRepr(pythonNoneClassId, "None") @@ -371,7 +388,7 @@ class PythonCgMethodConstructor(context: CgContext) : CgMethodConstructor(contex } } if (expectedNode.items.size < PythonTree.MAX_ITERATOR_SIZE) { - testFrameworkManager.expectException(pythonStopIterationClassId) { + testFrameworkManager.expectException(expectedNode.exception) { +CgPythonFunctionCall( PythonClassId("builtins.next"), "next", diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt index c6937f7092..715285ccf1 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree/PythonCgVariableConstructor.kt @@ -10,13 +10,26 @@ import org.utbot.framework.codegen.tree.CgVariableConstructor import org.utbot.framework.plugin.api.ConstructorId import org.utbot.framework.plugin.api.FieldId import org.utbot.framework.plugin.api.UtModel -import org.utbot.python.framework.api.python.* +import org.utbot.python.framework.api.python.NormalizedPythonAnnotation +import org.utbot.python.framework.api.python.PythonClassId +import org.utbot.python.framework.api.python.PythonMethodId +import org.utbot.python.framework.api.python.PythonModel +import org.utbot.python.framework.api.python.PythonTree +import org.utbot.python.framework.api.python.PythonTreeModel +import org.utbot.python.framework.api.python.RawPythonAnnotation import org.utbot.python.framework.api.python.util.comparePythonTree import org.utbot.python.framework.api.python.util.pythonDictClassId import org.utbot.python.framework.api.python.util.pythonListClassId import org.utbot.python.framework.api.python.util.pythonNoneClassId import org.utbot.python.framework.codegen.PythonCgLanguageAssistant -import org.utbot.python.framework.codegen.model.tree.* +import org.utbot.python.framework.codegen.model.tree.CgPythonDict +import org.utbot.python.framework.codegen.model.tree.CgPythonIndex +import org.utbot.python.framework.codegen.model.tree.CgPythonIterator +import org.utbot.python.framework.codegen.model.tree.CgPythonList +import org.utbot.python.framework.codegen.model.tree.CgPythonRepr +import org.utbot.python.framework.codegen.model.tree.CgPythonSet +import org.utbot.python.framework.codegen.model.tree.CgPythonTree +import org.utbot.python.framework.codegen.model.tree.CgPythonTuple class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor(cgContext) { private val nameGenerator = CgComponents.getNameGeneratorBy(context) @@ -99,7 +112,7 @@ class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor( is PythonTree.IteratorNode -> { val items = objectNode.items.values.map { pythonBuildObject(it) } - Pair(CgPythonIterator(items.map {it.first}), items.flatMap { it.second }) + Pair(CgPythonIterator(items.map {it.first}, objectNode.exception), items.flatMap { it.second }) } is PythonTree.ReduceNode -> { diff --git a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt index ee99e35997..87269dd5d6 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/tree/CgPythonElement.kt @@ -10,7 +10,13 @@ import org.utbot.framework.codegen.renderer.CgVisitor import org.utbot.framework.plugin.api.ClassId import org.utbot.python.framework.api.python.PythonClassId import org.utbot.python.framework.api.python.PythonTree -import org.utbot.python.framework.api.python.util.* +import org.utbot.python.framework.api.python.util.pythonDictClassId +import org.utbot.python.framework.api.python.util.pythonIntClassId +import org.utbot.python.framework.api.python.util.pythonIteratorClassId +import org.utbot.python.framework.api.python.util.pythonListClassId +import org.utbot.python.framework.api.python.util.pythonRangeClassId +import org.utbot.python.framework.api.python.util.pythonSetClassId +import org.utbot.python.framework.api.python.util.pythonTupleClassId import org.utbot.python.framework.codegen.model.constructor.visitor.CgPythonVisitor interface CgPythonElement : CgElement { @@ -122,7 +128,8 @@ class CgPythonDict( } class CgPythonIterator( - val elements: List + val elements: List, + val stopException: PythonClassId, ) : CgValue, CgPythonElement { override val type: PythonClassId = pythonIteratorClassId } From 4e6936ebc9c0167d6425c0f5f9945fa5b4df7385 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Wed, 6 Dec 2023 22:14:41 +0300 Subject: [PATCH 141/144] Fixed NPE on info collection --- .../org/utbot/python/PythonTestGenerationProcessor.kt | 7 ++++--- .../src/main/kotlin/org/utbot/python/UTPythonAPI.kt | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index 5e2e4b9757..dfbfd48a92 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -29,13 +29,11 @@ import org.utbot.python.framework.codegen.model.PythonImport import org.utbot.python.framework.codegen.model.PythonSysPathImport import org.utbot.python.framework.codegen.model.PythonSystemImport import org.utbot.python.framework.codegen.model.PythonUserImport -import org.utbot.python.newtyping.PythonFunctionDefinition +import org.utbot.python.newtyping.* import org.utbot.python.newtyping.general.CompositeType -import org.utbot.python.newtyping.getPythonAttributes import org.utbot.python.newtyping.mypy.MypyBuildDirectory import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors -import org.utbot.python.newtyping.pythonName import org.utbot.python.utils.TemporaryFileManager import org.utbot.python.utils.convertToTime import org.utbot.python.utils.separateTimeout @@ -241,6 +239,9 @@ abstract class PythonTestGenerationProcessor { } else { containingClass = mypyStorage.definitions[curModule]!![containingClassName]!!.getUtBotType() as CompositeType + val descr = containingClass.pythonDescription() + if (descr !is PythonConcreteCompositeTypeDescription) + throw SelectedMethodIsNotAFunctionDefinition(method.name) mypyStorage.definitions[curModule]!![containingClassName]!!.type.asUtBotType.getPythonAttributes().first { it.meta.name == method.name } diff --git a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt index 735cea815e..c439f7e00d 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/UTPythonAPI.kt @@ -73,12 +73,13 @@ class PythonBaseMethod( override val arguments: List get() { - val meta = definition.type.pythonDescription() as PythonCallableTypeDescription + val meta = definition.meta + val description = definition.type.pythonDescription() as PythonCallableTypeDescription return (definition.type.arguments).mapIndexed { index, type -> PythonArgument( - meta.argumentNames[index]!!, + meta.args[index].name, type.pythonTypeRepresentation(), // TODO: improve pythonTypeRepresentation - isNamed(meta.argumentKinds[index]) + isNamed(description.argumentKinds[index]) ) } } From 2ef9ae57f71e2c09fec3c72d33ba52801d4f2785 Mon Sep 17 00:00:00 2001 From: Ekaterina Tochilina Date: Thu, 7 Dec 2023 10:39:31 +0300 Subject: [PATCH 142/144] Added some null checks --- .../org/utbot/python/PythonTestGenerationProcessor.kt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index dfbfd48a92..ff9f2e88a8 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -235,17 +235,18 @@ abstract class PythonTestGenerationProcessor { var containingClass: CompositeType? = null val containingClassName = method.containingPythonClassId?.simpleName val definition = if (containingClassName == null) { - mypyStorage.definitions[curModule]!![method.name]!!.getUtBotDefinition()!! + mypyStorage.definitions[curModule]?.get(method.name)?.getUtBotDefinition() } else { containingClass = - mypyStorage.definitions[curModule]!![containingClassName]!!.getUtBotType() as CompositeType + mypyStorage.definitions[curModule]?.get(containingClassName)?.getUtBotType() as? CompositeType + ?: throw SelectedMethodIsNotAFunctionDefinition(method.name) val descr = containingClass.pythonDescription() if (descr !is PythonConcreteCompositeTypeDescription) throw SelectedMethodIsNotAFunctionDefinition(method.name) - mypyStorage.definitions[curModule]!![containingClassName]!!.type.asUtBotType.getPythonAttributes().first { + mypyStorage.definitions[curModule]?.get(containingClassName)?.type?.asUtBotType?.getPythonAttributes()?.first { it.meta.name == method.name } - } + } ?: throw SelectedMethodIsNotAFunctionDefinition(method.name) val parsedFile = PythonParser(sourceFileContent).Module() val funcDef = PythonCode.findFunctionDefinition(parsedFile, method) val decorators = funcDef.decorators.map { PyDecorator.decoratorByName(it.name.toString()) } From ee25ead8d4616b4240e20166862ef0dcb1825be9 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 7 Dec 2023 13:12:46 +0300 Subject: [PATCH 143/144] Fix read-only arguments initialization --- .../src/main/python/utbot_executor/pyproject.toml | 2 +- .../deep_serialization/json_converter.py | 10 ++-------- .../deep_serialization/memory_objects.py | 10 ++-------- .../src/main/resources/utbot_executor_version | 2 +- 4 files changed, 6 insertions(+), 18 deletions(-) diff --git a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml index 37ffffe7c5..58614c472d 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml +++ b/utbot-python-executor/src/main/python/utbot_executor/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utbot-executor" -version = "1.9.15" +version = "1.9.16" description = "" authors = ["Vyacheslav Tamarin "] readme = "README.md" diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py index d84b397a61..ca27513956 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/json_converter.py @@ -229,20 +229,14 @@ def load_object(self, python_id: PythonId) -> object: state = self.load_object(dump_object.state) if isinstance(state, dict): for field, value in state.items(): - try: - setattr(real_object, field, value) - except AttributeError: - pass + setattr(real_object, field, value) elif hasattr(real_object, "__setstate__"): real_object.__setstate__(state) if isinstance(state, tuple) and len(state) == 2: _, slotstate = state if slotstate: for key, value in slotstate.items(): - try: - setattr(real_object, key, value) - except AttributeError: - pass + setattr(real_object, key, value) listitems = self.load_object(dump_object.listitems) if isinstance(listitems, Iterable): diff --git a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py index 48c61ca7bb..d54e557bdd 100644 --- a/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py +++ b/utbot-python-executor/src/main/python/utbot_executor/utbot_executor/deep_serialization/memory_objects.py @@ -351,20 +351,14 @@ def initialize(self) -> None: state = serializer[self.state] if isinstance(state, dict): for key, value in state.items(): - try: - setattr(deserialized_obj, key, value) - except AttributeError: - pass + setattr(deserialized_obj, key, value) elif hasattr(deserialized_obj, "__setstate__"): deserialized_obj.__setstate__(state) elif isinstance(state, tuple) and len(state) == 2: _, slotstate = state if slotstate: for key, value in slotstate.items(): - try: - setattr(deserialized_obj, key, value) - except AttributeError: - pass + setattr(deserialized_obj, key, value) items = serializer[self.listitems] if isinstance(items, Iterable): diff --git a/utbot-python-executor/src/main/resources/utbot_executor_version b/utbot-python-executor/src/main/resources/utbot_executor_version index b146d3268f..97cb59ba8a 100644 --- a/utbot-python-executor/src/main/resources/utbot_executor_version +++ b/utbot-python-executor/src/main/resources/utbot_executor_version @@ -1 +1 @@ -1.9.15 \ No newline at end of file +1.9.16 \ No newline at end of file From fbd51ed7f3a888b063abd2098bbeb7d2d1c5a452 Mon Sep 17 00:00:00 2001 From: Vyacheslav Tamarin Date: Thu, 7 Dec 2023 13:13:27 +0300 Subject: [PATCH 144/144] Fix collision variable name with module name --- .../org/utbot/python/PythonTestGenerationProcessor.kt | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt index ff9f2e88a8..c6f689e559 100644 --- a/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt +++ b/utbot-python/src/main/kotlin/org/utbot/python/PythonTestGenerationProcessor.kt @@ -29,11 +29,15 @@ import org.utbot.python.framework.codegen.model.PythonImport import org.utbot.python.framework.codegen.model.PythonSysPathImport import org.utbot.python.framework.codegen.model.PythonSystemImport import org.utbot.python.framework.codegen.model.PythonUserImport -import org.utbot.python.newtyping.* +import org.utbot.python.newtyping.PythonConcreteCompositeTypeDescription +import org.utbot.python.newtyping.PythonFunctionDefinition import org.utbot.python.newtyping.general.CompositeType +import org.utbot.python.newtyping.getPythonAttributes import org.utbot.python.newtyping.mypy.MypyBuildDirectory import org.utbot.python.newtyping.mypy.MypyInfoBuild import org.utbot.python.newtyping.mypy.readMypyAnnotationStorageAndInitialErrors +import org.utbot.python.newtyping.pythonDescription +import org.utbot.python.newtyping.pythonName import org.utbot.python.utils.TemporaryFileManager import org.utbot.python.utils.convertToTime import org.utbot.python.utils.separateTimeout @@ -136,7 +140,8 @@ abstract class PythonTestGenerationProcessor { methodIds[testSet.method] as ExecutableId to params }.toMutableMap() - val allImports = if (skipImports) emptySet() else collectImports(testSets) + val collectedImports = collectImports(testSets) + val allImports = if (skipImports) emptySet() else collectedImports val context = UtContext(this::class.java.classLoader) withUtContext(context) { @@ -148,6 +153,7 @@ abstract class PythonTestGenerationProcessor { hangingTestsTimeout = HangingTestsTimeout(configuration.timeoutForRun), runtimeExceptionTestsBehaviour = configuration.runtimeExceptionTestsBehaviour, ) + codegen.context.existingVariableNames = codegen.context.existingVariableNames.addAll(collectedImports.flatMap { listOfNotNull(it.moduleName, it.rootModuleName, it.importName) }) val testCode = codegen.pythonGenerateAsStringWithTestReport( testSets.map { testSet -> CgMethodTestSet(